-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathdata.json
More file actions
13116 lines (13116 loc) · 315 KB
/
Copy pathdata.json
File metadata and controls
13116 lines (13116 loc) · 315 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
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
[
{
"month": "202407",
"title": "Mocking is an Anti-Pattern",
"url": "https://www.amazingcto.com/mocking-is-an-antipattern-how-to-test-without-mocking/",
"timestamp": 1721484207,
"tags": [
"deepdive"
]
},
{
"month": "202407",
"title": "Mapping the landscape of gen-AI product user experience",
"url": "https://interconnected.org/home/2024/07/19/ai-landscape",
"timestamp": 1721484301,
"tags": [
"read",
"guide"
]
},
{
"month": "202407",
"title": "How not to use box shadows",
"url": "https://dgerrells.com/blog/how-not-to-use-box-shadows",
"timestamp": 1721659574,
"tags": [
"hack",
"deepdive",
"visual"
]
},
{
"month": "202407",
"title": "Panic! at the Tech Job Market",
"url": "https://matt.sh/panic-at-the-job-market",
"timestamp": 1721740645,
"tags": [
"read",
"job"
]
},
{
"month": "202407",
"title": "Python Practical Package Packing 2024",
"url": "https://matt.sh/python-project-structure-2024",
"timestamp": 1721743854,
"tags": [
"python",
"guide"
]
},
{
"month": "202407",
"title": "How we improved availability through iterative simplification",
"url": "https://github.blog/engineering/engineering-principles/how-we-improved-availability-through-iterative-simplification/",
"timestamp": 1721831984,
"tags": [
"read"
]
},
{
"month": "202407",
"title": "We need visual programming. No, not like that.",
"url": "https://blog.sbensu.com/posts/demand-for-visual-programming/",
"timestamp": 1721832109,
"tags": [
"read"
]
},
{
"month": "202407",
"title": "How to review code effectively: A GitHub staff engineer’s philosophy",
"url": "https://github.blog/developer-skills/github/how-to-review-code-effectively-a-github-staff-engineers-philosophy/",
"timestamp": 1721832271,
"tags": [
"guide",
"deepdive"
]
},
{
"month": "202407",
"title": "Anyone can Access Deleted and Private Repository Data on GitHub ◆ Truffle Security Co.",
"url": "https://trufflesecurity.com/blog/anyone-can-access-deleted-and-private-repo-data-github",
"timestamp": 1722006457,
"tags": [
"hack"
]
},
{
"month": "202407",
"title": "Exposition of Frontend Build Systems",
"url": "https://sunsetglow.net/posts/frontend-build-systems.html",
"timestamp": 1722076804,
"tags": [
"frontend",
"deepdive"
]
},
{
"month": "202407",
"title": "The Many Lives of Null Island | Stamen",
"url": "https://stamen.com/the-many-lives-of-null-island/",
"timestamp": 1722263282,
"tags": [
"read"
]
},
{
"month": "202407",
"title": "We had an AI attempt to make a data-driven story like we do at The Pudding",
"url": "https://pudding.cool/2024/07/ai/",
"timestamp": 1722435630,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Build your own SQS or Kafka with Postgres",
"url": "https://blog.sequinstream.com/build-your-own-sqs-or-kafka-with-postgres/",
"timestamp": 1722524260,
"tags": [
"read",
"hack",
"db"
]
},
{
"month": "202408",
"title": "How to Get or Create in PostgreSQL",
"url": "https://hakibenita.com/postgresql-get-or-create",
"timestamp": 1722955536,
"tags": [
"deepdive",
"db"
]
},
{
"month": "202408",
"title": "PAGNIs: Probably Are Gonna Need Its",
"url": "https://simonwillison.net/2021/Jul/1/pagnis/",
"timestamp": 1723042160,
"tags": [
"read",
"guide"
]
},
{
"month": "202408",
"title": "YAGNI exceptions",
"url": "https://lukeplant.me.uk/blog/posts/yagni-exceptions/",
"timestamp": 1723042323,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Is It Time To Version Observability? (Signs Point To Yes)",
"url": "https://charity.wtf/2024/08/07/is-it-time-to-version-observability-signs-point-to-yes/",
"timestamp": 1723129031,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Turning the Tables on AI",
"url": "https://ia.net/topics/turning-the-tables-on-ai",
"timestamp": 1723363421,
"tags": [
"read",
"guide"
]
},
{
"month": "202408",
"title": "Learn OAuth 2.0 by Building Your Own OAuth Client",
"url": "https://annotate.dev/p/hello-world/learn-oauth-2-0-by-building-your-own-oauth-client-U2HaZNtvQojn4F",
"timestamp": 1723449400,
"tags": [
"guide"
]
},
{
"month": "202408",
"title": "Do Quests, Not Goals",
"url": "https://www.raptitude.com/2024/08/do-quests-not-goals/",
"timestamp": 1723558052,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Chevy Ray | How I Created 175 Fonts Using Rust",
"url": "https://chevyray.dev/blog/creating-175-fonts/",
"timestamp": 1723558133,
"tags": [
"deepdive",
"guide"
]
},
{
"month": "202408",
"title": "Web 端实时防挡脸弹幕(基于机器学习) | 风痕 · 術&思",
"url": "https://hughfenghen.github.io/posts/2023/06/21/body-mask-danmaku/",
"timestamp": 1723560435,
"tags": [
"deepdive",
"frontend",
"hack"
]
},
{
"month": "202408",
"title": "AI Seinfeld was the peak of AI-generated content. It will never happen again.",
"url": "https://minimaxir.com/2024/08/ai-seinfeld/",
"timestamp": 1723646009,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Optimizing SPA load times with async chunks preloading",
"url": "https://mmazzarolo.com/blog/2024-08-13-async-chunk-preloading-on-load/",
"timestamp": 1723647437,
"tags": [
"hack",
"frontend"
]
},
{
"month": "202408",
"title": "One Thing Nobody Explained To You About TypeScript",
"url": "https://kettanaito.com/blog/one-thing-nobody-explained-to-you-about-typescript",
"timestamp": 1723818761,
"tags": [
"guide"
]
},
{
"month": "202408",
"title": "How to convert a Node.js stream of event callback functions into an Async Iterator",
"url": "https://www.jbernier.com/p?id=nodejs-stream-async-iterator",
"timestamp": 1723819080,
"tags": [
"hack"
]
},
{
"month": "202408",
"title": "“The Door Problem” – Liz England",
"url": "https://lizengland.com/blog/2014/04/the-door-problem/",
"timestamp": 1723958314,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Harvesting, Fishing, Panning for Gold",
"url": "https://staysaasy.com/strategy/2024/08/18/harvesting-fishing-panning-for-gold.html",
"timestamp": 1724076718,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Software engineering practices",
"url": "https://simonwillison.net/2022/Oct/1/software-engineering-practices/",
"timestamp": 1724252720,
"tags": [
"read",
"guide"
]
},
{
"month": "202408",
"title": "Continuous reinvention: A brief history of block storage at AWS",
"url": "https://www.allthingsdistributed.com/2024/08/continuous-reinvention-a-brief-history-of-block-storage-at-aws.html",
"timestamp": 1724424739,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "CSS finally adds vertical centering in 2024 | Blog | build-your-own.org",
"url": "https://build-your-own.org/blog/20240813_css_vertical_center/",
"timestamp": 1724498652,
"tags": [
"frontend"
]
},
{
"month": "202408",
"title": "Font with Built-In Syntax Highlighting",
"url": "https://blog.glyphdrawing.club/font-with-built-in-syntax-highlighting/",
"timestamp": 1724499197,
"tags": [
"hack",
"deepdive"
]
},
{
"month": "202408",
"title": "A Visual Guide to Quantization",
"url": "https://newsletter.maartengrootendorst.com/p/a-visual-guide-to-quantization",
"timestamp": 1724500398,
"tags": [
"guide",
"deepdive",
"llm"
]
},
{
"month": "202408",
"title": "Tacit Knowledge is Dangerous",
"url": "https://er4hn.info/blog/2023.08.26-tacit-knowledge-dangerous/",
"timestamp": 1724500567,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Command Line Data Processing: Using DuckDB as a Unix Tool",
"url": "https://duckdb.org/2024/06/20/cli-data-processing-using-duckdb-as-a-unix-tool.html",
"timestamp": 1724503708,
"tags": [
"read",
"guide"
]
},
{
"month": "202408",
"title": "Where Should Visual Programming Go?",
"url": "https://tonsky.me/blog/diagrams/",
"timestamp": 1724567580,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Lessons learned in 35 years of making software",
"url": "https://dev.jimgrey.net/2024/07/03/lessons-learned-in-35-years-of-making-software/",
"timestamp": 1724568001,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Pinning:重新想象倒数日 App - 少数派",
"url": "https://sspai.com/post/91599",
"timestamp": 1724768932,
"tags": [
"read",
"design"
]
},
{
"month": "202408",
"title": "MiniJinja: Learnings from Building a Template Engine in Rust",
"url": "https://lucumr.pocoo.org/2024/8/27/minijinja/",
"timestamp": 1724856700,
"tags": [
"read",
"deepdive"
]
},
{
"month": "202408",
"title": "Leader Election With S3 Conditional Writes",
"url": "https://www.morling.dev/blog/leader-election-with-s3-conditional-writes/",
"timestamp": 1725079233,
"tags": [
"hack"
]
},
{
"month": "202408",
"title": "Software Engineering - The Soft Parts",
"url": "https://addyosmani.com/blog/software-engineering-soft-parts/#quote-17",
"timestamp": 1725081576,
"tags": [
"read",
"books"
]
},
{
"month": "202408",
"title": "why lowercase letters save data | endtimes.dev",
"url": "https://endtimes.dev/why-lowercase-letters-save-data/",
"timestamp": 1725104518,
"tags": [
"read"
]
},
{
"month": "202408",
"title": "Anthropic’s Prompt Engineering Interactive Tutorial",
"url": "https://simonwillison.net/2024/Aug/30/anthropic-prompt-engineering-interactive-tutorial/",
"timestamp": 1725104846,
"tags": [
"guide"
]
},
{
"month": "202409",
"title": "Reasons to write design docs | nicole@web",
"url": "https://ntietz.com/blog/reasons-to-write-design-docs",
"timestamp": 1725286279,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "从GraphRAG看信息的重新组织 - 铁蕾的个人博客",
"url": "http://zhangtielei.com/posts/blog-graph-rag-information_org.html",
"timestamp": 1725286435,
"tags": [
"read",
"llm"
]
},
{
"month": "202409",
"title": "Textual - Anatomy of a Textual User Interface",
"url": "https://textual.textualize.io/blog/2024/09/15/anatomy-of-a-textual-user-interface/",
"timestamp": 1725373850,
"tags": [
"guide"
]
},
{
"month": "202409",
"title": "Greppability is an underrated code metric",
"url": "https://morizbuesing.com/blog/greppability-code-metric/",
"timestamp": 1725459566,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Paying down tech debt",
"url": "https://newsletter.pragmaticengineer.com/p/paying-down-tech-debt",
"timestamp": 1725463557,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Things You Should Never Do, Part I",
"url": "https://www.joelonsoftware.com/2000/04/06/things-you-should-never-do-part-i/",
"timestamp": 1725463787,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "The Art of Finishing | ByteDrum",
"url": "https://www.bytedrum.com/posts/art-of-finishing/",
"timestamp": 1725546274,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Every webpage deserves to be a place",
"url": "https://interconnected.org/home/2024/09/05/cursor-party",
"timestamp": 1725628853,
"tags": [
"read",
"frontend",
"hack"
]
},
{
"month": "202409",
"title": "Got an incident? pull the Andon Cord",
"url": "https://spike.sh/blog/pull-the-andon-cord/",
"timestamp": 1725629979,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Seafaring for Women in Software Engineering - Part I - Performance & Promotion",
"url": "https://beabytes.com/seafaring-part-i/",
"timestamp": 1725635369,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Cog",
"url": "https://nedbatchelder.com/code/cog",
"timestamp": 1725703888,
"tags": [
"tools"
]
},
{
"month": "202409",
"title": "OAuth from First Principles - Stack Auth",
"url": "https://stack-auth.com/blog/oauth-from-first-principles",
"timestamp": 1725705931,
"tags": [
"deepdive"
]
},
{
"month": "202409",
"title": "Garbage collection and closures",
"url": "https://jakearchibald.com/2024/garbage-collection-and-closures/",
"timestamp": 1725706760,
"tags": [
"read",
"js"
]
},
{
"month": "202409",
"title": "No more “Expert, Intermediate, Beginner”: Classifying talks in Call for Papers/Conference agendas | Christian Heilmann",
"url": "https://christianheilmann.com/2024/09/06/no-more-expert-intermediate-beginner-classifying-talks-in-call-for-papers-conference-agendas/",
"timestamp": 1725794480,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Zeyi-Lin/HivisionIDPhotos: ⚡️HivisionIDPhotos: a lightweight and efficient AI ID photos tools. 一个轻量级的AI证件照制作算法。",
"url": "https://github.com/Zeyi-Lin/HivisionIDPhotos",
"timestamp": 1725794642,
"tags": [
"tools"
]
},
{
"month": "202409",
"title": "聊聊自动化 PDF 渲染方案",
"url": "https://roriri.one/2024/08/28/pdf-rendering/",
"timestamp": 1725892311,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Making progress on side projects with content-driven development | nicole@web",
"url": "/blog/making-progress-with-content-driven-development/",
"timestamp": 1725892458,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Why GitHub Actually Won",
"url": "https://blog.gitbutler.com/why-github-actually-won/",
"timestamp": 1725979586,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Notes from my appearance on the Software Misadventures Podcast",
"url": "https://simonwillison.net/2024/Sep/10/software-misadventures/",
"timestamp": 1726068456,
"tags": [
"read",
"llm"
]
},
{
"month": "202409",
"title": "GitHub's CSP journey",
"url": "https://github.blog/engineering/platform-security/githubs-csp-journey/",
"timestamp": 1726151406,
"tags": [
"read",
"security",
"frontend"
]
},
{
"month": "202409",
"title": "Notes on running Go in the browser with WebAssembly - Eli Bendersky's website",
"url": "https://eli.thegreenplace.net/2024/notes-on-running-go-in-the-browser-with-webassembly/",
"timestamp": 1726371588,
"tags": [
"read",
"hack"
]
},
{
"month": "202409",
"title": "Speed matters",
"url": "https://www.scattered-thoughts.net/writing/speed-matters/",
"timestamp": 1726397145,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "The Joel Test: 12 Steps to Better Code",
"url": "https://www.joelonsoftware.com/2000/08/09/the-joel-test-12-steps-to-better-code/",
"timestamp": 1726402063,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Advanced Shell Scripting Techniques: Automating Complex Tasks with Bash",
"url": "https://omid.dev/2024/06/19/advanced-shell-scripting-techniques-automating-complex-tasks-with-bash/",
"timestamp": 1726402128,
"tags": [
"read",
"guide"
]
},
{
"month": "202409",
"title": "Optimizing Javascript for fun and for profit",
"url": "https://romgrk.com/posts/optimizing-javascript",
"timestamp": 1726402405,
"tags": [
"read",
"guide",
"js"
]
},
{
"month": "202409",
"title": "How to Zip Files with the Python S3fs Library + Backblaze B2 Cloud Storage",
"url": "https://www.backblaze.com/blog/how-to-zip-files-with-the-python-s3fs-library-backblaze-b2-cloud-storage/",
"timestamp": 1726671028,
"tags": [
"read",
"hack"
]
},
{
"month": "202409",
"title": "Things I’ve learned serving on the board of the Python Software Foundation",
"url": "https://simonwillison.net/2024/Sep/18/board-of-the-python-software-foundation/",
"timestamp": 1726755270,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Introducing Netflix’s Key-Value Data Abstraction Layer",
"url": "https://netflixtechblog.com/introducing-netflixs-key-value-data-abstraction-layer-1ea8a0a11b30",
"timestamp": 1726758055,
"tags": [
"read",
"distributed"
]
},
{
"month": "202409",
"title": "sz3/libcimbar",
"url": "https://github.com/sz3/libcimbar",
"timestamp": 1726913405,
"tags": [
"tools"
]
},
{
"month": "202409",
"title": "The web's clipboard, and how it stores data of different types",
"url": "undefined/blog/clipboard",
"timestamp": 1726924743,
"tags": [
"deepdive",
"frontend"
]
},
{
"month": "202409",
"title": "Good Refactoring vs Bad Refactoring",
"url": "https://www.builder.io/blog/good-vs-bad-refactoring",
"timestamp": 1726999169,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "Understanding AbortController in Node.js: A Complete Guide | Better Stack Community",
"url": "https://betterstack.com/community/guides/scaling-nodejs/understanding-abortcontroller/",
"timestamp": 1726999684,
"tags": [
"read",
"node"
]
},
{
"month": "202409",
"title": "Deploying Web Apps with Caddy: A Beginner's Guide | Better Stack Community",
"url": "https://betterstack.com/community/guides/web-servers/caddy/",
"timestamp": 1727000235,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "CSS for printing to paper",
"url": "https://voussoir.net/writing/css_for_printing",
"timestamp": 1727000290,
"tags": [
"frontend",
"guide",
"deepdive"
]
},
{
"month": "202409",
"title": "What I tell people new to on-call | nicole@web",
"url": "/blog/what-i-tell-people-new-to-oncall/",
"timestamp": 1727103732,
"tags": [
"read",
"guide"
]
},
{
"month": "202409",
"title": "接纳不等于忍受,为舒服使用 Windows 11 的若干优化调整记录 - 少数派",
"url": "https://sspai.com/post/92064",
"timestamp": 1727281285,
"tags": [
"read",
"guide"
]
},
{
"month": "202409",
"title": "JSON For You | The best online JSON tool",
"url": "https://json4u.com",
"timestamp": 1727361252,
"tags": [
"tools"
]
},
{
"month": "202409",
"title": "Haystack",
"url": "https://haystackeditor.com/",
"timestamp": 1727361289,
"tags": [
"tools"
]
},
{
"month": "202409",
"title": "How iOS Restricts Features by Region: A Look at MobileGestalt and Eligibility",
"url": "https://type.cyhsu.xyz/2024/09/ios-feature-regional-lockout/",
"timestamp": 1727448439,
"tags": [
"deepdive",
"read"
]
},
{
"month": "202409",
"title": "Some Go web dev notes",
"url": "https://jvns.ca/blog/2024/09/27/some-go-web-dev-notes/",
"timestamp": 1727494059,
"tags": [
"read",
"go",
"backend"
]
},
{
"month": "202409",
"title": "It's hard to write code for computers, but it's even harder to write code for humans",
"url": "https://erikbern.com/2024/09/27/its-hard-to-write-code-for-humans.html",
"timestamp": 1727494406,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "How I Think About Debt",
"url": "https://collabfund.com/blog/how-i-think-about-debt/",
"timestamp": 1727523147,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "OpenAPI Spec - Parameter Serialization",
"url": "https://docs.bump.sh/guides/openapi/specification/v3.1/understanding-structure/parameter-serialization/",
"timestamp": 1727523998,
"tags": [
"read",
"books",
"backend"
]
},
{
"month": "202409",
"title": "TCP Fast Open",
"url": "https://dbwu.tech/posts/network/what-is-tcp-fast-open/",
"timestamp": 1727524112,
"tags": [
"read",
"web"
]
},
{
"month": "202409",
"title": "Things You Didn't Know About GNU Readline",
"url": "https://twobithistory.org/2019/08/22/readline.html",
"timestamp": 1727524170,
"tags": [
"read"
]
},
{
"month": "202409",
"title": "NotebookLM’s automatically generated podcasts are surprisingly effective",
"url": "https://simonwillison.net/2024/Sep/29/notebooklm-audio-overview/",
"timestamp": 1727703601,
"tags": [
"read"
]
},
{
"month": "202410",
"title": "Conflating Overture Places Using DuckDB, Ollama, Embeddings, and More",
"url": "https://www.dbreunig.com/2024/09/27/conflating-overture-points-of-interests-with-duckdb-ollama-and-more.html",
"timestamp": 1727754458,
"tags": [
"read",
"guide"
]
},
{
"month": "202410",
"title": "Rowboat",
"url": "https://rowboat.xyz/",
"timestamp": 1727754561,
"tags": [
"tools"
]
},
{
"month": "202410",
"title": "OpenAI DevDay 2024 live blog",
"url": "https://simonwillison.net/2024/Oct/1/openai-devday-2024-live-blog/",
"timestamp": 1727877029,
"tags": [
"read"
]
},
{
"month": "202410",
"title": "A Local-First Case Study | jakelazaroff.com",
"url": "https://jakelazaroff.com/words/a-local-first-case-study/",
"timestamp": 1727877491,
"tags": [
"deepdive",
"frontend"
]
},
{
"month": "202410",
"title": "Terminal colours are tricky",
"url": "https://jvns.ca/blog/2024/10/01/terminal-colours/",
"timestamp": 1727933085,
"tags": [
"read"
]
},
{
"month": "202410",
"title": "Hybrid full-text search and vector search with SQLite",
"url": "https://alexgarcia.xyz/blog/2024/sqlite-vec-hybrid-search/index.html",
"timestamp": 1728094326,
"tags": [
"read",
"db"
]
},
{
"month": "202410",
"title": "Wikidata is a Giant Crosswalk File",
"url": "https://www.dbreunig.com/2024/10/04/wikidata-is-a-giant-crosswalk-file.html",
"timestamp": 1728202911,
"tags": [
"read"
]
},
{
"month": "202410",
"title": "VTracer",
"url": "https://www.visioncortex.org/vtracer/",
"timestamp": 1728276727,
"tags": [
"tools"
]
},
{
"month": "202410",
"title": "Some notes on upgrading Hugo",
"url": "https://jvns.ca/blog/2024/10/07/some-notes-on-upgrading-hugo/",
"timestamp": 1728403457,
"tags": [
"read"
]
},
{
"month": "202410",
"title": "Thoughts on the Treasurer Role at Tech NonProfits - Will Vincent",
"url": "https://wsvincent.com/thoughts-on-pyconnz/",
"timestamp": 1728403559,
"tags": [
"read"
]
},
{
"month": "202410",
"title": "感谢捉虫:聊聊自动更正的前世今生 - 少数派",
"url": "https://sspai.com/post/92657",
"timestamp": 1728404659,
"tags": [
"read"
]
},
{
"month": "202410",
"title": "curl bug-bounty stats | daniel.haxx.se",
"url": "https://daniel.haxx.se/blog/2024/10/09/curl-bug-bounty-stats/",
"timestamp": 1728485683,
"tags": [
"read",
"oss"
]
},
{
"month": "202410",
"title": "Turning a conference talk into an annotated presentation - Jacob Kaplan-Moss",
"url": "https://jacobian.org/til/talk-to-writeup-workflow/",
"timestamp": 1728487369,
"tags": [
"hack"
]
},
{
"month": "202410",
"title": "temporal - Open Source Durable Execution",
"url": "https://temporal.io/",
"timestamp": 1728489021,
"tags": [
"tools"
]
},
{
"month": "202410",
"title": "jazz - Instant sync",
"url": "https://jazz.tools/",
"timestamp": 1728489975,
"tags": [
"tools"
]
},
{
"month": "202410",
"title": "A static business is a healthy business",
"url": "https://world.hey.com/jason/a-static-business-is-a-healthy-business-c0c2961b",
"timestamp": 1728572885,
"tags": [
"read"
]
},
{