aqula

↗ HN profile [ 288 ms ] full profile
Karma
0
Created
()
Submissions
0
  1. One of the things I do when approaching a new codebase is to find the entry points and start exploring down the call paths. This gives a good overview of the different components in the code and how they're connected. I…

  2. I've always thought call graphs are a great way to explore a codebase. But they tend to be noisy because programs typically have a lot of control flow going most of which is uninteresting. I'm toying around with a…

  3. If you're not familiar with C4 model (https://c4model.com), the idea is to visualize your system at different "zoom levels" to see the abstraction you are interested in. When it comes to infrastructure, looking at how…