-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpocket-data.json
9634 lines (9634 loc) · 392 KB
/
pocket-data.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
[
{
"domain": null,
"excerpt": null,
"id": "20866",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "www.voxengo.com",
"excerpt": "Overview Features & Compatibility User Testimonials Compatible 64-bit Mac OS and Windows PC VST, AudioUnit, AAX, VST3 plugin host software: Ableton Live, Cubase, Logic Pro, REAPER, Pro Tools, FL Studio, Studio One, OBS, Bitwig Studio, Nuendo, WaveLab, Vegas, SoundForge, GarageBand, Cakewalk, Adobe",
"id": "64845519",
"link": "https://www.voxengo.com/product/marvelgeq/",
"tags": [
"hack"
],
"time_added": "1731135964",
"time_updated": "1731250980",
"title": "Voxengo Marvel GEQ free"
},
{
"domain": "downtherabbithole.nl",
"excerpt": "Down The Rabbit Hole 2024: 5 t/m 7 juli, Groene Heuvels, Beuningen",
"id": "419510453",
"link": "https://downtherabbithole.nl/",
"tags": [
"todo"
],
"time_added": "1734989086",
"time_updated": "1734989097",
"title": "4 t/m 6 juli 2025 Groene Heuvels \u2013 Beuningen"
},
{
"domain": "kottke.org",
"excerpt": "After the Civil War, the economic recovery of the southern United States hinged on trade with the North and moving goods westward via the railroad. But there was a problem.",
"id": "724419557",
"link": "https://kottke.org/14/09/the-days-they-changed-the-gauge",
"tags": null,
"time_added": "1737196917",
"time_updated": "1737196917",
"title": "The Days They Changed the Gauge"
},
{
"domain": null,
"excerpt": "",
"id": "1034889505",
"link": "",
"tags": null,
"time_added": "1738968178",
"time_updated": "1738968178",
"title": ""
},
{
"domain": "ohshitgit.com",
"excerpt": "Git is hard: screwing up is easy, and figuring out how to fix your mistakes is fucking impossible.",
"id": "1407664471",
"link": "https://ohshitgit.com/",
"tags": [
"coding"
],
"time_added": "1737585939",
"time_updated": "1737585951",
"title": "Oh Shit, Git!?!"
},
{
"domain": "outlook.office.com",
"excerpt": "",
"id": "2328225122",
"link": "https://outlook.office.com/calendar/view/workweek",
"tags": null,
"time_added": "1732269383",
"time_updated": "1732269383",
"title": "Outlook"
},
{
"domain": "anvaka.github.io",
"excerpt": "",
"id": "2857924005",
"link": "https://anvaka.github.io/city-roads/",
"tags": [
"design",
"map"
],
"time_added": "1734900363",
"time_updated": "1734900386",
"title": "Draw all roads in any city at once"
},
{
"domain": "diagrams.mingrammer.com",
"excerpt": "Diagrams lets you draw the cloud system architecture in Python code. It was born for prototyping a new system architecture without any design tools. You can also describe or visualize the existing system architecture as well.",
"id": "2872686492",
"link": "https://diagrams.mingrammer.com/",
"tags": [
"developper",
"work"
],
"time_added": "1730833405",
"time_updated": "1731153463",
"title": "Diagrams \u00b7 Diagram as Code"
},
{
"domain": "buyzero.de",
"excerpt": "Es besteht aus massivem, eloxiertem Aluminium und ist daher sehr stabil. Es hat schmale \u00d6ffnungen f\u00fcr alle Kabel, Steckpl\u00e4tze f\u00fcr die Pi Camera und andere Peripherieger\u00e4te sowie einen Platz f\u00fcr ein GPIO-Kabel, das aus dem Pi herausgef\u00fchrt wird.",
"id": "3231821559",
"link": "https://buyzero.de/products/aluminum-metal-heatsink-raspberry-pi-4-case-with-dual-fans",
"tags": [
"shopping"
],
"time_added": "1734994724",
"time_updated": "1734994732",
"title": "Aluminum Metal Heatsink Raspberry Pi 4 Case with Dual Fans"
},
{
"domain": "interactionmagic.com",
"excerpt": "Piloting an ocean exploration ship or Martian research shuttle is serious business. Let's hope the control panel is up to scratch. Two studs wide and angled at 45\u00b0, the ubiquitous \"2x2 decorated slope\" is a LEGO minifigure's interface to the world.",
"id": "3259574969",
"link": "https://interactionmagic.com/UX-LEGO-Interfaces",
"tags": [
"design"
],
"time_added": "1733953810",
"time_updated": "1733953836",
"title": "The UX of LEGO Interface Panels"
},
{
"domain": "www.home-assistant.io",
"excerpt": "This tutorial will guide you to turn your old landline phone into the world\u2019s most private voice assistant. Pick up the phone to talk to your smart home and issue commands and get responses. Note: this procedure requires an OpenAI account.",
"id": "3878577605",
"link": "https://www.home-assistant.io/voice_control/worlds-most-private-voice-assistant/",
"tags": [
"hack"
],
"time_added": "1735658381",
"time_updated": "1735658388",
"title": "World's most private voice assistant"
},
{
"domain": "ss64.com",
"excerpt": "Commands marked \u2022 are bash built-in commands, it runs under Darwin the open source core of macOS. In macOS Catalina the default shell will change to zsh and in time this page will be updated to include that. To scroll this page, press [ a \u2013 z ] on the keyboard, or '\\' to Search.",
"id": "3990014513",
"link": "https://ss64.com/mac/",
"tags": [
"coding",
"macos"
],
"time_added": "1731089174",
"time_updated": "1731153685",
"title": "An A-Z Index of Apple macOS (bash) commands"
},
{
"domain": "zarar.dev",
"excerpt": "This post is not advice, it's what's working for me. It's easy to pick up bad habits and hard to create good ones. Writing down what's working for me helps me maintain any good habits I've worked hard to develop.",
"id": "4099058486",
"link": "https://zarar.dev/good-software-development-habits/",
"tags": [
"dev",
"developper"
],
"time_added": "1732139973",
"time_updated": "1732139980",
"title": "Good software development habits"
},
{
"domain": "minds.md",
"excerpt": "The logo image was taken from Reddit. It is a living document, last update: January 2025. Your contributions are welcome!",
"id": "4119194576",
"link": "https://minds.md/zakirullin/cognitive",
"tags": [
"developper",
"work"
],
"time_added": "1735373411",
"time_updated": "1735373432",
"title": "Cognitive load is what matters"
},
{
"domain": "GitHub",
"excerpt": "Play TTS sound on Home Assistant media_player #18",
"id": "4135315467",
"link": "https://github.com/rhasspy/wyoming-satellite/issues/18",
"tags": [
"dev",
"home automation"
],
"time_added": "1737289283",
"time_updated": "1737289300",
"title": "Play TTS sound on Home Assistant media_player #18"
},
{
"domain": "maxbo.me",
"excerpt": "Before I start, why am I doing this? HTML's typesetting capabilities are well documented, but its capabilities as a platform for data exploration, analysis and visualisation are not.",
"id": "4136125979",
"link": "https://maxbo.me/a-html-file-is-all-you-need",
"tags": [
"design",
"dev",
"developper",
"ideas"
],
"time_added": "1732140818",
"time_updated": "1732140846",
"title": "Can we build a reactive article in a single HTML file?"
},
{
"domain": "Dezeen",
"excerpt": "I love mid-century modern, but it makes me sad. In its beauty and simplicity, it speaks of postwar optimism, and a belief in a better world \u2013 one of prosperity and peace, with large homes and larger pay packets.",
"id": "4141433128",
"link": "https://www.dezeen.com/2024/10/23/love-mid-century-modern-makes-me-sad/",
"tags": [
"architecture",
"design",
"furniture",
"house"
],
"time_added": "1732836999",
"time_updated": "1732837040",
"title": "\"I love mid-century modern but it makes me sad\""
},
{
"domain": "mcyoung.xyz",
"excerpt": "JSON is extremely popular but deeply flawed. This article discusses the details of JSON\u2019s design, how it\u2019s used (and misused), and how seemingly helpful \u201chuman readability\u201d features cause headaches instead.",
"id": "4147213129",
"link": "https://mcyoung.xyz/2024/12/10/json-sucks/",
"tags": null,
"time_added": "1733950830",
"time_updated": "1733950830",
"title": "Nobody Gets Fired for Picking JSON, but Maybe They Should? \u00b7 mcyoung"
},
{
"domain": "cp.copernicus.org",
"excerpt": "Climate of the Past Climate of the Past CP Multiple terms: term1 term2 red apples returns results with all terms like: Fructose levels in red and green apples Precise match in quotes: \"term1 term2\" \"red apples\" returns results matching exactly like: Anthocyanin biosynthesis in red apples Exclude a",
"id": "4149540808",
"link": "https://cp.copernicus.org/articles/19/1219/2023/",
"tags": [
"data",
"geography",
"house"
],
"time_added": "1734263301",
"time_updated": "1734263324",
"title": "Viticulture extension in response to global climate change drivers \u2013 lessons from the past and future projections"
},
{
"domain": "phrack.org",
"excerpt": "Title : Calling All Hackers Author : cts ==Phrack Inc.",
"id": "4149729848",
"link": "https://phrack.org/issues/71/17#article",
"tags": [
"finance",
"opinion"
],
"time_added": "1734295416",
"time_updated": "1734295439",
"title": ".:: Calling All Hackers ::."
},
{
"domain": "kottke.org",
"excerpt": "Back in 2016, I wrote about The Most Relaxing Song in the World, an ambient track by Marconi Union called Weightless. Today I learned the band\u2019s record label hosts a 24/7 streaming video of their music on YouTube:",
"id": "4161157030",
"link": "https://kottke.org/25/01/an-ambient-247-streaming-video-of-chill-workstudy-vibes",
"tags": [
"music"
],
"time_added": "1737188702",
"time_updated": "1737188709",
"title": "An Ambient 24/7 Streaming Video of Chill Work/Study Vibes"
},
{
"domain": "www.sergey.fyi",
"excerpt": "Sergey Filimonov's blog",
"id": "4163741610",
"link": "https://www.sergey.fyi/articles/gemini-flash-2",
"tags": [
"work"
],
"time_added": "1739350276",
"time_updated": "1739350288",
"title": "Ingesting Millions of PDFs and why Gemini 2.0 Changes Everything"
},
{
"domain": null,
"excerpt": null,
"id": "4165382536",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": null,
"excerpt": null,
"id": "4166499460",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "briankrebs",
"excerpt": "The payment card giant MasterCard just fixed a glaring error in its domain name server settings that could have allowed anyone to intercept or divert Internet traffic for the company by registering an unused domain name.",
"id": "4166902695",
"link": "https://krebsonsecurity.com/2025/01/mastercard-dns-error-went-unnoticed-for-years/",
"tags": null,
"time_added": "1737584939",
"time_updated": "1737584939",
"title": "MasterCard DNS Error Went Unnoticed for Years \u2013 Krebs on Security"
},
{
"domain": "blog.nelhage.com",
"excerpt": "Earlier this month, I used Claude to port (parts of) an Emacs package into Rust, shrinking the execution time by a factor of 1000 or more (in one concrete case: from 90s to about 15ms).",
"id": "4169301726",
"link": "https://blog.nelhage.com/post/personal-software-with-claude/",
"tags": [
"coding"
],
"time_added": "1738271781",
"time_updated": "1738271793",
"title": "Building personal software with Claude"
},
{
"domain": null,
"excerpt": null,
"id": "4171045135",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "timsh.org",
"excerpt": "Recently I read about a massive geolocation data leak from Gravy Analytics, which exposed more than 2000 apps, both in AppStore and Google Play, that secretly collect geolocation data without user consent. Oftentimes, even without developers` knowledge.",
"id": "4171554878",
"link": "https://timsh.org/tracking-myself-down-through-in-app-ads/",
"tags": [
"infosec"
],
"time_added": "1738737993",
"time_updated": "1738738004",
"title": "Everyone knows your location: tracking myself down through in-app ads"
},
{
"domain": "readdle.com",
"excerpt": "Explore the ecosystem of the best-in-class productivity apps. We simplify complex things, so you can streamline workflows and enjoy the power of technology. Read about our latest updates.",
"id": "4171982331",
"link": "https://readdle.com",
"tags": [
"legalese",
"management",
"ux"
],
"time_added": "1738491119",
"time_updated": "1738491161",
"title": "Readdle"
},
{
"domain": null,
"excerpt": null,
"id": "237938806",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "blog.danielna.com",
"excerpt": "Things are broken. The deployment pipeline is painfully slow. Your engineering team has doubled in the last year and there\u2019s a lack of sufficient process and management.",
"id": "2881612691",
"link": "https://blog.danielna.com/talks/pushing-through-friction/",
"tags": [
"management",
"work"
],
"time_added": "1727985713",
"time_updated": "1731153873",
"title": "Pushing through Friction"
},
{
"domain": "www.brailleinstitute.org",
"excerpt": "Ready to Join? Is this font easy for you to read? Good\u2014that\u2019s the idea.",
"id": "2898650599",
"link": "https://www.brailleinstitute.org/freefont/",
"tags": [
"coding",
"design"
],
"time_added": "1726774739",
"time_updated": "1731153914",
"title": "Read Easier With our Free Font"
},
{
"domain": "baihuqian.github.io",
"excerpt": "IPv6 has been around for a while, but surprisingly, not every ISP supports it. If your ISP supports it, you can enable it on your router.",
"id": "3589256669",
"link": "https://baihuqian.github.io/2021-01-16-secure-home-network-configure-ipv6-for-your-home-network/",
"tags": [
"infosec",
"todo"
],
"time_added": "1729871409",
"time_updated": "1731153659",
"title": "Secure Home Network: Configure IPv6 for Your Home Network"
},
{
"domain": "simplyexplained.com",
"excerpt": "When I was a kid, my sister and I had a tower of VHS tapes we watched endlessly. Fast-forward to today, and my children's movie collection is vastly different. It's completely digital and dispersed across services. I wanted to recreate the tangible magic of my childhood for them.",
"id": "3966955721",
"link": "https://simplyexplained.com/blog/how-i-built-an-nfc-movie-library-for-my-kids/",
"tags": [
"coding",
"todo"
],
"time_added": "1726083473",
"time_updated": "1731154085",
"title": "How I Built an NFC Movie Library for my Kids"
},
{
"domain": "ralphammer.com",
"excerpt": "First of all, what makes a thing a good thing? A good thing fulfils its unique function. Now, what makes a good human? To know what a human should be good at, we need to look at what is unique about humans: We have a soul that thinks and feels.",
"id": "4015022002",
"link": "https://ralphammer.com/aristotle-how-to-live-a-good-life/",
"tags": [
"inspiration",
"management"
],
"time_added": "1724182305",
"time_updated": "1731154131",
"title": "Aristotle \u2014 How to live a good life"
},
{
"domain": "tonsky.me",
"excerpt": "This is my claim: we, as a civilization, forgot how to center things. Okay, maybe not right away, but eventually it gets there.",
"id": "4037210803",
"link": "https://tonsky.me/blog/centering",
"tags": [
"coding",
"design",
"developper",
"humor"
],
"time_added": "1727819084",
"time_updated": "1731153895",
"title": "Hardest Problem in Computer Science: Centering Things"
},
{
"domain": "bitfieldconsulting.com",
"excerpt": "It\u2019s late, and the campfire is burning low. My fellow content creator Zack Proser and I are sitting on a log, chowing down on s\u2019mores and enjoying a few spine-chilling tales of terror about my horrible career.",
"id": "4047586147",
"link": "https://bitfieldconsulting.com/posts/need-money",
"tags": [
"newjob"
],
"time_added": "1730752467",
"time_updated": "1731153505",
"title": "If you need the money, don't take the job \u2014 Bitfield Consulting"
},
{
"domain": "ishadeed.com",
"excerpt": "CSS Grid support has been widely available since March 2017 in all major browsers. Yet, here we are in 2024, and I still see few people using the grid template areas feature. It\u2019s no surprise that many avoid template areas as making sense of the grid is challenging enough.",
"id": "4078693637",
"link": "https://ishadeed.com/article/css-grid-area/",
"tags": [
"design"
],
"time_added": "1724182126",
"time_updated": "1724182136",
"title": "CSS Grid Areas"
},
{
"domain": null,
"excerpt": null,
"id": "4089616699",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "mccue.dev",
"excerpt": "This is one part actionable advice, one part question for the audience. Advice: When you are making a new application that requires persistent storage of data, like is the case for most web applications, your default choice should be Postgres.",
"id": "4090067580",
"link": "https://mccue.dev/pages/8-16-24-just-use-postgres",
"tags": [
"work"
],
"time_added": "1724093347",
"time_updated": "1724093560",
"title": "Just use Postgres"
},
{
"domain": "mds.gardena.com",
"excerpt": "",
"id": "4092133765",
"link": "https://mds.gardena.com/int/products/shrubs/2?q-water-control=option-control-auto&q-water-device=option-device-tap&q-water-distance-plant-rows=option-distance-10&q-plants-kind-row=option-kind-bushes&q-rows-length-total=40&q-plants-corners-rows=10&q-row-count-shrubs=4&q-row-interruptions=3&q-row-interruption-length=3",
"tags": [
"todo"
],
"time_added": "1724269478",
"time_updated": "1731154120",
"title": "MDS Configurator"
},
{
"domain": "YouTube",
"excerpt": "Part One of \"Future Possibilities: Data, Hardware, Software, and People\" presented by Capt. Grace Hopper at NSA in 1982.",
"id": "4094226690",
"link": "https://www.youtube.com/watch?v=si9iqF5uTFk&t=2726s",
"tags": [
"inspiration",
"work"
],
"time_added": "1724859229",
"time_updated": "1731154110",
"title": "Capt. Grace Hopper on Future Possibilities: Data, Hardware, Software, and People (Part One, 1982)"
},
{
"domain": null,
"excerpt": null,
"id": "4095009729",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "commoncog.com",
"excerpt": "I built my first organisation when I was in high school. It was a debate club, and it died the instant I graduated and left for university. I remember looking back on the experience and thinking to myself: \u201cHmm, this is interesting. How do you build an org that outlasts you?\u201d",
"id": "4097084491",
"link": "https://commoncog.com/org-design-skill/",
"tags": [
"management",
"work"
],
"time_added": "1725206245",
"time_updated": "1731154094",
"title": "The Skill of Org Design"
},
{
"domain": "samkahn.substack.com",
"excerpt": "1880s \u2014 Just beyond the technological horizon. I picture Ma Rainey, as she\u2019s depicted in Bessie, bisexual, alcoholic, taking Pullmans from one booze-filled carnival to another.",
"id": "4098675673",
"link": "https://samkahn.substack.com/p/decade-by-decade",
"tags": [
"zeitgeist"
],
"time_added": "1726257681",
"time_updated": "1731251788",
"title": "Decade by Decade"
},
{
"domain": "peterszasz.com",
"excerpt": "The tech industry is going through challenging times: from one side, funding dried up due to the end of the Zero Interest-Rate Period; on the other one, the rapid rise of AI disrupts previously safe domains and business models.",
"id": "4099266188",
"link": "https://peterszasz.com/how-to-lead-your-team-when-the-house-is-on-fire/",
"tags": [
"management"
],
"time_added": "1726775480",
"time_updated": "1731153902",
"title": "How to Lead Your Team when the House Is on Fire"
},
{
"domain": "sinja.io",
"excerpt": "In the previous article (Quick guide to web typography for developers) we covered the basic steps to improve the typography in your apps. Today I'd like to expand a bit more on the topic of fonts and what you can get out of a high-quality font (paid or free).",
"id": "4101545274",
"link": "https://sinja.io//blog/get-maximum-out-of-your-font",
"tags": [
"design"
],
"time_added": "1726257612",
"time_updated": "1731154061",
"title": "Features of your font you had no idea about"
},
{
"domain": "Hacker Noon",
"excerpt": "Intro I absolutely love Paul Graham's style. I can't boast about knowing all of his essays by heart, but there are a few of my favorites, and I'm overwhelmed by the amount of wisdom he manages to put into each paragraph. Recently, I stumbled upon one of his long reads \u2013 \u201cHow to do great work.",
"id": "4109550379",
"link": "https://hackernoon.com/mind-mapping-how-to-do-great-work-my-take-on-paul-grahams-essay-part-one",
"tags": [
"management",
"work"
],
"time_added": "1727986329",
"time_updated": "1731153855",
"title": "Mind Mapping \u201cHow to Do Great Work\u201d: My Take on Paul Graham's Essay (Part One)"
},
{
"domain": null,
"excerpt": null,
"id": "4114616263",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "billwear.github.io",
"excerpt": "But how does one begin? It is not with grand declarations or bold, sweeping changes. That would miss the point entirely. Rather, it is with a gentle attention to the present, a deliberate shift in the way we move through the world.",
"id": "4118904874",
"link": "https://billwear.github.io/art-of-attention.html",
"tags": [
"inspiration"
],
"time_added": "1729280286",
"time_updated": "1731153835",
"title": "the quiet art of attention \u2014 billwear 1.0 documentation"
},
{
"domain": "Creative Bloq",
"excerpt": "While Adobe's annual MAX conference gives the company a chance to unveil its latest features, it also lets the brand demonstrate some of its more weird and wonderful ideas.",
"id": "4119924204",
"link": "https://www.creativebloq.com/design/adobes-new-image-rotation-tool-is-one-of-the-most-impressive-ai-concepts-weve-seen",
"tags": [
"ai",
"design"
],
"time_added": "1729280941",
"time_updated": "1731251776",
"title": "Adobe's new image rotation tool is one of the most impressive AI concepts we've seen"
},
{
"domain": "kmcd.dev",
"excerpt": "I share a daily prompt that\u2019s somewhat related to the tech industry, coding, office life, work/life, balance or anything, to be honest\u2026 If you want to follow along each day, follow me on mastodon infosec.exchange@sudorandom or this RSS feed .",
"id": "4122264942",
"link": "https://kmcd.dev/prompts/",
"tags": [
"work"
],
"time_added": "1729424585",
"time_updated": "1729424592",
"title": "Daily Prompts"
},
{
"domain": null,
"excerpt": null,
"id": "4122267202",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "simonwillison.net",
"excerpt": "I\u2019m a huge fan of Claude\u2019s Artifacts feature, which lets you prompt Claude to create an interactive Single Page App (using HTML, CSS and JavaScript) and then view the result directly in the Claude interface, iterating on it further with the bot and then, if you like, copying out the resulting co",
"id": "4122819091",
"link": "https://simonwillison.net/2024/Oct/21/claude-artifacts/",
"tags": [
"coding",
"developper",
"inspiration"
],
"time_added": "1729919964",
"time_updated": "1731153598",
"title": "Everything I built with Claude Artifacts this week"
},
{
"domain": null,
"excerpt": null,
"id": "4124870402",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "colorango.com",
"excerpt": "Discover our extensive collection of printable coloring pages, all available at no cost. From adorable animals to seasonal themes, every design is carefully crafted and ready to download. Perfect for parents, teachers, and coloring enthusiasts looking for quality artwork to bring to life.",
"id": "4126024831",
"link": "https://colorango.com/",
"tags": [
"game",
"games"
],
"time_added": "1730401226",
"time_updated": "1731251709",
"title": "Free Coloring Pages for Everyone"
},
{
"domain": "stevenscrawls.com",
"excerpt": "I met a social worker whose job was to look after four orphaned children. She\u2019d alternate with her coworkers spending 24 hours at a time living with the kids, effectively acting as their parent.",
"id": "4126099542",
"link": "https://stevenscrawls.com/care-doesnt-scale/",
"tags": [
"inspiration",
"work"
],
"time_added": "1730400485",
"time_updated": "1731153576",
"title": "Care Doesn\u2019t Scale"
},
{
"domain": "expressionstatement.com",
"excerpt": "HTML Forms have powerful validation mechanisms, but they are heavily underused. In fact, not many people even know much about them. Is this because of some flaw in their design? Let\u2019s explore.",
"id": "4126165011",
"link": "https://expressionstatement.com/html-form-validation-is-heavily-underused",
"tags": [
"developper"
],
"time_added": "1730401654",
"time_updated": "1731153516",
"title": "HTML Form Validation is heavily underused"
},
{
"domain": "www.gitpod.io",
"excerpt": "",
"id": "4129533492",
"link": "https://sveltekit-prerender/blog/we-are-leaving-kubernetes",
"tags": [
"developper",
"work"
],
"time_added": "1730831659",
"time_updated": "1731153487",
"title": "https://www.gitpod.io/blog/we-are-leaving-kubernetes"
},
{
"domain": null,
"excerpt": null,
"id": "6800237",
"link": null,
"tags": null,
"time_added": null,
"time_updated": null,
"title": null
},
{
"domain": "iconian.com",
"excerpt": "This site's main feature is fonts created by me, Dan Zadorozny. Choose from the menus to the left and to the right and enjoy your stay. Fonts are for the PC and are free for noncommercial uses, but if you like the fonts or use them, please e-mail me and let me know.",
"id": "10936445",
"link": "http://iconian.com/",
"tags": [
"coding",
"design"
],
"time_added": "1721049709",
"time_updated": "1731154276",
"title": "Iconian Fonts"
},
{
"domain": "www.r2d3.us",
"excerpt": "Let's revisit the 73-m elevation boundary proposed previously to see how we can improve upon our intuition. Clearly, this requires a different perspective.",
"id": "993787984",
"link": "http://www.r2d3.us/visual-intro-to-machine-learning-part-1/",
"tags": [
"work"
],
"time_added": "1721241119",
"time_updated": "1724093698",
"title": "A visual introduction to machine learning"
},
{
"domain": "realpython.com",
"excerpt": "Do you have a phone that you can unlock with your face? Have you ever wondered how that works? Have you ever wanted to build your own face recognizer? With Python, some data, and a few helper packages, you can create your very own.",
"id": "2194453882",
"link": "https://realpython.com/face-recognition-with-python/",
"tags": [
"project"
],
"time_added": "1721248212",
"time_updated": "1724093687",
"title": "Build Your Own Face Recognition Tool With Python"
},
{
"domain": "GitHub",
"excerpt": "get things from one computer to another, safely. Contribute to magic-wormhole/magic-wormhole development by creating an account on GitHub.",
"id": "3225274505",
"link": "https://github.com/magic-wormhole/magic-wormhole",
"tags": [
"developper",
"work"
],
"time_added": "1724076947",
"time_updated": "1724093578",
"title": "magic-wormhole/magic-wormhole"
},
{
"domain": "sefiks.com",
"excerpt": "A face recognition task requires to store multidimensional array and make calculations over it. This task is not mostly matching the capabilities of relational databases and SQL. However, RDBMS comes with elegant, neat and well organized structures.",
"id": "3250623172",
"link": "https://sefiks.com/2021/02/06/deep-face-recognition-with-sql/",
"tags": [
"project"
],
"time_added": "1721249655",
"time_updated": "1724093671",
"title": "Deep Face Recognition with Relational Databases and SQL"
},
{
"domain": "viso.ai",
"excerpt": "Facial recognition has been a hot topic for several decades. While there are different facial recognition libraries available, DeepFace has become widely popular and is used in numerous face recognition applications.",
"id": "3402427201",
"link": "https://viso.ai/computer-vision/deepface/",
"tags": [
"project"
],
"time_added": "1721248407",
"time_updated": "1724093679",
"title": "DeepFace: A Popular Open Source Facial Recognition Library"
},
{
"domain": "nohello.net",
"excerpt": "please don't say just hello in chat",
"id": "3545476238",
"link": "https://nohello.net/",
"tags": [
"humor",
"management",
"optimize"
],
"time_added": "1720213606",
"time_updated": "1731252120",
"title": "no hello"
},
{
"domain": "horizon.pics",
"excerpt": "Empowering Seamless, Private, and Organized Sharing with Horizon. Horizon offers dependable media storage and seamless sharing for professionals and casual users alike. It's the home for all your files, small or large.",
"id": "3752637833",
"link": "https://horizon.pics",
"tags": [
"tooling"
],
"time_added": "1721204488",
"time_updated": "1731154265",
"title": "Supercharged fast, private & reliable file hosting \u2013 Horizon"
},
{
"domain": "www.alpinequest.net",
"excerpt": "AlpineQuest & OfflineMaps Official Support Forum The support forum is temporarily read-only. For urgent requests, please email contact[at]psyberia.net France IGN Licensed Data FREE Topo Maps It's all about maps...",
"id": "3761573032",
"link": "https://www.alpinequest.net/forum/viewtopic.php?t=5496",
"tags": [
"travel"
],
"time_added": "1720851504",
"time_updated": "1731154295",
"title": "France IGN Licensed Data FREE Topo Maps"
},
{
"domain": "GitHub",
"excerpt": "TensorFlow 101: Introduction to Deep Learning. Contribute to serengil/tensorflow-101 development by creating an account on GitHub.",
"id": "3954775340",
"link": "https://github.com/serengil/tensorflow-101/blob/master/python/Face-Recognition-SQL.ipynb",
"tags": [
"project"
],
"time_added": "1721249754",
"time_updated": "1724093660",
"title": "Face-Recognition-SQL.ipynb"
},
{
"domain": "www.henrikkarlsson.xyz",
"excerpt": "The reason I've spent so long establishing this rather obvious point [that writing helps you refine your thinking] is that it leads to another that many people will find shocking.",
"id": "4041116208",
"link": "https://www.henrikkarlsson.xyz/p/writing-to-think",
"tags": [
"work"
],
"time_added": "1720632710",
"time_updated": "1724093911",
"title": "How to think in writing"
},
{
"domain": "blog.nelhage.com",
"excerpt": "I worked at Stripe for about seven years, from 2012 to 2019. Over that time, I used and contributed to many generations of Stripe\u2019s developer environment \u2013 the tools that engineers used daily to write and test code.",
"id": "4052452036",
"link": "https://blog.nelhage.com/post/stripe-dev-environment/",
"tags": [
"work"
],
"time_added": "1724091466",
"time_updated": "1724093567",
"title": "Stripe's monorepo developer environment"
},
{
"domain": "ollama.com",
"excerpt": "This is a guest post from Ty Dunn, Co-founder of Continue, that covers how to set up, explore, and figure out the best way to use Continue and Ollama together. Continue enables you to easily create your own coding assistant directly inside Visual Studio Code and JetBrains with open-source LLMs.",
"id": "4057251336",
"link": "https://ollama.com/blog/continue-code-assistant",
"tags": [
"ai",
"developper",
"optimize"
],
"time_added": "1720024231",
"time_updated": "1731252203",
"title": "An entirely open-source AI code assistant inside your editor"
},
{
"domain": "reactormag.com",
"excerpt": "At present, I have an alarming number of tabs open. I\u2019m absolutely not going to tell you how many, or how many are open on my phone. There are 15 pages of notes in my now-finished notebook that are about the same subject that led to all these tabs.",
"id": "4069056115",
"link": "https://reactormag.com/the-joy-of-reading-books-you-dont-entirely-understand/",
"tags": [
"inspiration"
],
"time_added": "1720632695",
"time_updated": "1731154387",
"title": "The Joy of Reading Books You Don’t Entirely Understand"
},
{
"domain": "pmarca.substack.com",
"excerpt": "Enjoy!",
"id": "4069587681",
"link": "https://pmarca.substack.com/p/the-true-story-as-best-i-can-remember",
"tags": [
"lore"
],
"time_added": "1719953635",
"time_updated": "1731252226",
"title": "The true story -- as best I can remember -- of the origin of Mosaic and Netscape."
},
{
"domain": "mlops.systems",
"excerpt": "The headline for this post could well have been: finetuned models beat OpenAI, but evals were a bit painful to implement. There\u2019s a lot of hidden code here in this post and it was slow to run.",
"id": "4070345762",
"link": "https://mlops.systems/posts/2024-07-01-full-finetuned-model-evaluation.html",
"tags": [
"ai",
"developper",
"hack",
"optimize"
],
"time_added": "1719953389",
"time_updated": "1731252248",
"title": "My finetuned models beat OpenAI\u2019s GPT-4"
},
{
"domain": "blog.gabornyeki.com",
"excerpt": "Many programs that we write can be embedded in recurrent neural networks (RNNs). For such programs, a trained RNN can perform better than if we write the algorithm by hand, refining it via trial and error. I walk through an example in detail.",
"id": "4070594275",
"link": "https://blog.gabornyeki.com/2024-07-my-python-code-is-a-neural-network/",
"tags": [
"coding",
"work"
],
"time_added": "1720632697",
"time_updated": "1731154378",
"title": "My Python code is a neural network"
},
{
"domain": "blog.brachiosoft.com",
"excerpt": "Linus Torvalds once wrote in a book that he created Linux just for fun, but it ended up sparking a revolution. Git, his second major creation, also an accidental revolution. It\u2019s now a standard tool for software engineers, but its origin story wasn\u2019t so much fun this time, at least for Linus.",
"id": "4070665576",
"link": "https://blog.brachiosoft.com/en/posts/git/",
"tags": [
"lore"
],
"time_added": "1720632700",
"time_updated": "1731154336",
"title": "A Git story: Not so fun this time"
},
{
"domain": "Quanta Magazine",
"excerpt": "After decades of uncertainty, a motley team of programmers has proved precisely how complicated simple computer programs can get.",
"id": "4071038212",
"link": "https://www.quantamagazine.org/amateur-mathematicians-find-fifth-busy-beaver-turing-machine-20240702/",
"tags": [
"inspiration",
"math",
"research"
],
"time_added": "1720208152",
"time_updated": "1731252157",
"title": "With Fifth Busy Beaver, Researchers Approach Computation\u2019s Limits"
},
{
"domain": "Reddit",
"excerpt": "",
"id": "4071175805",
"link": "https://www.reddit.com/r/interestingasfuck/comments/1dtqcvk/this_is_how_steve_ballmer_used_to_do_microsoft/?share_id=4l0tj2rrwsnv6cwefyuKn&utm_content=1&utm_medium=ios_app&utm_name=iossmf&utm_source=share&utm_term=22",
"tags": [
"humor"
],
"time_added": "1719954344",
"time_updated": "1731252215",
"title": "This is how Steve Ballmer used to do Microsoft presentations when he was the CEO"
},
{
"domain": "Reddit",
"excerpt": "",
"id": "4072050662",
"link": "https://www.reddit.com/r/blackmagicfuckery/comments/1d2ts1s/cones_are_messed_up/?share_id=JwTP_stF-FWNE5I4QbQzj&utm_content=2&utm_medium=ios_app&utm_name=iossmf&utm_source=share&utm_term=22",
"tags": [
"design",
"inspiration",
"math"
],
"time_added": "1720132637",
"time_updated": "1731252184",
"title": "Cones are messed up"