-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdata.js
1346 lines (1346 loc) · 48.4 KB
/
data.js
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
script_data = [
{
"author_name" : "czaks",
"author_url" : "https://github.com/czaks",
"download_url" : "https://github.com/vichan-devel/vichan/releases",
"language" : "PHP",
"name" : "vichan",
"notes" : "Essentially an improved fork of Tinyboard and probably the most common imageboard script in use today. Recommended for beginners due to sane defaults and useful features like Tesseract OCR and DNSBL integration.",
"version" : "d6d1082 (031220)",
"status" : "maintained",
"last_checked" : "2021-01-13",
"created" : "2012"
},
{
"author_name" : "oprel",
"author_url" : "https://github.com/oprel",
"download_url" : "https://github.com/oprel/emanon",
"language" : "Perl",
"name" : "emanon",
"notes" : "Modern extensions to Tablecat. Basically the de facto software for textboards now. In use at SAoVQ and other culturally significant websites. Most features are basic usability extensions to spiritual predecessors such as Shiichan.",
"version" : "727486f",
"status" : "stable",
"last_checked" : "2021-01-14",
"created" : "2015"
},
{
"author_name" : "!WAHa_06x36",
"author_url" : "https://wakaba.c3.cx",
"download_url" : "https://wakaba.c3.cx/releases/Kareha/",
"language" : "Perl",
"name" : "Kareha",
"notes" : "This is my favourite script. It is easy for beginners to modify and it runs well on low-end servers. Kareha is spiritually similar to Wakaba as it is written by the same author. It is very popular in textboard communities such as 4-ch.net and sageru.org",
"version" : "3.1.4",
"status" : "stable",
"last_checked" : "2019-11-23",
"created" : "2004?"
},
{
"author_name" : "Yanislav Igonin",
"author_url" : "https://github.com/yanislav-igonin",
"download_url" : "https://github.com/yanislav-igonin/micrach/",
"language" : "Go",
"name" : "micrach",
"notes" : "Tiny single board imageboard. Written as a side project when the author was learning Go.",
"version" : "aafbf6b (050222)",
"status" : "maintained",
"last_checked" : "2022-02-03",
"created" : "2021"
},
{
"author_name" : "Anonymous",
"author_url" : "https://4x13.net",
"download_url" : "https://bitbucket.org/796f/multichan/",
"language" : "Python",
"name" : "multich",
"notes" : "Multichan is a simple federated tag-based textboard with pseudo-image support, implemented with Python/Flask. It builds upon fashionable new federation concepts like the WebRing feature of vichan in that it also performs site-to-site replication of tags (boards) and posts. It also allows for browsing via a global index and receiving updates through Atom feeds.",
"version" : "f0edf77 (053021)",
"status" : "maintained",
"last_checked" : "2021-05-30",
"created" : "2020"
},
{
"author_name" : "bakape",
"author_url" : "https://github.com/bakape",
"download_url" : "https://github.com/bakape/meguca/releases",
"language" : "Go",
"name" : "meguca",
"notes" : "Meguca is a fast multiboard system with all the modern trappings (catalogue, merged boards, formatting, etc). Like other recent imageboard softwares, it allows the user to register an account and use it for preserving contextual state. There is a public instance of Meguca at shamik.ooo (nsfw).",
"version" : "6.8.0",
"status" : "maintained",
"last_checked" : "2021-01-15",
"created" : "2010"
},
{
"author_name" : "Ben Bitdiddle",
"author_url" : "https://gitlab.com/naughtybits",
"download_url" : "https://gitlab.com/naughtybits/schemebbs",
"language" : "MIT Scheme",
"name" : "SchemeBBS",
"notes" : "SchemeBBS powers textboard.org, it features typical kareha-style textboard features such as quoting and shiichan-style text formatting. The code itself has few dependencies and is written competently but may be too lightweight for some people.",
"version" : "n/a",
"status" : "stable",
"last_checked" : "2019-11-23",
"created" : "2018"
},
{
"author_name" : "Yumi",
"author_url" : "https://bm.howler.space/yumi/",
"download_url" : "https://github.com/yumi-xx/RAL",
"language" : "PHP",
"name" : "RAL",
"notes" : "RAL was written specifically for howler.space and attempts to focus on so-called perpetual posting (documented as ``continuities'') with a grid-style interface for viewing threads.",
"version" : "v3.1",
"status" : "stable",
"last_checked" : "2019-11-23",
"created" : "2017"
},
{
"author_name" : "Crunklord420",
"author_url" : "https://kiwifarms.cc/users/crunklord420",
"download_url" : "https://git.kiwifarms.net/CrunkLord420/gemboard",
"language" : "Rust",
"name" : "gemboard",
"notes" : "Gemboard is a unique textboard system designed for the Gemini protocol. It runs as a system service and uses Postgres for data persistence.",
"version" : "a85e041f91",
"status" : "stable",
"last_checked" : "2020-11-24",
"created" : "2020"
},
{
"author_name" : "majestrate",
"author_url" : "https://github.com/majestrate",
"download_url" : "https://github.com/majestrate/nntpchan/releases",
"language" : "Go",
"name" : "nntpchan",
"notes" : "The main feature of NNTPChan is that it uses the NNTP protocol to assist in decentralising the board data. To participate in posting, you must have permission to access a server within the graph or use a web client. For a while (between 2014-2018) it was popular, however as of 2019 it appears there are no web-accessible boards anymore.",
"version" : "3.1.0",
"status" : "maintained",
"last_checked" : "2019-11-26",
"created" : "2015"
},
{
"author_name" : "Kyle Farwell",
"author_url" : "http://kfarwell.org",
"download_url" : "https://github.com/kfarwell/werchan",
"language" : "Plan 9 rc",
"name" : "werchan",
"notes" : "the chan fell off. Probably a great choice if you run Plan 9 or want to use an almost CGI-free environment (!).",
"version" : "1.5",
"status" : "stable",
"last_checked" : "2019-11-26",
"created" : "2015"
},
{
"author_name" : "David Wührer",
"author_url" : "#none",
"download_url" : "https://tanami.org/pub/software/TrueScript/Treeboard.zip",
"language" : "C",
"name" : "Treeboard",
"notes" : "Treeboard is the first graph-based textboard software, designed for tree-board.net. It is implemented in C and uses a real graph implementation that renders as a giant svg file. It is remarkable in that the whole thing is implemented as a 1500 line C program.",
"version" : "n/a",
"status" : "stable",
"last_checked" : "2020-11-25",
"created" : "2013?"
},
{
"author_name" : "Amphy",
"author_url" : "#none",
"download_url" : "#none",
"language" : "PHP",
"name" : "Noder",
"notes" : "Noder is a graph-based textboard that allows you to connect arbitrary posts to your own and visualizes them with a directed top-down graph. It is similar in spirit to TreeBoard but is more practical to navigate since it does not span horizontally.",
"version" : "n/a",
"status" : "maintained",
"last_checked" : "2020-08-25",
"created" : "2019"
},
{
"author_name" : "okay zed",
"author_url" : "https://kthxb.ai",
"download_url" : "https://github.com/atobs/atob",
"language" : "nodejs",
"name" : "atob",
"notes" : "atob is a real-time textboard that uses a custom nodejs backend and has some unusual features such as color-based tripcodes and a real-time chat function. It also has a 'anonicator' feature which visualises live user activity. I think overall the system is very innovative.",
"version" : "0.1.0",
"status" : "maintained",
"last_checked" : "2020-08-25",
"created" : "2013"
},
{
"author_name" : "n/a",
"author_url" : "#none",
"download_url" : "#none",
"language" : "PHP",
"name" : "PeachBoard",
"notes" : "Peachboard is an ordinary 2ch-style textboard script that powers 2board.net.",
"version" : "n/a",
"status" : "maintained",
"last_checked" : "2020-08-25",
"created" : "2020"
},
{
"author_name" : "!WAHa_06x36",
"author_url" : "http://wakaba.c3.cx",
"download_url" : "http://wakaba.c3.cx",
"language" : "Perl",
"name" : "Wakaba",
"notes" : "Wakaba is a very old and popular script (slightly more popular than its cousin, Kareha) derived from Futallaby code. Wakaba uses a MySQL backend for storage. Wakaba's design serves as the scaffolding for many other scripts.",
"version" : "3.0.9",
"status" : "stable",
"last_checked" : "2019-11-23",
"created" : "2004"
},
{
"author_name" : "Thomas Lynch",
"author_url" : "https://github.com/fatchan",
"download_url" : "https://github.com/fatchan/jschan",
"language" : "nodejs",
"name" : "jschan",
"notes" : "jschan is a futaba-style imageboard which uses Node.JS and MongoDB for the backend. It has some interesting features such as cyclic posts, webring support, and user-created boards. The code is almost entirely implemented by one author and uses modern development techniques like using models, migrations, etc.",
"version" : "ec71ffc (150220)",
"status" : "stable",
"last_checked" : "2020-02-16",
"created" : "2019"
},
{
"author_name" : "liamwhite",
"author_url" : "https://github.com/liamwhite",
"download_url" : "https://github.com/derpibooru/philomena",
"language" : "Elixir",
"name" : "Philomena",
"notes" : "Philomena is a hybrid forum-imageboard script which runs as a standalone daemon. It was created specifically for derpibooru.org and features post-tagging, user registrations, forum/image search, and a Commissions function which is specific to Derpibooru.",
"version" : "6799622 (130320)",
"status" : "stable",
"last_checked" : "2020-03-14",
"created" : "2019"
},
{
"author_name" : "tslocum",
"author_url" : "http://kusabax.cultnet.net",
"download_url" : "http://kusabax.cultnet.net",
"language" : "PHP",
"name" : "Kusaba",
"notes" : "Kusaba was once the most popular script for imageboards. Kusaba's history is tumultuous and colourful since it was the target of many hacking attempts partly due to the code quality and partly due to the types of communities which used it. The original author (Trevor) abandoned it in 2008 and Harrison Weston became the new maintainer.",
"version" : "0.9.3",
"status" : "stable",
"last_checked" : "2019-11-26",
"created" : "2008?"
},
{
"author_name" : "Stephen Lynx",
"author_url" : "http://gitgud.io/LynxChan",
"download_url" : "https://gitgud.io/LynxChan/LynxChan/tags",
"language" : "nodejs",
"name" : "LynxChan",
"notes" : "LynxChan is a typical modern imageboard system. Over the years LynxChan has evolved into a popular fully-fledged software with a well-designed plugin system. The project is a one-man effort by Stephen Lynx. It is somewhat popular, currently being used by at least 20 websites as of writing (2021).",
"version" : "2.4.10",
"status" : "maintained",
"last_checked" : "2021-01-15",
"created" : "2015"
},
{
"author_name" : "Kermit Alexander II",
"author_url" : "https://github.com/DangerOnTheRanger/",
"download_url" : "https://github.com/DangerOnTheRanger/maniwani",
"language" : "Python",
"name" : "maniwani",
"notes" : "Maniwani is an experimental BBS which purveys many modern ideologies such as REST API support, real-time updates and CDN support. The script is mainly being used by futatsu.org.",
"version" : "f8f850c (071020)",
"status" : "maintained",
"last_checked" : "2020-01-14",
"created" : "2018"
},
{
"author_name" : "Joshua Moore",
"author_url" : "https://github.com/joshiemoore",
"download_url" : "https://github.com/joshiemoore/NodeChan",
"language" : "Java",
"name" : "NodeChan",
"notes" : "NodeChan is a Java-based peer-to-peer textboard client which relies on UPNP or the use of gossip servers to discover peers that contain other messages and threads on the board. It is by nature highly-decentralised and is therefore well-suited to use in a LAN scenario. At the time of writing, the implementation is incomplete but provides a functional proof-of-concept which seems reasonably simple to extend.",
"version" : "9ba6909 (120819)",
"status" : "stable",
"last_checked" : "2019-11-30",
"created" : "2019"
},
{
"author_name" : "steenuil",
"author_url" : "https://sgt.hootr.club",
"download_url" : "https://github.com/steinuil/negoto",
"language" : "Ur",
"name" : "negoto",
"notes" : "Negoto is a simple Futaba-style imageboard system written in the Ur/Web typed system. Currently it is not being further developed but provides a good basis for developing something more complex.",
"version" : "144241e (130818)",
"status" : "stable",
"last_checked" : "2019-11-30",
"created" : "2017"
},
{
"author_name" : "Weissbier",
"author_url" : "[email protected]",
"download_url" : "http://git.tanami.org/ModernStuff/phutaba",
"language" : "Perl",
"name" : "Phutaba",
"notes" : "Originally written for ernstchan.net, Phutaba is a heavily-modified extension of Wakaba which adds post statistics, EXIF data extraction, catalog mode, and other small changes. As of 2021, it seems that ernstchan.com is no longer functional and the original github repository has been taken down.",
"version" : "ae541ef (230618)",
"status" : "discontinued",
"last_checked" : "2021-01-15",
"created" : "2010"
},
{
"author_name" : "Joshua Moon",
"author_url" : "https://github.com/jaw-sh",
"download_url" : "https://github.com/infinity-next/infinity-next",
"language" : "PHP",
"name" : "Infinity Next",
"notes" : "Infinity Next is a complete imageboard system implemented in Laravel. It was originally intended to be the replacement script for 8chan.net. It has a very high quality codebase and uses modern PHP practices. It would be a sensible choice for somebody looking to create a multi-imageboard website.",
"version" : "08/11/19 (git)",
"status" : "maintained",
"last_checked" : "2019-11-30",
"created" : "2015"
},
{
"author_name" : "ahushh",
"author_url" : "https://github.com/ahushh/",
"download_url" : "https://github.com/ahushh/Monaba",
"language" : "Haskell",
"name" : "Monaba",
"notes" : "Rich, featureful script implemented in the Yesod framework for Haskell. Mainly designed for haibane.ru, it has special functions for Tor-only operation and a tripcode replacement scheme called \"prooflables\". The system is straddling the line between pseudononymous systems and traditional forums as it supports private messaging and other user-identifying functions.",
"version" : "2.6.2",
"status" : "maintained",
"last_checked" : "2021-01-15",
"created" : "2013"
},
{
"author_name" : "mission712",
"author_url" : "https://gitgud.io/m712",
"download_url" : "https://gitgud.io/blazechan/blazechan",
"language" : "PHP",
"name" : "BlazeChan",
"notes" : "pending futher information",
"version" : "0.12.0",
"status" : "unknown",
"last_checked" : "2021-01-15",
"created" : "2016"
},
{
"author_name" : "k-anon (various)",
"author_url" : "http://git.kiace.com.ar/",
"download_url" : "https://github.com/dequis/wakarimasen/releases",
"language" : "Python",
"name" : "wakarimasen",
"notes" : "Wakarimasen is written for desuchan.net. Originally wakaba-compatible, it features an extended admin panel and supports multiple boards.",
"version" : "1.1",
"status" : "stable",
"last_checked" : "2020-11-24",
"created" : "2010"
},
{
"author_name" : "marlencrabapple",
"author_url" : "https://github.com/marlencrabapple/",
"download_url" : "https://github.com/marlencrabapple/Glaukaba",
"language" : "Perl",
"name" : "Glaukaba",
"notes" : "wakaba fork with a lot of new changes",
"version" : "0.125",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Desuneko",
"author_url" : "#none",
"download_url" : "https://github.com/MitsubaBBS/Mitsuba",
"language" : "PHP",
"name" : "Mitsuba",
"notes" : "made from scratch, has a module system",
"version" : "rev 762",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "thatdog",
"author_url" : "http://www.1chan.net/futallaby/",
"download_url" : "http://www.1chan.net/futallaby/",
"language" : "PHP",
"name" : "Futallaby",
"notes" : "Futallaby is historically important, serving as the original codebase for 4chan.org. It is derived heavily from Futaba. Futallaby inspired many other scripts such as Kusaba, TinyIB, Tinyboard, TinyBB, etc.",
"version" : "040103",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "2003"
},
{
"author_name" : "Futaba Channel",
"author_url" : "https://www.2chan.net/",
"download_url" : "https://www.2chan.net/script/",
"language" : "PHP",
"name" : "Futaba",
"notes" : "Futaba is the historical script written for 2chan.net which served as the spiritual basis for the vast majority of all other imageboard scripts. The significance of this script for the greater *chan community is understated.",
"version" : "051031",
"status" : "stable",
"last_checked" : "2019-11-26",
"created" : "2001"
},
{
"author_name" : "Floens",
"author_url" : "https://github.com/Floens",
"download_url" : "https://github.com/Floens/uchan",
"language" : "Python",
"name" : "μchan",
"notes" : "Focus on separation of concerns.",
"version" : "n/a",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "emgram769",
"author_url" : "https://github.com/emgram769",
"download_url" : "https://github.com/emgram769/live4chan",
"language" : "node.js",
"name" : "livechan",
"notes" : "self-styled \"IRC-like imageboard\"",
"version" : "n/a",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Lal'C",
"author_url" : "http://doushio.com/",
"download_url" : "https://github.com/lalcmellkmal/doushio",
"language" : "node.js",
"name" : "Doushio",
"notes" : "uses Redis as a datastore",
"version" : "rev 1.465",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "woxxy",
"author_url" : "https://github.com/woxxy",
"download_url" : "https://github.com/FoolCode/FoolFuuka",
"language" : "PHP",
"name" : "FoolFuuka",
"notes" : "made for archiving *boards, very fast",
"version" : "0.730",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Tanami",
"author_url" : "http:/9ch.in",
"download_url" : "#none",
"language" : "Perl",
"name" : "Macro",
"notes" : "A script that I wrote in a weekend, largely inspired by Kareha. I ran it on 9ch.in for a while but now it is unmaintained.",
"version" : "0.5.1",
"status" : "unmaintained",
"last_checked" : "2019-11-23",
"created" : "2008"
},
{
"author_name" : "Albright",
"author_url" : "mailto:[email protected]",
"download_url" : "http://code.google.com/p/drydock/",
"language" : "PHP",
"name" : "Drydock",
"notes" : "Drydock was a multi-board imageboard script which featurs a complete administration interface, similar to Kusaba. It was one of the first scripts to include a blotter function and image capcodes. The author appears to have stopped development since mid-2013. It was previously being used as the backend for kchan (url unknown).",
"version" : "r291",
"status" : "discontinued",
"last_checked" : "2019-11-26",
"created" : "2008"
},
{
"author_name" : "sabitsuki",
"author_url" : "http://4x13.net/",
"download_url" : "https://github.com/153/iyagi-bbs/",
"language" : "Python",
"name" : "iyagi",
"notes" : "new clone of tablecat's backend",
"version" : "4b4e080",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Vladimir37",
"author_url" : "http://github.com/Vladimir37",
"download_url" : "https://github.com/Vladimir37/Hanako/",
"language" : "node.js",
"name" : "Hanako",
"notes" : "strong focus on scalability",
"version" : "1.0.0",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Gareth Smith",
"author_url" : "http://spacetaken.net/",
"download_url" : "http://spacetaken.net/img2/",
"language" : "PHP",
"name" : "img2",
"notes" : "untested",
"version" : "061610",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Matthew Trevino",
"author_url" : "https://github.com/matthew-trevino",
"download_url" : "https://github.com/matthew-trevino/regularboard",
"language" : "PHP",
"name" : "Regular Board",
"notes" : "channel-style filtering, forum-like layout",
"version" : "9528cce",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Shii",
"author_url" : "http://www.shii.org",
"download_url" : "http://wakaba.c3.cx/shii/shiichan",
"language" : "PHP",
"name" : "Shiichan",
"notes" : "use Kareha instead",
"version" : "3960",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "thewiz",
"author_url" : "#none",
"download_url" : "https://bitbucket.org/thewiz/gibson-bbs/overview",
"language" : "node.js",
"name" : "gibson",
"notes" : "emulates pre-internet BBSen with a JS console",
"version" : "1.30",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "hotaru2k3",
"author_url" : "http://hotaru.thinkindifferent.net/",
"download_url" : "https://github.com/hotaru2k3/",
"language" : "Perl",
"name" : "TinyBB",
"notes" : "there is TinyBB & TinyBBv3",
"version" : "???",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "``maiko''",
"author_url" : "http://tablecat.co.cc",
"download_url" : "http://tablecat.co.cc/bbs/",
"language" : "Perl",
"name" : "Tablecat",
"notes" : "VIP",
"version" : "240411",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "???",
"author_url" : "http://siokara.que.jp/",
"download_url" : "http://siokara.que.jp/",
"language" : "PHP",
"name" : "Siokara",
"notes" : "not updated since 2004",
"version" : "1.04a",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "tslocum",
"author_url" : "https://github.com/tslocum/",
"download_url" : "https://github.com/tslocum/PyIB-Standalone",
"language" : "Python",
"name" : "PyIB",
"notes" : "PyIB was originally written for PAQ.CC, an invite-only imageboard which used a system of referral tokens. Unfortunately the available source-code does not include this feature. The author appeared to stop development shortly after PAQ.CC went down.",
"version" : "r66",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "???",
"author_url" : "http://yui-cynthia-bne-jp.cocolog-nifty.com/blog/",
"download_url" : "http://yui-cynthia-bne-jp.cocolog-nifty.com/blog/",
"language" : "PHP",
"name" : "Cynthia",
"notes" : "japanese",
"version" : "02e1",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "sparky4+4",
"author_url" : "http://4ch.irc.su",
"download_url" : "http://4ch.irc.su/",
"language" : "PHP",
"name" : "Yotsubanome",
"notes" : "written by a retard",
"version" : "who cares",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "tj9991",
"author_url" : "#none",
"download_url" : "http://www.ohloh.net/p/tinyib",
"language" : "PHP",
"name" : "TinyIB",
"notes" : "never seen it being used",
"version" : "???",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "kent-web",
"author_url" : "http://www.kent-web.com",
"download_url" : "http://www.kent-web.com/bbs/joyful.html",
"language" : "PHP",
"name" : "Joyful Note",
"notes" : "japanese, untested",
"version" : "2.73",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "ochiba",
"author_url" : "http://ochiba.x-maru.org/",
"download_url" : "http://ochiba.x-maru.org/",
"language" : "PHP",
"name" : "Ochiba",
"notes" : "Ochiba was created out of the author's desire for a hybrid bbs script which allowed for imageboard-style commenting on top of a photo-blogging interface. It also supports RSS feeds, multiple-file uploads, and a keyword system for filtering.",
"version" : "1.2.1",
"status" : "stable",
"last_checked" : "2019-11-26",
"created" : "2004"
},
{
"author_name" : "bottiger",
"author_url" : "mailto:bottiger@?gee-mail?.com",
"download_url" : "http://code.google.com/p/4chandk/downloads/list",
"language" : "PHP",
"name" : "4chandk",
"notes" : "appears to be dead.",
"version" : "240207",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "various",
"author_url" : "#none",
"download_url" : "http://pixmicat.openfoundry.org/",
"language" : "PHP",
"name" : "Pixmicat",
"notes" : "taiwanese script based on japanese source",
"version" : "6",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "???",
"author_url" : "http://www12.atwiki.jp/0ch/",
"download_url" : "files/0ch_test070124.zip",
"language" : "",
"name" : "0ch",
"notes" : "untested",
"version" : "4.xx",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "???",
"author_url" : "http://php.s3.to/",
"download_url" : "https://github.com/k0me0/gazoubbsfix",
"language" : "PHP",
"name" : "GazouBBS",
"notes" : "Ancient, but fundamental to BBS script history. Some people (i.e. ToR) have written patched and translated editions (see: https://github.com/fukionline/gazoubbsfix-en).",
"version" : "v3.6.",
"status" : "stable",
"last_checked" : "2024-06-29",
"created" : "2001"
},
{
"author_name" : "???",
"author_url" : "#none",
"download_url" : "#none",
"language" : "PHP?",
"name" : "Gazo-CH",
"notes" : "this might be an alias for GazouBBS",
"version" : "???",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "team4chan",
"author_url" : "http://4chan.org/team",
"download_url" : "files/yotsuba.txt",
"language" : "PHP",
"name" : "Yotsuba",
"notes" : "Yotsuba was written by team4chan for 4chan.org. It originally drew heavily from Futallaby's codebase but is now most likely using more ``scalable'' PHP practices. The download link is for an older leaked copy of the board rendering component.",
"version" : "closed-source",
"status" : "maintained",
"last_checked" : "2019-08-11",
"created" : "2003"
},
{
"author_name" : "Cudder",
"author_url" : "#none",
"download_url" : "#none",
"language" : "PHP",
"name" : "REchan",
"notes" : "REchan was written by a famous /prog/ shitposter for rechan.eu.org, it has a similar appearance to Kusaba X but evidence from archive.org suggests that it was written from scratch. Unfortunately there is no publicly-available source code since the main website went down.",
"version" : "080726 (r4)",
"status" : "unmaintained",
"last_checked" : "2019-08-11",
"created" : "2008"
},
{
"author_name" : "SYNchan",
"author_url" : "#none",
"download_url" : "#none",
"language" : "PHP",
"name" : "Mikich",
"notes" : "SYNchan's script",
"version" : "???",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "savetheinternet",
"author_url" : "https://github.com/savetheinternet",
"download_url" : "https://github.com/savetheinternet/Tinyboard",
"language" : "PHP",
"name" : "Tinyboard",
"notes" : "Originally written for 4chon.net, Tinyboard was the first imageboard to utilise DNSBL filtering and make use of modern PHP practices, such as using APC for caching. The codebase has been used as the basis for other projects such as vichan.",
"version" : "0.9.2",
"status" : "stable",
"last_checked" : "2019-08-11",
"created" : "2010"
},
{
"author_name" : "Aubrey \"Kirtaner\" Cottle",
"author_url" : "https://twitter.com/Kirtaner",
"download_url" : "#none",
"language" : "Perl & PHP",
"name" : "Taimaba",
"notes" : "420chan's script. A very heavily modified and enhanced fork of Wakaba, adding many modern features and, amusingly, dynamic PHP output, making it an odd hybrid platform with a distinct backend and frontend.",
"version" : "0.2.1",
"status" : "stable",
"last_checked" : "2020-06-12",
"created" : "2007-04-01"
},
{
"author_name" : "Storlek",
"author_url" : "http://j.rigelseven.com/",
"download_url" : "https://github.com/Storlek/matsuba",
"language" : "PHP?",
"name" : "Matsuba",
"notes" : "sovietrussia's script",
"version" : "(git)",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Wajett Systems",
"author_url" : "http://www.wajett.net",
"download_url" : "http://www.wajett.net/labs/cb_02.php",
"language" : "???",
"name" : "C-BOARD",
"notes" : "The download URL provided is for a modded version of C-BOARD. I cannot locate the original source.",
"version" : "3.8",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "unknown",
"author_url" : "#none",
"download_url" : "files/kb19ful.lzh",
"language" : "Perl",
"name" : "K-Board",
"notes" : "K-board has a couple of experimental features such as a \"post map\" which shows how many posts each user has made.",
"version" : "1.9",
"status" : "unmaintained",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Tacky",
"author_url" : "#none",
"download_url" : "http://tackysroom.com/cgi/cgi_tackynote.htm",
"language" : "Perl",
"name" : "Tackynote",
"notes" : "untested",
"version" : "0.996",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Tacky",
"author_url" : "#none",
"download_url" : "http://tackysroom.com/cgi/cgi_mkakikomitai2.htm",
"language" : "Perl",
"name" : "Mkakikomitai",
"notes" : "japanese, emoticons and shit",
"version" : "0.73",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Tacky",
"author_url" : "http://tackysroom.com",
"download_url" : "http://tackysroom.com/cgi/cgi_tackyvote.htm",
"language" : "Perl",
"name" : "Tackyvote",
"notes" : "",
"version" : "0.95",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Tacky",
"author_url" : "http://tackysroom.com/",
"download_url" : "http://tackysroom.com/cgi/cgi_mezase2.htm",
"language" : "Perl",
"name" : "Mezase2",
"notes" : "",
"version" : "0.58",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "iignotus",
"author_url" : "http://sourceforge.net/projects/ignium/",
"download_url" : "http://sourceforge.net/projects/ignium/",
"language" : "PHP",
"name" : "Ignium",
"notes" : "untested, website is horrid",
"version" : "170709",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "Federico Ramirez",
"author_url" : "http://code.google.com/p/hachan/",
"download_url" : "http://code.google.com/p/hachan/",
"language" : "PHP",
"name" : "Ha Chan",
"notes" : "not actively developed?",
"version" : "1.07",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "tehHedger",
"author_url" : "http://orphereus.anoma.ch",
"download_url" : "http://orphereus.anoma.ch/",
"language" : "Python",
"name" : "Orphereus",
"notes" : "python, \"modular\"",
"version" : "???",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "k-anon",
"author_url" : "http://git.kiace.com.ar/",
"download_url" : "https://suigintou.weedy.ca/trac/desuchan/browser/trunk",
"language" : "Perl",
"name" : "desuchan",
"notes" : "forked from wakaba, lots of changes",
"version" : "rev 168",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "unknown",
"author_url" : "http://code.google.com/u/@VhRSQF1YAhZEXwZ1/",
"download_url" : "http://code.google.com/p/ochan/",
"language" : "Java",
"name" : "ochan",
"notes" : "ENTERPRISE QUALITY",
"version" : "r326",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "airflow83",
"author_url" : "#none",
"download_url" : "http://code.google.com/p/kotoba-ib/",
"language" : "PHP",
"name" : "kotoba-ib",
"notes" : "russian",
"version" : "r437",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "to-ru",
"author_url" : "#none",
"download_url" : "files/imgboard.cgi.txt",
"language" : "Perl",
"name" : "imgboard.cgi",
"notes" : "quite popular in japan",
"version" : "1.22",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "CGI RESCUE",
"author_url" : "http://www.rescue.ne.jp/",
"download_url" : "http://www.rescue.ne.jp/cgi/minibbs1/",
"language" : "Perl",
"name" : "minibbs",
"notes" : "japanese",
"version" : "10.32",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "unknown",
"author_url" : "http://www.sweetnote.com/",
"download_url" : "http://www.sweetnote.com/",
"language" : "unknown",
"name" : "Sweetnote",
"notes" : "proprietary?",
"version" : "unknown",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "unknown",
"author_url" : "#none",
"download_url" : "http://sourceforge.jp/projects/sfnet_imageboard/",
"language" : "",
"name" : "imageboard",
"notes" : "lol",
"version" : "1.21",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "ivarch",
"author_url" : "#none",
"download_url" : "http://freshmeat.net/projects/mconv",
"language" : "Perl",
"name" : "mconv",
"notes" : "last updated in 2004, archaic",
"version" : "1.2.7",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "spoot",
"author_url" : "mailto:[email protected] ",
"download_url" : "http://saguaroimgboard.co.cc/download/",
"language" : "PHP",
"name" : "Saguaro",
"notes" : "based on futallaby",
"version" : "0.97.5",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "luza",
"author_url" : "#none",
"download_url" : "http://code.google.com/p/kakaha/",
"language" : "PHP",
"name" : "Kakaha",
"notes" : "uses SQLite backend",
"version" : "r21",
"status" : "unknown",
"last_checked" : "2019-08-11",
"created" : "unknown"
},
{
"author_name" : "hamilyon",
"author_url" : "#none",