summaryrefslogtreecommitdiffstats
path: root/2020/info/24.md
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2020-12-01 00:44:21 -0500
committerSacha Chua <sacha@sachachua.com>2020-12-01 00:44:21 -0500
commit59a50e53ec403dcd3a78a20ab4d67817813e07ae (patch)
tree0469a3258e7d8272119a50338109170b8a465f33 /2020/info/24.md
parent6be6f782694313f7492164b60db640e78a2e3d58 (diff)
downloademacsconf-wiki-59a50e53ec403dcd3a78a20ab4d67817813e07ae.tar.xz
emacsconf-wiki-59a50e53ec403dcd3a78a20ab4d67817813e07ae.zip
Fix spaces
Diffstat (limited to '2020/info/24.md')
-rw-r--r--2020/info/24.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/2020/info/24.md b/2020/info/24.md
index 5db04a6e..ba2eb06a 100644
--- a/2020/info/24.md
+++ b/2020/info/24.md
@@ -54,45 +54,23 @@ OK, thanks for the response.
## How did you summon, resize and dismiss that window so seamlessly?
-
- org-roam and C-x0
-
- How did you resize it from 2/3 to 1/3 of the frame?
-
- golden-ratio-mode from golden-ratio
## Have you considered doing this analysis by function instead than by file?
-
- I did not have chance yet to integrate that, but the theory is described in Adam's 2nd book: Software Design -Rays
# Notes
-
-
- Book by Adam Tornhill "Your Code as a Crime Scene": <https://www.adamtornhillem.com/articles/crimescene/codeascrimescene.htm>
-
-
- <https://github.com/adamtornhill/code-maat>
-
-
- Beautiful circles diagram.
-
-
- especially for big projects with many collaborators the codebase may become less transparent
-
-
- hotspots: files that have had many changes based on git history; likely sources of bugs
-
-
- Complexities of a file are measured in terms of the indentation, at least in the case of Java.
-
-
- "If a lot of lines are deleted, that's usually a good sign. If a lot of lines are added, it's a sign of technological debt"
-
-
- another beautiful diagram (big circle with files on periphery, linked together with curved lines) showing associations between changes in files: when this file gets changed, it usually means that this other file is also changed
-
-
- <https://ag91.github.io/blog/>