Ask HN: Good ways to capture institutional knowledge?
41–50 of 220 posts
Re: Ask HN: Good ways to capture institutional knowledge?
#42Shameless plug: I'm working on a tool to help teams define/share the internal jargon that always seems to develop whenever humans work together: https://jargonaut.net
Re: Ask HN: Good ways to capture institutional knowledge?
#43Mandatory vacation. This is something that the finance industry has used for a long time to guard against fraud -- it's hard to cover up something if someone else has to do your job for two weeks straight at some point -- but it also serves as a mechanism for requiring you to cross-train people. Two weeks of paid vacation where the company isn't allowed to email them or call them for help: I guarantee that documentat…
I worked in the finance industry and took the mandatory 2 week vacation and dealt with my coworkers taking the mandatory 2 week vacation. We didn't write any documentation or have any internal wiki or anything like that, and everything seemed fine. I also find it pretty questionable that someone couldn't write a computer program that can embezzle unattended for two weeks. You don't use your own credentials, you stick…
Re: Ask HN: Good ways to capture institutional knowledge?
#44Re: Ask HN: Good ways to capture institutional knowledge?
#45When you think about it, a lot of corporate cultures reward the opposite -- employees hoarding key knowledge so they can use it to their advantage.
To do this, avoid creating a culture that fosters rivalries. I know it's controversial to say this, as many business people seem to think that brutal rivalries are what leads to over the top effort.
Instead, think about the knowledge as processes, and figure out how to best codify and execute those processes.
If you arrive at a step in the process that appears to be something that can only be done by one person, or by a person who is leaving, that is a clue that someone is withholding information or trying to use it to his/her advantage. Nothing is that complicated, just break it down into simpler steps.
Then, when it comes to onboarding, introduce whichever processes make the most sense for the new hire, and encourage him/her to view them both as an example of excellence but also as something that can be improved. Doing this helps the new hire understand the design perspective behind the processes, which is preferable to following them by rote (which is surprisingly common even among otherwise bright people).
It sounds from the question that you have a bit of drama going on, so you may actually want to sketch out the processes as you think they are and then incentivize the team to make them all precise.
Re: Ask HN: Good ways to capture institutional knowledge?
#46Mandatory vacation. This is something that the finance industry has used for a long time to guard against fraud -- it's hard to cover up something if someone else has to do your job for two weeks straight at some point -- but it also serves as a mechanism for requiring you to cross-train people. Two weeks of paid vacation where the company isn't allowed to email them or call them for help: I guarantee that documentat…
When someone is on leave who has specific knowledge, this is just planned into the sprint. As in "xxx knows most about this feature, so let's wait for him to return".
Even when we do write documentation it just gets lost, or developers don't bother looking anything up.
Re: Ask HN: Good ways to capture institutional knowledge?
#47Re: Ask HN: Good ways to capture institutional knowledge?
#48Essentially, we monitor network communications and rank participants in the network by expertise, skills, workstyle, etc. Then we rank content they discuss / share based on expertise (for search). The system will also rank the participants (employees), and monitor the influence.
Re: Ask HN: Good ways to capture institutional knowledge?
#491) what is it? (A web project, an automation script, an ansible deployment repo?)
2) what dependencies do I need to run it? (Make, NPM, Java 1.8?)
3) how do I run it? (docker-compose up? make && ./a.out?)
We started with this. Then for the bigger projects/monorepos, we started adding README files in relevant subfolders.
Recently I've been converting these README files in the larger projects into mkdocs subfolders that get hosted in our repository tooling (GitHub/GitLab pages).
Start small. Go slow (if it's institutionally difficult). Build up to more complexity as you get more written material to work with.
I've started creating an "index" project, that links to all the projects that have documentation.
And finally, focus on the pain points first. One of our monorepos was fiendishly difficult to deploy correctly, either locally or in a test / production environment. The very first tutorial I wrote was setting up that environment in a step-by-step, repeatable manner, and it's by far the most oft-used documentation we have. With that out of the way, I can focus more on the esoteric details (and, yes, unfortunately, it's a bit of a thankless, "skunk works" project, but it's worth it)
Re: Ask HN: Good ways to capture institutional knowledge?
#50E.g. Create tutorials on setting up a development environment, installing dependencies, compiling modules, running tests, creating new components. Write descriptions at a high level of the system, make diagrams of complex message exchanges. Write down best practices, or paste boiler plate code for doing specific useful things.