- Sep 2024
-
learn.microsoft.com learn.microsoft.com
-
For all audiences and in most content, use intelligent or intelligence to describe or talk about the benefits of AI.In UI, use intelligent technology to describe the underlying technology that powers AI features.
I think this is a good example of a misleading marketing ploy that shouldn't exist in technical documentation.
-
- May 2024
-
www.technologyreview.com www.technologyreview.com
- Mar 2024
-
-
We can't use algorithms to filter for quality because they're not designed to. They're designed to steer you towards whatever's most profitable for their creators.That puts the onus on us, as users, to filter out the noise and that is increasingly difficult.
-
- Sep 2023
-
rubyreferences.github.io rubyreferences.github.io
-
It seems that the method is a direct equivalent of a.fdiv(b).ceil, and as such, annoyingly unnecessary, but fdiv, due to floating point imprecision, might produce surprising results in edge cases
-
-
bugs.ruby-lang.org bugs.ruby-lang.org
-
As "module" is more generic concept than "class", the name misleadingly implies that either this method doesn't returns refined modules, or modules can't be refined. This is obviously not true and trivially disproved: module Refs refine Enumerable do def foo = puts 'foo' end end Refs.refinements[0].refined_class #=> Enumerable. Which is, well, not a class. # The refinement is usable, so it is not a mute concept: using Refs [1, 2, 3].foo # prints "foo" successfully I believe we refer to "modules" when some feature applies to modules and classes. Unless there is some deeper consideration for the current naming (I don't see justification in #12737, but I might miss something), the method should be renamed or aliased.
-
- Aug 2023
-
evilmartians.com evilmartians.com
- May 2023
- Jan 2023
-
www.mediawiki.org www.mediawiki.org
-
The popular recommendation is that there should be between 40 and 75 characters per line. The findings of multiple studies conclude that "short line lengths are easier to read". Regarding learning and information retention: "Subjects reading the narrow paragraphs had better retention than those reading the wide paragraphs"
-
-
cdn.tc-library.org cdn.tc-library.org
- Oct 2022
-
www.sumologic.com www.sumologic.com
-
will improve collaboration
The article contains no proof of this statement.
If someone knows of research that proves this, please let me know.
-
- Aug 2022
-
-
2012. Microsoft Writing Style Guide. https://docs.microsoft.com/en-us/style-guide/welcome/.
Other recommendable technical–writing style guides:
- Google developer documentation style guide
- Apple Style Guide
- Write the Docs, Accessibility guidelines
- Write the Docs, Reducing bias in your writing
- IBM developerWorks Editorial style guide
- Red Hat Technical Writing Style Guide
- Splunk Style Guide
- DigitalOcean Documentation Style Guide
- Salesforce Style Guide for Documentation and User Interface Text
- Rackspace Writing guidelines
- OpenStack Writing style
- MongoDB Documentation Style Guide
- Conscious Style Guide
- 18F Content Guide
- A11Y Style Guide
- Mailchimp Content Style Guide
Tags
Annotators
URL
-
- Apr 2022
-
www.imaginarycloud.com www.imaginarycloud.com
- Mar 2022
-
idratherbewriting.com idratherbewriting.com
-
You should link abundantly to other content. Wikipedia articles provide some of the best examples of “every page is page one” style.
-
- Jan 2022
-
hypothes.is hypothes.is
-
The nature of technical writing is explained in "The nature of technical writing". Technical communication is something we do every day without even noticing. Having strong communication skills is beneficial in all areas of one's life, from personal to professional. From a business standpoint, communication is key to every transaction. Communicating effectively allows others and yourself to understand information at a faster and more accurate rate. A lack of communication skills leads to frequent misunderstandings and frustration.
-
Technical communication/writing is something that has been around for a very long time. The earliest examples belong to Aristotle and his dictionary of "philosophical terms" and his summary of the "Doctrines of Pythagoras". World War I is considered the "Golden Age" of technical writing due to advances in medicine and aerospace.
-
- Nov 2021
-
dictionary.cambridge.org dictionary.cambridge.orgdemo1
-
an example of a product, especially a computer program or piece of recorded music, given or shown to someone to try to make them buy or support it: a software demo
I prefer this to the Merriam-Webster definition.
-
-
www.merriam-webster.com www.merriam-webster.com
-
an example of a product that is not yet ready to be sold a demo version of the software
I prefer the Cambridge Dictionary definition.
-
- Oct 2021
-
stylepedia.net stylepedia.net
-
user n. When referring to the reader, use "you" instead of "user." For example, "The user must..." is incorrect. Use "You must..." instead. If referring to more than one user, calling the collection "users" is acceptable, such as "Other users may want to access your database."
-
- Sep 2021
-
developer.salesforce.com developer.salesforce.com
-
stylepedia.net stylepedia.net
-
Do not use articles in front of product names. For example, do not write "the JBoss Enterprise Application Platform was..."
Tags
Annotators
URL
-
- Jun 2021
- May 2021
-
www.impressivewebs.com www.impressivewebs.com
- Apr 2021
-
linusakesson.net linusakesson.net
-
css-tricks.com css-tricks.com
-
www.redblobgames.com www.redblobgames.com
- Mar 2021
- Feb 2021
-
jrsinclair.com jrsinclair.com
-
us6.campaign-archive.com us6.campaign-archive.com
-
Fewer screenshots means less maintenance work. If the product changes, the screenshots must change too, to remain helpful and prevent confusion. Lots of screenshots plus frequent product changes can cost a lot of time: keeping the docs in sync with the product can become unmanageable. A middle-ground approach is using text descriptions of UI elements, like “Click the START button”, as it’s easier to keep text descriptions matching the UI. And well-designed user interfaces and UI microcopy often mean that users don’t need screenshots to find their way through the product.
Tags
Annotators
URL
-
-
opensource.stackexchange.com opensource.stackexchange.com
- Jan 2021
-
css-tricks.com css-tricks.com
-
-
The debate about whether a button or link should be used to download a file is a bit silly, as the whole purpose of a link has always been to download content. HTML is a file, and like all other files, it needs to be retrieved from a server and downloaded before it can be presented to a user. The difference between a Photoshop file, HTML, and other understood media files, is that a browser automatically displays the latter two. If one were to link to a Photoshop .psd file, the browser would initiate a document change to render the file, likely be all like, “lol wut?” and then just initiate the OS download prompt. The confusion seems to come from developers getting super literal with the “links go places, buttons perform actions.” Yes, that is true, but links don’t actually go anywhere. They retrieve information and download it. Buttons perform actions, but they don’t inherently “get” documents. While they can be used to get data, it’s often to change state of a current document, not to retrieve and render a new one. They can get data, in regards to the functionality of forms, but it continues to be within the context of updating a web document, not downloading an individual file. Long story short, the download attribute is unique to anchor links for a reason. download augments the inherent functionality of the link retrieving data. It side steps the attempt to render the file in the browser and instead says, “You know what? I’m just going to save this for later…”
-
- Nov 2020
- Oct 2020
-
codesandbox.io codesandbox.io
-
Look at their Readme:
Well we have had a great time adding field validations, but there are validations that are tied up to the whole record we are editing than to a given field, for instance let's face this scenario: - You are not allowed to transfer more than 1000 € to Switzerland using this form (for instance: you have to go through another form where some additional documentation is required). - The best place to fire this validation is at record level. - Record validation functions accept as input parameter that whole form record info, and return the result of the validation (it accepts both flavours sync and promise based), let's check the code for this validator: ...
-
-
danielmiessler.com danielmiessler.com
-
-
andrewdeandrade commented on Jul 30, 2015
-
andrewdeandrade commented on Jul 31, 2015
locked issues that I would comment on if I could: Can't react to comment because locked. Want to thumb up.
-
-
dylanvann.com dylanvann.com
- Sep 2020
-
medium.com medium.com
- Aug 2020
-
en.wikipedia.org en.wikipedia.org
- Jan 2020
- Sep 2019
- Aug 2019
-
www.robinwieruch.de www.robinwieruch.de
- Feb 2017
-
static1.squarespace.com static1.squarespace.com
-
Not only were his subjects idiosyncratic, but his style was poetic, aphoristic, dra~atic, and colorful.
As far as our readings go, did we not just establish technical writing as the new fad?
-