-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmadhadron_29_08_2020.json
2131 lines (2131 loc) · 74.1 KB
/
madhadron_29_08_2020.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
{
"guild": {
"id": "244230771232079873",
"name": "The Programmer\u0027s Hangout",
"iconUrl": "https://cdn.discordapp.com/icons/244230771232079873/a_34da0ee46c9ed9799a636a976c896361.png"
},
"channel": {
"id": "749431771468136499",
"type": "GuildTextChat",
"name": "madhadron",
"topic": null
},
"dateRange": {
"after": null,
"before": null
},
"messages": [
{
"id": "749433598607884298",
"type": "Default",
"timestamp": "2020-08-30T02:01:33.711+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering Elliott\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** If you could go back in time give young Madhadron a single piece of career advice, what would it be?",
"footer": {
"text": "Asked by Elliott",
"iconUrl": "https://cdn.discordapp.com/avatars/335628039302021121/a_30232e21b6efa0e86b0b107b56f0af71.gif"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 2
}
]
},
{
"id": "749433599303876619",
"type": "Default",
"timestamp": "2020-08-30T02:01:33.877+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** Be kinder.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2764\uFE0F",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2764.png"
},
"count": 16
},
{
"emoji": {
"id": "408280788749254658",
"name": "GWjiangLoveHeart",
"isAnimated": false,
"imageUrl": "https://cdn.discordapp.com/emojis/408280788749254658.png"
},
"count": 9
}
]
},
{
"id": "749433776668672120",
"type": "Default",
"timestamp": "2020-08-30T02:02:16.164+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** I was a pretty harsh human being for many years, to the point were coworkers didn\u0027t want to give talks in front of me.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749433820532572290",
"type": "Default",
"timestamp": "2020-08-30T02:02:26.622+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** I uttered the phrase \u0022I\u0027m not paid to be nice, I\u0027m paid to be right\u0022 too many times.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749434001307205735",
"type": "Default",
"timestamp": "2020-08-30T02:03:09.722+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** But there was no reason for it in most cases. Everything I was aiming for could have been accomplished more easily and more permanently with kindness.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749434426353778840",
"type": "Default",
"timestamp": "2020-08-30T02:04:51.061+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering beerpsi\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** What is the biggest change of mind you have ever got?",
"footer": {
"text": "Asked by beerpsi",
"iconUrl": "https://cdn.discordapp.com/avatars/249377596691709954/a_335b1c721b916e6466aa478f53529899.gif"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 2
}
]
},
{
"id": "749434427175862422",
"type": "Default",
"timestamp": "2020-08-30T02:04:51.257+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** When I started university (in physics), I was focused on \u0022how do I derive this from first principles?\u0022 It took a lot of years of study before I realized that was really backwards. The experiments are the fundamental thing. The mathematical structures are summaries of those, images cast in the mirror.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749434711243489320",
"type": "Default",
"timestamp": "2020-08-30T02:05:58.984+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** So when I was asking how to derive this from first principles, looking for axioms, it was the wrong question. The right one was what is the collection of experimental data this is summarizing and what idealizations have we made to get our mathematical shadow of it.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749434875010089031",
"type": "Default",
"timestamp": "2020-08-30T02:06:38.029+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering speckledlemon\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** Why did you decide to leave science and go into pure software development?",
"footer": {
"text": "Asked by speckledlemon",
"iconUrl": "https://cdn.discordapp.com/avatars/392135911649050625/be5ed6d9931ad240a75d0128a029c2ba.png"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 2
}
]
},
{
"id": "749434875597291601",
"type": "Default",
"timestamp": "2020-08-30T02:06:38.169+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** Ah, this one. So I actually started out in software before university, and then went into physics. I spent a decade training to be a scientist.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749434945130463253",
"type": "Default",
"timestamp": "2020-08-30T02:06:54.747+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** It took me that long to realize that I am, by temperment, an engineer, not a scientist.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749435065955516477",
"type": "Default",
"timestamp": "2020-08-30T02:07:23.554+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** When I\u0027ve cobbled an experiment together to get a result, my first thought isn\u0027t, \u0022Right, next experiment.\u0022 It\u0027s \u0022how do I make this repeatable at the press of the button for the next hundred people?\u0022",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": [
{
"emoji": {
"id": "720059778495414322",
"name": "p_cool",
"isAnimated": false,
"imageUrl": "https://cdn.discordapp.com/emojis/720059778495414322.png"
},
"count": 2
}
]
},
{
"id": "749435164232253450",
"type": "Default",
"timestamp": "2020-08-30T02:07:46.985+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** This is great if you\u0027re a software engineer, not so good if you\u0027re a scientist.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749435468390727700",
"type": "Default",
"timestamp": "2020-08-30T02:08:59.502+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering Clue\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** You mention that coaching was an enormous help to you. How do you tell a good coach from a bad coach, specifically in computer science?",
"footer": {
"text": "Asked by Clue",
"iconUrl": "https://cdn.discordapp.com/avatars/458005360939368468/2859fd8794730b075563194cf4abce71.png"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 3
}
]
},
{
"id": "749435468587728969",
"type": "Default",
"timestamp": "2020-08-30T02:08:59.549+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** Oh, this is a good one. Umm...so the three people I directly dealt with that coached or mentored me in CS in my teens were my old boss (now deceased), a professional software engineer who specialized in enterprise IT systems on Windows and a grad student in programming languages.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749435513030574172",
"type": "Default",
"timestamp": "2020-08-30T02:09:10.145+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** The latter two were folks I knew from my IRC Dungeons \u0026 Dragons groups.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749435551660113980",
"type": "Default",
"timestamp": "2020-08-30T02:09:19.355+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** I\u0027ve never met them in person, never knew their real names.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749435883140284486",
"type": "Default",
"timestamp": "2020-08-30T02:10:38.386+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** I would say that a good coach is one that points you in directions that change your thinking in ways that make you nontrivially more powerful, that makes you feel excited about the subject, and that can concisely orient you in the landscape that you\u0027re groping around.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749436086345924660",
"type": "Default",
"timestamp": "2020-08-30T02:11:26.834+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** It needn\u0027t be purely technical things. I have had young engineers claim that a simple explanation about incentives and company politics changed their lives, or explaining cash flow and businesses. But models that le them interpret previously vague or invisible parts of their world.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749436401501864008",
"type": "Default",
"timestamp": "2020-08-30T02:12:41.973+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering EELI\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** Were there any books / resources that you would consider particularly important in your development as a programmer?",
"footer": {
"text": "Asked by EELI",
"iconUrl": "https://cdn.discordapp.com/avatars/109822462455246848/242e3188b3079146e1ed89836541ecc7.png"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 3
}
]
},
{
"id": "749436402395119708",
"type": "Default",
"timestamp": "2020-08-30T02:12:42.186+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** Lots and lots. I spent a lot of time with both Alan Kay and EW Dijkstra\u0027s works. They\u0027re diametric opposites, but there\u0027s a character to their thinking (Kay called it \u0022playing it grand\u0022) that both share, and working through the mental dissonance of these two utterly different approaches was revealing.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749436531776946216",
"type": "Default",
"timestamp": "2020-08-30T02:13:13.033+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** In terms of books, I would say Leo Brodie\u0027s Starting Forth and Thinking Forth and Ullman\u0027s Elements of Standard ML were the most influential books that I remember.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749436729995558923",
"type": "Default",
"timestamp": "2020-08-30T02:14:00.292+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** I also spent a lot of time looking into the history of the field, reading accounts from people who designed or worked on Burroughs machines or NeWS at Sun or lots of other stuff. That kind of oral history contains most of the \u0022why\u0022 of our field, and I think it\u0027s vastly underappreciated.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749437087811371049",
"type": "Default",
"timestamp": "2020-08-30T02:15:25.602+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering trout \uD83D\uDC1F\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** When you took a dive into the world of cosmosdb, did you have any existing specialties in databases or did you get deeper into that kind of knowledge \u201Con the job\u201D?",
"footer": {
"text": "Asked by trout \uD83D\uDC1F",
"iconUrl": "https://cdn.discordapp.com/avatars/369748885968781313/009ae1713a25dea8eaaf13657b91341f.png"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 3
}
]
},
{
"id": "749437088742768710",
"type": "Default",
"timestamp": "2020-08-30T02:15:25.824+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** Ha! I went from being the owner of Facebook\u0027s main ads database to CosmosDB. I had written Facebook\u0027s large scale systems class for new hires and was regarded as part of the MySQL core team in all but official org chart. So, yes, databases were a thing for me.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": [
{
"emoji": {
"id": "639507969498677258",
"name": "PogU",
"isAnimated": false,
"imageUrl": "https://cdn.discordapp.com/emojis/639507969498677258.png"
},
"count": 15
}
]
},
{
"id": "749437347665543209",
"type": "Default",
"timestamp": "2020-08-30T02:16:27.556+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** Databases are one of those things that I\u0027ve been doing in some form since the 1990\u0027s, so I was quite proximate when that\u0027s what needed diving into and I became a specialist.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749437578910105622",
"type": "Default",
"timestamp": "2020-08-30T02:17:22.689+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** Now, I don\u0027t know any of these databases the way that some of Facebook\u0027s guys knew MySQL. They were amazing, could tell you every lock taken in the code and diagnose things that were like black magic even to me.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": [
{
"emoji": {
"id": "402867838580293643",
"name": "GWseremePeepoThink",
"isAnimated": false,
"imageUrl": "https://cdn.discordapp.com/emojis/402867838580293643.png"
},
"count": 6
}
]
},
{
"id": "749437837220511795",
"type": "Default",
"timestamp": "2020-08-30T02:18:24.275+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering Dioxin\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** Other than Discord, what are some mediums you use for teaching programming? (for example: Stack Exchange, HackHands, etc..)",
"footer": {
"text": "Asked by Dioxin",
"iconUrl": "https://cdn.discordapp.com/embed/avatars/3.png"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 2
}
]
},
{
"id": "749437838277214303",
"type": "Default",
"timestamp": "2020-08-30T02:18:24.527+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** Aside from being everyone\u0027s crazy uncle on Discord, I mostly teach one on one. Right now I\u0027m using USE Engine and VSCode to teach a friend\u0027s daughter. Otherwise it tends to be in person. If it weren\u0027t for covid, I\u0027d be teaching my current student in person, too.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749437912155684914",
"type": "Default",
"timestamp": "2020-08-30T02:18:42.141+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** I write for my website a lot. I guess that\u0027s the other major medium.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749438318248460338",
"type": "Default",
"timestamp": "2020-08-30T02:20:18.961+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering Kemikals\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** I also received a lot of invaluable coaching via IRC in the 90\u0027s and early 2000\u0027s, do you feel that discord or other chat mediums provide in the same way that IRC used to?",
"footer": {
"text": "Asked by Kemikals",
"iconUrl": "https://cdn.discordapp.com/avatars/255737305891864577/7cc25dd28802e51b7f3edc021e243642.png"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 2
}
]
},
{
"id": "749438318810497065",
"type": "Default",
"timestamp": "2020-08-30T02:20:19.095+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** I have found that the medium is less important than the individual cultures and milieus within the medium. There are Discords that are dead or are horrible. There are super functional ones, such as TPH and a wonderful writer\u0027s chat I know. The same was true for IRC. My IRC life centered around a very functional, close knit #adnd on Dalnet back in the day (long gone now).",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749438377589342310",
"type": "Default",
"timestamp": "2020-08-30T02:20:33.109+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** I\u0027ve also found incredibly functional cultures on email lists, and completely broken ones.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749438540596641892",
"type": "Default",
"timestamp": "2020-08-30T02:21:11.973+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** The biggest thing is having a critical mass of core people who share expectations about how things operate and ops/admins who can enforce those.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749439068911304775",
"type": "Default",
"timestamp": "2020-08-30T02:23:17.933+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering haekuh\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** with all your experience in various languages, and architecture, how do you feel about rust? Do you think it will take over from Java/C\u002B\u002B(eventually)?",
"footer": {
"text": "Asked by haekuh",
"iconUrl": "https://cdn.discordapp.com/avatars/137996034616983552/6d647243d03e0387c0b8715612b1ef38.png"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 2
}
]
},
{
"id": "749439069175414885",
"type": "Default",
"timestamp": "2020-08-30T02:23:17.996+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** I truly don\u0027t know. If it gets traction as a major language inside somewhere like Facebook, perhaps it could. I have observed that programming languages tend to prosper or disappear for reasons that are largely incidental to their design.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": []
},
{
"id": "749439489364983908",
"type": "Default",
"timestamp": "2020-08-30T02:24:58.177+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [
{
"title": "madhadron is answering travisk_says\u0027s Question:",
"url": null,
"timestamp": null,
"description": "**Question:** What formulation (i.e. interpretation) of quantum mechanics has your highest baysian prior (i.e. most likely correct)?",
"footer": {
"text": "Asked by travisk_says",
"iconUrl": "https://cdn.discordapp.com/avatars/656948986867089423/a_36d27a86c01991d00cddbd7a813afce9.gif"
},
"fields": []
}
],
"reactions": [
{
"emoji": {
"id": null,
"name": "\u2B50",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/2b50.png"
},
"count": 3
}
]
},
{
"id": "749439490283536544",
"type": "Default",
"timestamp": "2020-08-30T02:24:58.396+01:00",
"timestampEdited": null,
"isPinned": false,
"content": "**madhadron:** Well, I\u0027m convinced that it is nonlocal and quantum states are ontic. I have yet to find a collapse scheme that has seemed like an utter hack. So I seem to be falling back to Everettian more and more just because nothing in it bothers me.",
"author": {
"id": "429275180309807134",
"name": "Nano",
"discriminator": "8992",
"isBot": true,
"avatarUrl": "https://cdn.discordapp.com/avatars/429275180309807134/dcff1a4bd27c602e1598b6a161ff564f.png"
},
"attachments": [],
"embeds": [],
"reactions": [
{
"emoji": {
"id": null,
"name": "\uD83D\uDC4C",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/1f44c.png"
},
"count": 3
},
{
"emoji": {
"id": null,
"name": "\uD83D\uDCAF",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/1f4af.png"
},
"count": 3
},
{
"emoji": {
"id": null,
"name": "\uD83C\uDF0D",
"isAnimated": false,
"imageUrl": "https://twemoji.maxcdn.com/2/72x72/1f30d.png"
},
"count": 3
},
{
"emoji": {
"id": null,
"name": "\uD83C\uDF0E",