šŸ’¾ Archived View for gemini.circumlunar.space ā€ŗ users ā€ŗ adiabatic ā€ŗ words ā€ŗ reviews ā€ŗ books ā€ŗ the-proā€¦ captured on 2024-07-09 at 00:14:09. Gemini links have been rewritten to link to archived content

View Raw

More Information

ā¬…ļø Previous capture (2024-05-10)

āž”ļø Next capture (2024-08-18)

-=-=-=-=-=-=-

Reviewing Felienne Hermansā€™ _The Programmerā€™s Brain_

One of the things Iā€™ve been tasked with at the day job is to work on features in a codebase. The implementation language is all JavaScript, but it uses a lot of once-trendy libraries and frameworks. These libraries and frameworks increase the complexity of the entire codebase in ways that are good for companies that devote multiple teams to a codebase like this. However, these architectural decisions make the whole thing needlessly complicated for our needs. No more than two people have ever worked on this pile of code at the same time.

At any rate, once I became the lead programmer on it, a number of problems cropped up. It took me for-fucking-ever to get what seemed like even basic things changed. I was able to explain that 90% of the effort was in navigating the codebase and understanding it and figuring out where to apply fixes, but it wasnā€™t obvious to me how to get better, or at least faster, at this. I intuited that I was being overwhelmed by everything that I was trying to keep in memory and it felt like I needed to hold like 20 things in my head at once when I could only hold 5ā€“7. My bigger problem was that it wasnā€™t super obvious how to fix, or at least ameliorate, this.

As time went on, I found a few techniques that did seem to help me run around in circles less:

That made easy things easy and medium-difficulty things hard instead of intractable.

Still, my ability to get stuff done was still too damn slow. I mean, everything that I was doing very much seemed not-hard, at least after I was looking at what Iā€™d been doing in the final pull request, but it was taking me something like 10x the amount of time to bang these features out compared to more senior colleagues.

(As an aside, anyone who claims that ā€œ10x programmers donā€™t existā€ or ā€œ100x programmers donā€™t existā€ is, at best, ignorant, and most likely a liar.)

ā‚

Iā€™ve been listening to Software Engineering Radio for years now, and itā€™s a podcast where people go to plug their recently-released books. However, one of the hosts was being interviewed as a guest ā€” she had recently come out with _The Programmerā€™s Brain_, and was on the show to plug it.

I thought that this would be probably the best accelerant I could get my hands on, so I got the book andā€¦well, it took me a while to finally devote the time to reading it.

It is superlatively well-structured. It has four parts: reading code better, thinking about code, writing better code, and collaborating on code.

Each chapter is also structured nicely, and is almost optimized for notetaking in Markdown.

This is what the headers in my notes look like:

# 8 How to get better at naming things
## 8.1 Why naming matters
###  8.1.1 Why naming matters
#### Names make up a large part of codebases 
#### Names play a role in code reviews
#### Names are the most accessible form of documentation
#### Names can serve as beacons
### 8.1.2 Different perspectives on naming
ā‹®

Fourth-level and fifth-level headings are in all caps inside the book, but itā€™s refreshing to have not only sentence-case titles, but also no punctuation between the chapter-and-section dotted numerals and the section title.

If I ever write something long in Typst, Iā€™ll probably go for a section-numbering and -titling style like this.

ā‚

The biggest insights I got out of the book are how memory works. There are three major types:

I definitely ran into the limits of my working memory all the time. Iā€™d want to look up the ultimate source of some value, get three components away from where I was, and thenā€¦dammit, what was I looking for, again?

(Youā€™ll probably notice that thereā€™s way more cussing in this review than has been in the entirety of Scrawlspace to this point. This is a deliberate stylistic choice.)

Thereā€™s also three types of cognitive load that one might have on his working memory:

So if you actually want to learn things, youā€™ll need to keep your intrinsic+extraneous load down to give yourself room enough for the germane load.

Because your bottleneck will likely be your working memory, the best strategy is to try to stuff as much information in your LTM in nicely-grouped chunks as soon as possible. With more information nicely arranged in your LTM, youā€™ll be able to free up space in your STM, which will give your working set room to actually solve your problems instead of trying to keep track of still-new-to-you minutiae.

OK, so how do you get stuff in your LTM? There are two kinds of things in there already:

Declarative memories themselves have two types:

Oddly enough, experts rely on episodic memory more than you might expect.

ā‚

So, after reading the book, what will I do differently for this codebase?

First, I was moderately pleased to see that I had been doing some of the things Hermans recommends. On the other hand, I was kind of worried after a few chapters that Iā€™d already be doing all the tricks, and thereā€™d be no good novel advice left for me.

All that said, the winning strategy, at least for this codebase, is to shove as much as I can into the LTM as possible to free up space in the short-term memory. Plus, the more I shove into the LTM, the more Iā€™ll be able to think of collections of discrete things as opaque chunks, and the chunking will help compress the number of things I keep in my head all at one time.

Hermans suggests using flashcards. I reinstalled Anki.

I generally donā€™t have trouble with JavaScript constructs, although I could stand to go through Promises Training to go from novice to intermediate.

Iā€™ve been transitioning from using ā‡§āŒ˜F to find in all files, to pressing āŒ˜P to type in the name of the file that Iā€™m pretty sure exists and has the function or component I want. Iā€™ll keep doing that more. Trying to remember something helps it stick in your mind, so itā€™s important to at least try to pull the memory out of your mind.

I could stand to write down more documentation of where the important parts of the codebase are.

The decks are cleared for the germane load when Iā€™m reviewing a pull request that Iā€™ve made, so Iā€™ll lean into taking my sweet time to review my own pull requests for nontrivial changes.

Iā€™m not sure Iā€™ll print anything out to understand stuff, mainly because I have a debugger set up for this codebase. Still, this isnā€™t going to be the only codebase Iā€™ll ever end up working on.

There are other parts of the book that are focused on green-as-grass novices and the final chapter is aimed at people who are trying to speed up the onboarding process for new programmers to a codebase, but this is what I thought was most important.

Reviewed late November, 2023.

References:

JSDoc, a standard for documenting types in JavaScript code that VS Code can use

TaskPaper, a text editor designed to make keeping track of tasks fast and easy

write-ahead log

Alessandro Fragnaniā€™s Bookmarks extension for Visual Studio Code

Eric Amodioā€™s Restore Editors extension for Visual Studio Code

Software Engineering Radio

Typst, a PDF-generating program similar to TeX, with an optional online collaborative-authorship that Iā€™ve never used

Scrawlspace, 2023 edition

Anki, a spaced-repetition flashcard app

Promises Training

āš

Home

Hi! Iā€™m a one-pixel invisible tracking image! View me to let my webmaster know youā€™ve scrolled through the entire page!