-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlinks_cache.json
More file actions
5390 lines (5390 loc) · 360 KB
/
links_cache.json
File metadata and controls
5390 lines (5390 loc) · 360 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
{
"https://b.osmarks.net/": {
"excerpt": "os \"I have to restart the instance every time I change this\" marks microblog.\nI write and deeply resent software, am interested in machine learning, and\nplay various sandbox games sometimes.",
"title": "Homepage",
"author": "osmarks",
"date": null,
"website": "osmarks's microblog",
"auto": true
},
"https://projecteuler.net/friends": {
"excerpt": "A website dedicated to the fascinating world of mathematics and programming",
"title": "About - Project Euler",
"author": "Colin Hughes",
"date": null,
"website": null,
"auto": true
},
"https://github.com/osmarks/meme-search-engine": {
"excerpt": "Large-scale CLIP image search. Contribute to osmarks/meme-search-engine development by creating an account on GitHub.",
"title": "GitHub - osmarks/meme-search-engine: Large-scale CLIP image search",
"author": "osmarks",
"date": null,
"website": "GitHub",
"auto": true
},
"https://esolangs.org/wiki/Osmarkscalculator": {
"excerpt": "osmarkscalculator is an esolang based on rewrite rules.",
"title": "Osmarkscalculator - Esolang",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://potatos.madefor.cc/": {
"excerpt": "PotatOS Otiose Transformative Advanced Technology Or Something, inescapably, is the best OS for ComputerCraft and derivatives. Install now with pastebin run 7HSiHybr.",
"title": "PotatOS",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://tweaked.cc/": {
"excerpt": "Documentation index for CC: Tweaked",
"title": "CC: Tweaked",
"author": null,
"date": null,
"website": "CC: Tweaked",
"auto": true
},
"https://status.osmarks.net/": {
"excerpt": "Latency 187ms",
"title": "10/10 up - OnStat",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://github.com/osmarks/minoteaur-8": {
"excerpt": "After just 4 years of very inconsistent development, the world is ready for Minoteaur. Version 8 is a mostly complete, somewhat quirky application. - osmarks/minoteaur-8",
"title": "GitHub - osmarks/minoteaur-8: After just 4 years of very inconsistent development, the world is ready for Minoteaur. Version 8 is a mostly complete, somewhat quirky application.",
"author": "osmarks",
"date": null,
"website": "GitHub",
"auto": true
},
"https://github.com/osmarks/liminal-octothorpe": {
"excerpt": "AI \"\"\"\"agent\"\"\"\" development. Contribute to osmarks/liminal-octothorpe development by creating an account on GitHub.",
"title": "GitHub - osmarks/liminal-octothorpe: AI \"\"\"\"agent\"\"\"\" development",
"author": "osmarks",
"date": null,
"website": "GitHub",
"auto": true
},
"https://github.com/osmarks/misc/tree/master/computercraft": {
"excerpt": "In the interest of transparency and/or their great value to society, I'm releasing my smaller projects/scripts upon an unsuspecting public. - osmarks/misc",
"title": "misc/computercraft at master · osmarks/misc",
"author": null,
"date": null,
"website": "GitHub",
"auto": true
},
"https://github.com/osmarks/misc/": {
"excerpt": "In the interest of transparency and/or their great value to society, I'm releasing my smaller projects/scripts upon an unsuspecting public. - osmarks/misc",
"title": "GitHub - osmarks/misc: In the interest of transparency and/or their great value to society, I'm releasing my smaller projects/scripts upon an unsuspecting public.",
"author": "osmarks",
"date": null,
"website": "GitHub",
"auto": true
},
"https://www.astralcodexten.com/p/your-book-review-progress-and-poverty": {
"excerpt": "Finalist #3 of the book review contest",
"title": "Your Book Review: Progress And Poverty",
"author": "Scott Alexander",
"date": "2021-04-16T04:21:15+00:00",
"website": "Astral Codex Ten",
"auto": true
},
"https://www.npr.org/2019/11/25/782723429/t-mobiles-parent-tells-small-firm-to-keep-its-hands-off-magenta": {
"excerpt": "The mobile phone carrier is serious about the color associated with its brand. Now, a legal dispute involving T-Mobile's parent is raising the question: Is it possible to own a color?",
"title": "T-Mobile Has A Trademark On Magenta, Demands An Insurance Company Stop Using It",
"author": "By ",
"date": "2019-11-25T16:52:03-05:00",
"website": "NPR",
"auto": true
},
"https://en.wikipedia.org/wiki/Harberger_Tax": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Harberger Tax",
"author": "Contributors to Wikimedia projects",
"date": "2022-10-16T10:46:56Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://en.wikipedia.org/wiki/Hick%27s_law": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Hick's law",
"author": "Contributors to Wikimedia projects",
"date": "2004-06-25T03:02:48Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://gwern.net/harberger": {
"excerpt": "Copyright mechanism proposal to solve the orphan works problem: self-assessed Harberger taxes on any inherited copyright are then invested, and dedicated to eventually buying out the owners. Works are either immediately public-domained, or the owners voluntarily ‘sell’ them if their value underperforms a baseline investment.",
"title": "Self-Funding Harberger Taxes",
"author": "gwern",
"date": "2024-11-22",
"website": null,
"auto": true,
"referenceIn": {
"georg": "A related but more specific proposal."
}
},
"https://en.wikipedia.org/wiki/Multiply%E2%80%93accumulate_operation": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Multiply–accumulate operation",
"author": "Contributors to Wikimedia projects",
"date": "2003-12-17T01:10:20Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://ai.meta.com/blog/dlrm-an-advanced-open-source-deep-learning-recommendation-model/": {
"excerpt": "We are open-sourcing a state-of-the-art deep learning recommendation model to help AI researchers and the systems and hardware community develop new, more efficient ways to work with categorical data.",
"title": "We are open-sourcing a state-of-the-art deep learning recommendation model to help AI researchers and the systems and hardware community develop new, more efficient ways to work with categorical data.",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://ai.meta.com/blog/meta-training-inference-accelerator-AI-MTIA/": {
"excerpt": "In 2020, we initiated the Meta Training and Inference Accelerator (MTIA) family of chips to support our evolving AI workloads, starting with an inference accelerator ASIC for deep learning recommendation models (DLRMs).",
"title": "MTIA v1: Meta’s first-generation AI inference accelerator",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://web.archive.org/web/20240909133702/https://en.wikipedia.org/wiki/Lightmatter": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Lightmatter - Wikipedia",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://mythic.ai/": {
"excerpt": "Power-Efficient AI Acceleration, from Edge to Enterprise M1076 Analog Matrix Processor The M1076 Mythic AMP™ delivers up to 25 TOPS in a single chip for high-end edge AI applications. Learn More MM1076 M.2 M Key Card The MM1076 M.2 M key card enables high-performance, yet power-efficient AI inference for edge devices and edge servers. Learn…",
"title": "Power-efficient analog compute for edge AI - Mythic",
"author": "By Mythic",
"date": null,
"website": "Mythic",
"auto": true
},
"https://chipsandcheese.com/2024/04/22/intel-meteor-lakes-npu/": {
"excerpt": "AI is a hot topic and Intel doesn’t want to be left out, so their Meteor Lake mobile processor integrates a Neural Processing Unit (NPU).",
"title": "Intel Meteor Lake’s NPU",
"author": "Chester Lam",
"date": "2024-04-22T15:52:49+00:00",
"website": "Chips and Cheese",
"auto": true
},
"https://chipsandcheese.com/2023/10/04/qualcomms-hexagon-dsp-and-now-npu/": {
"excerpt": "Cell phones have to handle telecommunications and audiovisual processing while maximizing battery life.",
"title": "Qualcomm’s Hexagon DSP, and now, NPU",
"author": "Chester Lam",
"date": "2023-10-04T21:56:56+00:00",
"website": "Chips and Cheese",
"auto": true
},
"https://groq.com/": {
"excerpt": "The LPU™ Inference Engine by Groq is a hardware and software platform that delivers exceptional compute speed, quality, and energy efficiency. Groq provides cloud and on-prem solutions at scale for AI applications.",
"title": "Groq is Fast AI Inference",
"author": null,
"date": "2023-12-22T12:27:03-08:00",
"website": "Groq",
"auto": true
},
"https://www.semianalysis.com/p/groq-inference-tokenomics-speed-but": {
"excerpt": "Faster than Nvidia? Dissecting the economicsGroq, an AI hardware startup, has been making the rounds recently because of their extremely impressive demos showcasing the leading open-source model, M…",
"title": "Groq Inference Tokenomics: Speed, But At What Cost?",
"author": null,
"date": "2024-02-21T10:44:53+00:00",
"website": "SemiAnalysis",
"auto": true
},
"https://chipsandcheese.com/2022/09/01/hot-chips-34-teslas-dojo-microarchitecture/": {
"excerpt": "To say Tesla is merely interested in machine learning is an understatement.",
"title": "Hot Chips 34 – Tesla’s Dojo Microarchitecture",
"author": "Chester Lam",
"date": "2022-09-01T18:24:53+00:00",
"website": "Chips and Cheese",
"auto": true
},
"https://cerebras.ai/": {
"excerpt": "Cerebras is the go-to platform for fast and effortless AI training. Learn more at cerebras.ai.",
"title": "Cerebras",
"author": null,
"date": null,
"website": "Cerebras",
"auto": true
},
"https://spectrum.ieee.org/cerebras-chip-cs3": {
"excerpt": "<p>Which will power an 8-exaflop AI supercomputer</p>",
"title": "Cerebras Unveils Its Next Waferscale AI Chip",
"author": "Samuel K. Moore",
"date": "2024-03-13T13:00:05Z",
"website": "IEEE Spectrum",
"auto": true
},
"https://cerebras.ai/blog/announcing-the-cerebras-architecture-for-extreme-scale-ai/": {
"excerpt": "Sean Lie, Co-Founder and Chief Hardware Architect | August 24, 2021 Today at the Hot Chips conference, we proudly unveiled […]",
"title": "Announcing the Cerebras Architecture for Extreme-Scale AI - Cerebras",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://tenstorrent.com/": {
"excerpt": "Tenstorrent is a next-generation computing company that builds computers for AI. Headquartered in the U.S. with offices in Austin, Texas, and Silicon Valley, and global offices in Toronto, Belgrade, Seoul, Tokyo, and Bangalore, Tenstorrent brings together experts in the field of computer architecture, ASIC design, RISC-V technology, advanced systems, and neural network compilers.",
"title": "Tenstorrent",
"author": null,
"date": null,
"website": "Tenstorrent",
"auto": true
},
"https://www.etched.com/announcing-etched": {
"excerpt": "",
"title": "Etched is Making the Biggest Bet in AI",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://siboehm.com/articles/22/CUDA-MMM": {
"excerpt": "In this post, I’ll iteratively optimize an implementation of matrix multiplication written in CUDA.My goal is not to build a cuBLAS replacement, but to deepl...",
"title": "How to Optimize a CUDA Matmul Kernel for cuBLAS-like Performance: a Worklog",
"author": "Simon Boehm",
"date": "2022-12-31T08:06:04+01:00",
"website": null,
"auto": true
},
"https://docs.nvidia.com/cuda/hopper-tuning-guide/index.html": {
"excerpt": "The programming guide for tuning CUDA Applications for GPUs based on the Hopper GPU Architecture.",
"title": "1. NVIDIA Hopper Tuning Guide — Hopper Tuning Guide 12.8 documentation",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://ai.meta.com/research/publications/the-llama-3-herd-of-models/": {
"excerpt": "Modern artificial intelligence (AI) systems are powered by foundation models. This paper presents a new set of foundation models, called Llama 3. It is a...",
"title": "The Llama 3 Herd of Models | Research",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://fuse.wikichip.org/news/7343/iedm-2022-did-we-just-witness-the-death-of-sram/": {
"excerpt": "IEDM 2022: Did we just witness the death of SRAM? While foundries continue to show strong logic transistor scaling, SRAM scaling has completely collapsed.",
"title": "IEDM 2022: Did We Just Witness The Death Of SRAM?",
"author": "David Schor",
"date": "2022-12-14T03:00:58-05:00",
"website": "WikiChip Fuse",
"auto": true
},
"https://arxiv.org/abs/1912.03413": {
"excerpt": "This report focuses on the architecture and performance of the Intelligence Processing Unit (IPU), a novel, massively parallel platform recently introduced by Graphcore and aimed at Artificial Intelligence/Machine Learning (AI/ML) workloads. We dissect the IPU's performance behavior using microbenchmarks that we crafted for the purpose. We study the IPU's memory organization and performance. We study the latency and bandwidth that the on-chip and off-chip interconnects offer, both in point-to-point transfers and in a spectrum of collective operations, under diverse loads. We evaluate the IPU's compute power over matrix multiplication, convolution, and AI/ML primitives. We discuss actual performance in comparison with its theoretical limits. Our findings reveal how the IPU's architectural design affects its performance. Moreover, they offer simple mental models to predict an application's performance on the IPU, on the basis of the computation and communication steps it involves. This report is the natural extension to a novel architecture of a continuing effort of ours that focuses on the microbenchmark-based discovery of massively parallel architectures.",
"title": "Dissecting the Graphcore IPU Architecture via Microbenchmarking",
"author": "[Submitted on 7 Dec 2019]",
"date": null,
"website": "arXiv.org",
"auto": true
},
"https://fleetwood.dev/posts/a-first-principles-analysis-of-consumer-smart-glasses": {
"excerpt": "fleetwood.dev",
"title": "fleetwood.dev",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://www.apple.com/apple-vision-pro/": {
"excerpt": "Apple Vision Pro is Apple’s first spatial computer. It seamlessly blends digital content with your physical space using revolutionary technology.",
"title": "Apple Vision Pro",
"author": null,
"date": null,
"website": "Apple",
"auto": true
},
"https://kguttag.com/2024/05/27/cogni-trax-why-hard-edge-occlusion-is-still-impossible-behind-the-magic-trick/": {
"excerpt": "I saw the Cogni Trax hard edge occlusion demo last week at SID Display Week 2024, and it epitomized the concept of being a “magic show.” In this article I explain the concept behind Cog…",
"title": "Cogni Trax & Why Hard Edge Occlusion Is Still Impossible (Behind the Magic Trick)",
"author": "Karl Guttag\t\t\t",
"date": "2024-05-28T00:33:42+00:00",
"website": "KGOnTech",
"auto": true
},
"https://www.epson.co.uk/en_GB/products/smart-glasses/see-through-mobile-viewer/moverio-bt-40/p/31095": {
"excerpt": "Personal smart glasses that offer a high-resolution, big screen experience that is projected into the wearer's line of sight.",
"title": "Moverio BT-40 | See-Through Mobile Viewer | Smart Glasses | Products | Epson United Kingdom",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://kguttag.com/2024/08/18/even-realities-g1-minimalist-ar-glasses-with-integrated-prescription-lenses/": {
"excerpt": "Introduction The recently announced Even Realities G1 (ER G1) glasses (right) enter a somewhat crowded field of glasses form factor AR glasses using Jade Bird Display’s (JBD) 640×480 gre…",
"title": "Even Realities G1: Minimalist AR Glasses with Integrated Prescription Lenses",
"author": "Karl Guttag\t\t\t",
"date": "2024-08-18T15:12:37+00:00",
"website": "KGOnTech",
"auto": true
},
"https://research.google/blog/soli-radar-based-perception-and-interaction-in-pixel-4/": {
"excerpt": "Posted by Jaime Lien, Research Engineer and Nicholas Gillian, Software Engineer, Google Advanced Technology and Projects The Pixel 4 and Pixel 4 ...",
"title": "Soli Radar-Based Perception and Interaction in Pixel 4",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://federicorcassarino.substack.com/p/ar-glasses-much-more-than-you-wanted": {
"excerpt": "The transformative power of augmented reality glasses.",
"title": "AR Glasses: Much more than you wanted to know",
"author": "Federico R. Cassarino",
"date": "2021-01-16T00:30:35+00:00",
"website": "Federico’s Newsletter",
"auto": true
},
"https://kguttag.com/2019/10/07/fov-obsession/": {
"excerpt": "Introduction One thing that continually confounds me is the high percentage of people, who when discussing AR, seem to only care about the display’s field of view (FOV) as if it is the only specifi…",
"title": "FOV Obsession",
"author": "Karl Guttag\t\t\t",
"date": "2019-10-07T15:37:01+00:00",
"website": "KGOnTech",
"auto": true
},
"https://web.archive.org/web/20240216092219/https://sensebridge.net/projects/northpaw/": {
"excerpt": "Order | Assembly Instructions | Downloads",
"title": "Sensebridge - making the invisible visible",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://gwern.net/idea": {
"excerpt": "Someone (who is not me) should do something: a wishlist of miscellaneous research or project ideas—free to a good home.",
"title": "Research Ideas",
"author": "Gwern",
"date": null,
"website": null,
"auto": true
},
"https://en.wikipedia.org/wiki/Words_per_minute": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Words per minute",
"author": "Contributors to Wikimedia projects",
"date": "2004-11-30T21:47:50Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://en.wikipedia.org/wiki/GNU_Units": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "GNU Units",
"author": "Contributors to Wikimedia projects",
"date": "2003-01-23T16:01:54Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://campus.barracuda.com/product/cloudgenfirewall/doc/169426005/f180-and-f183-revision-a": {
"excerpt": "eF180 Rev. A Standard ModelModel F183 Rev. AWarranty and Safety InstructionsOpening your Barracuda Networks appliance or removing its warranty label unless instructed to do so by Barracuda ...",
"title": "F180 and F183 Revision A",
"author": "Barracuda Networks, Inc",
"date": null,
"website": "Barracuda Campus",
"auto": true
},
"https://campus.barracuda.com/product/cloudgenfirewall/doc/93880710/f380-revision-b/": {
"excerpt": "Default Port ConfigurationPort LabelOS NotationSpeed/TypeManagement Port1p110/100/1000 MBit RJ45X2p210/100/1000 MBit RJ45 3p310/100/1000 MBit RJ45 4p410/100/1000 MBit RJ45 5p510/100/1000 MBit ...",
"title": "F380 Revision B",
"author": "Barracuda Networks, Inc",
"date": null,
"website": "Barracuda Campus",
"auto": true
},
"https://www.aewin.com/products/scb-1723/": {
"excerpt": "1U Rack-Mount Network appliance Intel Xeon E (Coffee Lake-S) and 8th Core i7/i5/i3 processor and Intel® H310 PCH, support DDR4 up to 32GB, 2x 2.5\" SATA3.0 HDD/SSD, 2x USB 2.0, 8x GbE Copper ports, 1x NIC, 1x Console",
"title": "SCB-1723 - Intel 8/9th Core i7/i5/i3 - AEWIN",
"author": null,
"date": null,
"website": "AEWIN",
"auto": true
},
"https://wiki.archlinux.org/title/Install_Arch_Linux_via_SSH": {
"excerpt": "This article is intended to show users how to install Arch remotely via an SSH connection. Consider this approach when the host is located remotely or you wish to use the copy/paste ability of an SSH client to do the Arch install.",
"title": "Install Arch Linux via SSH",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://openwrt.org/docs/guide-user/network/traffic-shaping/sqm": {
"excerpt": "OpenWrt supports SQM for mitigating bufferbloat, the undesirable latency that arises when your router buffers too much data.",
"title": "[OpenWrt Wiki] SQM (Smart Queue Management)",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://www.servethehome.com/intel-atom-c2000-c0-stepping-fixing-the-avr54-bug/": {
"excerpt": "Intel published details of two new Intel Atom C2000 series processors and a new silicon stepping, C0, that fixes the AVR54 bug in previous versions",
"title": "Intel Atom C2000 C0 Stepping Fixing the AVR54 Bug",
"author": "Cliff Robinson",
"date": "2017-04-23T15:01:16+00:00",
"website": "ServeTheHome",
"auto": true
},
"https://www.tomshardware.com/news/intel-cc150-cpu-specs-benchmark-results": {
"excerpt": "A Chinese forum user has seemingly benchmarked this CPU that strangely lacks turbo boost.",
"title": "Intel CC150: The Strange Case of the CPU With 8C/16T and no Turbo",
"author": "Zhiye Liu",
"date": "2020-02-05T19:37:12+00:00",
"website": "Tom's Hardware",
"auto": true
},
"http://www.incompleteideas.net/IncIdeas/BitterLesson.html": {
"excerpt": "In computer chess, the methods that defeated the world champion,\nKasparov, in 1997, were based on massive, deep search. At the time,\nthis was looked upon with dismay by the majority of computer-chess\nresearchers who had pursued methods that leveraged human understanding\nof the special structure of chess. When a simpler, search-based\napproach with special hardware and software proved vastly more\neffective, these human-knowledge-based chess researchers were not good\nlosers. They said that ``brute force\" search may have won this time,\nbut it was not a general strategy, and anyway it was not how people\nplayed chess. These researchers wanted methods based on human input to\nwin and were disappointed when they did not.",
"title": "The Bitter Lesson",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://reference.wolfram.com/language/guide/RulesAndPatterns.html": {
"excerpt": "At the core of the Wolfram Language's symbolic programming paradigm is the concept of transformation rules for arbitrary symbolic patterns. The Wolfram Language's pattern language conveniently describes a very general set of classes of expressions, making possible uniquely readable, elegant and efficient programs.",
"title": "Rules & Patterns—Wolfram Language Documentation",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://github.com/corywalker/expreduce": {
"excerpt": "An experimental computer algebra system written in Go - corywalker/expreduce",
"title": "GitHub - corywalker/expreduce: An experimental computer algebra system written in Go",
"author": "corywalker",
"date": null,
"website": "GitHub",
"auto": true
},
"https://en.wikipedia.org/wiki/A*_search_algorithm": {
"excerpt": "A* (pronounced \"A-star\") is a graph traversal and pathfinding algorithm that is used in many fields of computer science due to its completeness, optimality, and optimal efficiency.[1] Given a weighted graph, a source node and a goal node, the algorithm finds the shortest path (with respect to the given weights) from source to goal.",
"title": "A* search algorithm",
"author": "Contributors to Wikimedia projects",
"date": "2002-10-07T18:12:16Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://en.wikipedia.org/wiki/Nearest_neighbor_search": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Nearest neighbor search",
"author": "Contributors to Wikimedia projects",
"date": "2006-10-05T22:30:08Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://en.wikipedia.org/wiki/Levenshtein_distance": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Levenshtein distance",
"author": "Contributors to Wikimedia projects",
"date": "2003-12-18T04:33:02Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://en.wikipedia.org/wiki/Confluence_(abstract_rewriting)": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Confluence (abstract rewriting)",
"author": "Contributors to Wikimedia projects",
"date": "2006-01-17T22:58:41Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://en.wikipedia.org/wiki/Knuth%E2%80%93Bendix_completion_algorithm": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Knuth–Bendix completion algorithm",
"author": "Contributors to Wikimedia projects",
"date": "2004-04-23T15:28:45Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://en.wikipedia.org/wiki/Word_problem_(mathematics)": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Word problem (mathematics)",
"author": "Contributors to Wikimedia projects",
"date": "2006-01-26T13:15:55Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://en.wikipedia.org/wiki/Richardson%27s_theorem": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Richardson's theorem",
"author": "Contributors to Wikimedia projects",
"date": "2007-09-27T18:07:58Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://deepmind.google/discover/blog/ai-solves-imo-problems-at-silver-medal-level/": {
"excerpt": "Breakthrough models AlphaProof and AlphaGeometry 2 solve advanced reasoning problems in mathematics",
"title": "AI achieves silver-medal standard solving International Mathematical Olympiad problems",
"author": "AlphaProof and AlphaGeometry teams",
"date": null,
"website": "Google DeepMind",
"auto": true
},
"https://arxiv.org/abs/1712.01815": {
"excerpt": "The game of chess is the most widely-studied domain in the history of artificial intelligence. The strongest programs are based on a combination of sophisticated search techniques, domain-specific adaptations, and handcrafted evaluation functions that have been refined by human experts over several decades. In contrast, the AlphaGo Zero program recently achieved superhuman performance in the game of Go, by tabula rasa reinforcement learning from games of self-play. In this paper, we generalise this approach into a single AlphaZero algorithm that can achieve, tabula rasa, superhuman performance in many challenging domains. Starting from random play, and given no domain knowledge except the game rules, AlphaZero achieved within 24 hours a superhuman level of play in the games of chess and shogi (Japanese chess) as well as Go, and convincingly defeated a world-champion program in each case.",
"title": "Mastering Chess and Shogi by Self-Play with a General Reinforcement Learning Algorithm",
"author": "[Submitted on 5 Dec 2017]",
"date": null,
"website": "arXiv.org",
"auto": true
},
"https://lean-lang.org/": {
"excerpt": "Menu",
"title": "Programming Language and Theorem Prover — Lean",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://www.mrob.com/pub/ries/index.html": {
"excerpt": "RIES - Find Algebraic Equations, Given Their Solution -- Explore a wide variety of topics from large numbers to sociology at mrob.com",
"title": "Find Algebraic Equations, Given Their Solution at MROB",
"author": "Robert Munafo",
"date": null,
"website": null,
"auto": true
},
"https://en.wikipedia.org/wiki/Reverse_Polish_notation": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Reverse Polish notation",
"author": "Contributors to Wikimedia projects",
"date": "2002-01-10T10:40:01Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://lczero.org/": {
"excerpt": "",
"title": "Leela Chess Zero",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://arxiv.org/abs/1912.01412": {
"excerpt": "Neural networks have a reputation for being better at solving statistical or approximate problems than at performing calculations or working with symbolic data. In this paper, we show that they can be surprisingly good at more elaborated tasks in mathematics, such as symbolic integration and solving differential equations. We propose a syntax for representing mathematical problems, and methods for generating large datasets that can be used to train sequence-to-sequence models. We achieve results that outperform commercial Computer Algebra Systems such as Matlab or Mathematica.",
"title": "Deep Learning for Symbolic Mathematics",
"author": "[Submitted on 2 Dec 2019]",
"date": null,
"website": "arXiv.org",
"auto": true
},
"https://arxiv.org/abs/2411.00566": {
"excerpt": "We introduce PatternBoost, a flexible method for finding interesting constructions in mathematics. Our algorithm alternates between two phases. In the first ``local'' phase, a classical search algorithm is used to produce many desirable constructions. In the second ``global'' phase, a transformer neural network is trained on the best such constructions. Samples from the trained transformer are then used as seeds for the first phase, and the process is repeated. We give a detailed introduction to this technique, and discuss the results of its application to several problems in extremal combinatorics. The performance of PatternBoost varies across different problems, but there are many situations where its performance is quite impressive. Using our technique, we find the best known solutions to several long-standing problems, including the construction of a counterexample to a conjecture that had remained open for 30 years.",
"title": "PatternBoost: Constructions in Mathematics with a Little Help from AI",
"author": "[Submitted on 1 Nov 2024]",
"date": null,
"website": "arXiv.org",
"auto": true
},
"https://arxiv.org/abs/2408.05804": {
"excerpt": "In this paper, we present empirical evidence of skills and directed exploration emerging from a simple RL algorithm long before any successful trials are observed. For example, in a manipulation task, the agent is given a single observation of the goal state and learns skills, first for moving its end-effector, then for pushing the block, and finally for picking up and placing the block. These skills emerge before the agent has ever successfully placed the block at the goal location and without the aid of any reward functions, demonstrations, or manually-specified distance metrics. Once the agent has learned to reach the goal state reliably, exploration is reduced. Implementing our method involves a simple modification of prior work and does not require density estimates, ensembles, or any additional hyperparameters. Intuitively, the proposed method seems like it should be terrible at exploration, and we lack a clear theoretical understanding of why it works so effectively, though our experiments provide some hints.",
"title": "A Single Goal is All You Need: Skills and Exploration Emerge from Contrastive RL without Rewards, Demonstrations, or Subgoals",
"author": "[Submitted on 11 Aug 2024]",
"date": null,
"website": "arXiv.org",
"auto": true
},
"https://rulebasedintegration.org/": {
"excerpt": "A symbolic integrator based on an extensive system of integration rules",
"title": "Welcome to Rubi, A Rule-based Integrator",
"author": null,
"date": null,
"website": "Rubi (Rule-based Integrator)",
"auto": true
},
"https://reference.wolfram.com/language/tutorial/SomeNotesOnInternalImplementation.html": {
"excerpt": "General issues about the internal implementation of the Wolfram Language are discussed in \"The Internals of the Wolfram System\". Given here are brief notes on particular features. It should be emphasized that these notes give only a rough indication of basic methods and algorithms used. The actual implementation usually involves many substantial additional elements. Thus, for example, the notes simply say that DSolve solves second-order linear differential equations using the Kovacic algorithm. But the internal code that achieves this is over 60 pages long, includes a number of other algorithms, and involves a great many subtleties.",
"title": "Some Notes on Internal Implementation—Wolfram Language Documentation",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://arxiv.org/abs/2205.11491": {
"excerpt": "We propose an online training procedure for a transformer-based automated theorem prover. Our approach leverages a new search algorithm, HyperTree Proof Search (HTPS), inspired by the recent success of AlphaZero. Our model learns from previous proof searches through online training, allowing it to generalize to domains far from the training distribution. We report detailed ablations of our pipeline's main components by studying performance on three environments of increasing complexity. In particular, we show that with HTPS alone, a model trained on annotated proofs manages to prove 65.4% of a held-out set of Metamath theorems, significantly outperforming the previous state of the art of 56.5% by GPT-f. Online training on these unproved theorems increases accuracy to 82.6%. With a similar computational budget, we improve the state of the art on the Lean-based miniF2F-curriculum dataset from 31% to 42% proving accuracy.",
"title": "HyperTree Proof Search for Neural Theorem Proving",
"author": "[Submitted on 23 May 2022]",
"date": null,
"website": "arXiv.org",
"auto": true
},
"https://news.ycombinator.com/item?id=25522518": {
"excerpt": "8fhdkjw039hd on Dec 23, 2020 \n | | [–]",
"title": "Heaven Banning | Hacker News",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://arxiv.org/abs/2012.05101": {
"excerpt": "Shadow banning consists for an online social network in limiting the visibility of some of its users, without them being aware of it. Twitter declares that it does not use such a practice, sometimes arguing about the occurrence of \"bugs\" to justify restrictions on some users. This paper is the first to address the plausibility or not of shadow banning on a major online platform, by adopting both a statistical and a graph topological approach. We first conduct an extensive data collection and analysis campaign, gathering occurrences of visibility limitations on user profiles (we crawl more than 2.5 million of them). In such a black-box observation setup, we highlight the salient user profile features that may explain a banning practice (using machine learning predictors). We then pose two hypotheses for the phenomenon: i) limitations are bugs, as claimed by Twitter, and ii) shadow banning propagates as an epidemic on user-interactions ego-graphs. We show that hypothesis i) is statistically unlikely with regards to the data we collected. We then show some interesting correlation with hypothesis ii), suggesting that the interaction topology is a good indicator of the presence of groups of shadow banned users on the service.",
"title": "Setting the Record Straighter on Shadow Banning",
"author": "[Submitted on 9 Dec 2020 (v1), last revised 13 Apr 2021 (this version, v2)]",
"date": null,
"website": "arXiv.org",
"auto": true
},
"https://investor.atmeta.com/financials/default.aspx": {
"excerpt": "Some of the information or materials made available on this website may contain forward-looking statements. Statements including words such as \"believe,\" \"may,\" \"will,\" \"estimate,\" \"continue,\" \"anticipate,\" \"intend,\" \"expect\" or similar expressions are intended to identify forward-looking statements. These forward-looking statements are subject to assumptions, risks and uncertainties that could cause actual events or actual future results to differ materially from the expectations set forth in the forward-looking statements. Some of the factors which could cause Meta's results to differ materially from its expectations include, but are not limited to, those described in the \"Risk Factors,\" \"Limitations of Key Metrics and Other Data\" and \"Management's Discussion and Analysis of Financial Condition and Results of Operations\" sections in Meta's most recent Annual Report on Form 10-K or Quarterly Report on Form 10-Q, as filed with the Securities and Exchange Commission. These forward-looking statements speak only as of the date they were originally made to the public. Meta assumes no obligation and does not intend to update these forward-looking statements. Archived materials are provided for reference by Meta. Meta does not update or delete outdated information contained in these materials and it expressly disclaims any obligation to do so.",
"title": "Meta - Financials",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://investor.redditinc.com/news-events/news-releases/news-details/2024/Reddit-Announces-Third-Quarter-2024-Results/default.aspx": {
"excerpt": "Daily Active Uniques (“DAUq”) increased 47% year-over-year to 97.2 million Strong revenue growth of 68% to $348.4 million Achieved GAAP profitability with net income of $29.9 million and net margin of 8.6% Adjusted EBITDA 1 of $94.1 million and Adjusted EBITDA 1 margin of 27.0% Positive operating cash flow of $71.6 million and Free Cash Flow 1 of $70.3 million, invested $66 million to net settle 1.2 million employee shares Reddit, Inc. (NYSE: RDDT) today announced financial results for the quarter ended September 30, 2024. Reddit’s complete financial results and management commentary can be found in its shareholder letter on Reddit’s Investor Relations website at https://investor.redditinc.com . “It was another strong quarter for Reddit and our communities as we achieved important milestones, including new levels of user traffic, revenue growth, and profitability,” said Steve Huffman, Co-Founder and CEO of Reddit. “Reddit continues to be one of the most visited and trusted sites in",
"title": "Reddit Announces Third Quarter 2024 Results",
"author": "SAN FRANCISCO--(BUSINESS WIRE)--",
"date": null,
"website": null,
"auto": true
},
"https://investor.snap.com/overview/default.aspx": {
"excerpt": "To opt-in for investor email alerts, please enter your email address in the field below and select at least one alert option. After submitting your request, you will receive an activation email to the requested email address. You must click the activation link in order to complete your subscription. You can sign up for additional alert options at any time.At Snap Inc., we promise to treat your data with respect and will not share your information with any third party. You can unsubscribe to any of the investor alerts you are subscribed to by visiting the ‘unsubscribe’ section below. If you experience any issues with this process, please contact us for further assistance.By providing your email address below, you are providing consent to Snap Inc. to send you the requested Investor Email Alert updates.* Required",
"title": "Snap Inc. - Investor Relations",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://www.nature.com/articles/s41598-024-76900-1": {
"excerpt": "As AI-generated text continues to evolve, distinguishing it from human-authored content has become increasingly difficult. This study examined whether non-expert readers could reliably differentiate between AI-generated poems and those written by well-known human poets. We conducted two experiments with non-expert poetry readers and found that participants performed below chance levels in identifying AI-generated poems (46.6% accuracy, χ2(1, N = 16,340) = 75.13, p < 0.0001). Notably, participants were more likely to judge AI-generated poems as human-authored than actual human-authored poems (χ2(2, N = 16,340) = 247.04, p < 0.0001). We found that AI-generated poems were rated more favorably in qualities such as rhythm and beauty, and that this contributed to their mistaken identification as human-authored. Our findings suggest that participants employed shared yet flawed heuristics to differentiate AI from human poetry: the simplicity of AI-generated poems may be easier for non-experts to understand, leading them to prefer AI-generated poetry and misinterpret the complexity of human poems as incoherence generated by AI.",
"title": "AI-generated poetry is indistinguishable from human-written poetry and is rated more favorably",
"author": "Machery, Edouard",
"date": null,
"website": "Nature",
"auto": true
},
"https://gwern.net/creative-benchmark": {
"excerpt": "Discussion of possible tasks to measure LLM capabilities in soft ‘creative’ tasks like brainstorming or editing, to quantify failures in creative writing domains.",
"title": "Towards Benchmarking LLM Diversity & Creativity",
"author": "Gwern",
"date": null,
"website": null,
"auto": true
},
"https://www.astralcodexten.com/p/how-did-you-do-on-the-ai-art-turing": {
"excerpt": "...",
"title": "How Did You Do On The AI Art Turing Test?",
"author": "Scott Alexander",
"date": "2024-11-20T12:44:27+00:00",
"website": "Astral Codex Ten",
"auto": true
},
"https://cognitiveresearchjournal.springeropen.com/articles/10.1186/s41235-023-00499-6": {
"excerpt": "With the recent proliferation of advanced artificial intelligence (AI) models capable of mimicking human artworks, AI creations might soon replace products of human creativity, although skeptics argue that this outcome is unlikely. One possible reason this may be unlikely is that, independent of the physical properties of art, we place great value on the imbuement of the human experience in art. An interesting question, then, is whether and why people might prefer human-compared to AI-created artworks. To explore these questions, we manipulated the purported creator of pieces of art by randomly assigning a “Human-created” or “AI-created” label to paintings actually created by AI, and then assessed participants’ judgements of the artworks across four rating criteria (Liking, Beauty, Profundity, and Worth). Study 1 found increased positive judgements for human- compared to AI-labelled art across all criteria. Study 2 aimed to replicate and extend Study 1 with additional ratings (Emotion, Story, Meaningful, Effort, and Time to create) intended to elucidate why people more-positively appraise Human-labelled artworks. The main findings from Study 1 were replicated, with narrativity (Story) and perceived effort behind artworks (Effort) moderating the label effects (“Human-created” vs. “AI-created”), but only for the sensory-level judgements (Liking, Beauty). Positive personal attitudes toward AI moderated label effects for more-communicative judgements (Profundity, Worth). These studies demonstrate that people tend to be negatively biased against AI-created artworks relative to purportedly human-created artwork, and suggest that knowledge of human engagement in the artistic process contributes positively to appraisals of art.",
"title": "Humans versus AI: whether and why we prefer human-created compared to AI-created artwork",
"author": "Seli, Paul",
"date": null,
"website": "SpringerOpen",
"auto": true
},
"https://en.wikipedia.org/wiki/Dead_Internet_theory": {
"excerpt": "",
"title": "Dead Internet theory",
"author": "Contributors to Wikimedia projects",
"date": "2023-03-06T12:54:59Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://cameronharwick.com/writing/high-culture-and-hyperstimulus/": {
"excerpt": "What’s the difference between a Renaissance nude and a Playboy centerfold?",
"title": "High Culture and Hyperstimulus",
"author": "Cameron Harwick",
"date": "2024-04-02",
"website": null,
"auto": true,
"referenceIn": {
"heaven": "Hard-to-replicate entertainment is higher-status because if you enjoy easy-to-produce things you're more open to exploitation (spending too many resources on those easy things)."
}
},
"http://prize.hutter1.net/": {
"excerpt": "500'000€ Prize for Compressing Human Knowledge by Marcus Hutter",
"title": "500'000€ Prize for Compressing Human Knowledge",
"author": "Marcus Hutter",
"date": null,
"website": null,
"auto": true
},
"https://writings.stephenwolfram.com/2012/03/the-personal-analytics-of-my-life/": {
"excerpt": "Utilizing data analysis capabilities in Wolfram|Alpha Pro, Stephen Wolfram looks at his quantified self based on his large collection of lifelogging data.",
"title": "The Personal Analytics of My Life—Stephen Wolfram Writings",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://dogsheep.github.io/": {
"excerpt": "Tools for personal analytics using SQLite and Datasette",
"title": "Dogsheep",
"author": null,
"date": null,
"website": "dogsheep.github.io",
"auto": true
},
"https://www.lesbonscomptes.com/recoll/pages/index-recoll.html": {
"excerpt": "Recoll is a desktop document search application for Unix, Linux, Microsoft Windows and MacOS, based on the Xapian search engine library.",
"title": "Recoll",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://www.rewind.ai/": {
"excerpt": "Rewind is a personalized AI powered by everything you’ve seen, said, or heard.",
"title": "Rewind",
"author": "LexisEngineering Manager at Chief",
"date": null,
"website": null,
"auto": true
},
"https://thesephist.com/posts/monocle/": {
"excerpt": "Monocle is a full text search engine indexed on my personal data, like my blog posts and essays, nearly a decade of journal entries, notes, contacts, Tweets, and hopefully more in the future, like emails and web browsing history. It lets me query this entire dataset to look for anything I’ve seen or written about before, and acts as a true “extended memory” for my entire life.",
"title": "Building Monocle, a universal personal search engine for life",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://github.com/osmarks/random-stuff/blob/master/histretention.py": {
"excerpt": "In the interest of transparency and/or their great value to society, I'm releasing my smaller projects/scripts upon an unsuspecting public. - osmarks/misc",
"title": "misc/histretention.py at master · osmarks/misc",
"author": "osmarks",
"date": null,
"website": "GitHub",
"auto": true
},
"https://addons.mozilla.org/en-US/firefox/addon/single-file/": {
"excerpt": "Download SingleFile for Firefox. Save an entire web page—including images and styling—as a single HTML file.",
"title": "SingleFile – Get this Extension for 🦊 Firefox (en-US)",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://datasette.io/": {
"excerpt": "Datasette is a tool for exploring and publishing data. It helps people take data of any shape, analyze and explore it, and publish it as an interactive website and accompanying API.",
"title": "Datasette",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://datasette.substack.com/p/dogsheep-personal-analytics-with": {
"excerpt": "Datasette Weekly volume 2",
"title": "Dogsheep: Personal analytics with Datasette",
"author": "Simon Willison",
"date": "2020-10-19T06:08:44+00:00",
"website": "Datasette Newsletter",
"auto": true
},
"https://github.com/simonw/datasette-search-all/": {
"excerpt": "Datasette plugin for searching all searchable tables at once - simonw/datasette-search-all",
"title": "GitHub - simonw/datasette-search-all: Datasette plugin for searching all searchable tables at once",
"author": "simonw",
"date": null,
"website": "GitHub",
"auto": true
},
"https://github.com/ankicommunity/anki-sync-server/": {
"excerpt": "A personal Anki sync server (so you can sync against your own server rather than AnkiWeb) - ankicommunity/ankicommunity-sync-server",
"title": "GitHub - ankicommunity/ankicommunity-sync-server: A personal Anki sync server (so you can sync against your own server rather than AnkiWeb)",
"author": "ankicommunity",
"date": null,
"website": "GitHub",
"auto": true
},
"https://github.com/m-bain/whisperX/": {
"excerpt": "WhisperX: Automatic Speech Recognition with Word-level Timestamps (& Diarization) - m-bain/whisperX",
"title": "GitHub - m-bain/whisperX: WhisperX: Automatic Speech Recognition with Word-level Timestamps (& Diarization)",
"author": "m-bain",
"date": null,
"website": "GitHub",
"auto": true
},
"https://www.gadgetbridge.org/": {
"excerpt": "A free and open source Android application for bluetooth devices.",
"title": "Gadgetbridge",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://github.com/ellie/atuin": {
"excerpt": "✨ Magical shell history. Contribute to atuinsh/atuin development by creating an account on GitHub.",
"title": "GitHub - atuinsh/atuin: ✨ Magical shell history",
"author": "atuinsh",
"date": null,
"website": "GitHub",
"auto": true
},
"https://mse.osmarks.net/": {
"excerpt": "osmarks.net meme library semantic search via CLIP; enhanced query UI edition",
"title": "Meme Search Engine",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://github.com/rom1504/clip-retrieval": {
"excerpt": "Easily compute clip embeddings and build a clip retrieval system with them - rom1504/clip-retrieval",
"title": "GitHub - rom1504/clip-retrieval: Easily compute clip embeddings and build a clip retrieval system with them",
"author": "rom1504",
"date": null,
"website": "GitHub",
"auto": true
},
"https://findthatmeme.com/blog/2023/01/08/image-stacks-and-iphone-racks-building-an-internet-scale-meme-search-engine-Qzrz7V6T.html": {
"excerpt": "Anyone who’s spent any amount of time on the Internet has a good idea of how prevalent meme usage has become in online discourse. Finding new memes on the latest happening and sharing them with various friend groups to share in the humor is a long-enjoyed pastime of mine. Working in tech and in the InfoSec field has netted me an unsurprisingly “terminally-online” groups of friends who all do the same.",
"title": "Image Stacks and iPhone Racks - Building an Internet Scale Meme Search Engine",
"author": "Matthew Bryant (Creator)",
"date": "2023-01-08T00:00:00+00:00",
"website": "FindThatMeme.com Blog",
"auto": true
},
"https://github.com/facebookresearch/faiss/": {
"excerpt": "A library for efficient similarity search and clustering of dense vectors. - facebookresearch/faiss",
"title": "GitHub - facebookresearch/faiss: A library for efficient similarity search and clustering of dense vectors.",
"author": "facebookresearch",
"date": null,
"website": "GitHub",
"auto": true
},
"https://www.sqlite.org/fts5.html": {
"excerpt": "SQLite FTS5 Extension",
"title": "SQLite FTS5 Extension",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://en.wikipedia.org/wiki/Zettelkasten": {
"excerpt": "From Wikipedia, the free encyclopedia",
"title": "Zettelkasten",
"author": "Contributors to Wikimedia projects",
"date": "2020-05-31T10:44:14Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://www.sqlite.org/lang_with.html": {
"excerpt": "The WITH Clause",
"title": "The WITH Clause",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://github.com/facebookresearch/faiss/wiki/Guidelines-to-choose-an-index": {
"excerpt": "A library for efficient similarity search and clustering of dense vectors. - facebookresearch/faiss",
"title": "Guidelines to choose an index",
"author": "facebookresearch",
"date": null,
"website": "GitHub",
"auto": true
},
"https://github.com/pgvector/pgvector": {
"excerpt": "Open-source vector similarity search for Postgres. Contribute to pgvector/pgvector development by creating an account on GitHub.",
"title": "GitHub - pgvector/pgvector: Open-source vector similarity search for Postgres",
"author": "pgvector",
"date": null,
"website": "GitHub",
"auto": true
},
"https://www.sqlite.org/lang_datefunc.html": {
"excerpt": "Date And Time Functions",
"title": "Date And Time Functions",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://www.gregegan.net/ORTHOGONAL/ORTHOGONAL.html": {
"excerpt": "Illustrations for Orthogonal by Greg Egan",
"title": "Orthogonal — Greg Egan",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://larryniven.fandom.com/wiki/Teela_Brown": {
"excerpt": "Teela Brown is a fictional character created by Larry Niven in the Ringworld novels. Teela was a member of the crew recruited by Puppeteer Nessus for an expedition to the Ringworld. Her sole qualification was that she was descended from \"lucky\" ancestors, six generations of whom were born as a result of winning Earth's Birthright Lottery. The consequence of her state was that she'd led such a charmed and worry-free life that she was emotionally immature and unprepared for \"harsh reality.\" The Pu",
"title": "Teela Brown",
"author": "Contributors to Larry Niven Wiki",
"date": null,
"website": "Fandom, Inc.",
"auto": true
},
"https://existentialcomics.com/comic/537": {
"excerpt": "A philosophy webcomic about the inevitable anguish of living a brief life in an absurd world. Also Jokes",
"title": "The Philosophy Of Magic",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://www.reddit.com/r/Fantasy/comments/25u9ej/good_examples_of_soft_magic/": {
"excerpt": "Reddit and its partners use cookies and similar technologies to provide you with a better experience. By accepting all cookies, you agree to our use of cookies to deliver and maintain our services and site, improve the quality of Reddit, personalize Reddit content and advertising, and measure the effectiveness of advertising. By rejecting non-essential cookies, Reddit may still use certain cookies to ensure the proper functionality of our platform.\n For more information, please see our\n Cookie Notice\n and our\n Privacy Policy.",
"title": "The heart of the internet",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://en.wikipedia.org/wiki/Mathematical_formulation_of_the_Standard_Model": {
"excerpt": "For a less mathematical description and overview, see Standard Model.",
"title": "Mathematical formulation of the Standard Model",
"author": "Contributors to Wikimedia projects",
"date": "2005-06-11T12:47:54Z",
"website": "Wikimedia Foundation, Inc.",
"auto": true
},
"https://www.goodreads.com/series/252085-mage-errant": {
"excerpt": "Into the Labyrinth (Mage Errant, #1), Jewel of the Endless Erg (Mage Errant, #2), A Traitor in Skyhold (Mage Errant, #3), The Lost City of Ithos (Mage E...",
"title": "Mage Errant Series by John Bierce",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://www.goodreads.com/en/book/show/51279226": {
"excerpt": "Alternate cover edition of ASIN B07W7X9VY6 The ancien…",
"title": "The Choice of Magic (Art of the Adept, #1)",
"author": "Michael G. Manning32 books2,035 followersFollowFollow",
"date": null,
"website": "Goodreads",
"auto": true
},
"https://qntm.org/ra": {
"excerpt": "Magic is real.\nDiscovered in the 1970s, magic is now a bona fide field of engineering. There's magic in heavy industry and magic in your home. It's what's next after electricity.\nStudent mage Laura Ferno has designs on the future: her mother died trying to reach space using m...",
"title": "Ra",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://hpmor.com/": {
"excerpt": "",
"title": "Harry Potter and the Methods of Rationality",
"author": null,
"date": null,
"website": null,
"auto": true
},
"https://www.goodreads.com/book/show/26118426-ninefox-gambit": {
"excerpt": "The first installment of the trilogy, Ninefox Gambit, c…",
"title": "Ninefox Gambit (The Machineries of Empire, #1)",
"author": "Yoon Ha Lee190 books2,035 followersFollowFollow",
"date": null,
"website": "Goodreads",
"auto": true
},
"https://forums.sufficientvelocity.com/threads/break-them-all-original-precross.12960/": {
"excerpt": "Break Them All\nIndex post\n\nPart 0 : Falling Away\nPart 1 : Learning to Learn\nPart 2 : First...",
"title": "Break Them All [Original/PreCross]",
"author": "TheGrum",
"date": null,
"website": "Sufficient Velocity",
"auto": true
},
"https://www.goodreads.com/series/40650-discworld": {