-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
7055 lines (7049 loc) · 314 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hacker News Items</title>
</head>
<body>
<h1>Hacker News Items</h1>
<table border="1" id="hn-table">
<thead>
<tr>
<th>Title</th>
<th style="text-align:center; cursor: pointer;" onclick="sortTable(1)">Author</th>
<th style="text-align:center; cursor: pointer;" onclick="sortTable(2)">Comments</th>
<th style="text-align:center; cursor: pointer;" onclick="sortTable(3)">Created Date</th>
<th style="text-align:center; cursor: pointer;" onclick="sortTable(4)">Points</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://news.ycombinator.com/item?id=3742902">Show HN: This up votes itself</a></td>
<td style="text-align:center;">olalonde</td>
<td style="text-align:center;">82</td>
<td style="text-align:center;">2012-03-23T00:40:39Z</td>
<td style="text-align:center;">3531</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=42797260">Show HN: I made an open-source laptop from scratch</a></td>
<td style="text-align:center;">Hello9999901</td>
<td style="text-align:center;">322</td>
<td style="text-align:center;">2025-01-22T20:41:52Z</td>
<td style="text-align:center;">3237</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=41247023">Show HN: If YouTube had actual channels</a></td>
<td style="text-align:center;">hadisafa</td>
<td style="text-align:center;">514</td>
<td style="text-align:center;">2024-08-14T15:10:06Z</td>
<td style="text-align:center;">2741</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=19393279">Show HN: A retro video game console I've been working on in my free time</a></td>
<td style="text-align:center;">pkiller</td>
<td style="text-align:center;">210</td>
<td style="text-align:center;">2019-03-14T20:25:03Z</td>
<td style="text-align:center;">2690</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=26271117">Show HN: Redbean – Single-file distributable web server</a></td>
<td style="text-align:center;">jart</td>
<td style="text-align:center;">249</td>
<td style="text-align:center;">2021-02-26T03:33:56Z</td>
<td style="text-align:center;">1998</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=36296695">Show HN: Non.io, a Reddit-like platform Ive been working on for the last 4 years</a></td>
<td style="text-align:center;">jjcm</td>
<td style="text-align:center;">590</td>
<td style="text-align:center;">2023-06-12T16:54:38Z</td>
<td style="text-align:center;">1943</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=32884467">Show HN: I may have created a new type of puzzle</a></td>
<td style="text-align:center;">drcode</td>
<td style="text-align:center;">464</td>
<td style="text-align:center;">2022-09-18T04:37:58Z</td>
<td style="text-align:center;">1859</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=33357197">Show HN: I 3D scanned the interior of the Great Pyramid at Giza</a></td>
<td style="text-align:center;">lukehollis</td>
<td style="text-align:center;">280</td>
<td style="text-align:center;">2022-10-27T13:31:25Z</td>
<td style="text-align:center;">1752</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=12166687">Show HN: Web Design in 4 minutes</a></td>
<td style="text-align:center;">bbx</td>
<td style="text-align:center;">152</td>
<td style="text-align:center;">2016-07-26T16:17:42Z</td>
<td style="text-align:center;">1624</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=24696658">Show HN: I made a site where you practice typing by retyping entire novels</a></td>
<td style="text-align:center;">Octouroboros</td>
<td style="text-align:center;">378</td>
<td style="text-align:center;">2020-10-06T11:37:53Z</td>
<td style="text-align:center;">1589</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=15892066">Show HN: Airmash – Multiplayer Missile Warfare HTML5 Game</a></td>
<td style="text-align:center;">fivesigma</td>
<td style="text-align:center;">304</td>
<td style="text-align:center;">2017-12-10T16:23:16Z</td>
<td style="text-align:center;">1535</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=43186406">Show HN: I got laid off from Meta and created a minor hit on Steam</a></td>
<td style="text-align:center;">newobj</td>
<td style="text-align:center;">344</td>
<td style="text-align:center;">2025-02-26T18:19:05Z</td>
<td style="text-align:center;">1522</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=38531759">Show HN: Beeper Mini – iMessage client for Android</a></td>
<td style="text-align:center;">erohead</td>
<td style="text-align:center;">874</td>
<td style="text-align:center;">2023-12-05T15:06:21Z</td>
<td style="text-align:center;">1521</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=26258773">Show HN: Can’t afford Bloomberg Terminal? No prob, I built the next best thing</a></td>
<td style="text-align:center;">sexy_year</td>
<td style="text-align:center;">289</td>
<td style="text-align:center;">2021-02-25T01:47:30Z</td>
<td style="text-align:center;">1422</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=35543668">Show HN: GPT-4-powered web searches for developers</a></td>
<td style="text-align:center;">rushingcreek</td>
<td style="text-align:center;">414</td>
<td style="text-align:center;">2023-04-12T17:44:08Z</td>
<td style="text-align:center;">1401</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=24707407">Show HN: I built a Rotten Tomatoes-style platform for durable products</a></td>
<td style="text-align:center;">hubraumhugo</td>
<td style="text-align:center;">398</td>
<td style="text-align:center;">2020-10-07T12:14:38Z</td>
<td style="text-align:center;">1392</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=3824908">Show HN: Meteor, a realtime JavaScript framework</a></td>
<td style="text-align:center;">geoffschmidt</td>
<td style="text-align:center;">322</td>
<td style="text-align:center;">2012-04-10T22:55:40Z</td>
<td style="text-align:center;">1386</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=34066824">Show HN: Obsidian Canvas – An infinite space for your ideas</a></td>
<td style="text-align:center;">ericax</td>
<td style="text-align:center;">387</td>
<td style="text-align:center;">2022-12-20T15:04:48Z</td>
<td style="text-align:center;">1380</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=28595967">Show HN: 40k HN comments mentioning books, extracted using deep learning</a></td>
<td style="text-align:center;">tracyhenry</td>
<td style="text-align:center;">273</td>
<td style="text-align:center;">2021-09-20T16:58:45Z</td>
<td style="text-align:center;">1359</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=32690410">Show HN: I'm building an open-source Amazon</a></td>
<td style="text-align:center;">theturtletalks</td>
<td style="text-align:center;">301</td>
<td style="text-align:center;">2022-09-02T13:19:53Z</td>
<td style="text-align:center;">1335</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=7984826">Show HN: Show HN</a></td>
<td style="text-align:center;">dang</td>
<td style="text-align:center;">166</td>
<td style="text-align:center;">2014-07-03T18:35:51Z</td>
<td style="text-align:center;">1302</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=34083366">Show HN: Portable Secret – How I store my secrets and communicate privately</a></td>
<td style="text-align:center;">mprime1</td>
<td style="text-align:center;">376</td>
<td style="text-align:center;">2022-12-21T17:10:28Z</td>
<td style="text-align:center;">1290</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=42645218">Show HN: Tetris in a PDF</a></td>
<td style="text-align:center;">ThomasRinsma</td>
<td style="text-align:center;">223</td>
<td style="text-align:center;">2025-01-09T13:31:33Z</td>
<td style="text-align:center;">1289</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=21231208">Show HN: Bel</a></td>
<td style="text-align:center;">pg</td>
<td style="text-align:center;">456</td>
<td style="text-align:center;">2019-10-12T07:14:55Z</td>
<td style="text-align:center;">1288</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=39597030">Show HN: 3 years and 1M users later, I just open-sourced my "Internet OS"</a></td>
<td style="text-align:center;">ent101</td>
<td style="text-align:center;">319</td>
<td style="text-align:center;">2024-03-04T22:31:15Z</td>
<td style="text-align:center;">1274</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=14226889">Show HN: Sorting Two Metric Tons of Lego</a></td>
<td style="text-align:center;">jacquesm</td>
<td style="text-align:center;">211</td>
<td style="text-align:center;">2017-04-29T15:13:04Z</td>
<td style="text-align:center;">1264</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=29921419">Show HN: Looptap – A minimal game to waste your time</a></td>
<td style="text-align:center;">vasanthv</td>
<td style="text-align:center;">170</td>
<td style="text-align:center;">2022-01-13T15:01:17Z</td>
<td style="text-align:center;">1241</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=30244534">Show HN: SHA-256 explained step-by-step visually</a></td>
<td style="text-align:center;">manceraio</td>
<td style="text-align:center;">137</td>
<td style="text-align:center;">2022-02-07T13:31:11Z</td>
<td style="text-align:center;">1241</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=12612246">Show HN: Wave function collapse algorithm</a></td>
<td style="text-align:center;">ExUtumno</td>
<td style="text-align:center;">122</td>
<td style="text-align:center;">2016-09-30T13:20:43Z</td>
<td style="text-align:center;">1226</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=28207662">Show HN: Imba – I have spent 7 years creating a programming language for the web</a></td>
<td style="text-align:center;">somebee</td>
<td style="text-align:center;">345</td>
<td style="text-align:center;">2021-08-17T08:55:29Z</td>
<td style="text-align:center;">1216</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=9962185">Show HN: Spot the Drowning Child</a></td>
<td style="text-align:center;">omegaworks</td>
<td style="text-align:center;">378</td>
<td style="text-align:center;">2015-07-28T15:23:40Z</td>
<td style="text-align:center;">1215</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=19122727">Show HN: Make your site’s pages instant in one minute</a></td>
<td style="text-align:center;">dieulot</td>
<td style="text-align:center;">337</td>
<td style="text-align:center;">2019-02-09T15:30:00Z</td>
<td style="text-align:center;">1214</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=26805702">Show HN: Lofi.cafe</a></td>
<td style="text-align:center;">linuz90</td>
<td style="text-align:center;">230</td>
<td style="text-align:center;">2021-04-14T11:42:41Z</td>
<td style="text-align:center;">1192</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=13423629">Show HN: Privacy-focused, ad-free, non-tracking torrent search engine</a></td>
<td style="text-align:center;">kasumis_</td>
<td style="text-align:center;">346</td>
<td style="text-align:center;">2017-01-18T03:01:20Z</td>
<td style="text-align:center;">1183</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=43158660">Show HN: I built an app to stop me doomscrolling by touching grass</a></td>
<td style="text-align:center;">risquer</td>
<td style="text-align:center;">264</td>
<td style="text-align:center;">2025-02-24T12:15:58Z</td>
<td style="text-align:center;">1183</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=28347439">Show HN: We built an end-to-end encrypted alternative to Google Photos</a></td>
<td style="text-align:center;">vishnumohandas</td>
<td style="text-align:center;">405</td>
<td style="text-align:center;">2021-08-29T15:23:50Z</td>
<td style="text-align:center;">1180</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=16468196">Show HN: Six Degrees of Wikipedia</a></td>
<td style="text-align:center;">jwngr</td>
<td style="text-align:center;">324</td>
<td style="text-align:center;">2018-02-26T19:29:44Z</td>
<td style="text-align:center;">1176</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=10204018">Show HN: Make a programmable mirror</a></td>
<td style="text-align:center;">hannahmitt</td>
<td style="text-align:center;">136</td>
<td style="text-align:center;">2015-09-11T14:58:44Z</td>
<td style="text-align:center;">1172</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=13338592">Show HN: Alacritty, a GPU-accelerated terminal emulator written in Rust</a></td>
<td style="text-align:center;">jwilm</td>
<td style="text-align:center;">476</td>
<td style="text-align:center;">2017-01-06T18:08:19Z</td>
<td style="text-align:center;">1170</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=35905437">Show HN: Boring Report, a news app that uses AI to desensationalize the news</a></td>
<td style="text-align:center;">aquaVitae</td>
<td style="text-align:center;">332</td>
<td style="text-align:center;">2023-05-11T17:32:41Z</td>
<td style="text-align:center;">1166</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=31586833">Show HN: A friend and I spent 6 years making a simulation game, finally released</a></td>
<td style="text-align:center;">iliketrains</td>
<td style="text-align:center;">279</td>
<td style="text-align:center;">2022-06-01T19:31:47Z</td>
<td style="text-align:center;">1157</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=40843867">Show HN: I created an After Effects alternative</a></td>
<td style="text-align:center;">clementpiki</td>
<td style="text-align:center;">258</td>
<td style="text-align:center;">2024-07-01T08:57:26Z</td>
<td style="text-align:center;">1150</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=33795296">Show HN: Trading cards made with e-ink displays</a></td>
<td style="text-align:center;">jonahss</td>
<td style="text-align:center;">291</td>
<td style="text-align:center;">2022-11-30T00:24:09Z</td>
<td style="text-align:center;">1149</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=41322281">Show HN: InstantDB – A Modern Firebase</a></td>
<td style="text-align:center;">nezaj</td>
<td style="text-align:center;">297</td>
<td style="text-align:center;">2024-08-22T17:08:50Z</td>
<td style="text-align:center;">1145</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=30517626">Show HN: I made a web game called Almost Pong</a></td>
<td style="text-align:center;">lessmilk</td>
<td style="text-align:center;">181</td>
<td style="text-align:center;">2022-03-01T18:09:25Z</td>
<td style="text-align:center;">1135</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=42156977">Show HN: I built a(nother) house optimized for LAN parties</a></td>
<td style="text-align:center;">kentonv</td>
<td style="text-align:center;">381</td>
<td style="text-align:center;">2024-11-16T15:52:39Z</td>
<td style="text-align:center;">1117</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=13031492">Show HN: A visual guide to the most popular CSS properties</a></td>
<td style="text-align:center;">bbx</td>
<td style="text-align:center;">122</td>
<td style="text-align:center;">2016-11-24T17:32:41Z</td>
<td style="text-align:center;">1117</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=27132334">Show HN: I wrote my own RTS game engine in C</a></td>
<td style="text-align:center;">epermyakov</td>
<td style="text-align:center;">262</td>
<td style="text-align:center;">2021-05-12T16:44:44Z</td>
<td style="text-align:center;">1102</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=14552615">Show HN: Get Paid to Build Your Next Side Project</a></td>
<td style="text-align:center;">hackerews</td>
<td style="text-align:center;">451</td>
<td style="text-align:center;">2017-06-14T13:43:40Z</td>
<td style="text-align:center;">1100</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=34474270">Show HN: New AI edits images based on text instructions</a></td>
<td style="text-align:center;">bryced</td>
<td style="text-align:center;">227</td>
<td style="text-align:center;">2023-01-22T04:25:45Z</td>
<td style="text-align:center;">1098</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=14497295">Show HN: Monica, an open-source CRM to manage friends and family</a></td>
<td style="text-align:center;">robinhood</td>
<td style="text-align:center;">568</td>
<td style="text-align:center;">2017-06-06T14:07:45Z</td>
<td style="text-align:center;">1097</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=10759879">Show HN: Open Hunt – an open and community-run alternative to Product Hunt</a></td>
<td style="text-align:center;">mhurwi</td>
<td style="text-align:center;">180</td>
<td style="text-align:center;">2015-12-18T18:12:21Z</td>
<td style="text-align:center;">1093</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=23324598">Show HN: Obsidian – A knowledge base that works on local Markdown files</a></td>
<td style="text-align:center;">ericax</td>
<td style="text-align:center;">477</td>
<td style="text-align:center;">2020-05-27T15:16:29Z</td>
<td style="text-align:center;">1087</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=16571827">Show HN: RoughJS – Create hand-drawn graphics using JavaScript</a></td>
<td style="text-align:center;">shihn</td>
<td style="text-align:center;">92</td>
<td style="text-align:center;">2018-03-12T21:28:17Z</td>
<td style="text-align:center;">1087</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=18866500">Show HN: I taught my little brother JS, and he made this videogame in a week</a></td>
<td style="text-align:center;">lovasoa</td>
<td style="text-align:center;">270</td>
<td style="text-align:center;">2019-01-09T17:13:59Z</td>
<td style="text-align:center;">1079</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=29118785">Show HN: My wife is pregnant; naturally I made a baby-name app to prepare</a></td>
<td style="text-align:center;">hamaluik</td>
<td style="text-align:center;">372</td>
<td style="text-align:center;">2021-11-05T13:19:22Z</td>
<td style="text-align:center;">1077</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=17871313">Show HN: I'm 12, learning JS, and wrote Wolfram's cellular automaton in Node</a></td>
<td style="text-align:center;">liamilan</td>
<td style="text-align:center;">283</td>
<td style="text-align:center;">2018-08-29T19:55:24Z</td>
<td style="text-align:center;">1072</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=28446147">Show HN: Web browser to help programmers think clearly</a></td>
<td style="text-align:center;">hyferg</td>
<td style="text-align:center;">226</td>
<td style="text-align:center;">2021-09-07T15:41:15Z</td>
<td style="text-align:center;">1070</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=8103240">Show HN: Markov chains explained visually</a></td>
<td style="text-align:center;">vicapow</td>
<td style="text-align:center;">92</td>
<td style="text-align:center;">2014-07-29T16:49:20Z</td>
<td style="text-align:center;">1070</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=38733968">Show HN: Heynote – A dedicated scratchpad for developers</a></td>
<td style="text-align:center;">jonatanheyman</td>
<td style="text-align:center;">303</td>
<td style="text-align:center;">2023-12-22T13:33:51Z</td>
<td style="text-align:center;">1063</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=40740021">Show HN: I made a puzzle game that gently introduces my favorite math mysteries</a></td>
<td style="text-align:center;">MCSP</td>
<td style="text-align:center;">172</td>
<td style="text-align:center;">2024-06-20T15:45:19Z</td>
<td style="text-align:center;">1054</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=23165333">Show HN: SHA-256 Animation</a></td>
<td style="text-align:center;">inersha</td>
<td style="text-align:center;">102</td>
<td style="text-align:center;">2020-05-13T10:13:30Z</td>
<td style="text-align:center;">1053</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=8085213">Show HN: OneBody Church Directory software I've been hacking on for 7 years</a></td>
<td style="text-align:center;">timmorgan</td>
<td style="text-align:center;">304</td>
<td style="text-align:center;">2014-07-25T14:05:11Z</td>
<td style="text-align:center;">1020</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=39429370">Show HN: htmz – a low power tool for HTML</a></td>
<td style="text-align:center;">Kalabasa</td>
<td style="text-align:center;">242</td>
<td style="text-align:center;">2024-02-19T13:12:18Z</td>
<td style="text-align:center;">1020</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=8222652">Show HN: I got hacked, felt paranoid, made an app – GlassWire</a></td>
<td style="text-align:center;">greenwalls</td>
<td style="text-align:center;">331</td>
<td style="text-align:center;">2014-08-25T17:05:22Z</td>
<td style="text-align:center;">1013</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=12260794">Show HN: Generating fantasy maps – an interactive exploration</a></td>
<td style="text-align:center;">mewo2</td>
<td style="text-align:center;">64</td>
<td style="text-align:center;">2016-08-10T11:17:41Z</td>
<td style="text-align:center;">1004</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=36662655">Show HN: Workout.lol – a web app to easily create a workout routine</a></td>
<td style="text-align:center;">Vincenius</td>
<td style="text-align:center;">281</td>
<td style="text-align:center;">2023-07-10T06:01:59Z</td>
<td style="text-align:center;">993</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=29167580">Show HN: I'm 48 and finally learning how to be a game developer</a></td>
<td style="text-align:center;">bananabat</td>
<td style="text-align:center;">252</td>
<td style="text-align:center;">2021-11-09T21:14:47Z</td>
<td style="text-align:center;">985</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=29461735">Show HN: I made a modern web UI for Wikipedia</a></td>
<td style="text-align:center;">sjdz</td>
<td style="text-align:center;">409</td>
<td style="text-align:center;">2021-12-06T16:28:05Z</td>
<td style="text-align:center;">979</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=22898653">Show HN: A basketball hoop to maximize shots that go in [video]</a></td>
<td style="text-align:center;">swighton</td>
<td style="text-align:center;">162</td>
<td style="text-align:center;">2020-04-17T13:12:40Z</td>
<td style="text-align:center;">971</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=18024277">Show HN: I made a privacy-first minimalist Google Analytics</a></td>
<td style="text-align:center;">AdriaanvRossum</td>
<td style="text-align:center;">263</td>
<td style="text-align:center;">2018-09-19T14:12:56Z</td>
<td style="text-align:center;">968</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=17487552">Show HN: Browsh – A modern, text-based browser</a></td>
<td style="text-align:center;">tombh</td>
<td style="text-align:center;">322</td>
<td style="text-align:center;">2018-07-09T02:28:04Z</td>
<td style="text-align:center;">967</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=39022693">Show HN: I made a website to find best bus seat to avoid the sun while traveling</a></td>
<td style="text-align:center;">Amithv</td>
<td style="text-align:center;">210</td>
<td style="text-align:center;">2024-01-17T02:59:17Z</td>
<td style="text-align:center;">963</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=25848278">Show HN: Beeper – All Your Chats in One App</a></td>
<td style="text-align:center;">erohead</td>
<td style="text-align:center;">486</td>
<td style="text-align:center;">2021-01-20T16:24:21Z</td>
<td style="text-align:center;">962</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=23169962">Show HN: This Word Does Not Exist</a></td>
<td style="text-align:center;">turtlesoup</td>
<td style="text-align:center;">342</td>
<td style="text-align:center;">2020-05-13T18:21:52Z</td>
<td style="text-align:center;">956</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=5395463">Show HN: XKCD-inspired StackSort</a></td>
<td style="text-align:center;">gkoberger</td>
<td style="text-align:center;">198</td>
<td style="text-align:center;">2013-03-18T17:01:21Z</td>
<td style="text-align:center;">948</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=30290225">Show HN: EdgeDB 1.0</a></td>
<td style="text-align:center;">colinmcd</td>
<td style="text-align:center;">323</td>
<td style="text-align:center;">2022-02-10T18:13:03Z</td>
<td style="text-align:center;">947</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=30921231">Show HN: Warp, a Rust-based terminal</a></td>
<td style="text-align:center;">zachlloyd</td>
<td style="text-align:center;">726</td>
<td style="text-align:center;">2022-04-05T16:40:25Z</td>
<td style="text-align:center;">946</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=25634192">Show HN: I made an alternative platform for professional profiles</a></td>
<td style="text-align:center;">_andychung</td>
<td style="text-align:center;">358</td>
<td style="text-align:center;">2021-01-04T17:04:08Z</td>
<td style="text-align:center;">938</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=36605493">Show HN: Hacker News user blogroll</a></td>
<td style="text-align:center;">deathbypenguin</td>
<td style="text-align:center;">184</td>
<td style="text-align:center;">2023-07-05T19:06:43Z</td>
<td style="text-align:center;">937</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=18030446">Show HN: Sublime Merge – A Git client from the makers of Sublime Text</a></td>
<td style="text-align:center;">jskinner</td>
<td style="text-align:center;">351</td>
<td style="text-align:center;">2018-09-20T07:36:57Z</td>
<td style="text-align:center;">935</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=41521919">Show HN: iFixit created a new USB-C, repairable soldering system</a></td>
<td style="text-align:center;">kwiens</td>
<td style="text-align:center;">405</td>
<td style="text-align:center;">2024-09-12T15:18:43Z</td>
<td style="text-align:center;">928</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=41465735">Show HN: Wealthfolio: Private, open-source investment tracker</a></td>
<td style="text-align:center;">a-fadil</td>
<td style="text-align:center;">263</td>
<td style="text-align:center;">2024-09-06T12:56:15Z</td>
<td style="text-align:center;">924</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=26568014">Show HN: I wrote a book about Go</a></td>
<td style="text-align:center;">maximilienandi</td>
<td style="text-align:center;">157</td>
<td style="text-align:center;">2021-03-24T14:56:41Z</td>
<td style="text-align:center;">919</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=42289690">Show HN: Markwhen: Markdown for Timelines</a></td>
<td style="text-align:center;">koch</td>
<td style="text-align:center;">98</td>
<td style="text-align:center;">2024-12-01T17:58:48Z</td>
<td style="text-align:center;">912</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=12692190">Show HN: Your Social Media Fingerprint (maybe NSFW)</a></td>
<td style="text-align:center;">Capira</td>
<td style="text-align:center;">247</td>
<td style="text-align:center;">2016-10-12T12:28:33Z</td>
<td style="text-align:center;">911</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=12539109">Show HN: Primitive Pictures</a></td>
<td style="text-align:center;">fogleman</td>
<td style="text-align:center;">170</td>
<td style="text-align:center;">2016-09-20T12:55:22Z</td>
<td style="text-align:center;">894</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=40318542">Show HN: A web debugger an ex-Cloudflare team has been working on for 4 years</a></td>
<td style="text-align:center;">thedg</td>
<td style="text-align:center;">233</td>
<td style="text-align:center;">2024-05-10T13:08:38Z</td>
<td style="text-align:center;">886</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=40003710">Show HN: I made a new sensor out of 3D printer filament for my PhD</a></td>
<td style="text-align:center;">00702</td>
<td style="text-align:center;">130</td>
<td style="text-align:center;">2024-04-11T16:06:03Z</td>
<td style="text-align:center;">886</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=19774019">Show HN: Lorem Picsum – Lorem Ipsum but for photos</a></td>
<td style="text-align:center;">dmarby</td>
<td style="text-align:center;">123</td>
<td style="text-align:center;">2019-04-28T22:06:52Z</td>
<td style="text-align:center;">880</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=29198205">Show HN: Long Range E-Bike</a></td>
<td style="text-align:center;">jacquesm</td>
<td style="text-align:center;">615</td>
<td style="text-align:center;">2021-11-12T11:25:48Z</td>
<td style="text-align:center;">876</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=24054382">Show HN: I built an After Effects for dummies</a></td>
<td style="text-align:center;">michaelaubry</td>
<td style="text-align:center;">291</td>
<td style="text-align:center;">2020-08-04T20:52:59Z</td>
<td style="text-align:center;">868</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=16505244">Show HN: My embarrassing personal website from the 90s</a></td>
<td style="text-align:center;">rpeden</td>
<td style="text-align:center;">417</td>
<td style="text-align:center;">2018-03-02T20:11:30Z</td>
<td style="text-align:center;">867</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=27606099">Show HN: iPod.js – An online iPod that connects to Spotify and Apple Music</a></td>
<td style="text-align:center;">tonyhawkins</td>
<td style="text-align:center;">157</td>
<td style="text-align:center;">2021-06-23T16:04:42Z</td>
<td style="text-align:center;">866</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=33833836">Show HN: I wrote a free eBook about many lesser-known/secret database tricks</a></td>
<td style="text-align:center;">tpetry</td>
<td style="text-align:center;">174</td>
<td style="text-align:center;">2022-12-02T17:43:10Z</td>
<td style="text-align:center;">865</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=16442888">Show HN: Hacker News Classics</a></td>
<td style="text-align:center;">jsomers</td>
<td style="text-align:center;">107</td>
<td style="text-align:center;">2018-02-23T00:11:29Z</td>
<td style="text-align:center;">864</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=21037167">Show HN: See a Satellite Tonight. No Telescope Required</a></td>
<td style="text-align:center;">modeless</td>
<td style="text-align:center;">151</td>
<td style="text-align:center;">2019-09-21T18:51:31Z</td>
<td style="text-align:center;">863</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=5332317">Show HN: 6 months ago I quit my job to pursue indie dev. Here is our first game</a></td>
<td style="text-align:center;">seanalltogether</td>
<td style="text-align:center;">329</td>
<td style="text-align:center;">2013-03-06T17:24:26Z</td>
<td style="text-align:center;">858</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=37125118">Show HN: LLMs can generate valid JSON 100% of the time</a></td>
<td style="text-align:center;">remilouf</td>
<td style="text-align:center;">303</td>
<td style="text-align:center;">2023-08-14T18:52:54Z</td>
<td style="text-align:center;">854</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=41635592">Show HN: OpenFreeMap – Open-Source Map Hosting</a></td>
<td style="text-align:center;">hyperknot</td>
<td style="text-align:center;">234</td>
<td style="text-align:center;">2024-09-24T11:59:22Z</td>
<td style="text-align:center;">848</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=11542005">Show HN: I made an interactive Bootstrap 4 cheat sheet</a></td>
<td style="text-align:center;">arechsteiner</td>
<td style="text-align:center;">161</td>
<td style="text-align:center;">2016-04-21T13:39:54Z</td>
<td style="text-align:center;">847</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=15017126">Show HN: A stop-motion video of an engine</a></td>
<td style="text-align:center;">AlexMuir</td>
<td style="text-align:center;">188</td>
<td style="text-align:center;">2017-08-15T11:15:41Z</td>
<td style="text-align:center;">845</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=40562458">Show HN: I made a tiny camera with super long battery life</a></td>
<td style="text-align:center;">davekeck</td>
<td style="text-align:center;">299</td>
<td style="text-align:center;">2024-06-03T13:31:47Z</td>
<td style="text-align:center;">843</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=18842218">Show HN: Mkcert – Valid HTTPS certificates for localhost</a></td>
<td style="text-align:center;">FiloSottile</td>
<td style="text-align:center;">115</td>
<td style="text-align:center;">2019-01-07T02:15:44Z</td>
<td style="text-align:center;">839</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=10004678">Show HN: My SSH server knows who you are</a></td>
<td style="text-align:center;">FiloSottile</td>
<td style="text-align:center;">245</td>
<td style="text-align:center;">2015-08-04T17:03:13Z</td>
<td style="text-align:center;">836</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=43086479">Show HN: Live-updating version of the 'What a week, huh?' meme</a></td>
<td style="text-align:center;">dlazaro</td>
<td style="text-align:center;">153</td>
<td style="text-align:center;">2025-02-18T05:53:55Z</td>
<td style="text-align:center;">834</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=41848150">Show HN: I built the most over-engineered Deal With It emoji generator</a></td>
<td style="text-align:center;">klimeryk</td>
<td style="text-align:center;">148</td>
<td style="text-align:center;">2024-10-15T13:05:05Z</td>
<td style="text-align:center;">832</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=11846108">Show HN: New calendar app idea</a></td>
<td style="text-align:center;">petermolyneux</td>
<td style="text-align:center;">197</td>
<td style="text-align:center;">2016-06-06T12:02:56Z</td>
<td style="text-align:center;">825</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=43120582">Show HN: Immersive Gaussian Splat experience of Sutro Tower, San Francisco</a></td>
<td style="text-align:center;">akanet</td>
<td style="text-align:center;">193</td>
<td style="text-align:center;">2025-02-20T21:39:19Z</td>
<td style="text-align:center;">824</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=11068902">Show HN: I've been writing daily TILs for a year</a></td>
<td style="text-align:center;">jbranchaud</td>
<td style="text-align:center;">150</td>
<td style="text-align:center;">2016-02-09T21:25:51Z</td>
<td style="text-align:center;">819</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=42814110">Show HN: Cs16.css – CSS library based on Counter Strike 1.6 UI</a></td>
<td style="text-align:center;">samke-</td>
<td style="text-align:center;">141</td>
<td style="text-align:center;">2025-01-24T15:37:07Z</td>
<td style="text-align:center;">819</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=42254156">Show HN: App that asks ‘why?’ every time you unlock your phone</a></td>
<td style="text-align:center;">jarko27</td>
<td style="text-align:center;">381</td>
<td style="text-align:center;">2024-11-27T08:34:35Z</td>
<td style="text-align:center;">817</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=37326870">Show HN: I automated half of my typing</a></td>
<td style="text-align:center;">eschluntz</td>
<td style="text-align:center;">314</td>
<td style="text-align:center;">2023-08-30T18:40:52Z</td>
<td style="text-align:center;">815</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=31785199">Show HN: A central bank simulator game with a realistic economic model</a></td>
<td style="text-align:center;">BenoitEssiambre</td>
<td style="text-align:center;">309</td>
<td style="text-align:center;">2022-06-17T22:24:21Z</td>
<td style="text-align:center;">815</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=14947361">Show HN: Is the stock market going to crash?</a></td>
<td style="text-align:center;">truffle_pig</td>
<td style="text-align:center;">325</td>
<td style="text-align:center;">2017-08-07T13:45:03Z</td>
<td style="text-align:center;">813</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=38012032">Show HN: OpenAPI DevTools – Chrome extension that generates an API spec</a></td>
<td style="text-align:center;">mrmagoo2</td>
<td style="text-align:center;">102</td>
<td style="text-align:center;">2023-10-25T12:24:19Z</td>
<td style="text-align:center;">811</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=38901504">Show HN: I made an app that consolidated 18 apps (doc, sheet, form, site, chat…)</a></td>
<td style="text-align:center;">harrisonlo</td>
<td style="text-align:center;">258</td>
<td style="text-align:center;">2024-01-07T14:34:46Z</td>
<td style="text-align:center;">810</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=22545878">Show HN: Fraidycat</a></td>
<td style="text-align:center;">kickscondor</td>
<td style="text-align:center;">150</td>
<td style="text-align:center;">2020-03-11T13:59:28Z</td>
<td style="text-align:center;">807</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=9531265">Show HN: This page exists only if someone is looking at it</a></td>
<td style="text-align:center;">losvedir</td>
<td style="text-align:center;">165</td>
<td style="text-align:center;">2015-05-12T12:41:32Z</td>
<td style="text-align:center;">803</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=10477721">Show HN: Twitch Installs Arch Linux – A cooperative text-based horror game</a></td>
<td style="text-align:center;">jbott</td>
<td style="text-align:center;">250</td>
<td style="text-align:center;">2015-10-30T13:45:40Z</td>
<td style="text-align:center;">802</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=12958445">Show HN: Primitive for macOS</a></td>
<td style="text-align:center;">fogleman</td>
<td style="text-align:center;">145</td>
<td style="text-align:center;">2016-11-15T14:54:01Z</td>
<td style="text-align:center;">798</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=42405046">Show HN: I designed an espresso machine and coffee grinder</a></td>
<td style="text-align:center;">smeeeeeeeeeeeee</td>
<td style="text-align:center;">477</td>
<td style="text-align:center;">2024-12-13T01:03:27Z</td>
<td style="text-align:center;">797</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=39783223">Show HN: Memories – FOSS Google Photos alternative built for high performance</a></td>
<td style="text-align:center;">radialapps</td>
<td style="text-align:center;">230</td>
<td style="text-align:center;">2024-03-21T19:25:10Z</td>
<td style="text-align:center;">797</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=28012829">Show HN: Static.wiki – read-only Wikipedia using a 43GB SQLite file</a></td>
<td style="text-align:center;">segfall</td>
<td style="text-align:center;">189</td>
<td style="text-align:center;">2021-07-30T21:50:50Z</td>
<td style="text-align:center;">796</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=30824357">Show HN: I'm writing a free book called Computer Networks from Scratch</a></td>
<td style="text-align:center;">sarchertech</td>
<td style="text-align:center;">132</td>
<td style="text-align:center;">2022-03-27T21:32:10Z</td>
<td style="text-align:center;">792</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=32993130">Show HN: Get conversational practice in over 20 languages by talking to an AI</a></td>
<td style="text-align:center;">Hadjimina</td>
<td style="text-align:center;">335</td>
<td style="text-align:center;">2022-09-27T09:18:36Z</td>
<td style="text-align:center;">787</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=2901156">Show HN: Codecademy.com, the easiest way to learn to code</a></td>
<td style="text-align:center;">zds</td>
<td style="text-align:center;">232</td>
<td style="text-align:center;">2011-08-18T21:25:02Z</td>
<td style="text-align:center;">787</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=41853810">Show HN: Graphite, a Blender-inspired 2D procedural design Rust app</a></td>
<td style="text-align:center;">Keavon</td>
<td style="text-align:center;">128</td>
<td style="text-align:center;">2024-10-15T22:32:06Z</td>
<td style="text-align:center;">785</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=23045207">Show HN: Plotting 3 years of hourly data in 150ms</a></td>
<td style="text-align:center;">leeoniya</td>
<td style="text-align:center;">102</td>
<td style="text-align:center;">2020-05-01T18:44:12Z</td>
<td style="text-align:center;">785</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=24380969">Show HN: Linux sysadmin course, eight years on</a></td>
<td style="text-align:center;">snori74</td>
<td style="text-align:center;">83</td>
<td style="text-align:center;">2020-09-05T02:37:14Z</td>
<td style="text-align:center;">780</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=23070567">Show HN: Caddy 2</a></td>
<td style="text-align:center;">mholt</td>
<td style="text-align:center;">240</td>
<td style="text-align:center;">2020-05-04T17:07:04Z</td>
<td style="text-align:center;">778</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=8036648">Show HN: Pangoly – Build your shiny new PC</a></td>
<td style="text-align:center;">ejjpi</td>
<td style="text-align:center;">213</td>
<td style="text-align:center;">2014-07-15T14:37:03Z</td>
<td style="text-align:center;">778</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=20923792">Show HN: Cyberpunk web design made easy, really easy</a></td>
<td style="text-align:center;">JaneOri</td>
<td style="text-align:center;">108</td>
<td style="text-align:center;">2019-09-09T23:51:41Z</td>
<td style="text-align:center;">775</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=18816418">Show HN: HN.Academy – Top online courses recommended by Hacker News users</a></td>
<td style="text-align:center;">yaj54</td>
<td style="text-align:center;">85</td>
<td style="text-align:center;">2019-01-03T16:40:26Z</td>
<td style="text-align:center;">773</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=22811653">Show HN: FalsiScan – Make it look like a PDF has been hand signed and scanned</a></td>
<td style="text-align:center;">linschn</td>
<td style="text-align:center;">186</td>
<td style="text-align:center;">2020-04-08T10:25:17Z</td>
<td style="text-align:center;">770</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=42634787">Show HN: Atlas of Space</a></td>
<td style="text-align:center;">gordonhart</td>
<td style="text-align:center;">124</td>
<td style="text-align:center;">2025-01-08T14:47:34Z</td>
<td style="text-align:center;">770</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=27803146">Show HN: Print a WiFi Login Card</a></td>
<td style="text-align:center;">bndw</td>
<td style="text-align:center;">326</td>
<td style="text-align:center;">2021-07-11T18:04:43Z</td>
<td style="text-align:center;">769</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=41539125">Show HN: Meet.hn – Meet the Hacker News community in your city</a></td>
<td style="text-align:center;">sirobg</td>
<td style="text-align:center;">372</td>
<td style="text-align:center;">2024-09-14T11:36:00Z</td>
<td style="text-align:center;">768</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=17449810">Show HN: Termtosvg – Record terminal sessions as SVG animations</a></td>
<td style="text-align:center;">nbe</td>
<td style="text-align:center;">79</td>
<td style="text-align:center;">2018-07-03T13:06:50Z</td>
<td style="text-align:center;">767</td>
</tr>
<tr>
<td><a href="https://news.ycombinator.com/item?id=36849502">Show HN: I spent 2 years building a personal finance simulator</a></td>
<td style="text-align:center;">scubakid</td>
<td style="text-align:center;">288</td>
<td style="text-align:center;">2023-07-24T15:25:06Z</td>
<td style="text-align:center;">766</td>
</tr>
<tr>