-
Notifications
You must be signed in to change notification settings - Fork 0
/
Interesting_articles.html
1365 lines (1363 loc) · 79.1 KB
/
Interesting_articles.html
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
<!DOCTYPE html>
<html>
<head>
<meta name="generator" content="HTML Tidy for HTML5 for Linux version 5.6.0">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Interesting articles</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="alternate" type="application/atom+xml" href="https://blog.rfox.eu/atom.xml">
<link rel="shortcut icon" href="/favicon.ico">
<meta name="twitter:card" content="summary">
<meta name="twitter:site" content="@Bystroushaak">
<meta name="twitter:title" content="Interesting articles">
<script src="scripts.js"></script><!-- Global site tag (gtag.js) - Google Analytics -->
<script src="https://www.googletagmanager.com/gtag/js?id=UA-142545439-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-142545439-1');
</script>
</head>
<body onload="on_body_load();">
<div id="sidebar_top">
<div>
<a href="https://blog.rfox.eu/atom.xml"><img src="rss_icon.png" style="width: 3em;"></a> <a href="https://twitter.com/Bystroushaak"><img src="twitter_icon.png" style="width: 3em;"></a> <a href="https://www.patreon.com/bePatron?u=2618881"><img src="patreon.png" style="width: 3em;"></a>
</div>
<h3>New posts</h3>
<div id="last_five_top">
<ul>
<li>
<a href="en/3D_printing/Prusa_MK4_upgrade.html" title="Prusa MK4 upgrade">Prusa MK4 upgrade</a>
</li>
<li>
<a href="en/Concepts/HobbyCell.html" title="HobbyCell">HobbyCell</a>
</li>
<li>
<a href="en/Concepts/CaptchaCoin.html" title="CaptchaCoin">CaptchaCoin</a>
</li>
<li>
<a href="en/Hardware/SolarPi_experiment_2_Finally_something_that_works.html" title="SolarPi experiment 2: Finally something that works">SolarPi experiment 2: Finally something that works</a>
</li>
<li>
<a href="en/Programming/How_to_run_your_own_LLM_GPT.html" title="How to run your own LLM (GPT)">How to run your own LLM (GPT)</a>
</li>
<li>
<a href="en/Hardware/SolarPi_experiment_1_The_PiJuice_Fiasco.html" title="SolarPi experiment 1: The PiJuice Fiasco">SolarPi experiment 1: The PiJuice Fiasco</a>
</li>
<li>
<a href="en/Programming/objWiki/Inspiration_for_objWiki.html" title="Inspiration for objWiki">Inspiration for objWiki</a>
</li>
<li>
<a href="Paperclips/Control_panels_-_alt_interface.html" title="Control panels / alt interface">Control panels / alt interface</a>
</li>
<li>
<a href="en/Stories/War_stories_Romanian_Infocenter_aka_the_pontaj_story.html" title="War stories: Romanian Infocenter aka the pontaj story">War stories: Romanian Infocenter aka the pontaj story</a>
</li>
<li>
<a href="en/Technological_marvels/SLAM.html" title="SLAM">SLAM</a>
</li>
</ul>
</div>& <a href="Changelog.html" title="Changelog">more</a>
<div>
<h3>Blog categories</h3>
<ul class="no_icon">
<li>
<a href="en/3D_modeling.html" title="3D modeling">📂 3D modeling</a>
</li>
<li>
<a href="en/3D_printing.html" title="3D printing">📂 3D printing</a>
</li>
<li>
<a href="en/About_this_blog.html" title="About this blog">📂 About this blog</a>
</li>
<li>
<a href="en/Books.html" title="Books">📂 Books</a>
</li>
<li>
<a href="en/Concepts.html" title="Concepts">📂 Concepts</a>
</li>
<li>
<a href="en/Explorations.html" title="Explorations">📂 Explorations</a>
</li>
<li>
<a href="en/Hardware.html" title="Hardware">📂 Hardware</a>
</li>
<li>
<a href="en/Improvements.html" title="Improvements">📂 Improvements</a>
</li>
<li>
<a href="en/Organization_of_information.html" title="Organization of information">📂 Organization of information</a>
</li>
<li>
<a href="en/Philosophy.html" title="Philosophy">📂 Philosophy</a>
</li>
<li>
<a href="en/Programming.html" title="Programming">📂 Programming</a>
</li>
<li>
<a href="en/Stories.html" title="Stories">📂 Stories</a>
</li>
<li>
<a href="en/Technological_marvels.html" title="Technological marvels">📂 Technological marvels</a>
</li>
<li>
<a href="en/Weekly_updates.html" title="Weekly updates">📂 Weekly updates</a>
</li>
<li>
<a href="en/index.html" title="English section">📂 English section</a>
</li>
</ul>
</div>
</div><a href="index.html" class="breadcrumb" title="Bystroushaak's blog">Bystroushaak's blog</a> / Interesting articles
<article id="be042a5d-5a88-4317-94c8-cd55a5031e1d" class="page sans">
<header>
<div class="page-header-icon undefined">
<span class="icon">📄</span>
</div>
<h1 class="page-title">Interesting articles</h1>
<p class="page-description"></p>
</header>
<div class="page-body">
<table class="collection-content">
<thead>
<tr>
<th><span class="icon property-icon"><svg role="graphics-symbol" viewbox="0 0 16 16" style="width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.45);flex-shrink:0" class="typesDate">
<path d="M3.29688 14.4561H12.7031C14.1797 14.4561 14.9453 13.6904 14.9453 12.2344V3.91504C14.9453 2.45215 14.1797 1.69336 12.7031 1.69336H3.29688C1.82031 1.69336 1.05469 2.45215 1.05469 3.91504V12.2344C1.05469 13.6973 1.82031 14.4561 3.29688 14.4561ZM3.27637 13.1162C2.70898 13.1162 2.39453 12.8154 2.39453 12.2207V5.9043C2.39453 5.30273 2.70898 5.00879 3.27637 5.00879H12.71C13.2842 5.00879 13.6055 5.30273 13.6055 5.9043V12.2207C13.6055 12.8154 13.2842 13.1162 12.71 13.1162H3.27637ZM6.68066 7.38086H7.08398C7.33008 7.38086 7.41211 7.30566 7.41211 7.05957V6.66309C7.41211 6.41699 7.33008 6.3418 7.08398 6.3418H6.68066C6.44141 6.3418 6.35938 6.41699 6.35938 6.66309V7.05957C6.35938 7.30566 6.44141 7.38086 6.68066 7.38086ZM8.92285 7.38086H9.31934C9.56543 7.38086 9.64746 7.30566 9.64746 7.05957V6.66309C9.64746 6.41699 9.56543 6.3418 9.31934 6.3418H8.92285C8.67676 6.3418 8.59473 6.41699 8.59473 6.66309V7.05957C8.59473 7.30566 8.67676 7.38086 8.92285 7.38086ZM11.1582 7.38086H11.5547C11.8008 7.38086 11.8828 7.30566 11.8828 7.05957V6.66309C11.8828 6.41699 11.8008 6.3418 11.5547 6.3418H11.1582C10.9121 6.3418 10.8301 6.41699 10.8301 6.66309V7.05957C10.8301 7.30566 10.9121 7.38086 11.1582 7.38086ZM4.44531 9.58203H4.84863C5.09473 9.58203 5.17676 9.50684 5.17676 9.26074V8.86426C5.17676 8.61816 5.09473 8.54297 4.84863 8.54297H4.44531C4.20605 8.54297 4.12402 8.61816 4.12402 8.86426V9.26074C4.12402 9.50684 4.20605 9.58203 4.44531 9.58203ZM6.68066 9.58203H7.08398C7.33008 9.58203 7.41211 9.50684 7.41211 9.26074V8.86426C7.41211 8.61816 7.33008 8.54297 7.08398 8.54297H6.68066C6.44141 8.54297 6.35938 8.61816 6.35938 8.86426V9.26074C6.35938 9.50684 6.44141 9.58203 6.68066 9.58203ZM8.92285 9.58203H9.31934C9.56543 9.58203 9.64746 9.50684 9.64746 9.26074V8.86426C9.64746 8.61816 9.56543 8.54297 9.31934 8.54297H8.92285C8.67676 8.54297 8.59473 8.61816 8.59473 8.86426V9.26074C8.59473 9.50684 8.67676 9.58203 8.92285 9.58203ZM11.1582 9.58203H11.5547C11.8008 9.58203 11.8828 9.50684 11.8828 9.26074V8.86426C11.8828 8.61816 11.8008 8.54297 11.5547 8.54297H11.1582C10.9121 8.54297 10.8301 8.61816 10.8301 8.86426V9.26074C10.8301 9.50684 10.9121 9.58203 11.1582 9.58203ZM4.44531 11.7832H4.84863C5.09473 11.7832 5.17676 11.708 5.17676 11.4619V11.0654C5.17676 10.8193 5.09473 10.7441 4.84863 10.7441H4.44531C4.20605 10.7441 4.12402 10.8193 4.12402 11.0654V11.4619C4.12402 11.708 4.20605 11.7832 4.44531 11.7832ZM6.68066 11.7832H7.08398C7.33008 11.7832 7.41211 11.708 7.41211 11.4619V11.0654C7.41211 10.8193 7.33008 10.7441 7.08398 10.7441H6.68066C6.44141 10.7441 6.35938 10.8193 6.35938 11.0654V11.4619C6.35938 11.708 6.44141 11.7832 6.68066 11.7832ZM8.92285 11.7832H9.31934C9.56543 11.7832 9.64746 11.708 9.64746 11.4619V11.0654C9.64746 10.8193 9.56543 10.7441 9.31934 10.7441H8.92285C8.67676 10.7441 8.59473 10.8193 8.59473 11.0654V11.4619C8.59473 11.708 8.67676 11.7832 8.92285 11.7832Z"></path></svg></span>date</th>
<th><span class="icon property-icon"><svg role="graphics-symbol" viewbox="0 0 16 16" style="width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.45);flex-shrink:0" class="typesTitle">
<path d="M0.637695 13.1914C1.0957 13.1914 1.32812 13 1.47852 12.5215L2.24414 10.3887H6.14746L6.90625 12.5215C7.05664 13 7.2959 13.1914 7.74707 13.1914C8.22559 13.1914 8.5332 12.9043 8.5332 12.4531C8.5332 12.2891 8.50586 12.1523 8.44434 11.9678L5.41602 3.79199C5.2041 3.21777 4.82129 2.9375 4.19922 2.9375C3.60449 2.9375 3.21484 3.21777 3.0166 3.78516L-0.0322266 12.002C-0.09375 12.1797 -0.121094 12.3232 -0.121094 12.4668C-0.121094 12.918 0.166016 13.1914 0.637695 13.1914ZM2.63379 9.12402L4.17871 4.68066H4.21973L5.76465 9.12402H2.63379ZM12.2793 13.2324C13.3115 13.2324 14.2891 12.6787 14.7129 11.8037H14.7402V12.5762C14.7471 12.9863 15.0273 13.2393 15.4238 13.2393C15.834 13.2393 16.1143 12.9795 16.1143 12.5215V8.00977C16.1143 6.49902 14.9658 5.52148 13.1543 5.52148C11.7666 5.52148 10.6592 6.08887 10.2695 6.99121C10.1943 7.15527 10.1533 7.3125 10.1533 7.46289C10.1533 7.81152 10.4062 8.04395 10.7686 8.04395C11.0215 8.04395 11.2129 7.94824 11.3496 7.73633C11.7529 6.99121 12.2861 6.65625 13.1064 6.65625C14.0977 6.65625 14.6992 7.20996 14.6992 8.1123V8.67285L12.5664 8.7959C10.7686 8.8916 9.77734 9.69824 9.77734 11.0107C9.77734 12.3369 10.8096 13.2324 12.2793 13.2324ZM12.6621 12.1387C11.8008 12.1387 11.2129 11.667 11.2129 10.9561C11.2129 10.2725 11.7598 9.82129 12.7578 9.75977L14.6992 9.62988V10.3203C14.6992 11.3457 13.7969 12.1387 12.6621 12.1387Z"></path></svg></span>link</th>
<th><span class="icon property-icon"><svg role="graphics-symbol" viewbox="0 0 16 16" style="width:14px;height:14px;display:block;fill:rgba(55, 53, 47, 0.45);flex-shrink:0" class="typesText">
<path d="M1.56738 3.25879H14.4258C14.7676 3.25879 15.0479 2.97852 15.0479 2.63672C15.0479 2.29492 14.7744 2.02148 14.4258 2.02148H1.56738C1.21875 2.02148 0.952148 2.29492 0.952148 2.63672C0.952148 2.97852 1.22559 3.25879 1.56738 3.25879ZM1.56738 6.84082H14.4258C14.7676 6.84082 15.0479 6.56055 15.0479 6.21875C15.0479 5.87695 14.7744 5.60352 14.4258 5.60352H1.56738C1.21875 5.60352 0.952148 5.87695 0.952148 6.21875C0.952148 6.56055 1.22559 6.84082 1.56738 6.84082ZM1.56738 10.4229H14.4258C14.7676 10.4229 15.0479 10.1426 15.0479 9.80078C15.0479 9.45898 14.7744 9.18555 14.4258 9.18555H1.56738C1.21875 9.18555 0.952148 9.45898 0.952148 9.80078C0.952148 10.1426 1.22559 10.4229 1.56738 10.4229ZM1.56738 14.0049H8.75879C9.10059 14.0049 9.38086 13.7246 9.38086 13.3828C9.38086 13.041 9.10742 12.7676 8.75879 12.7676H1.56738C1.21875 12.7676 0.952148 13.041 0.952148 13.3828C0.952148 13.7246 1.22559 14.0049 1.56738 14.0049Z"></path></svg></span>Description</th>
</tr>
</thead>
<tbody>
<tr id="008047f9-881d-4d21-a69d-c81b47f230f9">
<td class="cell-;i:+"><time>@2019/04/18</time></td>
<td class="cell-title">
<a href="https://meaningness.com/geeks-mops-sociopaths">https://meaningness.com/geeks-mops-sociopaths</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="3e192fb0-4a6c-45a1-8bb1-f2650fb2c903">
<td class="cell-;i:+"><time>@2019/04/19</time></td>
<td class="cell-title">
<a href="http://web.archive.org/save/http://zvedavec.org/komentare/2019/04/7885-automaticka-kontrola-vozidel.htm">http://web.archive.org/save/http://zvedavec.org/komentare/2019/04/7885-automaticka-kontrola-vozidel.htm</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="756173da-d66f-4a3c-aef8-2994745e7804">
<td class="cell-;i:+"><time>@2019/04/19</time></td>
<td class="cell-title">
<a href="https://fs.blog/2018/10/long-game/">https://fs.blog/2018/10/long-game/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="d91ea7dc-fd0c-4f23-958a-d3b45767582b">
<td class="cell-;i:+"><time>@2019/04/19</time></td>
<td class="cell-title">
<a href="https://fs.blog/category/mental-models/">https://fs.blog/category/mental-models/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="7f8c175e-b548-4ab5-98cf-5e8eb18bf374">
<td class="cell-;i:+"><time>@2019/04/23</time></td>
<td class="cell-title">
<a href="https://edition.cnn.com/2019/04/19/asia/thai-sea-home-us-bitcoin-trader-scli-intl/index.html">https://edition.cnn.com/2019/04/19/asia/thai-sea-home-us-bitcoin-trader-scli-intl/index.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="65ec3ff9-c1fe-40a0-9b13-340350c4d725">
<td class="cell-;i:+"><time>@2019/05/06</time></td>
<td class="cell-title">
<a href="https://aiweirdness.com/post/172894792687/when-algorithms-surprise-us">https://aiweirdness.com/post/172894792687/when-algorithms-surprise-us</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="b61dcdf7-1217-464a-b2fb-75856e4fef18">
<td class="cell-;i:+"><time>@2019/05/06</time></td>
<td class="cell-title">
<a href="https://vorpus.org/blog/why-im-not-collaborating-with-kenneth-reitz/">https://vorpus.org/blog/why-im-not-collaborating-with-kenneth-reitz/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="ba7d7296-5343-44d6-9d25-2258ac090096">
<td class="cell-;i:+"><time>@2019/05/06</time></td>
<td class="cell-title">
<a href="https://medium.com/@marekkcichy/does-ai-have-a-dirty-mind-too-6948430e4b2b">https://medium.com/@marekkcichy/does-ai-have-a-dirty-mind-too-6948430e4b2b</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="e2a00728-d1b2-4833-bc15-efd815d620d4">
<td class="cell-;i:+"><time>@2019/05/06</time></td>
<td class="cell-title">
<a href="https://lobste.rs/s/cggv9e/cidco_mailstation_as_z80_development">https://lobste.rs/s/cggv9e/cidco_mailstation_as_z80_development</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="04647ce1-0e0e-4dfa-8d57-8e9936dcfaff">
<td class="cell-;i:+"><time>@2019/05/10</time></td>
<td class="cell-title">
<a href="https://blog.stephenwolfram.com/2019/05/what-weve-built-is-a-computational-language-and-thats-very-important/">https://blog.stephenwolfram.com/2019/05/what-weve-built-is-a-computational-language-and-thats-very-important/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="be6103b7-90ac-41e2-b39d-50b490d20570">
<td class="cell-;i:+"><time>@2019/05/12</time></td>
<td class="cell-title">
<a href="http://amontalenti.com/2014/11/02/clojonic/">http://amontalenti.com/2014/11/02/clojonic/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="442c5f84-828a-4aae-acd9-d0f35bf46d59">
<td class="cell-;i:+"><time>@2019/05/13</time></td>
<td class="cell-title">
<a href="https://riceo.me/posts/software-engineering-lessons-from-aviation/">https://riceo.me/posts/software-engineering-lessons-from-aviation/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="b89f6a09-41ed-4053-9a34-b315201712e8">
<td class="cell-;i:+"><time>@2019/05/19</time></td>
<td class="cell-title">
<a href="http://www.loper-os.org/?p=3256">http://www.loper-os.org/?p=3256</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="1d8151dd-0abd-4b29-af63-d6eb1701e39e">
<td class="cell-;i:+"><time>@2019/05/22</time></td>
<td class="cell-title">
<a href="https://ovid.github.io/articles/alan-kay-and-oo-programming.html">https://ovid.github.io/articles/alan-kay-and-oo-programming.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="3ec958db-586a-49e7-a1ea-6b0a78fa4d41">
<td class="cell-;i:+"><time>@2019/05/30</time></td>
<td class="cell-title">
<a href="https://arstechnica.com/gaming/2019/05/one-week-with-the-valve-index-a-vr-game-changer-with-a-few-question-marks/">https://arstechnica.com/gaming/2019/05/one-week-with-the-valve-index-a-vr-game-changer-with-a-few-question-marks/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="0af4915d-9c11-46fb-b1d2-798463809d38">
<td class="cell-;i:+"><time>@2019/06/02</time></td>
<td class="cell-title">
<a href="https://www.rifters.com/crawl/?p=8169">https://www.rifters.com/crawl/?p=8169</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="0c01b3be-16e6-4e85-9b5e-740a2e0aaa8c">
<td class="cell-;i:+"><time>@2019/06/10</time></td>
<td class="cell-title">
<a href="https://divan.dev/posts/visual_programming_go/">https://divan.dev/posts/visual_programming_go/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="4e393987-cd05-469d-9ac4-551030dcb8d0">
<td class="cell-;i:+"><time>@2019/07/08</time></td>
<td class="cell-title">
<a href="https://karpathy.github.io/2019/04/25/recipe/">https://karpathy.github.io/2019/04/25/recipe/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="29321cc1-16b0-4c63-ab34-3a0a960bb726">
<td class="cell-;i:+"><time>@2019/07/29</time></td>
<td class="cell-title">
<a href="https://people.kernel.org/monsieuricon/patches-carved-into-developer-sigchains">https://people.kernel.org/monsieuricon/patches-carved-into-developer-sigchains</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="a7ffde07-f536-41ae-b497-d0c49a5fde41">
<td class="cell-;i:+"><time>@2019/08/04</time></td>
<td class="cell-title">
<a href="https://www.inkandswitch.com/capstone-manuscript.html">https://www.inkandswitch.com/capstone-manuscript.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="c80b8c5e-4e89-4583-8e01-6f2800b99740">
<td class="cell-;i:+"><time>@2019/08/04</time></td>
<td class="cell-title">
<a href="https://hauleth.dev/post/eli5-ownership/">https://hauleth.dev/post/eli5-ownership/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="82307697-2ad5-4358-90ce-ef030eaf61f4">
<td class="cell-;i:+"><time>@2019/08/08</time></td>
<td class="cell-title">
<a href="https://ai.googleblog.com/2019/08/an-interactive-automated-3d.html">https://ai.googleblog.com/2019/08/an-interactive-automated-3d.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="dec2a653-8118-44ef-8bbd-3bd7436f298c">
<td class="cell-;i:+"><time>@2019/08/20</time></td>
<td class="cell-title">
<a href="https://apenwarr.ca/log/20190819">https://apenwarr.ca/log/20190819</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="6d316295-05a7-4ed6-afc4-7e620c1c1f1e">
<td class="cell-;i:+"><time>@2019/08/24</time></td>
<td class="cell-title">
<a href="https://queue.acm.org/detail.cfm?id=3212479">https://queue.acm.org/detail.cfm?id=3212479</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="2b4cd668-9740-435c-b2a1-1dc69d00fcc5">
<td class="cell-;i:+"><time>@2019/08/27</time></td>
<td class="cell-title">
<a href="https://mtlynch.io/status-updates-to-nobody/">https://mtlynch.io/status-updates-to-nobody/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="08df91de-029c-44a0-b346-837d0d5dab71">
<td class="cell-;i:+"><time>@2019/08/28</time></td>
<td class="cell-title">
<a href="https://cleantechnica.com/2019/08/26/tesla-vertical-integration-is-value-integration/">https://cleantechnica.com/2019/08/26/tesla-vertical-integration-is-value-integration/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="51d2faee-d454-441b-91d8-e6fee201e447">
<td class="cell-;i:+"><time>@2019/09/09</time></td>
<td class="cell-title">
<a href="https://www.theatlantic.com/technology/archive/2017/09/saving-the-world-from-code/540393/">https://www.theatlantic.com/technology/archive/2017/09/saving-the-world-from-code/540393/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="69ffe7ed-6491-4db7-90a3-9d751e3bb736">
<td class="cell-;i:+"><time>@2019/09/22</time></td>
<td class="cell-title">
<a href="https://tashian.com/articles/print-out-your-code/">https://tashian.com/articles/print-out-your-code/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="ccc0baa4-24e2-4cdd-9759-e49fa65d8068">
<td class="cell-;i:+"><time>@2019/10/01</time></td>
<td class="cell-title">
<a href="https://www.nayuki.io/page/creating-a-qr-code-step-by-step">https://www.nayuki.io/page/creating-a-qr-code-step-by-step</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="77807beb-5ecf-4b70-9b27-5df6dcefab37">
<td class="cell-;i:+"><time>@2019/10/06</time></td>
<td class="cell-title">
<a href="https://kevinlynagh.com/notes/pricing-niche-products/">https://kevinlynagh.com/notes/pricing-niche-products/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="b62970b0-0613-4157-b769-c64a4b56f0b1">
<td class="cell-;i:+"><time>@2019/10/18</time></td>
<td class="cell-title">
<a href="https://nakedsecurity.sophos.com/2019/10/17/pen-testers-find-mystery-black-box-connected-to-ships-engines/">https://nakedsecurity.sophos.com/2019/10/17/pen-testers-find-mystery-black-box-connected-to-ships-engines/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="b7afec66-44cd-4848-a366-db61d93c2483">
<td class="cell-;i:+"><time>@2019/11/11</time></td>
<td class="cell-title">
<a href="https://blog.metaobject.com/2019/11/what-alan-kay-got-wrong-about-objects.html">https://blog.metaobject.com/2019/11/what-alan-kay-got-wrong-about-objects.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="dab17005-b56e-4458-a777-71f91bd80f1a">
<td class="cell-;i:+"><time>@2019/11/16</time></td>
<td class="cell-title">
<a href="https://slatestarcodex.com/2017/05/26/the-atomic-bomb-considered-as-hungarian-high-school-science-fair-project/">https://slatestarcodex.com/2017/05/26/the-atomic-bomb-considered-as-hungarian-high-school-science-fair-project/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="def7b666-75cc-408b-b5fc-c06329af2055">
<td class="cell-;i:+"><time>@2019/11/24</time></td>
<td class="cell-title">
<a href="http://www.paulgraham.com/genius.html">http://www.paulgraham.com/genius.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="3a4c398a-249a-4633-a88a-a2e66d01d3ba">
<td class="cell-;i:+"><time>@2020/01/10</time></td>
<td class="cell-title">
<a href="https://journal.stuffwithstuff.com/2015/02/01/what-color-is-your-function/">https://journal.stuffwithstuff.com/2015/02/01/what-color-is-your-function/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="28d169d1-cdb0-47fe-be15-7321c0aef41b">
<td class="cell-;i:+"><time>@2020/01/15</time></td>
<td class="cell-title">
<a href="https://web.archive.org/web/20160325182936/http://asperger.tribe.net/thread/8725f112-ca77-4a8a-be19-38fb08728089#12bbb347-0430-4ea9-b548-af6ad3867077">https://web.archive.org/web/20160325182936/http://asperger.tribe.net/thread/8725f112-ca77-4a8a-be19-38fb08728089#12bbb347-0430-4ea9-b548-af6ad3867077</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="0c7c5d01-c44a-404a-a16b-a598bc7664b8">
<td class="cell-;i:+"><time>@2020/01/27</time></td>
<td class="cell-title">
<a href="http://worrydream.com/Engelbart/">http://worrydream.com/Engelbart/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="3f2cca0f-00a0-4d49-ae7e-1d3356215d7d">
<td class="cell-;i:+"><time>@2020/02/11</time></td>
<td class="cell-title">
<a href="https://djrobstep.com/posts/programs-are-a-prison">https://djrobstep.com/posts/programs-are-a-prison</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="5cb16b7a-525e-420f-a734-050746f90495">
<td class="cell-;i:+"><time>@2020/02/24</time></td>
<td class="cell-title">
<a href="https://josephg.com/blog/war-over-being-nice/">https://josephg.com/blog/war-over-being-nice/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="116d6a0f-b81c-4899-afbb-c0814938209b">
<td class="cell-;i:+"><time>@2020/02/28</time></td>
<td class="cell-title">
<a href="https://medium.com/the-spike/yes-the-brain-is-a-computer-11f630cad736">https://medium.com/the-spike/yes-the-brain-is-a-computer-11f630cad736</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="ceb9c197-6d2c-4b97-8391-e7360bac2500">
<td class="cell-;i:+"><time>@2020/03/09</time></td>
<td class="cell-title">
<a href="https://arstechnica.com/science/2020/03/inside-elon-musks-plan-to-build-one-starship-a-week-and-settle-mars/">https://arstechnica.com/science/2020/03/inside-elon-musks-plan-to-build-one-starship-a-week-and-settle-mars/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="b05e2f82-3cf9-4c21-8160-f6806be3c468">
<td class="cell-;i:+"><time>@2020/03/17</time></td>
<td class="cell-title">
<a href="https://tasshin.com/blog/monasteries-of-the-future-a-summary/">https://tasshin.com/blog/monasteries-of-the-future-a-summary/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="6f17b8e0-1de2-4f38-91c5-eb0d3567decb">
<td class="cell-;i:+"><time>@2020/03/30</time></td>
<td class="cell-title">
<a href="https://medium.com/croquet/a-few-grains-of-sand-76c2dfb9bfab">https://medium.com/croquet/a-few-grains-of-sand-76c2dfb9bfab</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="58276d59-81d8-4cae-aa19-6780cfb64668">
<td class="cell-;i:+"><time>@2020/03/31</time></td>
<td class="cell-title">
<a href="https://medium.com/@saadsahawneh/keeping-douglas-engelbart-alive-c1e6c167972a">https://medium.com/@saadsahawneh/keeping-douglas-engelbart-alive-c1e6c167972a</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="2bd3615e-8656-441b-ab23-f5e732f883b2">
<td class="cell-;i:+"><time>@2020/03/31</time></td>
<td class="cell-title">
<a href="https://medium.com/croquet/the-internets-n%C2%B2-problem-36410bbd65af">https://medium.com/croquet/the-internets-n²-problem-36410bbd65af</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="7625f54c-4f3f-46a1-9d8d-db37b70aee16">
<td class="cell-;i:+"><time>@2020/03/31</time></td>
<td class="cell-title">
<a href="https://medium.com/@saadsahawneh/im-sorry-alan-kay-e215e73f01aa">https://medium.com/@saadsahawneh/im-sorry-alan-kay-e215e73f01aa</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="f8a83bb6-2892-40e0-b6dc-2f0fbbc92ba5">
<td class="cell-;i:+"><time>@2020/04/05</time></td>
<td class="cell-title">
<a href="https://www.dotyk.cz/byznys/i-mala-firma-muze-byt-svetovou-jednickou.html">https://www.dotyk.cz/byznys/i-mala-firma-muze-byt-svetovou-jednickou.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="dd16fa96-b54a-43ec-ad7d-5fa2fa5d182b">
<td class="cell-;i:+"><time>@2020/04/16</time></td>
<td class="cell-title">
<a href="https://writings.stephenwolfram.com/2020/04/finally-we-may-have-a-path-to-the-fundamental-theory-of-physics-and-its-beautiful/">https://writings.stephenwolfram.com/2020/04/finally-we-may-have-a-path-to-the-fundamental-theory-of-physics-and-its-beautiful/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="4ad6c091-03c1-4595-940f-53b840e44403">
<td class="cell-;i:+"><time>@2020/06/04</time></td>
<td class="cell-title">
<a href="https://kevingal.com/blog/mona-lisa-gol.html">https://kevingal.com/blog/mona-lisa-gol.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="56df2f33-3349-464b-8969-6acf9ce2ce57">
<td class="cell-;i:+"><time>@2020/06/10</time></td>
<td class="cell-title">
<a href="http://acko.net/blog/software-development-as-advanced-damage-control/">http://acko.net/blog/software-development-as-advanced-damage-control/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="8a66fba7-ddb5-4c66-a31b-1eb553959d46">
<td class="cell-;i:+"><time>@2020/06/16</time></td>
<td class="cell-title">
<a href="https://voynichportal.com/2020/06/07/cars-and-cetacea/">https://voynichportal.com/2020/06/07/cars-and-cetacea/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="16bb4fb4-fe8b-432a-9f9f-0ed9bcdc2178">
<td class="cell-;i:+"><time>@2020/06/18</time></td>
<td class="cell-title">
<a href="https://news.ycombinator.com/item?id=23420786">https://news.ycombinator.com/item?id=23420786</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="385b5643-dbbb-4ade-9075-3949f4d9d6ac">
<td class="cell-;i:+"><time>@2020/07/27</time></td>
<td class="cell-title">
<a href="https://buttondown.email/hillelwayne/archive/syntax-highlighting-is-a-waste-of-an-information/">https://buttondown.email/hillelwayne/archive/syntax-highlighting-is-a-waste-of-an-information/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="9ace104a-21ab-45d3-8ad6-647e3df7f06e">
<td class="cell-;i:+"><time>@2020/08/02</time></td>
<td class="cell-title">
<a href="https://www.extremetech.com/extreme/282534-mits-implosion-fabrication-shrinks-objects-to-create-nanoscale-versions">https://www.extremetech.com/extreme/282534-mits-implosion-fabrication-shrinks-objects-to-create-nanoscale-versions</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="adeca734-14ca-4e1a-9ec3-2db6df90c8fe">
<td class="cell-;i:+"><time>@2020/08/04</time></td>
<td class="cell-title">
<a href="https://www.designedbycave.co.uk/2020/LEGO-Interface-UX/">https://www.designedbycave.co.uk/2020/LEGO-Interface-UX/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="55842a8c-42be-47a5-b280-28bd8dd6a24b">
<td class="cell-;i:+"><time>@2020/08/09</time></td>
<td class="cell-title">
<a href="https://jalammar.github.io/how-gpt3-works-visualizations-animations/">https://jalammar.github.io/how-gpt3-works-visualizations-animations/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="90f07f45-5b8b-4ff2-a47a-38082e62eaf0">
<td class="cell-;i:+"><time>@2020/09/18</time></td>
<td class="cell-title">
<a href="https://www.armadninoviny.cz/ngad-americane-testovali-demonstrator-stihacky-6-generace.html">https://www.armadninoviny.cz/ngad-americane-testovali-demonstrator-stihacky-6-generace.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="c968e9ef-7231-4403-9824-c7fa4e13b2ae">
<td class="cell-;i:+"><time>@2020/10/06</time></td>
<td class="cell-title">
<a href="https://blog.luap.info/drafts/i-built-a-lay-down-desk.html?hnn">https://blog.luap.info/drafts/i-built-a-lay-down-desk.html?hnn</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="f5f50010-2c04-4a14-a816-20450b462883">
<td class="cell-;i:+"><time>@2020/10/12</time></td>
<td class="cell-title">
<a href="https://jenda.hrach.eu/w/ebroker#konkurencni_brokeri">https://jenda.hrach.eu/w/ebroker#konkurencni_brokeri</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="4b7ec51e-2508-45dc-8a05-4313b9ef1eb3">
<td class="cell-;i:+"><time>@2020/10/12</time></td>
<td class="cell-title">
<a href="https://www.fastcompany.com/40435064/what-alan-kay-thinks-about-the-iphone-and-technology-now">https://www.fastcompany.com/40435064/what-alan-kay-thinks-about-the-iphone-and-technology-now</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="5c6a0d19-380f-45a9-b88b-8d6d79f8e977">
<td class="cell-;i:+"><time>@2020/10/13</time></td>
<td class="cell-title">
<a href="https://blog.cloudflare.com/introducing-workers-durable-objects/amp/?__twitter_impression=true">https://blog.cloudflare.com/introducing-workers-durable-objects/amp/?__twitter_impression=true</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="30fc2aab-d6e9-4a1f-b53e-d39c95ee0c7f">
<td class="cell-;i:+"><time>@2020/10/14</time></td>
<td class="cell-title">
<a href="https://matklad.github.io/2020/04/13/simple-but-powerful-pratt-parsing.html">https://matklad.github.io/2020/04/13/simple-but-powerful-pratt-parsing.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="bb3fbdd5-42c2-4f39-a532-afc5db8cd17d">
<td class="cell-;i:+"><time>@2020/10/14</time></td>
<td class="cell-title">
<a href="https://www.buzzfeednews.com/article/alison_killing/china-ex-prisoners-horrors-xinjiang-camps-uighurs">https://www.buzzfeednews.com/article/alison_killing/china-ex-prisoners-horrors-xinjiang-camps-uighurs</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="f9c54550-fc08-4b90-9088-8680425053e8">
<td class="cell-;i:+"><time>@2020/10/14</time></td>
<td class="cell-title">
<a href="https://www.buzzfeednews.com/article/meghara/china-new-internment-camps-xinjiang-uighurs-muslims">https://www.buzzfeednews.com/article/meghara/china-new-internment-camps-xinjiang-uighurs-muslims</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="6ca99b1a-9e27-4f23-9c69-207c1c566cd8">
<td class="cell-;i:+"><time>@2020/10/20</time></td>
<td class="cell-title">
<a href="https://is.cuni.cz/webapps/zzp/detail/213939/">https://is.cuni.cz/webapps/zzp/detail/213939/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="50f19d1c-e865-4e38-a041-5995d10191c2">
<td class="cell-;i:+"><time>@2020/10/20</time></td>
<td class="cell-title">
<a href="https://www.seznamzpravy.cz/clanek/tajemny-muz-ktery-na-jare-zachranil-cesko-exreditel-ceske-pojistovny-124767">https://www.seznamzpravy.cz/clanek/tajemny-muz-ktery-na-jare-zachranil-cesko-exreditel-ceske-pojistovny-124767</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="289e2f7e-f614-4698-8e1d-885989b0fd1b">
<td class="cell-;i:+"><time>@2020/10/31</time></td>
<td class="cell-title">
<a href="https://www.biospace.com/article/-oak-ridge-researchers-use-supercomputer-on-covid-19/">https://www.biospace.com/article/-oak-ridge-researchers-use-supercomputer-on-covid-19/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="71e2fd91-29bc-4529-84bc-322bef53b756">
<td class="cell-;i:+"><time>@2020/11/01</time></td>
<td class="cell-title">
<a href="https://spectrum.ieee.org/tech-history/space-age/the-11-greatest-vacuum-tubes-youve-never-heard-of">https://spectrum.ieee.org/tech-history/space-age/the-11-greatest-vacuum-tubes-youve-never-heard-of</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="95603f06-7d39-4c83-9b6c-f9dd76539985">
<td class="cell-;i:+"><time>@2020/11/29</time></td>
<td class="cell-title">
<a href="https://uxdesign.cc/design-is-not-science-art-or-engineering-5e8d2f499494">https://uxdesign.cc/design-is-not-science-art-or-engineering-5e8d2f499494</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="bec9afdb-61de-47f0-aee9-b14cf59d106c">
<td class="cell-;i:+"><time>@2020/12/12</time></td>
<td class="cell-title">
<a href="http://acko.net/blog/on-headaches-and-aspirin/">http://acko.net/blog/on-headaches-and-aspirin/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="c36df8d0-33ca-47f5-899d-9aa64ac257fc">
<td class="cell-;i:+"><time>@2020/12/29</time></td>
<td class="cell-title">
<a href="https://berthub.eu/articles/posts/reverse-engineering-source-code-of-the-biontech-pfizer-vaccine/">https://berthub.eu/articles/posts/reverse-engineering-source-code-of-the-biontech-pfizer-vaccine/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="7f0e7e52-273a-43c4-8b74-789400df36e2">
<td class="cell-;i:+"><time>@2021/01/01</time></td>
<td class="cell-title">
<a href="http://www.vpri.org/pdf/m2004001_power.pdf">http://www.vpri.org/pdf/m2004001_power.pdf</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="ee0f0a2a-5e1f-4411-b02d-5d5ee2a9aa59">
<td class="cell-;i:+"><time>@2021/01/03</time></td>
<td class="cell-title">
<a href="https://medium.com/@marekkcichy/does-ai-have-a-dirty-mind-too-6948430e4b2b">https://medium.com/@marekkcichy/does-ai-have-a-dirty-mind-too-6948430e4b2b</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="fb365100-7cc8-4119-8c25-75529694d245">
<td class="cell-;i:+"><time>@2021/01/04</time></td>
<td class="cell-title">
<a href="https://www.root.cz/clanky/fsp-protokol-internetova-legenda-10/">https://www.root.cz/clanky/fsp-protokol-internetova-legenda-10/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="939b4728-f0a5-46e2-a1c5-d30332fc58f3">
<td class="cell-;i:+"><time>@2021/01/05</time></td>
<td class="cell-title">
<a href="https://apenwarr.ca/log/20201227">https://apenwarr.ca/log/20201227</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="b97ca2c5-6035-493d-828c-778a19ad7115">
<td class="cell-;i:+"><time>@2021/01/16</time></td>
<td class="cell-title">
<a href="https://lord.io/blog/2020/spreadsheets/">https://lord.io/blog/2020/spreadsheets/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="19e56b6c-173c-4f20-bfe7-3daf1e9cca76">
<td class="cell-;i:+"><time>@2021/03/26</time></td>
<td class="cell-title">
<a href="http://agentydragon.com/posts/2015-08-24-tricks-of-the-trade.html">http://agentydragon.com/posts/2015-08-24-tricks-of-the-trade.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="9cacf887-04c0-4616-bbdc-89707f1d1a71">
<td class="cell-;i:+"><time>@2021/03/26</time></td>
<td class="cell-title">
<a href="http://agentydragon.com/posts/2020-02-21-you-are-an-optimizer.html">http://agentydragon.com/posts/2020-02-21-you-are-an-optimizer.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="b1b8e1fc-3bd0-4c38-b8b5-96318c286775">
<td class="cell-;i:+"><time>@2021/06/13</time></td>
<td class="cell-title">
<a href="https://rarehistoricalphotos.com/life-before-autocad-1950-1980/">https://rarehistoricalphotos.com/life-before-autocad-1950-1980/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="72f2fdc5-72fb-41f6-809f-5d6e91ca16fc">
<td class="cell-;i:+"><time>@2021/06/18</time></td>
<td class="cell-title">
<a href="https://athenawalker.substack.com/p/tip-the-scales-in-your-favor">https://athenawalker.substack.com/p/tip-the-scales-in-your-favor</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="33e6b931-563b-4b7f-b979-4b782694e3fd">
<td class="cell-;i:+"><time>@2021/06/18</time></td>
<td class="cell-title">
<a href="https://dfens-cz.com/ekonomie-penize-a-bitcoin/">https://dfens-cz.com/ekonomie-penize-a-bitcoin/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="6acfb70e-9a21-4666-bae9-ccc1bfbf9960">
<td class="cell-;i:+"><time>@2021/07/02</time></td>
<td class="cell-title">
<a href="https://web.archive.org/web/20131130191257/http://www.shirky.com/writings/group_enemy.html">https://web.archive.org/web/20131130191257/http://www.shirky.com/writings/group_enemy.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="a8d5a6de-1145-4f46-901c-0f151b05fcc4">
<td class="cell-;i:+"><time>@2021/07/03</time></td>
<td class="cell-title">
<a href="https://corecursive.com/066-sqlite-with-richard-hipp/">https://corecursive.com/066-sqlite-with-richard-hipp/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="ee278516-17c7-45ad-9e9d-57bdb7ae61d6">
<td class="cell-;i:+"><time>@2021/07/06</time></td>
<td class="cell-title">
<a href="https://www.kalzumeus.com/2012/01/23/salary-negotiation/">https://www.kalzumeus.com/2012/01/23/salary-negotiation/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="086cb110-9187-4c4b-b2d3-cb3c9716c73e">
<td class="cell-;i:+"><time>@2021/07/12</time></td>
<td class="cell-title">
<a href="https://antonz.org/sqlite-is-not-a-toy-database/">https://antonz.org/sqlite-is-not-a-toy-database/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="5add208a-dafe-4f31-9360-f95138bfb430">
<td class="cell-;i:+"><time>@2021/07/15</time></td>
<td class="cell-title">
<a href="https://optimal-codestyle.github.io/">https://optimal-codestyle.github.io/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="e35a47ec-7eed-417c-af8d-651a92e292bb">
<td class="cell-;i:+"><time>@2021/08/03</time></td>
<td class="cell-title">
<a href="https://dariusforoux.com/prices-law/">https://dariusforoux.com/prices-law/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="6630f057-5c61-4054-ba6c-ed9a396df3bc">
<td class="cell-;i:+"><time>@2021/08/18</time></td>
<td class="cell-title">
<a href="https://jlcollinsnh.com/2017/07/26/time-machine-and-the-future-returns-for-stocks/">https://jlcollinsnh.com/2017/07/26/time-machine-and-the-future-returns-for-stocks/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="c6f5abcc-7348-4c4f-85bf-7ea54adfe5ce">
<td class="cell-;i:+"><time>@2021/08/20</time></td>
<td class="cell-title">
<a href="https://www.newyorker.com/magazine/2021/08/23/why-is-it-so-hard-to-be-rational">https://www.newyorker.com/magazine/2021/08/23/why-is-it-so-hard-to-be-rational</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="97da63aa-ef2b-4ada-a6e2-65ad4a2f4418">
<td class="cell-;i:+"><time>@2021/08/31</time></td>
<td class="cell-title">
<a href="https://thehftguy.com/2020/10/27/my-experience-in-production-with-flask-bottle-tornado-and-twisted/">https://thehftguy.com/2020/10/27/my-experience-in-production-with-flask-bottle-tornado-and-twisted/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="160c7436-2b4d-4502-a119-66e4b0919bbf">
<td class="cell-;i:+"><time>@2021/09/02</time></td>
<td class="cell-title">
<a href="https://zpravy.aktualne.cz/ekonomika/zkusili-jsme-doplnit-ztracene-odpracovane-roky-do-evidence-a/r~cba8a594fb8111ebbc3f0cc47ab5f122/">https://zpravy.aktualne.cz/ekonomika/zkusili-jsme-doplnit-ztracene-odpracovane-roky-do-evidence-a/r~cba8a594fb8111ebbc3f0cc47ab5f122/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="fe168800-eae2-4ad4-99b3-58b6083658d1">
<td class="cell-;i:+"><time>@2021/09/18</time></td>
<td class="cell-title">
<a href="http://nathanmarz.com/blog/suffering-oriented-programming.html">http://nathanmarz.com/blog/suffering-oriented-programming.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="54029559-19bd-4273-8ce8-1ba126f84c73">
<td class="cell-;i:+"><time>@2021/09/24</time></td>
<td class="cell-title">
<a href="https://what.thedailywtf.com/topic/20054/we-are-agile">https://what.thedailywtf.com/topic/20054/we-are-agile</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="048d8781-d25b-4ad4-8d53-636711b05199">
<td class="cell-;i:+"><time>@2021/09/30</time></td>
<td class="cell-title">
<a href="https://markets.businessinsider.com/news/currencies/hamster-trading-cryptocurrencies-rigged-cage-goxx-bitcoin-price-ether-doge-2021-9">https://markets.businessinsider.com/news/currencies/hamster-trading-cryptocurrencies-rigged-cage-goxx-bitcoin-price-ether-doge-2021-9</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="af9b0410-94c2-45da-a4ac-0410401e17a0">
<td class="cell-;i:+"><time>@2021/10/19</time></td>
<td class="cell-title">
<a href="https://devlog.hexops.com/2021/I-write-code-100-hours-a-week">https://devlog.hexops.com/2021/I-write-code-100-hours-a-week</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="7d763386-efbf-4a75-99ae-1dfcbc3cb2be">
<td class="cell-;i:+"><time>@2021/10/24</time></td>
<td class="cell-title">
<a href="https://mattferraro.dev/posts/caustics-engineering">https://mattferraro.dev/posts/caustics-engineering</a>
</td>
<td class="cell-HrIX">Cat hologram.</td>
</tr>
<tr id="16386c12-ccce-4095-bf1d-4723bf9585a1">
<td class="cell-;i:+"><time>@2021/10/25</time></td>
<td class="cell-title">
<a href="https://imjustcreative.com/pure-storage-logo-design-case-study/2019/09/18">https://imjustcreative.com/pure-storage-logo-design-case-study/2019/09/18</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="e3917e38-65c2-4b18-909e-3ddea0073b21">
<td class="cell-;i:+"><time>@2021/10/26</time></td>
<td class="cell-title">
<a href="https://www.notion.so/blog/alan-kay">https://www.notion.so/blog/alan-kay</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="40f10e0a-328f-40b7-9991-e68ff953de1b">
<td class="cell-;i:+"><time>@2021/10/31</time></td>
<td class="cell-title">
<a href="https://rogersbacon.substack.com/p/snosh">https://rogersbacon.substack.com/p/snosh</a>
</td>
<td class="cell-HrIX">Joscha Bach story.</td>
</tr>
<tr id="52083974-fd83-41fa-94da-0cc70b5681d2">
<td class="cell-;i:+"><time>@2021/11/15</time></td>
<td class="cell-title">
<a href="https://www.esat.kuleuven.be/cosic/blog/dumping-and-extracting-the-spacex-starlink-user-terminal-firmware/">https://www.esat.kuleuven.be/cosic/blog/dumping-and-extracting-the-spacex-starlink-user-terminal-firmware/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="e569167d-0c76-461b-a4b4-2ed57ace6de1">
<td class="cell-;i:+"><time>@2021/12/07</time></td>
<td class="cell-title">
<a href="https://apenwarr.ca/log/20211201">https://apenwarr.ca/log/20211201</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="dcd5d067-aa11-4264-9553-08a807068d69">
<td class="cell-;i:+"><time>@2022/01/09</time></td>
<td class="cell-title">
<a href="https://cray-history.net/2021/11/04/cray-customer-service-by-charles-clark/">https://cray-history.net/2021/11/04/cray-customer-service-by-charles-clark/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="e12addd2-f2b8-4582-b7cc-d418d68b6baa">
<td class="cell-;i:+"><time>@2022/01/20</time></td>
<td class="cell-title">
<a href="https://www.danstroot.com/posts/2018-10-03-hammer-factories">https://www.danstroot.com/posts/2018-10-03-hammer-factories</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="b8342aeb-3dba-4fe8-b1fe-0dded6d001af">
<td class="cell-;i:+"><time>@2022/01/23</time></td>
<td class="cell-title">
<a href="https://www.raptitude.com/2022/01/everything-must-be-paid-for-twice/">https://www.raptitude.com/2022/01/everything-must-be-paid-for-twice/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="8da96169-542e-458b-acc5-aa68fbab5137">
<td class="cell-;i:+"><time>@2022/01/27</time></td>
<td class="cell-title">
<a href="https://ai.facebook.com/blog/ai-rsc">https://ai.facebook.com/blog/ai-rsc</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="37382ff3-04e4-403f-86fb-2a484dda7658">
<td class="cell-;i:+"><time>@2022/02/07</time></td>
<td class="cell-title">
<a href="https://scottaaronson.blog/?p=6288">https://scottaaronson.blog/?p=6288</a>
</td>
<td class="cell-HrIX">AlphaCode as a dog speaking mediocre English</td>
</tr>
<tr id="35a115ac-a636-4d26-8fd0-f336b05f5d51">
<td class="cell-;i:+"><time>@2022/02/15</time></td>
<td class="cell-title">
<a href="https://lukasz.langa.pl/5d044f91-49c1-4170-aed1-62b6763e6ad0/">https://lukasz.langa.pl/5d044f91-49c1-4170-aed1-62b6763e6ad0/</a>
</td>
<td class="cell-HrIX">Notes From the Meeting On Python GIL Removal Between Python Core and Sam Gross</td>
</tr>
<tr id="393c7128-150c-4f7a-b004-f697641102db">
<td class="cell-;i:+"><time>@2022/03/24</time></td>
<td class="cell-title">
<a href="https://gankra.github.io/blah/c-isnt-a-language/">https://gankra.github.io/blah/c-isnt-a-language/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="1688b0ba-5e5b-408c-8b77-b24d09b04715">
<td class="cell-;i:+"><time>@2022/05/25</time></td>
<td class="cell-title">
<a href="https://ciechanow.ski/mechanical-watch/">https://ciechanow.ski/mechanical-watch/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="f83a78b4-a79a-4e85-9692-79320caf61b8">
<td class="cell-;i:+"><time>@2022/06/07</time></td>
<td class="cell-title">
<a href="https://maggieappleton.com/metaphors-web">https://maggieappleton.com/metaphors-web</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="b1584065-9563-4a7e-a3dc-b110bfb3f295">
<td class="cell-;i:+"><time>@2022/06/10</time></td>
<td class="cell-title">
<a href="https://antonz.org/protocol/">https://antonz.org/protocol/</a>
</td>
<td class="cell-HrIX">Flying Pig, or Protocols in Python</td>
</tr>
<tr id="4130987d-8dee-470f-8fff-77cb8b867ae0">
<td class="cell-;i:+"><time>@2022/06/12</time></td>
<td class="cell-title">
<a href="https://maggieappleton.com/block-data">https://maggieappleton.com/block-data</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="e10cd114-2cb6-45e9-a914-6733776a9980">
<td class="cell-;i:+"><time>@2022/06/12</time></td>
<td class="cell-title">
<a href="https://maggieappleton.com/epistemic-disclosure">https://maggieappleton.com/epistemic-disclosure</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="ac320597-83d3-4d60-a312-f16588a51279">
<td class="cell-;i:+"><time>@2022/06/12</time></td>
<td class="cell-title">
<a href="https://arkadiuszchmura.com/posts/my-key-takeaways-from-the-pragmatic-programmer/">https://arkadiuszchmura.com/posts/my-key-takeaways-from-the-pragmatic-programmer/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="49033938-7180-477f-be85-675d73f8b347">
<td class="cell-;i:+"><time>@2022/06/12</time></td>
<td class="cell-title">
<a href="https://martinheinz.dev/blog/70">https://martinheinz.dev/blog/70</a>
</td>
<td class="cell-HrIX">Python fstrings.</td>
</tr>
<tr id="c524509d-5d8b-4b03-92ec-71b68f26a8e9">
<td class="cell-;i:+"><time>@2022/06/26</time></td>
<td class="cell-title">
<a href="https://roman.pt/posts/dont-let-dicts-spoil-your-code/">https://roman.pt/posts/dont-let-dicts-spoil-your-code/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="c4b06101-c6d9-4833-8336-4994a8447f32">
<td class="cell-;i:+"><time>@2022/07/03</time></td>
<td class="cell-title">
<a href="https://aaronhertzmann.com/2022/02/28/how-does-perspective-work.html">https://aaronhertzmann.com/2022/02/28/how-does-perspective-work.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="f6cd1b12-4cb5-453c-8fb3-538190f196ee">
<td class="cell-;i:+"><time>@2022/08/06</time></td>
<td class="cell-title">
<a href="https://jsomers.net/i-should-have-loved-biology/">https://jsomers.net/i-should-have-loved-biology/</a>
</td>
<td class="cell-HrIX">Brilliant article about biology, with a bunch of links to relevant books.</td>
</tr>
<tr id="78990b09-0623-4a54-a7c7-8ade9ada9612">
<td class="cell-;i:+"><time>@2022/08/14</time></td>
<td class="cell-title">
<a href="https://observablehq.com/@jsomers/we-need-more-tiny-knowledge-projects-heres-one">https://observablehq.com/@jsomers/we-need-more-tiny-knowledge-projects-heres-one</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="dcfd79ca-8a0f-4d57-aea0-d16d7f047001">
<td class="cell-;i:+"><time>@2022/08/14</time></td>
<td class="cell-title">
<a href="https://jsomers.net/blog/more-people-should-write">https://jsomers.net/blog/more-people-should-write</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="055c1fa2-f14d-4938-ba30-73d331ca83e5">
<td class="cell-;i:+"><time>@2022/08/17</time></td>
<td class="cell-title">
<a href="https://fortelabs.co/blog/how-to-build-your-personal-productivity-stack/">https://fortelabs.co/blog/how-to-build-your-personal-productivity-stack/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="1320ddc4-fd5f-44dc-ad66-f688c4efa036">
<td class="cell-;i:+"><time>@2022/09/20</time></td>
<td class="cell-title">
<a href="https://gbracha.blogspot.com/2022/06/the-prospect-of-execution-hidden.html">https://gbracha.blogspot.com/2022/06/the-prospect-of-execution-hidden.html</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="273d5fd4-94e5-4751-9d36-ccad7e071d84">
<td class="cell-;i:+"><time>@2022/09/20</time></td>
<td class="cell-title">
<a href="https://eugeneyan.com/writing/uncommon-python/">https://eugeneyan.com/writing/uncommon-python/</a>
</td>
<td class="cell-HrIX"></td>
</tr>
<tr id="dd2fcd6d-e7eb-4b3b-949c-dc10f0cb6dbe">
<td class="cell-;i:+"><time>@2022/10/05</time></td>
<td class="cell-title">
<a href="https://jalammar.github.io/illustrated-stable-diffusion/">https://jalammar.github.io/illustrated-stable-diffusion/</a>