Writing about what you learn pushes you to understand topics better
81–90 of 167 posts
Re: Writing about what you learn pushes you to understand topics better
#82I remember an old PhD comics strip where a professor says “Remember kids, the only difference between fooling around and science is writing it down.”. In the context the goal was obviously for it to be funny but it is actually a very good and wise advice.
Re: Writing about what you learn pushes you to understand topics better
#83I started writing a book to teach myself Rust but ended up teaching myself how to write. I've found that I have a much deeper understanding of the language now because I have to actually explain things in detail, and not just get the program to compile and move on. But I would say that the biggest side effect has been learning to write well. That has turned out to be much more impactful to my career than learning Rus…
Could it be that people assume you know rust if you write a book about rust?
Re: Writing about what you learn pushes you to understand topics better
#84It’s just extra effort. Writing is fun for the sake of writing. But I’ve not ever found it helpful for me to remember stuff or whatever.
Either the subject matter makes sense on first pass, or I just need to practice it like math or something a few times and it sticks.
Either you get it or you don’t. And write for fun.
Re: Writing about what you learn pushes you to understand topics better
#85I keep breaking down the concept until I am happy with the level of abstraction and I can open it up tomorrow and not be like: " Hmm this sub concept is opaque and it should not be"
Re: Writing about what you learn pushes you to understand topics better
#86I remember an old PhD comics strip where a professor says “Remember kids, the only difference between fooling around and science is writing it down.”. In the context the goal was obviously for it to be funny but it is actually a very good and wise advice.
The only difference between fooling around and science is p < 0.05 ?
Re: Writing about what you learn pushes you to understand topics better
#87I remember an old PhD comics strip where a professor says “Remember kids, the only difference between fooling around and science is writing it down.”. In the context the goal was obviously for it to be funny but it is actually a very good and wise advice.
Wow, that's actually deeper than it sounds. I do wonder though: did a lot of famous scientists (like Einstein, Feynman, Turing, etc) use writing as a vehicle for learning?
Re: Writing about what you learn pushes you to understand topics better
#88In the military it was common to hear, "you don't know something until you can teach a class on it." So there was an expectation that everyone should be able to pass on the skills they are responsible for.
Re: Writing about what you learn pushes you to understand topics better
#89The great thing about TILs is that once you form a solid set of habits around them they can be extremely quick to put together: the majority of my TIL posts take between 15 minutes and half an hour to write.
I make extensive personal notes on everything I'm doing (in GitHub issues threads or VS Code scratch documents) - turning those into a TIL is mainly about pasting those notes into a Markdown file and tidying them up a bit.
https://til.simonwillison.net/ is my collection so far.
I get a huge amount of value out of these. I don't particularly care if other people read them, the value is in helping me better understand the material and enabling me to refer back to them in the future.
I refer to some of them multiple times every week! This one for example, about Python packaging with pyproject.toml: https://til.simonwillison.net/python/pyproject
Re: Writing about what you learn pushes you to understand topics better
#90I think writing is part of thinking.
I frequently reread my notes.
I would like to go into more depth with more thoughts but I am usually in pattern matching and permutation searching mode.