Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
The programmer's brain - By Felienne Hermans
Marabesi
January 21, 2022
Technology
0
250
The programmer's brain - By Felienne Hermans
Marabesi
January 21, 2022
Tweet
Share
More Decks by Marabesi
See All by Marabesi
TDD anti patterns - episode 6 - with Ignacio Saporitti and Pablo Díaz
marabesi
0
90
TDD anti patterns - episode 5 - with Sofia Carballo and Juan Pablo
marabesi
0
63
TDD anti patterns - episode 4 - with Javier Martínez
marabesi
0
150
TDD anti patterns - episode 3 - With Juan Pablo
marabesi
0
180
TDD anti patterns - episode 2 - TDD anti patterns - With Giulio Perrone
marabesi
0
130
Tips for improving test assertions at Codurance
marabesi
0
450
TDD anti-patterns at Codurance Spain
marabesi
0
670
TDD anti-patterns
marabesi
0
990
Jest asserts beyond equals
marabesi
0
710
Other Decks in Technology
See All in Technology
CityGMLとFBXの連携で地理空間のエンタメ化
soh_mitian
0
650
SBOMを利用したソフトウェアサプライチェーンの保護
masahiro331
1
170
プロダクトマネージャーの役割と育成、評価
middleokada
11
7.9k
最先端の生成AIから考える、ビジネスにおける10年後のパラダイムシフト
sbtechnight
1
310
大声で伝えたい!定時に帰る方法
sbtechnight
0
220
Sysdig Secure/Falcoの活用術! ~Kubernetes基盤の脅威モデリングとランタイムセキュリティの強化~
owlinux1000
0
210
〇〇みたいな検索作ってと言われたときに考えること / thinking before developing search system like that one
ryook
5
2.6k
eBPFで実現するコンテナランタイムセキュリティ / Container Runtime Security with eBPF
tobachi
PRO
5
1.6k
hey BOOK
heyinc
26
290k
増田亨さんによる 「設計の考え方とやり方」勉強会オープニング
tsuyok
0
200
ロボットの実行すらメンドクサイ!?
kou12092
0
120
セキュアなTerraformの使い方 ~ 機密情報をコードに含めず環境構築するにはどうしたらいいの?
harukasakihara
8
1.3k
Featured
See All Featured
Code Review Best Practice
trishagee
44
9.7k
Building Your Own Lightsaber
phodgson
95
4.7k
Automating Front-end Workflow
addyosmani
1351
200k
A Philosophy of Restraint
colly
192
15k
Facilitating Awesome Meetings
lara
29
4.1k
The Illustrated Children's Guide to Kubernetes
chrisshort
18
40k
How STYLIGHT went responsive
nonsquared
85
4k
For a Future-Friendly Web
brad_frost
166
7.5k
The Invisible Customer
myddelton
110
11k
Agile that works and the tools we love
rasmusluckow
319
19k
A Modern Web Designer's Workflow
chriscoyier
689
180k
Adopting Sorbet at Scale
ufuk
63
7.6k
Transcript
The programmer's brain By Felienne Hermans
Hello there - This is a book is the intersection
between learning and tech.
Agenda What's the idea: Go over the following sections: 1.
The memory 2. Reading code 3. Writing code 4. Naming
1. The memory
Memory classification - Working memory - Short term memory -
Long term memory
Memory classification - Working memory - Short term memory -
Long term memory * The magical number seven minus or plus two
SPACED REPETITION, REVISIT
Cognitive refactoring - Grab a piece of code - Place
that where you need - Remove that afterwards
2. Reading code
Code - Reading texts and reading code are strongly related
- Same parts of the brain are active - The first is that research shows we as programmers spend more time on reading code than writing
Code - Reading texts and reading code are strongly related
- Same parts of the brain are active - The first is that research shows we as programmers spend more time on reading code than writing it * lack of practicing on reading code
3. Naming
Naming - Names make up a large part of the
code base - Names play a role in code reviews - Names are the most accessible form of documentation - Names can serve as beacons
Naming - Names make up a large part of the
code base - Names play a role in code reviews - Names are the most accessible form of documentation - Names can serve as beacons * Linking chuks
W.M → L.T.M L.T.M → W.M
Naming she refers a research that points to 19% increase
on finding defects for code that does is not abbreviated.
4. Writing code
Writing - an interrupted task takes longer to finish compared
to a uninterrupted on, this is what research points to.
FlowLight Manuela Züger
https://andre-meyer.ch/flowlight
https://andre-meyer.ch/flowlight
https://andre-meyer.ch/flowlight
Writing - TODO's in code remain unresolved for long time
- People cannot multitask - static-types systems outperform dynamic ones in terms of time and accuracy finding bugs
The programmer's brain By Felienne Hermans