In the field of System Administration and SRE, laziness drives us. We are too lazy to repeat ourselves so we automate tasks. Still a lot of people in our profession are not lazy enough. They have to research the same topic multiple times. Instead of spending a little time taking notes, they have to figure out how things are working again the next time they tackle the exact same problem.
The lazy guy pulls out notes he has taken maybe a year ago. He usually stores that information in multiple places, with one copy for his employer. The second copy takes a little bit of extra effort. Here he removes everything that provides a clue about his current job. He stores it in a git repository in plain text so that he might search it sometime in the future at a new job, even if he switches tools or the tool he used back then is not available anymore. When a new colleague approaches him he can answer: "It's been three years since I have done that. But I am confident that I can do this because I have taken notes."
Almost everybody has to use ticket systems nowadays. Instead of seeing it as a burden, you can see it as your goto knowledge base. The description gives you a good idea what has to happen here. But then there are tons of tickets just getting closed without any clue about how the problem got solved or why it got solved in that way. Use the comment field to write down your notes. You can search it and reference the ticket in other tickets.
Everybody knows that we have to constantly learn in our field. But another secret of the seniors: We observe the way we are working. We try to optimize ourself. And there are thousands of opportunities. Apprentices in trades start by learning how to use basic tools. Still a lot of us fail at that first step. Raise your hand if you can touch type! If you don't have to search for keys, words can flow. And it's easier for you to learn shortcuts instead of relying on that mouse, because using the mouse is slow. The time you invest to learn to touch type will pay of during your career.
Start learning the tools and programs you use on a daily basis. Don't pick tools because everybody is talking about them. Pick the ones which have been around for some time. Study their documentation. There is a good chance they will stay most of the time of your career. Pick the ones you can customize for your own needs, like a toolmaker who not only relies on prebuilt tools but makes his own!
If you have followed my advice, it's easy for you to write documentation. Look into tools like Jupyter and OrgMode. There are probably more out there, maybe specific to some tasks. It's easier to take notes if you don't have to switch tools constantly to create them. If you use a GUI tool for working with your database, and you have to copy the queries and results into your notes, instead use a tool where you can do it all in one place. It's not about the look but the feel. Taking notes, writing queries, executing them and getting the result in the same spot. Executing commands in the shell and capturing the result.
You might have heard of Markdown because everybody is talking about it. It's a good markup language and it's plain text. The information you store will be available in 10 years if you keep those files, unlike a proprietary file format which might become unavailable because the company behind it disappears. Markdown is not interactive. Org mode is similar to markdown but it's interactive. You can execute your code snippet blocks right on the spot and get a result set. Yes — you have to learn a few shortcuts. Learn a shortcut or two a week. Rome wasn't build in a day either. After some time your fingers will fly over the keyboard and you will outperform your colleagues.
In my world, I spend most of the day in my text editor. After finishing a ticket I press a few keys. A "Finder" window pops up with my /tmp folder containing a plain text file. My clipboard contains my notes in a markup language our ticket system understands. The browser opens the ticket I was working on. I paste a comment and attach the text file. The comment is searchable and the text file contains any information lost in transition. On top of that everything is stored as well in a git repository. So even if we decide to switch the ticket system and lose history I have the information readily available.
If I have gotten your interest you can follow up here:
Literate Database Work with Oracle: http://www.bundesbrandschatzamt.de/~baron/blog/20150520-literate-oracle....
Mastering Emacs: https://www.masteringemacs.org/book
Literate programming with python_doctests: https://kitchingroup.cheme.cmu.edu/blog/2018/05/17/Literate-programming-...