If someone’s having to read your docs, it’s not “simple”
11–20 of 146 posts
Re: If someone’s having to read your docs, it’s not “simple”
#12Re: If someone’s having to read your docs, it’s not “simple”
#13Are people really that sensitive that docs calling something simple feels like an insult to their competence?
When the library author says “makes X simple” they mean relative to existing ways of doing X.
They don’t literally mean simple in absolute terms.
The statement is useful because it immediately conveys the goal of the library.
Re: If someone’s having to read your docs, it’s not “simple”
#14Another thing you should not do is name things “fast”. It will end up not being fast (esp when you find the next faster thing) or else someone will find security holes in it.
Re: If someone’s having to read your docs, it’s not “simple”
#15Re: If someone’s having to read your docs, it’s not “simple”
#16Another thing you should not do is name things “fast”. It will end up not being fast (esp when you find the next faster thing) or else someone will find security holes in it.
Re: If someone’s having to read your docs, it’s not “simple”
#1750% of the questions on Stack Overflow are probably because the documentation was not great in the first place. I am surprised how much configuration/installation time I spend on there.
Re: If someone’s having to read your docs, it’s not “simple”
#18Another word I often see riddled in our code base is "Obviously". It might be obvious to the original author ... but not the reader.
Years ago, I read Michael Crichton's autobiography "Travels". In that book there is one particular part that, for whatever reason, cemented itself in my memory. He recounts how his father shared a lesson with him regarding the word "Obviously", and it was something along the lines of "If you say it's obvious, but it isn't, then you will offend someone. If it is obvious, then it's superfluous. The word 'obvious' never…
Re: If someone’s having to read your docs, it’s not “simple”
#1950% of the questions on Stack Overflow are probably because the documentation was not great in the first place. I am surprised how much configuration/installation time I spend on there.
Looks like GitHub is already getting ahead of this with the "Discussions" feature.
Re: If someone’s having to read your docs, it’s not “simple”
#20Another word I often see riddled in our code base is "Obviously". It might be obvious to the original author ... but not the reader.