Hacker News new | ask | show | jobs
by spaetzleesser 1752 days ago
I think a lot of companies would benefit immensely if they hired a few tech writers. Management always talks about collaboration and knowledge sharing but they refuse to put money behind this desire. Instead it’s up to the workers to create documentation while also having to finish project deadlines. And most developers don’t really enjoy writing or are good at it.
1 comments

TWs help for sure but the ones with the ones with the most impact don't try to do it all themselves, and instead make it easier / less painful for everyone in the company (or at least engineers to start) to create documentation. Or they at least raise hell and make it clear that the more everyone takes ownership of docs the more likely it is that the company overall will succeed. To put it another way, a common problem that I see is that company's recognize their docs are terrible and then hire a couple TWs and the engineers say "phew! Now I really don't need to care about documentation at all!" I think part of Stripe's initial success was that everyone supposedly did customer support and that helped them see that good docs was a great way to reduce support burden (rather than providing ad hoc answers, if you have a doc that explains the solution well, you can just link to that instead). That's just conjecture, BTW. I haven't confirmed that idea with Stripe people. Also it's just common sense that if your main product is an API then your documentation is mission critical to overall success. Another scalable approach is for TWs to provide training that helps non-TWs get less intimidated by writing docs.
"make it easier / less painful for everyone in the company (or at least engineers to start) to create documentation. "

Exactly. I am not averse to writing most of the content but at least in my company the documentation processes are very intricate and I really don't want to learn all the details and rules for submitting docs. I have enough to do with wrestling with AWS and feel my time is better spent on that.

Same for booking flights. We used to have somebody who would book flights. That role got eliminated to save costs and now the engineers are burning countless hours figuring out how Concur works and what the latest travel rules are.

It's nice so have support staff that are experts in these systems. And I think it's actually cheaper. there is a reason why the big guys have assistants.

We had some success making it easy for engineers.

User documentation was inline with the code (think perldoc/pydoc). Developer documentation (as comments) was also co-located with the relevant code.

This automatically gave us man pages at a shell prompt. We could include those man page outputs in report .zip files that got emailed to users, and push them to our website.

There's an art to keeping this organized. Always having a good trail of breadcrumbs was important, like a comment next to a variable assignment telling the developer to update the user docs if that constant is changed. Also avoiding duplications, which leads to drift/inaccuracy. We considered inaccurate documentation to be a bug. Full time employees took to this. Contractors often needed reminding.

As the project grew there was managerial pressures to get involved in other stuff like power points and sharepoint.

I have seen several of such initiatives. They all started out well but then slowly died because management didn’t allocate long term attention, time and budget. If this is not part of the fundamental company process it will die slowly.