aboutsummaryrefslogtreecommitdiff
path: root/haunt/data/blogroll.scm
blob: e7a3d2e92aa2456c49c73838db9b650e1d03e6f1 (plain)
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
'(("Adam Sawicki"
   "http://asawicki.info/"
   (c++
    game-development
    graphics
    programming
    video-games
    windows))
  ("Bit Cannon"
   "http://bitcannon.net/"
   (linux
    rust
    programming))
  ("(proclaim λ)"
   "http://blog.macrolet.net/"
   (common-lisp
    functional-programming
    hardware
    lisp
    programming))
  ("Brads Blog"
   "http://bradhodge.ca/blog/"
   (hardware
    retro-tech))
  ("Charlie the Ninja"
   "http://charliethe.ninja/"
   (bsd
    c
    game-development
    graphics
    programming
    video-games
    x86))
  ("DSASMBLR"
   "http://dsasmblr.com/"
   (game-hacking
    reversing
    security
    video-games))
  ("Emacs Horrors"
   "http://emacshorrors.com/"
   (emacs
    emacs-lisp
    lisp
    programming))
  ("Emacs Ninja"
   "http://emacsninja.com/"
   (emacs
    emacs-lisp
    lisp
    programming))
  ("Fabien Sanglard"
   "http://fabiensanglard.net/"
   (c
    c++
    game-development
    graphics
    hardware
    programming
    video-games))
  ("faehnri.ch"
   "http://faehnri.ch/"
   (c
    c++
    game-hacking
    reversing
    video-games))
  ("gynvael.coldwind//vx.log"
   "https://gynvael.coldwind.pl/?blog=1&lang=en"
   (capture-the-flag
    game-development
    programming
    reversing
    security
    video-games))
  ("Michael Nielsen"
   "http://michaelnielsen.org/blog/"
   (cogsci
    math
    practices
    programming))
  ("steve losh"
   "http://stevelosh.com/blog/"
   (clojure
    common-lisp
    game-development
    lisp
    programming
    video-games))
  ("jooru//vx tech blog"
   "http://j00ru.vexillium.org/"
   (binary-exploitation
    malware
    operating-systems
    reversing
    security
    windows))
  ("Bob Nystrom"
   "http://journal.stuffwithstuff.com/"
   (game-development
    programming
    video-games))
  ("Lambda the Ultimate"
   "http://lambda-the-ultimate.org/"
   (functional-programming
    lisp
    programming
    scheme))
  ("Zach Beane Common Lisp"
   "http://lispblog.xach.com/"
   (common-lisp
    lisp
    programming))
  ("meh."
   "http://meh.schizofreni.co/"
   (c
    linux
    programming
    rust))
  ("null program"
   "http://nullprogram.com/"
   (bsd
    c
    c++
    emacs
    emacs-lisp
    graphics
    linux
    lisp
    programming
    python
    x86))
  ("The Official Radare Blog"
   "http://radare.today/"
   (c
    radare2
    programming
    reversing))
  ("妖怪世捨て人"
   "http://reader.tymoon.eu/"
   (common-lisp
    game-development
    lisp
    video-games))
  ("Richard Kallos"
   "http://rkallos.com/"
   (functional-programming
    emacs
    erlang
    lisp
    programming
    scheme))
  ("samskivert"
   "http://samskivert.com/blog/"
   (functional-programming
    programming))
  ("The sh3llc0d3rs blog"
   "http://sh3llc0d3r.com/"
   (binary-exploitation
    capture-the-flag
    computer-networking
    security))
  ("shell-storm"
   "http://shell-storm.org/"
   (binary-exploitation
    c
    capture-the-flag
    linux
    operating-systems
    reversing
    security))
  ("Technomancy"
   "https://technomancy.us/list"
   (fennel
    game-development
    hardware
    lisp
    lua
    programming
    video-games))
  ("Vi Hart"
   "http://vihart.com/"
   (math))
  ("Charles, etc"
   "http://www.charlesetc.com/"
   (linux
    programming
    rust))
  ("Notes on Programming"
   "http://www.codersnotes.com/notes/"
   (graphics
    programming
    reversing
    video-games))
  ("defmacro"
   "http://www.defmacro.org/"
   (functional-programming
    linux
    lisp
    programming))
  ("Home Page of Evan Miler"
   "http://www.evanmiller.org/"
   (c
    erlang
    math
    programming
    rust
    video-games))
  ("Style Warning"
   "http://www.stylewarning.com/blog/"
   (common-lisp
    lisp
    math))
  ("WezM.net"
   "https://www.wezm.net/"
   (programming
    rust))
  ("0x90r00t"
   "https://0x90r00t.com/"
   (binary-exploitation
    capture-the-flag
    reversing
    security))
  ("aixxe"
   "https://aixxe.net/"
   (game-hacking
    linux
    reversing
    video-games))
  ("Pierre Neidhardts homepage"
   "https://ambrevar.xyz/"
   (emacs
    functional-programming
    linux
    lisp
    programming
    scheme))
  ("arp242.net"
   "https://arp242.net/"
   (linux
    programming
    python))
  ("The Neo-Babbage Files"
   "https://babbagefiles.xyz/"
   (emacs
    lisp
    programming))
  ("Max Bernstein"
   "https://bernsteinbear.com/blog/"
   (functional-programming
    lisp
    programming))
  ("dmbaturins blog"
   "https://blog.baturin.org/"
   (computer-networking
    functional-programming
    linux
    ocaml
    programming
    python
    x86))
  ("Andrew Gallants Blog"
   "https://blog.burntsushi.net/"
   (linux
    programming
    rust))
  ("The blog at the bottom of the sea"
   "https://blog.demofox.org/"
   (crypto
    game-development
    graphics
    math
    programming
    video-games))
  ("Improved Means for Achieving Deteriorated Ends"
   "https://blog.kingcons.io/"
   (common-lisp
    hardware
    lisp
    programming
    retro-tech))
  ("KRNL386"
   "https://blog.krnl386.com/"
   (retro-tech
    reversing
    windows))
  ("Separate Concerns"
   "https://blog.separateconcerns.com/"
   (c
    linux
    lua
    programming))
  ("Lainblog"
   "https://blog.soykaf.com/"
   (decentralization
    programming
    retro-tech))
  ("Bluish Coder"
   "https://bluishcoder.co.nz/"
   (programming))
  ("Cryogenix"
   "https://cryogenix.net/"
   (bsd
    retro-tech
    reversing
    x86))
  ("Fedor Indutnys Blog"
   "https://darksi.de/"
   (binary-exploitation
    c++
    crypto
    programming
    security))
  ("Deftly.net"
   "https://deftly.net/"
   (bsd
    erlang
    functional-programming
    haskell
    programming))
  ("Bill de hÓra"
   "https://dehora.net/journal/"
   (programming
    rust))
  ("/dev/krzaq"
   "https://dev.krzaq.cc/"
   (c++
    programming
    reversing
    video-games))
  ("Drew DeVaults Blog"
   "https://drewdevault.com/"
   (c
    go
    linux
    programming))
  ("fuzzy notepad"
   "https://eev.ee/blog/"
   (art
    c
    doom
    game-development
    programming
    python
    retro-tech
    rust
    video-games))
  ("Eli Grey"
   "https://eligrey.com/"
   (javascript
    programming))
  ("https://erkaman.github.io/articles.html"
   "graphics"
   (math
    programming))
  ("The Brain Dump"
   "https://floooh.github.io/"
   (c
    programming
    retro-tech
    reversing))
  ("Frederik Braun"
   "https://frederik-braun.com/archives.html"
   (programming
    python))
  ("General Protection Fault"
   "https://gpfault.net/"
   (c++
    graphics
    opengl
    programming
    retro-tech
    reversing))
  ("Comfortably Numbered"
   "https://hardmath123.github.io/"
   (capture-the-flag
    functional-programming
    linux
    lisp
    math
    programming
    python
    scheme))
  ("Infinity Plus One"
   "https://infinityplusonemath.wordpress.com/"
   (math))
  ("jamchambs blog"
   "https://jamchamb.github.io/"
   (c
    hardware
    powerpc
    programming
    retro-tech
    reversing))
  ("Daniel Lemires Blog"
   "https://lemire.me/blog/"
   (math
    programming
    x86))
  ("Patterns in Cyberspace"
   "https://leotindall.com/"
   (decentralization
    linux
    programming
    retro-tech
    rust))
  ("Marios Lab"
   "https://marioslab.io/posts/"
   (programming))
  ("Tyler Glaiel"
   "https://medium.com/@tglaiel"
   (game-development
    programming))
  ("Barely Functional"
   "https://mgattozzi.com/"
   (programming
    rust))
  ("Mutos Blog"
   "https://muto.ca/"
   (emacs
    functional-programming
    programming
    scheme))
  ("Nerderati"
   "https://nerderati.com/"
   (linux
    math
    programming
    python))
  ("... and another thing ..."
   "https://nick.zoic.org/"
   (hardware
    linux
    programming
    python))
  ("Nick Cano"
   "https://nickcano.com/"
   (capture-the-flag
    game-hacking
    hardware
    programming
    reversing
    video-games))
  ("Nora Sandler"
   "https://norasandler.com/"
   (c
    compilers
    programming))
  ("codeblog"
   "https://outflux.net/blog/"
   (linux
    operating-systems
    programming))
  ("Objective-See"
   "https://objective-see.com/"
   (malware
    reversing
    security))
  ("Matt Pharrs blog"
   "https://pharr.org/matt/blog/"
   (graphics
    programming
    x86))
  ("phoenhex team"
   "https://phoenhex.re/"
   (binary-exploitation
    reversing
    security))
  ("programming is terrible"
   "https://programmingisterrible.com/"
   (programming))
  ("./pwnaccelerator BLOG"
   "https://pwnaccelerator.github.io/"
   (crypto
    hardware
    reversing
    security))
  ("Computable Multiverse"
   "https://rakhim.org/"
   (emacs
    linux
    math))
  ("John Ramsden"
   "https://ramsdenj.com/"
   (bsd
    linux))
  ("RETRO.MOE"
   "https://retro.moe/"
   (hardware
    retro-tech))
  ("Rufflewinds Scratchpad"
   "https://rufflewind.com/"
   (haskell
    linux
    programming
    rust))
  ("Brandon Skerritt"
   "https://skerritt.blog/"
   (crypto
    programming
    security))
  ("Causal Agency"
   "https://text.causal.agency/"
   (c
    programming))
  ("η (eta)"
   "https://theta.eu.org/posts.html"
   (crypto
    hardware
    linux
    programming
    rust))
  ("Travis Goodspeeds Blog"
   "https://travisgoodspeed.blogspot.com/"
   (ham
    hardware
    reversing
    sdr
    security))
  ("Two-Bit History"
   "https://twobithistory.org/"
   (linux
    lisp
    programming
    retro-tech))
  ("Occasionally sane"
   "https://vfoley.xyz/"
   (emacs
    programming
    rust
    video-games))
  ("vmcall"
   "https://vmcall.github.io/"
   (game-hacking
    programming
    reversing
    video-games))
  ("/dev/ram0"
   "https://wargio.github.io/"
   (hardware
    programming
    radare2
    reversing))
  ("mindless-area"
   "https://wbenny.github.io/posts/"
   (hardware
    reversing
    windows))
  ("wingolog"
   "https://wingolog.org/"
   (functional-programming
    linux
    lisp
    lua
    programming
    scheme))
  ("Wolf480pl"
   "https://wolf480pl.github.io/"
   (linux
    programming))
  ("Frederic Cambus"
   "https://www.cambus.net/"
   (bsd
    c
    programming
    x86))
  ("The Digital Antiquarian"
   "https://www.filfre.net/"
   (hardware
    retro-tech
    video-games))
  ("Kirsle.net"
   "https://www.kirsle.net/"
   (crypto
    go
    programming
    security))
  ("Project Nayuki"
   "https://www.nayuki.io/"
   (art
    c
    c++
    crypto
    math
    programming
    x86))
  ("Inane Observations"
   "https://yingtongli.me/blog/"
   (crypto
    linux
    math
    reversing
    security
    video-games))
  ("zayenz"
   "https://zayenz.se/blog"
   (programming
    rust))
  ("The Stone Zone"
   "http://thestone.zone/"
   (hardware
    lisp
    programming
    reversing))
  ("David Boddie"
   "http://www.boddie.org.uk/david/www-repo/Personal/Updates/index.html"
   (programming
    python
    reversing))
  ("Alicefs website"
   "https://alicef.me/"
   (gentoo
    linux))
  ("~ben"
   "https://ben.tild3.org/"
   (linux))
  ("0day rocks!"
   "https://0day.rocks/"
   (crypto
    hardware
    linux
    math
    programming
    reversing
    security
    tor))
  ("Eccentric J"
   "https://eccentric-j.com/"
   (art
    clojure
    functional-programming
    lisp
    programming))
  ("Prosthetic Conscience"
   "https://jfm.carcosa.net/blog/"
   (linux
    programming))
  ("Max Justicz"
   "https://justi.cz/"
   (binary-exploitation
    reversing
    security))
  ("The Obscuritory"
   "https://obscuritory.com/feed/"
   (retro-tech
    video-games))
  ("Jon Gjengset"
   "https://thesquareplanet.com/"
   (linux
    programming
    rust
    security))
  ("rtl-sdr.com"
   "https://www.rtl-sdr.com/"
   (gnuradio
    ham
    hardware
    programming
    sdr))
  ("pancake"
   "https://medium.com/@trufae"
   (c
    programming
    radare2
    rust))
  ("hexxendmns.motd.org"
   "https://hexxendmns.motd.org/"
   (doom
    linux
    mapping
    programming
    quake
    video-games))
  ("Random ASCII – tech blog of Bruce Dawson"
   "https://randomascii.wordpress.com/"
   (compilers
    hardware
    powerpc
    programming
    windows
    x86))
  ("David Thompson"
   "https://dthompson.us/"
   (emacs
    guile
    guix
    linux
    programming
    scheme))
  ("InvisibleUp"
   "https://invisibleup.com/"
   (graphics
    programming
    retro-tech
    reversing
    video-games))
  ("ancientelectronics"
   "https://ancientelectronics.wordpress.com/"
   (hardware
    retro-tech))
  ("North Coast News"
   "https://northcoastsynthesis.com/news/"
   (hardware))
  ("Bodil dot lol"
   "https://bodil.lol/"
   (compilers
    programming
    rust))
  ("Bits, pixels, cycles and more"
   "https://zeux.io/"
   (c++
    graphics
    programming))
  ("Bill Demirkapis Blog"
   "https://d4stiny.github.io/"
   (reversing
    security))
  ("blitter.net"
   "https://blitter.net/"
   (hardware
    retro-tech
    reversing))
  ("Breaking Eggs And Making Omelettes"
   "https://multimedia.cx/eggs/feed/"
   (programming
    retro-tech
    reversing
    video-games
    x86))
  ("Halestroms Peregrinations"
   "https://halestrom.net/darksleep/"
   (hardware
    linux
    programming))
  ("VeXation"
   "https://log.vexation.ca/"
   (malware
    programming
    retro-tech
    reversing
    windows))
  ("Skys blog"
   "https://byebyesky.github.io/blog/"
   (capture-the-flag
    hardware
    programming
    reversing
    security))
  ("Something Something Programming"
   "https://nickdrozd.github.io/"
   (common-lisp
    emacs
    functional-programming
    lisp
    math
    programming
    rust))
  ("evilsocket"
   "https://www.evilsocket.net/"
   (computer-networking
    go
    programming
    reversing
    security))
  ("GovanifY"
   "https://govanify.com/post/"
   (capture-the-flag
    linux
    programming
    retro-tech
    reversing
    security))
  ("Code of Connor"
   "https://codeofconnor.com/"
   (game-development
    linux
    programming))
  ("cowlark.com"
   "http://cowlark.com/"
   (hardware
    programming
    retro-tech))
  ("danluu.com/"
   "https://danluu.com/"
   (hardware
    linux
    programming))
  ("PapaTutuWawas Blog"
   "https://blog.latinise.me/"
   (linux))
  ("Catbolis Blog"
   "linux"
   (programming
    retro-tech))
  ("Tristans Site"
   "http://thume.ca/archive.html"
   (capture-the-flag
    compilers
    programming
    rust
    security))
  ("people.kernel.org"
   "https://people.kernel.org/read"
   (linux
    operating-systems
    programming))
  ("TheFloWs security blog"
   "https://theofficialflow.github.io/"
   (binary-exploitation
    hardware
    reversing
    security))
  ("Christine Dodrills Blog"
   "https://christine.website/blog"
   (linux
    programming))
  ("DustyCloud Brainstorms"
   "https://dustycloud.org/blog/"
   (functional-programming
    lisp
    programming
    scheme))
  ("Hot Leaves in a Cold Worlds"
   "http://www.philipzucker.com/"
   (functional-programming
    hardware
    haskell
    math
    programming
    python))
  ("Youve Reached the Center of the Internet"
   "http://blog.benwiener.com/"
   (functional-programming
    ham
    hardware
    haskell
    programming))
  ("Grievers Notes"
   "https://romhack.github.io/doc/"
   (programming
    retro-tech
    reversing
    video-games))
  ("samiss blag"
   "https://foldmap.ml/~samis/"
   (gentoo
    guix
    linux))
  ("James Technical Notes"
   "https://jamestechnotes.com/blog/"
   (android
    c
    functional-programming
    guile
    guix
    linux
    programming
    scheme))
  ("Aearnus' Realm"
   "https://aearnus.github.io/"
   '(functional-programming
     haskell
     math
     perl6
     programming
     python)))

© 2015 - 2026 Jakob L. Kreuze