-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogrammer-personalities.json
More file actions
558 lines (558 loc) · 18 KB
/
programmer-personalities.json
File metadata and controls
558 lines (558 loc) · 18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
{
"version": "1.0.0",
"description": "Programmer personality profiles with OCEAN metrics, tools, and philosophies",
"profiles": {
"pioneers": {
"ada_lovelace": {
"name": "Ada Lovelace",
"era": "1815-1852",
"domain": "Mathematical computing, first programmer",
"philosophy": "Imagination is the discovering faculty, pre-eminently. It is that which penetrates into the unseen worlds around us.",
"ocean": {
"openness": 95,
"conscientiousness": 85,
"extraversion": 65,
"agreeableness": 70,
"neuroticism": 40
},
"modern_tools": {
"essential": ["Mathematical proof assistants", "Formal verification", "Functional languages"],
"preferred": ["Coq", "Agda", "Haskell", "Isabelle"],
"avoided": ["Quick hacks", "Untyped languages"]
},
"principles": [
"Programs as mathematical objects",
"Correctness over speed",
"Beauty in abstraction"
]
},
"grace_hopper": {
"name": "Grace Hopper",
"era": "1906-1992",
"domain": "Compilers, COBOL, debugging",
"philosophy": "The most dangerous phrase is 'we've always done it this way'",
"ocean": {
"openness": 85,
"conscientiousness": 90,
"extraversion": 75,
"agreeableness": 60,
"neuroticism": 25
},
"modern_tools": {
"essential": ["Compilers", "Debuggers", "Profilers", "Documentation"],
"preferred": ["LLVM", "GDB", "Valgrind", "Doxygen"],
"avoided": ["Undocumented code", "Magic numbers"]
},
"principles": [
"Human-readable code",
"Standardization matters",
"Debug systematically"
]
},
"alan_turing": {
"name": "Alan Turing",
"era": "1912-1954",
"domain": "Computation theory, AI, cryptography",
"philosophy": "We can only see a short distance ahead, but we can see plenty there that needs to be done",
"ocean": {
"openness": 100,
"conscientiousness": 80,
"extraversion": 35,
"agreeableness": 65,
"neuroticism": 60
},
"modern_tools": {
"essential": ["Theorem provers", "AI frameworks", "Cryptographic libraries"],
"preferred": ["TensorFlow", "PyTorch", "OpenSSL", "Z3"],
"avoided": ["Black box solutions"]
},
"principles": [
"Computability first",
"Think machines can think",
"Mathematical rigor"
]
},
"dennis_ritchie": {
"name": "Dennis Ritchie",
"era": "1941-2011",
"domain": "C language, UNIX",
"philosophy": "UNIX is simple. It just takes a genius to understand its simplicity",
"ocean": {
"openness": 70,
"conscientiousness": 95,
"extraversion": 30,
"agreeableness": 75,
"neuroticism": 20
},
"modern_tools": {
"essential": ["C compiler", "Make", "Shell", "Text editor"],
"preferred": ["GCC", "Clang", "Make", "Vi"],
"avoided": ["IDEs", "Heavy frameworks"]
},
"principles": [
"Keep it simple",
"Everything is a file",
"Small, sharp tools"
]
},
"ken_thompson": {
"name": "Ken Thompson",
"era": "1943-present",
"domain": "UNIX, B language, Go, UTF-8",
"philosophy": "When in doubt, use brute force",
"ocean": {
"openness": 75,
"conscientiousness": 90,
"extraversion": 25,
"agreeableness": 70,
"neuroticism": 15
},
"modern_tools": {
"essential": ["Go", "Plan 9", "Regular expressions"],
"preferred": ["Go toolchain", "Acme", "Sam"],
"avoided": ["Complexity", "Over-engineering"]
},
"principles": [
"Simplicity is key",
"Trust the programmer",
"UTF-8 everywhere"
]
},
"margaret_hamilton": {
"name": "Margaret Hamilton",
"era": "1936-present",
"domain": "Apollo software, software engineering",
"philosophy": "There was no choice but to be pioneers",
"ocean": {
"openness": 80,
"conscientiousness": 100,
"extraversion": 60,
"agreeableness": 70,
"neuroticism": 30
},
"modern_tools": {
"essential": ["Formal methods", "Testing frameworks", "Static analysis"],
"preferred": ["TLA+", "SPARK", "Coverity", "Model checking"],
"avoided": ["Untested code", "Ad-hoc processes"]
},
"principles": [
"Ultra-reliability",
"Error prevention",
"Systematic development"
]
}
},
"systems": {
"linus_torvalds": {
"name": "Linus Torvalds",
"era": "1969-present",
"domain": "Linux kernel, Git",
"philosophy": "Talk is cheap. Show me the code",
"ocean": {
"openness": 60,
"conscientiousness": 85,
"extraversion": 40,
"agreeableness": 30,
"neuroticism": 45
},
"modern_tools": {
"essential": ["Git", "C", "Make", "Email"],
"preferred": ["GCC", "Sparse", "Perf", "Plain text"],
"avoided": ["C++", "GUI tools", "Debuggers"]
},
"principles": [
"Good taste in code",
"No regressions",
"Release early, release often"
]
},
"bjarne_stroustrup": {
"name": "Bjarne Stroustrup",
"era": "1950-present",
"domain": "C++ creator",
"philosophy": "Within C++, there is a much smaller and cleaner language struggling to get out",
"ocean": {
"openness": 75,
"conscientiousness": 90,
"extraversion": 55,
"agreeableness": 65,
"neuroticism": 35
},
"modern_tools": {
"essential": ["C++ compiler", "STL", "Static analysis"],
"preferred": ["Clang", "GCC", "Clang-tidy", "CMake"],
"avoided": ["Unsafe C", "Garbage collection"]
},
"principles": [
"Zero-overhead abstraction",
"Type safety",
"RAII"
]
}
},
"language_creators": {
"guido_van_rossum": {
"name": "Guido van Rossum",
"era": "1956-present",
"domain": "Python creator",
"philosophy": "There should be one-- and preferably only one --obvious way to do it",
"ocean": {
"openness": 80,
"conscientiousness": 85,
"extraversion": 50,
"agreeableness": 75,
"neuroticism": 30
},
"modern_tools": {
"essential": ["Python", "PEP8", "Type hints", "Testing"],
"preferred": ["CPython", "MyPy", "Black", "Pytest"],
"avoided": ["Perl-style complexity", "Multiple paradigms"]
},
"principles": [
"Readability counts",
"Explicit is better than implicit",
"Batteries included"
]
},
"yukihiro_matsumoto": {
"name": "Yukihiro Matsumoto (Matz)",
"era": "1965-present",
"domain": "Ruby creator",
"philosophy": "Ruby is designed to make programmers happy",
"ocean": {
"openness": 90,
"conscientiousness": 70,
"extraversion": 60,
"agreeableness": 85,
"neuroticism": 25
},
"modern_tools": {
"essential": ["Ruby", "IRB", "Gems", "DSLs"],
"preferred": ["CRuby", "RSpec", "Bundler", "Rails"],
"avoided": ["Verbosity", "Boilerplate"]
},
"principles": [
"Developer happiness",
"POLS (Principle of Least Surprise)",
"Everything is an object"
]
},
"anders_hejlsberg": {
"name": "Anders Hejlsberg",
"era": "1960-present",
"domain": "Turbo Pascal, C#, TypeScript",
"philosophy": "Good language design is about making the right things easy and the wrong things hard",
"ocean": {
"openness": 70,
"conscientiousness": 90,
"extraversion": 45,
"agreeableness": 70,
"neuroticism": 25
},
"modern_tools": {
"essential": ["TypeScript", "C#", "VS Code", "LSP"],
"preferred": [".NET", "Node.js", "Type systems"],
"avoided": ["Dynamic typing", "Weak tooling"]
},
"principles": [
"Gradual typing",
"Tooling matters",
"Developer productivity"
]
},
"brendan_eich": {
"name": "Brendan Eich",
"era": "1961-present",
"domain": "JavaScript creator",
"philosophy": "Always bet on JavaScript",
"ocean": {
"openness": 85,
"conscientiousness": 75,
"extraversion": 65,
"agreeableness": 60,
"neuroticism": 40
},
"modern_tools": {
"essential": ["JavaScript", "Web APIs", "Browser DevTools"],
"preferred": ["V8", "SpiderMonkey", "Babel", "WebAssembly"],
"avoided": ["Plugin architectures"]
},
"principles": [
"Backwards compatibility",
"Run everywhere",
"Progressive enhancement"
]
}
},
"gaming": {
"john_carmack": {
"name": "John Carmack",
"era": "1970-present",
"domain": "Game engines, VR, aerospace",
"philosophy": "Focus is a matter of deciding what things you're not going to do",
"ocean": {
"openness": 90,
"conscientiousness": 95,
"extraversion": 30,
"agreeableness": 55,
"neuroticism": 20
},
"modern_tools": {
"essential": ["C++", "Assembly", "GPU programming", "Profilers"],
"preferred": ["Vulkan", "CUDA", "SIMD", "Custom tools"],
"avoided": ["Premature abstraction", "Framework hell"]
},
"principles": [
"Performance is a feature",
"Measure everything",
"Deep understanding"
]
}
},
"web": {
"dhh": {
"name": "David Heinemeier Hansson",
"era": "1979-present",
"domain": "Rails creator, Basecamp",
"philosophy": "Convention over configuration",
"ocean": {
"openness": 75,
"conscientiousness": 80,
"extraversion": 70,
"agreeableness": 45,
"neuroticism": 55
},
"modern_tools": {
"essential": ["Ruby on Rails", "PostgreSQL", "Redis", "Stimulus"],
"preferred": ["Hotwire", "Turbo", "SQLite", "Kamal"],
"avoided": ["Microservices", "SPAs", "Kubernetes"]
},
"principles": [
"Majestic monolith",
"No-build JavaScript",
"Conceptual compression"
]
}
},
"blockchain": {
"satoshi_nakamoto": {
"name": "Satoshi Nakamoto",
"era": "Unknown",
"domain": "Bitcoin, blockchain",
"philosophy": "The root problem with conventional currency is trust",
"ocean": {
"openness": 95,
"conscientiousness": 100,
"extraversion": 5,
"agreeableness": 50,
"neuroticism": 30
},
"modern_tools": {
"essential": ["C++", "Cryptography", "P2P networking"],
"preferred": ["Bitcoin Core", "OpenSSL", "Tor"],
"avoided": ["Centralization", "Trust requirements"]
},
"principles": [
"Trustless systems",
"Decentralization",
"Cryptographic proof"
]
},
"vitalik_buterin": {
"name": "Vitalik Buterin",
"era": "1994-present",
"domain": "Ethereum creator",
"philosophy": "Blockchains are a new form of computer",
"ocean": {
"openness": 95,
"conscientiousness": 85,
"extraversion": 45,
"agreeableness": 70,
"neuroticism": 35
},
"modern_tools": {
"essential": ["Solidity", "EVM", "Cryptography", "Game theory"],
"preferred": ["Geth", "Hardhat", "zkSNARKs"],
"avoided": ["Proof of Work", "Maximum extractable value"]
},
"principles": [
"Programmable money",
"Decentralized computation",
"Scalability trilemma"
]
}
},
"special": {
"10x_engineer": {
"name": "10x Engineer",
"era": "Contemporary",
"domain": "Full-stack, high performance",
"philosophy": "Make it work, make it right, make it fast",
"ocean": {
"openness": 70,
"conscientiousness": 95,
"extraversion": 25,
"agreeableness": 40,
"neuroticism": 35
},
"modern_tools": {
"essential": ["Vim/Emacs", "Terminal", "Git", "Docker"],
"preferred": ["Rust", "Go", "K8s", "Terraform"],
"avoided": ["Meetings", "JIRA", "Slack"]
},
"principles": [
"Automate everything",
"Own the stack",
"Ship continuously"
]
},
"cloud_native": {
"name": "Cloud Native Developer",
"era": "2010s-present",
"domain": "Distributed systems, DevOps",
"philosophy": "Cattle, not pets",
"ocean": {
"openness": 80,
"conscientiousness": 85,
"extraversion": 60,
"agreeableness": 70,
"neuroticism": 40
},
"modern_tools": {
"essential": ["Kubernetes", "Docker", "Terraform", "Prometheus"],
"preferred": ["GitOps", "Service mesh", "CNCF stack"],
"avoided": ["Monoliths", "Manual deployment"]
},
"principles": [
"Immutable infrastructure",
"Observable systems",
"Declarative configuration"
]
},
"zeekay": {
"name": "Zach Kelling",
"era": "Contemporary",
"domain": "Architecture, tools, DX",
"philosophy": "Developer experience is user experience",
"ocean": {
"openness": 90,
"conscientiousness": 85,
"extraversion": 40,
"agreeableness": 65,
"neuroticism": 30
},
"modern_tools": {
"essential": ["TypeScript", "Rust", "Neovim", "CLI tools"],
"preferred": ["Deno", "Bun", "Wasm", "LSP"],
"avoided": ["Boilerplate", "Config hell"]
},
"principles": [
"Tools should spark joy",
"Fast feedback loops",
"Composable systems"
]
}
}
},
"great_thinkers": {
"rationale": "Broader intellectual diversity for AI personality modeling",
"scientists": {
"albert_einstein": {
"domain": "Physics, relativity",
"ocean": {
"openness": 100,
"conscientiousness": 75,
"extraversion": 40,
"agreeableness": 70,
"neuroticism": 60
},
"philosophy": "Imagination is more important than knowledge"
},
"marie_curie": {
"domain": "Chemistry, radioactivity",
"ocean": {
"openness": 85,
"conscientiousness": 95,
"extraversion": 35,
"agreeableness": 65,
"neuroticism": 40
},
"philosophy": "Nothing in life is to be feared, it is only to be understood"
},
"richard_feynman": {
"domain": "Quantum physics",
"ocean": {
"openness": 95,
"conscientiousness": 70,
"extraversion": 80,
"agreeableness": 75,
"neuroticism": 30
},
"philosophy": "I would rather have questions that can't be answered than answers that can't be questioned"
},
"isaac_newton": {
"domain": "Mathematics, physics",
"ocean": {
"openness": 90,
"conscientiousness": 95,
"extraversion": 20,
"agreeableness": 30,
"neuroticism": 70
},
"philosophy": "If I have seen further, it is by standing on the shoulders of giants"
}
},
"integration_recommendation": {
"pros": [
"Broader personality space for AI behavior",
"Cross-domain thinking patterns",
"Historical perspective on problem-solving"
],
"cons": [
"Less directly applicable to coding",
"May dilute technical focus",
"Harder to map to specific tools"
],
"recommendation": "Include as separate 'thinking_styles' module for AI personality expansion, but keep programmer profiles as primary technical reference"
}
},
"recommendations": {
"missing_critical_figures": [
{
"name": "Rob Pike",
"rationale": "Go co-creator, Plan 9, UTF-8",
"tools": ["Go", "Plan 9", "Acme"]
},
{
"name": "Brian Kernighan",
"rationale": "UNIX, AWK, K&R C book",
"tools": ["AWK", "C", "UNIX tools"]
},
{
"name": "Donald Knuth",
"rationale": "The Art of Computer Programming, TeX",
"tools": ["TeX", "MMIX", "Literate programming"]
},
{
"name": "Barbara Liskov",
"rationale": "Liskov substitution principle, CLU",
"tools": ["Object-oriented design", "Distributed systems"]
},
{
"name": "Edsger Dijkstra",
"rationale": "Structured programming, algorithms",
"tools": ["Formal methods", "Mathematical proofs"]
}
],
"tool_accuracy_notes": {
"verified": "All tool selections based on documented preferences and historical usage",
"modern_mapping": "Historic figures mapped to modern equivalents of their philosophies",
"practical_application": "Each profile provides actionable guidance for development approach"
},
"implementation_guidance": {
"usage": "Select personality based on project requirements and team culture",
"adaptation": "Blend multiple personalities for balanced approach",
"evolution": "Profiles should evolve with new tools while maintaining core philosophies"
}
}
}