-
Notifications
You must be signed in to change notification settings - Fork 6
/
back-links.json
4816 lines (4816 loc) · 223 KB
/
back-links.json
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
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"redirects": {
"/2024": "/y24",
"/2025": "/y25",
"/24": "/y24",
"/25": "/y25",
"/48-laws": "/laws-of-power",
"/50yo": "/40yo",
"/7h": "/7-habits",
"/7h-c0": "/7h-concepts",
"/7h-c1": "/be-proactive",
"/7h-c2": "/end-in-mind",
"/7h-c3": "/first-things-first",
"/7h-c4": "/win-win",
"/7h-c5": "/first-understand",
"/7h-c6": "/synergize",
"/7h-c7": "/sharpen-the-saw",
"/7habits": "/7-habits",
"/90": "/90days",
"/90-days": "/90days",
"/activation-energy": "/activation",
"/addictions": "/addiction",
"/affirm": "/affirmations",
"/aGPT": "/ai-bestie",
"/ai-coder": "/chop",
"/ai-papers": "/ai-paper",
"/ai-talk": "/genai-talk",
"/ai-training": "/ai-training",
"/alexa-charity": "/toysfortots",
"/anxious": "/anxiety",
"/architecture": "/design",
"/atomic-habits": "/d/habits",
"/augmentedreality": "/ar",
"/ballooning": "/balloon",
"/bbb": "/build-bubble-bike",
"/begin-with-the-end-in-mind": "/end-in-mind",
"/bells": "/kettlebell",
"/bestiegpt": "/ai-bestie",
"/bikes": "/bike",
"/biking": "/bike",
"/bmu": "/bmy",
"/books": "/all",
"/boss": "/being-a-great-manager",
"/brain-attack": "/suicide",
"/brainattack": "/suicide",
"/breathe": "/breath",
"/breathing": "/breath",
"/bryan-johnson": "/blueprint",
"/Business-Model-You": "/bmy",
"/care": "/caring",
"/centenarian": "/last-year",
"/classact": "/class-act",
"/coach": "/coaching",
"/Coaching-Questions": "/coaching",
"/cocaine": "/mania",
"/cold": "/warm",
"/compassion": "/curious",
"/compensation": "/comp",
"/corona": "/covid",
"/correct-of-errors": "/coe",
"/covid19": "/covid",
"/cry": "/touching",
"/cv": "/covid",
"/dealjoy": "/joy",
"/decide": "/decisive",
"/decision": "/decisive",
"/delegation": "/delegate",
"/don-juan": "/enemy",
"/dream-job": "/job",
"/duck-pride": "/pride",
"/eat-that-frog": "/frog",
"/effectiveness": "/balance",
"/emotional-health-practices": "/emotional-health",
"/emotional-states": "/emotions",
"/enabling-environment": "/enable",
"/enemies": "/enemy",
"/enjoy": "/happy",
"/essential": "/essentialism",
"/exercise": "/physical-health",
"/failure": "/fail",
"/fatality": "/death",
"/feeling-meetings": "/human-meetings",
"/feelings": "/emotions",
"/first-thing-first": "/first-things-first",
"/first90days": "/90days",
"/forty-two": "/42",
"/fortytwo": "/42",
"/frugality": "/parkinson",
"/frustration": "/anger",
"/fuck-shame": "/shame",
"/future-igor": "/time-traveller",
"/future-self": "/time-traveller",
"/genai-intern": "/genai-talk",
"/getting-things-done": "/gtd",
"/getting-to-yes": "/negotiate",
"/goal": "/goals",
"/gopher": "/delegate",
"/grandma": "/curious",
"/grandmother": "/curious",
"/grandmother-mind": "/curious",
"/grandmothermind": "/curious",
"/gty": "/negotiate",
"/guilt": "/shame",
"/habit": "/d/habits",
"/habits": "/d/habits",
"/happiness": "/happy",
"/healthspan": "/last-year",
"/heap - potporri - potpori": "/random-idea",
"/heavy-club": "/kettlebell",
"/heavy-clubs": "/kettlebell",
"/humanity": "/touching",
"/idle-loop": "/idle",
"/imposter": "/insecure",
"/in-real-life": "/irl",
"/insecurity": "/insecure",
"/intern-llm": "/genai-talk",
"/jupyter": "/pandas",
"/kb": "/kettlebell",
"/kettlebells": "/kettlebell",
"/life-chapters": "/chapters",
"/life-stages": "/chapters",
"/lisp": "/sicp",
"/llm-intern": "/genai-talk",
"/llm-security": "/ai-security",
"/llm-talk": "/genai-talk",
"/llm-training": "/ai-training",
"/loneliness": "/lonely",
"/machine-learning": "/ml",
"/machinelearning": "/ml",
"/makejoy": "/joy",
"/makes-me-cry": "/touching",
"/makesmile": "/joy",
"/manager": "/being-a-great-manager",
"/manic": "/mania",
"/mechanism": "/upstream",
"/meditate": "/siy",
"/meditation": "/siy",
"/mental-break-down": "/depression",
"/middleage": "/elder",
"/midlife": "/elder",
"/monsters": "/mind-monsters",
"/mortality": "/death",
"/mr": "/ar",
"/negotiation": "/negotiate",
"/nonjudgment": "/curious",
"/nvim": "/vim",
"/objective": "/goals",
"/okr": "/goals",
"/on-being-mortal": "/death",
"/pain": "/mental-pain",
"/parkinson-law": "/parkinson",
"/parkinsons-law": "/parkinson",
"/passion": "/caring",
"/pay": "/comp",
"/pd": "/timeoff",
"/perfect-job": "/job",
"/personal-development": "/timeoff",
"/phoney": "/insecure",
"/pm": "/product",
"/podcasting": "/podcast",
"/podcasts": "/podcast",
"/poh": "/happy",
"/proactive": "/be-proactive",
"/process": "/upstream",
"/procrastinate": "/frog",
"/procrastination": "/frog",
"/product-manager": "/product",
"/productivity": "/productive",
"/psych-safety": "/insecure",
"/psychological-safety": "/insecure",
"/rage": "/anger",
"/ranking": "/recommend",
"/rca": "/coe",
"/recommender": "/recommend",
"/regret": "/regrets",
"/remote": "/remote-work",
"/remotework": "/remote-work",
"/resistance": "/d/resistance",
"/responsible": "/be-proactive",
"/rework": "/staysmallstaysmall",
"/root-cause-analysis": "/coe",
"/sat": "/dsat",
"/satisfaction": "/happy",
"/satisfied": "/happy",
"/saving": "/money",
"/savings": "/money",
"/savor": "/happy",
"/search-inside-yourself": "/siy",
"/simple-and-sinister": "/kettlebell",
"/sleepless": "/insomnia",
"/som": "/sleight-of-mouth",
"/stages": "/chapters",
"/stewardship": "/delegate",
"/strong": "/physical-health",
"/sublime-state": "/sublime",
"/sublime-states": "/sublime",
"/taxes": "/money",
"/td/machine-learning": "/ml",
"/tech-ritual": "/tech-rituals",
"/tft": "/toysfortots",
"/the-dip": "/dip",
"/the-manager-book": "/manager-book",
"/the-saw": "/sharpen-the-saw",
"/thedip": "/dip",
"/think": "/writing",
"/thinking": "/writing",
"/time-off": "/timeoff",
"/time-off-2024-02": "/d/time-off-2024-02",
"/time-off-2024-04": "/d/time-off-2024-04",
"/time-off-next": "/time-off-2024-08",
"/time-off-now": "/time-off-2024-08",
"/todo": "/todo_enjoy",
"/todo-enjoy": "/todo_enjoy",
"/tolerance": "/anger",
"/training": "/ai-training",
"/tribes": "/tribe",
"/twenty-two": "/22",
"/twentytwo": "/22",
"/uncategorized": "/random-idea",
"/untangled-book": "/untangled",
"/vacation": "/timeoff",
"/virus": "/covid",
"/voices-in-my-head": "/voices",
"/vr": "/ar",
"/warmth": "/warm",
"/what-i-wish-i-knew-at-22": "/22",
"/win-win-or-no-deal": "/win-win",
"/wizard-book": "/sicp",
"/wlb": "/sustainable-work",
"/wlb-manifesto": "/sustainable-work",
"/work-life-balance": "/sustainable-work",
"/write": "/writing",
"/y2024": "/y24",
"/y2025": "/y25",
"/yellow-deli": "/ig66/717",
"/zero": "/blueprint"
},
"url_info": {
"/22": {
"url": "/22",
"title": "What I wish I knew at 22 and so might you!",
"description": "In 2019 I created a program for 15 fantastic interns! A program highlight was my talk titled “What I wish I knew at 22, and so might you”. The talk received a 94% overall rating from over 15 interns, 10 SDE-IIs, and 1 senior developer. Even though the talk focuses on how to live the good life, a big chunk of life is work, so there’s good coverage on how to optimize your career.\n\n",
"file_path": "_site/22.html",
"outgoing_links": [],
"incoming_links": [
"/chapters",
"/manager-book"
],
"redirect_url": "",
"markdown_path": "_d/22.md",
"doc_size": 14000
},
"/40yo": {
"url": "/40yo",
"title": "Age Before Beauty: The Vanishing Act of Older Coders",
"description": "In 2002, I started programming at MSFT with lots of other 20-year-olds. I don’t recall the age distributions, but maybe 90% of the programmers I knew were under 40. In 2020, at 41, I’m no longer a programmer, and the majority of programmers are much younger than me. This begs the question, where do all the programmers go as they get older? I’m very curious about the answer. Here are some of my theories….\n\n",
"file_path": "_site/40yo.html",
"outgoing_links": [
"/chop",
"/elder"
],
"incoming_links": [
"/elder"
],
"redirect_url": "",
"markdown_path": "_d/40-yo-programmer.md",
"doc_size": 17000
},
"/42": {
"url": "/42",
"title": "What I wish I knew at 42",
"description": "You survived young kids, marriage, house, some easy crises, and now it’s time for remember , a healthy woman has a thousand wishes, a sick woman - just one: Things i wish I knew at 42\n\n",
"file_path": "_site/42.html",
"outgoing_links": [
"/diet",
"/last-year",
"/physical-health",
"/terzepatide"
],
"incoming_links": [
"/chapters",
"/y24",
"/y25"
],
"redirect_url": "",
"markdown_path": "_d/42.md",
"doc_size": 16000
},
"/7-habits": {
"url": "/7-habits",
"title": "Seven Habits: A manual for life",
"description": "Need a user manual for life? For me, that’s The 7 Habits of Highly Effective People. From dependant, to independent to interdependant, and then rinse and repeat for the the different roles in your life. Like other self-helf books? Excellent chance it’s a reframe or deep dive into these concepts.\n\n",
"file_path": "_site/7-habits.html",
"outgoing_links": [
"/7h-concepts",
"/balance",
"/be-proactive",
"/end-in-mind",
"/eulogy",
"/first-things-first",
"/first-understand",
"/sharpen-the-saw",
"/synergize",
"/win-win"
],
"incoming_links": [
"/7h-concepts",
"/balance",
"/be-proactive",
"/books-that-defined-me",
"/d/time-off-2020-12",
"/depression",
"/end-in-mind",
"/eulogy",
"/first-things-first",
"/first-understand",
"/psychic-weight",
"/sharpen-the-saw",
"/synergize",
"/win-win"
],
"redirect_url": "",
"markdown_path": "_posts/2018-01-04-7-habits.md",
"doc_size": 15000
},
"/7h-concepts": {
"url": "/7h-concepts",
"title": "7 habits concepts",
"description": "To discuss the 7 habits we need some foundational ideas, P/PC, paradigms, etc. These are my insights based on the 7 habits Chapter 0.\n\n",
"file_path": "_site/7h-concepts.html",
"outgoing_links": [
"/7-habits",
"/balance",
"/sleight-of-mouth"
],
"incoming_links": [
"/7-habits",
"/writing"
],
"redirect_url": "",
"markdown_path": "_d/7h-c0.md",
"doc_size": 15000
},
"/90days": {
"url": "/90days",
"title": "The first 90 days",
"description": "The first 90 days is a how to manual for starting a new job. While it’s focused on executive roles, it’s applicable to lower levels as well. It’s also the best written business book from a structural perspective. I highly recommend it.\n\n",
"file_path": "_site/90days.html",
"outgoing_links": [
"/amazon",
"/curious",
"/first-things-first",
"/insecure",
"/shame",
"/writing"
],
"incoming_links": [
"/manager-book",
"/writing"
],
"redirect_url": "",
"markdown_path": "_d/90days.md",
"doc_size": 45000
},
"/about": {
"url": "/about",
"title": "Where am I?",
"description": "Igor's Blog",
"file_path": "_site/about.html",
"outgoing_links": [
"/new-skills"
],
"incoming_links": [],
"redirect_url": "",
"markdown_path": "about.md",
"doc_size": 16000
},
"/activation": {
"url": "/activation",
"title": "Activation Energy",
"description": "Doing activities requires will power, addictions and procrastination require negative will power, while positive habits, especially new ones require high will power. Here’s a model for these things.\n\n",
"file_path": "_site/activation.html",
"outgoing_links": [
"/addiction",
"/blueprint",
"/d/habits",
"/insomnia"
],
"incoming_links": [
"/balance",
"/d/time-off-2021-12",
"/energy"
],
"redirect_url": "",
"markdown_path": "_d/activation.md",
"doc_size": 16000
},
"/adblocker-trojan": {
"url": "/adblocker-trojan",
"title": "The Mystery of the google ads",
"description": "Out of the blue I started seeing ads in my google search. They were especially prominent due to the fact they were white, and I use a back background. It was caused by a trojan running in my chrome extension, which I suspect was installed by a name-jacked NPM plugin.\n\n",
"file_path": "_site/adblocker-trojan.html",
"outgoing_links": [],
"incoming_links": [
"/d/time-off-2021-11"
],
"redirect_url": "",
"markdown_path": "_td/adblocker_trojan.md",
"doc_size": 15000
},
"/addiction": {
"url": "/addiction",
"title": "Escape Artists: The True Face of Addiction",
"description": "Addiction is not about drugs or alcohol - it is about escape. Quoting “Do the Work”: When we can’t stand the fear, the shame, and the self-reproach that we feel, we obliterate it with an addiction. The addiction becomes the shadow version, the evil twin of our calling to service or to art. That’s why addicts are so interesting and so boring at the same time. They’re interesting because they’re called to something — something new, something unique, something that we, watching, can’t wait to see them bring forth into manifestation. At the same time, they’re boring because they never do the work. The addiction becomes his purpose, his novel, his adventure, his great love. The work of art or service that might have been produced is replaced by the drama, conflict, and suffering of the addict’s crazy, haunted, shattered life.\n\n",
"file_path": "_site/addiction.html",
"outgoing_links": [
"/covid",
"/elder",
"/mental-pain",
"/mind-at-work"
],
"incoming_links": [
"/activation",
"/anxiety-management",
"/d/resistance",
"/first-things-first",
"/happy",
"/idle",
"/mind-at-work",
"/productive",
"/psychic-weight",
"/timeoff"
],
"redirect_url": "",
"markdown_path": "_d/addiction.md",
"doc_size": 16000
},
"/affirmations": {
"url": "/affirmations",
"title": "Affirmations",
"description": "Every day I write out my affirmations. These positive statements help me challenge and overcome my self-sabotaging and negative thoughts. Repeating them often reinforces them, helping me be the person I want to be. My affirmations have power to me and have evolved over time. You’ll want to find the ones that speak best to you.\n\n",
"file_path": "_site/affirmations.html",
"outgoing_links": [
"/anxiety",
"/appreciate",
"/be-proactive",
"/class-act",
"/curious",
"/end-in-mind",
"/essentialism",
"/first-understand",
"/insecure",
"/joy",
"/sublime",
"/writing"
],
"incoming_links": [
"/process-journal"
],
"redirect_url": "",
"markdown_path": "_d/affirmations2.md",
"doc_size": 14000
},
"/ai": {
"url": "/ai",
"title": "All posts on AI",
"description": "A landing page for all my ai pages - a nice jumping off point (especially from the graph)\n\n",
"file_path": "_site/ai.html",
"outgoing_links": [
"/ai-art",
"/ai-bestie",
"/ai-bm",
"/ai-developer",
"/ai-image",
"/ai-journal",
"/ai-paper",
"/ai-security",
"/ai-testing",
"/chop",
"/ml",
"/recommend"
],
"incoming_links": [
"/ai-developer"
],
"redirect_url": "",
"markdown_path": "_d/ai.md",
"doc_size": 15000
},
"/ai-art": {
"url": "/ai-art",
"title": "AI and art",
"description": "Creativity is a criticial aspect of art, and that’s something which I think AI can be really good at. Some very random ideas\n\n",
"file_path": "_site/ai-art.html",
"outgoing_links": [
"/ai-image",
"/gpt"
],
"incoming_links": [
"/ai",
"/ai-journal"
],
"redirect_url": "",
"markdown_path": "_d/ai_art.md",
"doc_size": 14000
},
"/ai-bestie": {
"url": "/ai-bestie",
"title": "Igor's AI Bestie Simulator",
"description": "My best friend and I communicate over chat lots (33,60,101 messages/day P50, P75, P95). I have years of chat history, and so this seemed like a super fun way to get deeper into ML. This is created and shared with his permission.\n\n",
"file_path": "_site/ai-bestie.html",
"outgoing_links": [],
"incoming_links": [
"/ai",
"/y24"
],
"redirect_url": "",
"markdown_path": "_d/ai-bestie.md",
"doc_size": 18000
},
"/ai-bm": {
"url": "/ai-bm",
"title": "AI Security",
"description": "Business Models drive the world, and they’ll drive the world of AI too.\n\n",
"file_path": "_site/ai-bm.html",
"outgoing_links": [],
"incoming_links": [
"/ai"
],
"redirect_url": "",
"markdown_path": "_d/ai-business-model.md",
"doc_size": 11000
},
"/ai-developer": {
"url": "/ai-developer",
"title": "AI Developer",
"description": "ML Engineer is a hot new job. It’s the boys and girls who train and deploy models. I heard the word AI developer the other day, and I’ll refer to it as AI application engineers. People who use AI to solve use cases. NOTE: This is not what most developers do today. What most developers do today is ask how can AI do the things I would have done (e.g. write the function).\n\n",
"file_path": "_site/ai-developer.html",
"outgoing_links": [
"/ai"
],
"incoming_links": [
"/ai"
],
"redirect_url": "",
"markdown_path": "_d/ai-developer.md",
"doc_size": 30000
},
"/ai-image": {
"url": "/ai-image",
"title": "AI Image Generation",
"description": "Everyone talks about GPT, but you can also generate images. Lately, I’ve been playing with Flux, which is an image generator. You can generate images of me using the idvorkin with this lora on replicate.\n\n",
"file_path": "_site/ai-image.html",
"outgoing_links": [],
"incoming_links": [
"/ai",
"/ai-art"
],
"redirect_url": "",
"markdown_path": "_d/ai-imagegen.md",
"doc_size": 14000
},
"/ai-journal": {
"url": "/ai-journal",
"title": "Igor's AI Journal",
"description": "A journal of random explorations in AI. Keeping track of them so I don’t get super lost\n\n",
"file_path": "_site/ai-journal.html",
"outgoing_links": [
"/ai-art",
"/ai-security",
"/genai-talk",
"/gpt",
"/idvorkin/idvorkin-flux-lora-1"
],
"incoming_links": [
"/ai"
],
"redirect_url": "",
"markdown_path": "_d/ai-journal.md",
"doc_size": 32000
},
"/ai-paper": {
"url": "/ai-paper",
"title": "Seminal AI Papers",
"description": "The original AI papers were all about training, super technical, and not that usable as a practitioner. Nowadays papers are less “mathy” and more applicable to practitioners. Here are some worth reading\n\n",
"file_path": "_site/ai-paper.html",
"outgoing_links": [],
"incoming_links": [
"/ai"
],
"redirect_url": "",
"markdown_path": "_d/ai-paper.md",
"doc_size": 15000
},
"/ai-security": {
"url": "/ai-security",
"title": "AI Security",
"description": "Security is super interesting, AI is super interesting, the combination, is super-duper interesting!\n\n",
"file_path": "_site/ai-security.html",
"outgoing_links": [],
"incoming_links": [
"/ai",
"/ai-journal"
],
"redirect_url": "",
"markdown_path": "_d/ai-security.md",
"doc_size": 24000
},
"/ai-testing": {
"url": "/ai-testing",
"title": "Testing AI",
"description": "Testing math is easy, it’s right or wrong. Testing spelling is easy too, but testing if a joke is funny - now that’s tough. Let’s talk about how to test AI.\n\n",
"file_path": "_site/ai-testing.html",
"outgoing_links": [],
"incoming_links": [
"/ai",
"/d/time-off-2024-04",
"/genai-talk",
"/ml",
"/testing"
],
"redirect_url": "",
"markdown_path": "_d/ai-testing.md",
"doc_size": 19000
},
"/amazon": {
"url": "/amazon",
"title": "My thoughts on Amazon",
"description": "I spent 4 years working at Amazon, some things I loved, some not so much. Amazon is a huge company and the variation of behavior within a company exceeds the variation between the “median” behavior between companies. Even within the two teams I was on at Amazon I saw the exact opposite behaviors. When I talk about the good, I’ll talk about the ideal good, and when I talk about the bad, I’ll talk to some issues I saw that were systemically bad. As a result you’ll often see me describing something as both good and bad, as it’s done differently in different parts of the company.\n\n",
"file_path": "_site/amazon.html",
"outgoing_links": [
"/coe",
"/manager-book",
"/td/cloud-first-applications",
"/td/data-systems",
"/td/design",
"/toysfortots",
"/writing"
],
"incoming_links": [
"/90days",
"/manager-book-appendix",
"/parkinson",
"/writing"
],
"redirect_url": "",
"markdown_path": "_d/amazon.md",
"doc_size": 26000
},
"/anger": {
"url": "/anger",
"title": "Anger is the enemy",
"description": "It’s 8am; The normal rush, the kids are late to school, we’re yelling at them to eat their breakfast, pack their lunch, brush their teeth, get ready for school. 30 minutes earlier, I’d decided I’d bike Amelia, my 7 year old daughter, to school. I told Tori, my wife, who normally drives the kids to school. Tori didn’t acknowledge me. As I got my bike helmet Tori put the kids in the car. I ran out and tried to get her attention, waving frantically and running the car. (In my head), Tori ignored me, wouldn’t look at me, even as I ran to the car and gesticulated wildly. I really had my heart set on biking Amelia to school, and I went into a rage, as Tori pulled off, I flipped her off. Adulting fail - not my best moment.\n\n",
"file_path": "_site/anger.html",
"outgoing_links": [
"/depression",
"/mental-pain"
],
"incoming_links": [
"/emotions",
"/mood"
],
"redirect_url": "",
"markdown_path": "_d/anger.md",
"doc_size": 14000
},
"/anxiety": {
"url": "/anxiety",
"title": "Anxiety, the gap between reality and expectations",
"description": "Anxiety is the difference between reality and expectations. It is the pain, while stress is the suffering. The pain of anxiety is designed for threatening circumstance drawing your attention for a problem requiring urgent attention. This narrows your perspective allowing you to focus on a resolution. However, like many autonomous systems anxiety can be over triggered, and handled poorly without deliberate action.\n\n",
"file_path": "_site/anxiety.html",
"outgoing_links": [
"/anxiety-management",
"/be-proactive",
"/idle",
"/voices"
],
"incoming_links": [
"/affirmations",
"/anxiety-management",
"/depression",
"/fail",
"/gtd",
"/happy",
"/mental-pain",
"/operating-manual",
"/productive",
"/touching",
"/voices"
],
"redirect_url": "",
"markdown_path": "_d/anxiety.md",
"doc_size": 20000
},
"/anxiety-management": {
"url": "/anxiety-management",
"title": "Anxiety Management",
"description": "When your emotions aren’t serving you well, it’s helpful to have a solid protocol. First you need to rebuild perspective, and then you need to focus on maximizing your influence.\n\n",
"file_path": "_site/anxiety-management.html",
"outgoing_links": [
"/addiction",
"/anxiety",
"/frog",
"/mental-pain",
"/siy"
],
"incoming_links": [
"/anxiety",
"/fail"
],
"redirect_url": "",
"markdown_path": "_d/anxiety_management.md",
"doc_size": 18000
},
"/appreciate": {
"url": "/appreciate",
"title": "Appreciate",
"description": "Think of the last time you were appreciated: How did you feel? Think about the last hour: How many things could you have appreciated? It takes 7 positive experiences to make up for 1 negative experience - what can you appreciate?\n\n",
"file_path": "_site/appreciate.html",
"outgoing_links": [
"/grateful"
],
"incoming_links": [
"/affirmations",
"/class-act"
],
"redirect_url": "",
"markdown_path": "_d/appreciate2.md",
"doc_size": 11000
},
"/ar": {
"url": "/ar",
"title": "Augmented Reality",
"description": "My notes on AR\n\n",
"file_path": "_site/ar.html",
"outgoing_links": [],
"incoming_links": [],
"redirect_url": "",
"markdown_path": "_d/ar.md",
"doc_size": 16000
},
"/asciinema": {
"url": "/asciinema",
"title": "asciinema",
"description": "Lets clean this up and see what it looks like …\n\n",
"file_path": "_site/asciinema.html",
"outgoing_links": [],
"incoming_links": [],
"redirect_url": "",
"markdown_path": "_td/asciinema.md",
"doc_size": 10000
},
"/ast-grep": {
"url": "/ast-grep",
"title": "AST Grep",
"description": "Sometimes you need to search/replace but on code, so let’s use ASTs for that. The tool is called ast-grep (which you invoke with sg).\n\n",
"file_path": "_site/ast-grep.html",
"outgoing_links": [],
"incoming_links": [],
"redirect_url": "",
"markdown_path": "_td/ast-grep.md",
"doc_size": 14000
},
"/balance": {
"url": "/balance",
"title": "Balance - The Holy Grail",
"description": "I’m good at a lot of things, but balance is really hard for me. Hard for everyone I bet. I think this would be an area that can really benefit from mortality software. Todo, decide if this post should fork into energy and balance\n\n",
"file_path": "_site/balance.html",
"outgoing_links": [
"/7-habits",
"/activation",
"/energy",
"/essentialism",
"/eulogy",
"/moments",
"/mortality-software",
"/parkinson",
"/productive",
"/sustainable-work",
"/timeoff",
"/weeks"
],
"incoming_links": [
"/7-habits",
"/7h-concepts",
"/d/time-off-2021-12",
"/productive"
],
"redirect_url": "",
"markdown_path": "_d/balance2.md",
"doc_size": 19000
},
"/balloon": {
"url": "/balloon",
"title": "Being a Ballooner",
"description": "Want to plaster a huge smile on someone’s face with 10 cents of material and 20 seconds of work? Make them a balloon! In 2022, I discovered ballooning, and have used it in my joy-delivering arsenal ever since.\n\n",
"file_path": "_site/balloon.html",
"outgoing_links": [
"/joy"
],
"incoming_links": [
"/eulogy",
"/joy",
"/timeoff"
],
"redirect_url": "",
"markdown_path": "_d/balloon.md",
"doc_size": 18000
},
"/be-proactive": {
"url": "/be-proactive",
"title": "Be Proactive",
"description": "I choose ‘.’ I am responsible for my own life ‘.’ My behavior is a function of my decisions, not my conditions ‘.’ I can subordinate feelings to values ‘.’ I have the initiative and the responsibility to make things happen. These are my insights from 7 habits Chapter 1.\n\n",
"file_path": "_site/be-proactive.html",
"outgoing_links": [
"/7-habits",
"/essentialism",
"/frog",
"/siy"
],
"incoming_links": [
"/7-habits",
"/affirmations",
"/anxiety",
"/d/habits",
"/emotions",
"/frog",
"/idle",
"/process-journal",
"/regrets",
"/siy"
],
"redirect_url": "",
"markdown_path": "_d/7h-c1.md",
"doc_size": 15000
},
"/being-a-great-manager": {
"url": "/being-a-great-manager",
"title": "Being the best manager I can be",
"description": "I aspire to be the best manager I can be. I’ll often fall short of my goal, but through continuous practice I will get closer. This post will gather my research on being a great manager, enumerate some of my learnings, and inspire me to be my best. Few things make me prouder then this public feedback on LinkedIn from people who worked with me over several years. I’m also writing a manager guidebook, which goes into much more depth on management.\n\n",
"file_path": "_site/being-a-great-manager.html",
"outgoing_links": [
"/all",
"/coaching",
"/curious",
"/decisive",
"/human-meetings",
"/manager-book",
"/mind-monsters",
"/moments-at-work",
"/pride",
"/static/igor-feedback-LinkedIn.pdf",
"/sustainable-work"
],
"incoming_links": [
"/bmy",
"/eulogy",
"/job",
"/manager-book"
],
"redirect_url": "",
"markdown_path": "_posts/2018-03-18-being-a-great-manager.md",
"doc_size": 19000
},
"/bike": {
"url": "/bike",
"title": "Biking",
"description": "Biking, is something that make my very happy. I have multiple bikes, here are my notes.\n\n",
"file_path": "_site/bike.html",
"outgoing_links": [
"/brompton-toys",
"/warm"
],
"incoming_links": [
"/eulogy",
"/irl",
"/operating-manual"
],
"redirect_url": "",
"markdown_path": "_posts/2017-03-01-bike.md",
"doc_size": 19000
},
"/blueprint": {
"url": "/blueprint",
"title": "Bryan Johnson - A 50 year old 18 year old",
"description": "So there’s this guy who measures his nightly erections, doesn’t go out into the sun, and strives to delegate all his decision making to an algorithm called blue print. Certainly a nut job, but a nut job who has explored many of the thoughts I’m very interested in. Depression, purpose, sleep, exercise. Here are my notes.\n\n",
"file_path": "_site/blueprint.html",
"outgoing_links": [
"/ig66/663",
"/voices"
],
"incoming_links": [
"/activation",
"/d/time-off-2024-02",
"/operating-manual",
"/sleep"
],
"redirect_url": "",
"markdown_path": "_d/blueprint.md",
"doc_size": 13000
},
"/bmy": {
"url": "/bmy",
"title": "Business Model You",
"description": "The business model canvas is a tool for understanding how a company makes money. This same model can be applied to a person’s career. While job hunting this was helpful figuring out my dream job. I suppose it should also prioritize my work energy, and probably how to prioritize my life energy. But that’s to come.\n\n",
"file_path": "_site/bmy.html",
"outgoing_links": [
"/being-a-great-manager",
"/eulogy",
"/job",
"/job-hunt-stress"
],
"incoming_links": [
"/job-hunt-stress"
],
"redirect_url": "",
"markdown_path": "_d/bmu.md",
"doc_size": 19000
},
"/books-that-defined-me": {
"url": "/books-that-defined-me",
"title": "Books that defined me",
"description": "Books allow great thoughts to enter our mind and mold us into who we want to become. These are the books that are molding me.\n\n",
"file_path": "_site/books-that-defined-me.html",
"outgoing_links": [
"/7-habits",
"/d/resistance",
"/essentialism",
"/getting-to-yes-with-yourself",
"/gtd",
"/humans-are-underrated",
"/siy"
],
"incoming_links": [],
"redirect_url": "",
"markdown_path": "_posts/2015-11-02-books-that-defined-me.md",
"doc_size": 14000
},
"/breath": {
"url": "/breath",
"title": "Breathing as if your life depends on it",
"description": "Breathing, an act so simple yet so crucial, harbors the potential to transform our health, mind, and life. This blog post is a deep dive into the world of breathing techniques, exploring a range of practices from Box Breathing and Victory Breath to Sitali Breath and the Breath Focus Technique. Each technique is detailed with its benefits and step-by-step instructions. In addition, the scientific perspective on breathing is explored. Whether you’re seeking to reduce stress, improve focus, or simply understand the science of breathing, this post is your comprehensive guide. Join us as we explore the art of breathing, its techniques, and the science behind it.\n\n",
"file_path": "_site/breath.html",
"outgoing_links": [],
"incoming_links": [],
"redirect_url": "",
"markdown_path": "_d/breath.md",
"doc_size": 19000
},
"/brompton-toys": {
"url": "/brompton-toys",
"title": "My Brompton and its accoutrements",
"description": "I LOVE my Brompton, and have spent much time researching accessories for it. Here are the accoutraments I’ve bought for my Brompton, and hopefully it’ll save other Brompton owners time, and/or make them aware of accessories they don’t known about.\n\n",
"file_path": "_site/brompton-toys.html",
"outgoing_links": [],
"incoming_links": [
"/bike"
],
"redirect_url": "",
"markdown_path": "_posts/2016-4-9-brompton-toys.md",
"doc_size": 13000
},
"/brython": {
"url": "/brython",
"title": "A playground for brython and pystory",
"description": "This page is built with brython, a python running in browser via WASM. This is my playground to try interesting things with brython.\n\n",
"file_path": "_site/brython.html",
"outgoing_links": [],
"incoming_links": [
"/d/time-off-2021-11"
],
"redirect_url": "",
"markdown_path": "_d/brython_.md",
"doc_size": 12000
},
"/build-bubble-bike": {
"url": "/build-bubble-bike",
"title": "Building a bubble bike",
"description": "What the heck is a bubble bike? Ah, you see, bringing joy for others is my thing. As they say in Buddhism there are many vehicles to bring joy, and my vehicle is the bubble bike.\n\n",
"file_path": "_site/build-bubble-bike.html",
"outgoing_links": [
"/joy"
],
"incoming_links": [
"/joy"
],
"redirect_url": "",
"markdown_path": "_d/build-bubble-bike.md",
"doc_size": 12000
},
"/cache": {
"url": "/cache",
"title": "Shipping incubations: Cache",
"description": "Internal incubations are fun, but I love shipping products. In the case of Microsoft Cache, before I joined, the team had been incubating OneClip, and needed help bringing it to market. My self and a top tier product manager joined the team to help them ship. We immediately got to work, recruiting senior talent, and closing the gaps. We tackled the technical, product market fit, and logistical issues required to bring the product to market.\n\n",
"file_path": "_site/cache.html",
"outgoing_links": [],
"incoming_links": [
"/eulogy",
"/job"
],