summaryrefslogtreecommitdiff
path: root/about/showcase.md
blob: 295d567788238833ca26269cf6fd6f3c3f74d023 (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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
# Project Showcase

Generated on: 2026-03-27

This page showcases my side projects, providing an overview of what each project does, its technical implementation, and key metrics. Each project summary includes information about the programming languages used, development activity, releases, and licensing. The projects are ranked by score, which combines recent activity, project size, tag history, and whether the project has shipped a release.

## Table of Contents

* [⇢ Project Showcase](#project-showcase)
* [⇢ ⇢ Overall Statistics](#overall-statistics)
* [⇢ ⇢ Projects](#projects)
* [⇢ ⇢ ⇢ 1. hexai 1←1↖3↙2](#1-hexai-1132)
* [⇢ ⇢ ⇢ 2. gt 2](#2-gt-2)
* [⇢ ⇢ ⇢ 3. hypr 3](#3-hypr-3)
* [⇢ ⇢ ⇢ 4. dotfiles 4↙3↖4↙3](#4-dotfiles-4343)
* [⇢ ⇢ ⇢ 5. snonux 5](#5-snonux-5)
* [⇢ ⇢ ⇢ 6. dtail 6↙2↖21↙20](#6-dtail-622120)
* [⇢ ⇢ ⇢ 7. conf 7↖9↙8↙5](#7-conf-7985)
* [⇢ ⇢ ⇢ 8. ior 8↙4↙1←1](#8-ior-8411)
* [⇢ ⇢ ⇢ 9. timesamurai 9↙5↙2](#9-timesamurai-952)
* [⇢ ⇢ ⇢ 10. loadbars 10↙6↙5↖47](#10-loadbars-106547)
* [⇢ ⇢ ⇢ 11. foostore 11↙7↙6↖7](#11-foostore-11767)
* [⇢ ⇢ ⇢ 12. ds-sim 12↖25←25↙21](#12-ds-sim-12252521)
* [⇢ ⇢ ⇢ 13. epimetheus 13↙8↙7↙4](#13-epimetheus-13874)
* [⇢ ⇢ ⇢ 14. gitsyncer 14↙11↙10↖15](#14-gitsyncer-14111015)
* [⇢ ⇢ ⇢ 15. scifi 15↙10↙9↙8](#15-scifi-151098)
* [⇢ ⇢ ⇢ 16. rcm 16↙12←12↙10](#16-rcm-16121210)
* [⇢ ⇢ ⇢ 17. yoga 17↙13←13↙12](#17-yoga-17131312)
* [⇢ ⇢ ⇢ 18. totalrecall 18↙15←15↙14](#18-totalrecall-18151514)
* [⇢ ⇢ ⇢ 19. gogios 19↙16↙14↙11](#19-gogios-19161411)
* [⇢ ⇢ ⇢ 20. log4jbench 20↙14↙11↙9](#20-log4jbench-2014119)
* [⇢ ⇢ ⇢ 21. perc 21↙17↙16↙13](#21-perc-21171613)
* [⇢ ⇢ ⇢ 22. tasksamurai 22↙18↙17↙16](#22-tasksamurai-22181716)
* [⇢ ⇢ ⇢ 23. gos 23↙19↙18←18](#23-gos-23191818)
* [⇢ ⇢ ⇢ 24. foostats 24↙20↙19↙17](#24-foostats-24201917)
* [⇢ ⇢ ⇢ 25. timr 25↙21↙20↙19](#25-timr-25212019)
* [⇢ ⇢ ⇢ 26. gemtexter 26↙22↖23↙22](#26-gemtexter-26222322)
* [⇢ ⇢ ⇢ 27. wireguardmeshgenerator 27↙23↙22↖23](#27-wireguardmeshgenerator-27232223)
* [⇢ ⇢ ⇢ 28. goprecords 28↙24←24←24](#28-goprecords-28242424)
* [⇢ ⇢ ⇢ 29. ioriot 29↖34↖35←35](#29-ioriot-29343535)
* [⇢ ⇢ ⇢ 30. quicklogger 30↙26←26↙25](#30-quicklogger-30262625)
* [⇢ ⇢ ⇢ 31. sillybench 31↙27←27←27](#31-sillybench-31272727)
* [⇢ ⇢ ⇢ 32. terraform 32↙28←28↙26](#32-terraform-32282826)
* [⇢ ⇢ ⇢ 33. geheim 33↙29↖30←30](#33-geheim-33293030)
* [⇢ ⇢ ⇢ 34. gorum 34↙30↖31↙28](#34-gorum-34303128)
* [⇢ ⇢ ⇢ 35. docker-radicale-server 35↙31↖32↙31](#35-docker-radicale-server-35313231)
* [⇢ ⇢ ⇢ 36. photoalbum 36↙32↖33↖34](#36-photoalbum-36323334)
* [⇢ ⇢ ⇢ 37. randomjournalpage 37↙33↖34↙33](#37-randomjournalpage-37333433)
* [⇢ ⇢ ⇢ 38. algorithms 38↙35↖36↙32](#38-algorithms-38353632)
* [⇢ ⇢ ⇢ 39. ipv6test 39↙36↖37↙36](#39-ipv6test-39363736)
* [⇢ ⇢ ⇢ 40. staticfarm-apache-handlers 40↙37↖38↖40](#40-staticfarm-apache-handlers-40373840)
* [⇢ ⇢ ⇢ 41. sway-autorotate 41↙38↖39↙38](#41-sway-autorotate-41383938)
* [⇢ ⇢ ⇢ 42. guprecords 42↙39↙29←29](#42-guprecords-42392929)
* [⇢ ⇢ ⇢ 43. mon 43↙40←40↙39](#43-mon-43404039)
* [⇢ ⇢ ⇢ 44. fapi 44↙41←41↖44](#44-fapi-44414144)
* [⇢ ⇢ ⇢ 45. pingdomfetch 45↙42←42↙41](#45-pingdomfetch-45424241)
* [⇢ ⇢ ⇢ 46. fype 46↙43←43↙37](#46-fype-46434337)
* [⇢ ⇢ ⇢ 47. pwgrep 47↙44←44↖50](#47-pwgrep-47444450)
* [⇢ ⇢ ⇢ 48. xerl 48↙45←45↙42](#48-xerl-48454542)
* [⇢ ⇢ ⇢ 49. awksite 49↙46←46↖61](#49-awksite-49464661)
* [⇢ ⇢ ⇢ 50. gotop 50↙47←47↖48](#50-gotop-50474748)
* [⇢ ⇢ ⇢ 51. japi 51↙48←48↖53](#51-japi-51484853)
* [⇢ ⇢ ⇢ 52. rubyfy 52↙49↖50↙49](#52-rubyfy-52495049)
* [⇢ ⇢ ⇢ 53. perl-c-fibonacci 53↙50↖51↙45](#53-perl-c-fibonacci-53505145)
* [⇢ ⇢ ⇢ 54. netdiff 54↙51↖52↖56](#54-netdiff-54515256)
* [⇢ ⇢ ⇢ 55. perldaemon 55↙52↙49↖51](#55-perldaemon-55524951)
* [⇢ ⇢ ⇢ 56. jsmstrade 56↙53←53↙52](#56-jsmstrade-56535352)
* [⇢ ⇢ ⇢ 57. muttdelay 57↙54←54↖55](#57-muttdelay-57545455)
* [⇢ ⇢ ⇢ 58. netcalendar 58↙55←55↙46](#58-netcalendar-58555546)
* [⇢ ⇢ ⇢ 59. vs-sim 59↙56↖63←63](#59-vs-sim-59566363)
* [⇢ ⇢ ⇢ 60. cpuinfo 60↙57↙56↖59](#60-cpuinfo-60575659)
* [⇢ ⇢ ⇢ 61. template 61↙58↙57↖60](#61-template-61585760)
* [⇢ ⇢ ⇢ 62. dyndns 62↙59↙58↖62](#62-dyndns-62595862)
* [⇢ ⇢ ⇢ 63. debroid 63↙60↙59↙57](#63-debroid-63605957)
* [⇢ ⇢ ⇢ 64. perl-poetry 64↙61↙60↙54](#64-perl-poetry-64616054)
* [⇢ ⇢ ⇢ 65. hsbot 65↙62↙61↙58](#65-hsbot-65626158)
* [⇢ ⇢ ⇢ 66. ychat 66↙63↙62↙43](#66-ychat-66636243)
* [⇢ ⇢ ⇢ 67. snonux.foo 67](#67-snonuxfoo-67)
* [⇢ ⇢ ⇢ 68. foo.zone 68↙64←64↙6](#68-foozone-6864646)

## Overall Statistics

* 📦 Total Projects: 68
* 📊 Total Commits: 13,714
* 📈 Total Lines of Code: 386,291
* 📄 Total Lines of Documentation: 269,903
* 💻 Languages: Go (57.9%), Java (15.5%), C (5.3%), YAML (4.1%), Perl (3.7%), Shell (2.7%), Ruby (1.9%), TypeScript (1.4%), HTML (1.3%), C/C++ (1.1%), CSS (1.0%), Config (0.8%), Python (0.7%), HCL (0.7%), JSON (0.5%), Make (0.4%), TOML (0.3%), XML (0.2%), Haskell (0.2%), JavaScript (0.1%)
* 📚 Documentation: Text (82.8%), Markdown (15.9%), LaTeX (1.3%)
* 🚀 Release Status: 44 released, 24 experimental (64.7% with releases, 35.3% experimental)

## Projects

### 1. hexai 1←1↖3↙2

* 💻 Languages: Go (100.0%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 503
* 📈 Lines of Code: 43837
* 📄 Lines of Documentation: 4368
* 🏷️ Tags: 76
* 📅 Development Period: 2025-08-01 to 2026-03-27
* 🏆 Score: 436.8 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: v0.27.1 (2026-03-27)


[![hexai screenshot](showcase/hexai/image-1.png "hexai screenshot")](showcase/hexai/image-1.png)  

Hexai, the AI addition for your Helix Editor (https://helix-editor.com) .. Other editors should work but weren't tested.

[View on Codeberg](https://codeberg.org/snonux/hexai)  
[View on GitHub](https://github.com/snonux/hexai)  

---

### 2. gt 2

* 💻 Languages: Go (99.4%), YAML (0.6%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 168
* 📈 Lines of Code: 10028
* 📄 Lines of Documentation: 301
* 🏷️ Tags: 6
* 📅 Development Period: 2025-11-25 to 2026-03-26
* 🏆 Score: 219.3 (combines recent activity, code size, tags, and release status)
* ⚖️ License: MIT
* 🏷️ Latest Release: v0.4.1 (2026-03-26)


A simple AI-engineered command-line percentage calculator written in Go. No frontier AI models from Claude, OpenAI, Google, ec, were used for this project. The ones used were:

[View on Codeberg](https://codeberg.org/snonux/gt)  
[View on GitHub](https://github.com/snonux/gt)  

---

### 3. hypr 3

* 💻 Languages: TypeScript (46.4%), Ruby (33.4%), TOML (6.8%), Python (6.6%), Shell (3.5%), JSON (3.3%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 69
* 📈 Lines of Code: 12072
* 📄 Lines of Documentation: 3062
* 🏷️ Tags: 0
* 📅 Development Period: 2026-03-21 to 2026-03-27
* 🏆 Score: 115.6 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


[![hypr screenshot](showcase/hypr/image-1.svg "hypr screenshot")](showcase/hypr/image-1.svg)  

Automates Hyperstack GPU VM lifecycle: create, bootstrap, WireGuard tunnel, and vLLM inference.
Runs two A100 VMs concurrently — each serving a different model — with [Pi](https://pi.dev) coding agents connected to each.

[View on Codeberg](https://codeberg.org/snonux/hypr)  
[View on GitHub](https://github.com/snonux/hypr)  

---

### 4. dotfiles 4↙3↖4↙3

* 💻 Languages: Shell (65.1%), CSS (10.5%), Config (9.9%), TOML (9.7%), JSON (3.6%), Ruby (1.0%), INI (0.2%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 897
* 📈 Lines of Code: 3107
* 📄 Lines of Documentation: 7850
* 🏷️ Tags: 0
* 📅 Development Period: 2023-07-30 to 2026-03-27
* 🏆 Score: 58.3 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


These are all my dotfiles. I can install them locally on my laptop and/or workstation as well as remotely on any server.

[View on Codeberg](https://codeberg.org/snonux/dotfiles)  
[View on GitHub](https://github.com/snonux/dotfiles)  

---

### 5. snonux 5

* 💻 Languages: CSS (65.9%), Go (27.0%), HTML (5.8%), TOML (0.6%), XML (0.6%)
* 📚 Documentation: Markdown (89.3%), Text (10.7%)
* 📊 Commits: 16
* 📈 Lines of Code: 3077
* 📄 Lines of Documentation: 205
* 🏷️ Tags: 0
* 📅 Development Period: 2026-03-21 to 2026-03-22
* 🏆 Score: 51.7 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


**WIP** - A microblog generator project

[View on Codeberg](https://codeberg.org/snonux/snonux)  
[View on GitHub](https://github.com/snonux/snonux)  

---

### 6. dtail 6↙2↖21↙20

* 💻 Languages: Go (93.4%), Shell (3.0%), JSON (1.6%), C (1.0%), Make (0.7%), C/C++ (0.2%)
* 📚 Documentation: Text (98.1%), Markdown (1.9%)
* 📊 Commits: 640
* 📈 Lines of Code: 37822
* 📄 Lines of Documentation: 220523
* 🏷️ Tags: 27
* 📅 Development Period: 2020-01-09 to 2026-03-20
* 🏆 Score: 43.7 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Apache-2.0
* 🏷️ Latest Release: v4.3.3 (2024-08-23)


[![dtail screenshot](showcase/dtail/image-1.png "dtail screenshot")](showcase/dtail/image-1.png)  

DTail (a distributed tail program) is a DevOps tool for engineers programmed in Google Go for following (tailing), catting and grepping (including gzip and zstd decompression support) log files on many machines concurrently. An advanced feature of DTail is to execute distributed MapReduce aggregations across many devices.

[View on Codeberg](https://codeberg.org/snonux/dtail)  
[View on GitHub](https://github.com/snonux/dtail)  

---

### 7. conf 7↖9↙8↙5

* 💻 Languages: YAML (82.4%), Perl (10.1%), Shell (3.9%), Python (2.3%), Docker (0.7%), Ruby (0.2%), Config (0.2%), HTML (0.1%)
* 📚 Documentation: Markdown (97.0%), Text (3.0%)
* 📊 Commits: 829
* 📈 Lines of Code: 18770
* 📄 Lines of Documentation: 6305
* 🏷️ Tags: 0
* 📅 Development Period: 2021-12-28 to 2026-03-22
* 🏆 Score: 31.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


This is my personal config repository. Including...

[View on Codeberg](https://codeberg.org/snonux/conf)  
[View on GitHub](https://github.com/snonux/conf)  

---

### 8. ior 8↙4↙1←1

* 💻 Languages: Go (89.5%), C (10.0%), JSON (0.3%), C/C++ (0.2%)
* 📚 Documentation: Markdown (82.7%), Text (17.3%)
* 📊 Commits: 759
* 📈 Lines of Code: 58935
* 📄 Lines of Documentation: 2789
* 🏷️ Tags: 0
* 📅 Development Period: 2024-01-18 to 2026-03-19
* 🏆 Score: 27.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


[![ior screenshot](showcase/ior/image-1.png "ior screenshot")](showcase/ior/image-1.png)  

> **🚧 PRE-ALPHA SOFTWARE:** This project is in a pre-alpha state and is intended for my own personal use only. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/ior)  
[View on GitHub](https://github.com/snonux/ior)  

---

### 9. timesamurai 9↙5↙2

* 💻 Languages: Go (99.3%), Shell (0.6%), YAML (0.1%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 96
* 📈 Lines of Code: 10363
* 📄 Lines of Documentation: 112
* 🏷️ Tags: 5
* 📅 Development Period: 2025-06-25 to 2026-03-26
* 🏆 Score: 26.4 (combines recent activity, code size, tags, and release status)
* ⚖️ License: MIT
* 🏷️ Latest Release: v0.8.0 (2026-03-26)


> **🚧 PRE-ALPHA SOFTWARE:** This project is in a pre-alpha state and is intended for my own personal use only. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/timesamurai)  
[View on GitHub](https://github.com/snonux/timesamurai)  

---

### 10. loadbars 10↙6↙5↖47

* 💻 Languages: Go (92.8%), Shell (7.2%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 577
* 📈 Lines of Code: 6595
* 📄 Lines of Documentation: 328
* 🏷️ Tags: 47
* 📅 Development Period: 2010-11-05 to 2026-03-02
* 🏆 Score: 16.0 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v0.11.1 (2026-02-17)


[![loadbars screenshot](showcase/loadbars/image-1.gif "loadbars screenshot")](showcase/loadbars/image-1.gif)  

Loadbars is a tool that can be used to observe CPU loads of several remote servers at once in real time. It connects with SSH (using SSH public/private key auth) to several servers at once and vizualizes all server CPUs and memory statistics right next each other (either summarized or each core separately). Loadbars is not a tool for collecting CPU loads and drawing graphs for later analysis. However, since such tools require a significant amount of time before producing results, Loadbars lets you observe the current state immediately. Loadbars does not remember or record any load information. It just shows the current CPU usages like top or vmstat does.

[View on Codeberg](https://codeberg.org/snonux/loadbars)  
[View on GitHub](https://github.com/snonux/loadbars)  

---

### 11. foostore 11↙7↙6↖7

* 💻 Languages: Go (98.4%), Shell (1.6%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 110
* 📈 Lines of Code: 7020
* 📄 Lines of Documentation: 250
* 🏷️ Tags: 9
* 📅 Development Period: 2018-05-26 to 2026-03-07
* 🏆 Score: 12.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: v0.5.3 (2026-03-02)


> **🚧 PRE-ALPHA SOFTWARE:** This project is in active early development, unstable, and intended for personal use. Expect bugs, breaking changes, missing safeguards, and possible data loss. Backward compatibility and upgrade paths are not guaranteed. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/foostore)  
[View on GitHub](https://github.com/snonux/foostore)  

---

### 12. ds-sim 12↖25←25↙21

* 💻 Languages: Java (98.6%), Shell (0.9%), CSS (0.4%)
* 📚 Documentation: Markdown (98.7%), Text (1.3%)
* 📊 Commits: 473
* 📈 Lines of Code: 28576
* 📄 Lines of Documentation: 3101
* 🏷️ Tags: 2
* 📅 Development Period: 2008-05-15 to 2026-03-27
* 🏆 Score: 12.0 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: 1.1.0 (2026-03-27)


[![ds-sim screenshot](showcase/ds-sim/image-1.png "ds-sim screenshot")](showcase/ds-sim/image-1.png)  

DS-Sim is a open-source simulator for distributed systems, written in Java. It provides a powerful environment for simulating and learning about distributed systems concepts.

[View on Codeberg](https://codeberg.org/snonux/ds-sim)  
[View on GitHub](https://github.com/snonux/ds-sim)  

---

### 13. epimetheus 13↙8↙7↙4

* 💻 Languages: Go (85.2%), Shell (14.8%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 4
* 📈 Lines of Code: 5199
* 📄 Lines of Documentation: 1736
* 🏷️ Tags: 0
* 📅 Development Period: 2026-02-07 to 2026-03-07
* 🏆 Score: 9.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


[![epimetheus screenshot](showcase/epimetheus/image-1.png "epimetheus screenshot")](showcase/epimetheus/image-1.png)  

> **🚧 PRE-ALPHA SOFTWARE:** This project is in a pre-alpha state and is intended for my own personal use only. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/epimetheus)  
[View on GitHub](https://github.com/snonux/epimetheus)  

---

### 14. gitsyncer 14↙11↙10↖15

* 💻 Languages: Go (93.5%), Shell (6.2%), JSON (0.3%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 137
* 📈 Lines of Code: 11973
* 📄 Lines of Documentation: 2456
* 🏷️ Tags: 38
* 📅 Development Period: 2025-06-23 to 2026-03-19
* 🏆 Score: 6.3 (combines recent activity, code size, tags, and release status)
* ⚖️ License: BSD-2-Clause
* 🏷️ Latest Release: v0.15.8 (2026-03-19)


GitSyncer is a tool for synchronizing git repositories between multiple organizations (e.g., GitHub and Codeberg). It automatically keeps all branches in sync across different git hosting platforms.

[View on Codeberg](https://codeberg.org/snonux/gitsyncer)  
[View on GitHub](https://github.com/snonux/gitsyncer)  

---

### 15. scifi 15↙10↙9↙8

* 💻 Languages: JSON (36.6%), JavaScript (30.2%), CSS (29.6%), HTML (3.7%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 27
* 📈 Lines of Code: 1724
* 📄 Lines of Documentation: 874
* 🏷️ Tags: 0
* 📅 Development Period: 2026-01-25 to 2026-03-13
* 🏆 Score: 6.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


A static HTML page showcasing a science fiction book collection. Works fully offline with all assets stored locally.

[View on Codeberg](https://codeberg.org/snonux/scifi)  
[View on GitHub](https://github.com/snonux/scifi)  

---

### 16. rcm 16↙12←12↙10

* 💻 Languages: Ruby (99.6%), TOML (0.4%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 113
* 📈 Lines of Code: 1719
* 📄 Lines of Documentation: 778
* 🏷️ Tags: 3
* 📅 Development Period: 2024-12-05 to 2026-03-02
* 🏆 Score: 4.3 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v0.1.1 (2026-03-01)


[![rcm screenshot](showcase/rcm/image-1.png "rcm screenshot")](showcase/rcm/image-1.png)  

A KISS (Keep It Simple, Stupid) configuration management system written in Ruby, designed for personal use.

[View on Codeberg](https://codeberg.org/snonux/rcm)  
[View on GitHub](https://github.com/snonux/rcm)  

---

### 17. yoga 17↙13←13↙12

* 💻 Languages: Go (69.1%), HTML (30.9%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 17
* 📈 Lines of Code: 6498
* 📄 Lines of Documentation: 196
* 🏷️ Tags: 9
* 📅 Development Period: 2025-10-01 to 2026-03-07
* 🏆 Score: 4.3 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: v0.4.0 (2026-01-28)


[![yoga screenshot](showcase/yoga/image-1.png "yoga screenshot")](showcase/yoga/image-1.png)  

> **⚠️ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/yoga)  
[View on GitHub](https://github.com/snonux/yoga)  

---

### 18. totalrecall 18↙15←15↙14

* 💻 Languages: Go (99.0%), Shell (0.5%), YAML (0.4%)
* 📚 Documentation: Markdown (99.5%), Text (0.5%)
* 📊 Commits: 109
* 📈 Lines of Code: 13424
* 📄 Lines of Documentation: 377
* 🏷️ Tags: 18
* 📅 Development Period: 2025-07-14 to 2026-03-08
* 🏆 Score: 4.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: MIT
* 🏷️ Latest Release: v0.8.3 (2026-03-08)


[![totalrecall screenshot](showcase/totalrecall/image-1.png "totalrecall screenshot")](showcase/totalrecall/image-1.png)  

`totalrecall` is a versatile tool for generating Anki flashcard materials from Bulgarian words. It offers both a command-line interface (CLI) and a graphical user interface (GUI) for creating audio pronunciation files and AI-generated images.

[View on Codeberg](https://codeberg.org/snonux/totalrecall)  
[View on GitHub](https://github.com/snonux/totalrecall)  

---

### 19. gogios 19↙16↙14↙11

* 💻 Languages: Go (98.9%), JSON (0.6%), YAML (0.5%)
* 📚 Documentation: Markdown (94.9%), Text (5.1%)
* 📊 Commits: 109
* 📈 Lines of Code: 3875
* 📄 Lines of Documentation: 394
* 🏷️ Tags: 10
* 📅 Development Period: 2023-04-17 to 2026-02-16
* 🏆 Score: 4.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v1.4.1 (2026-02-16)


[![gogios screenshot](showcase/gogios/image-1.png "gogios screenshot")](showcase/gogios/image-1.png)  

Gogios is a lightweight and minimalistic monitoring tool not designed for large-scale monitoring. It is ideal for monitoring self-hosted servers on a tiny scale, such as only a handful of servers or virtual machines (e.g. my personal infrastructure). If you have limited resources to monitor and require a simple yet effective solution, Gogios is an excellent choice. However, for larger environments with more complex monitoring requirements, it might be necessary to consider other monitoring solutions better suited for managing and scaling with increased monitoring demands.

[View on Codeberg](https://codeberg.org/snonux/gogios)  
[View on GitHub](https://github.com/snonux/gogios)  

---

### 20. log4jbench 20↙14↙11↙9

* 💻 Languages: Java (78.9%), XML (21.1%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 4
* 📈 Lines of Code: 774
* 📄 Lines of Documentation: 119
* 🏷️ Tags: 0
* 📅 Development Period: 2026-01-09 to 2026-01-09
* 🏆 Score: 4.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: MIT
* 🧪 Status: Experimental (no releases yet)


A minimal Java tool to benchmark Log4j2 logging throughput with configurable concurrent threads and various logging configurations.

[View on Codeberg](https://codeberg.org/snonux/log4jbench)  
[View on GitHub](https://github.com/snonux/log4jbench)  

---

### 21. perc 21↙17↙16↙13

* 💻 Languages: Go (100.0%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 7
* 📈 Lines of Code: 452
* 📄 Lines of Documentation: 80
* 🏷️ Tags: 3
* 📅 Development Period: 2025-11-25 to 2025-11-25
* 🏆 Score: 3.8 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: v0.1.0 (2025-11-25)


A simple vibe-coded command-line percentage calculator written in Go.

[View on Codeberg](https://codeberg.org/snonux/perc)  
[View on GitHub](https://github.com/snonux/perc)  

---

### 22. tasksamurai 22↙18↙17↙16

* 💻 Languages: Go (99.8%), YAML (0.2%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 236
* 📈 Lines of Code: 6577
* 📄 Lines of Documentation: 251
* 🏷️ Tags: 11
* 📅 Development Period: 2025-06-19 to 2026-03-23
* 🏆 Score: 3.6 (combines recent activity, code size, tags, and release status)
* ⚖️ License: BSD-2-Clause
* 🏷️ Latest Release: v0.12.0 (2026-03-23)


[![tasksamurai screenshot](showcase/tasksamurai/image-1.png "tasksamurai screenshot")](showcase/tasksamurai/image-1.png)  

Task Samurai invokes the `task` command to read and modify tasks. The tasks are displayed in a Bubble Tea table where each row represents a task. Hotkeys trigger Taskwarrior commands such as starting, completing or annotating tasks. The UI refreshes automatically after each action so the table is always up to date.

[View on Codeberg](https://codeberg.org/snonux/tasksamurai)  
[View on GitHub](https://github.com/snonux/tasksamurai)  

---

### 23. gos 23↙19↙18←18

* 💻 Languages: Go (99.5%), JSON (0.2%), Shell (0.2%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 405
* 📈 Lines of Code: 4378
* 📄 Lines of Documentation: 477
* 🏷️ Tags: 15
* 📅 Development Period: 2024-05-04 to 2026-03-13
* 🏆 Score: 2.7 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v1.2.6 (2026-03-13)


[![gos screenshot](showcase/gos/image-1.png "gos screenshot")](showcase/gos/image-1.png)  

Gos is a Go-based replacement for Buffer.com, providing the ability to schedule and manage social media posts from the command line. It can be run, for example, every time you open a new shell or only once every N hours when you open a new shell.

[View on Codeberg](https://codeberg.org/snonux/gos)  
[View on GitHub](https://github.com/snonux/gos)  

---

### 24. foostats 24↙20↙19↙17

* 💻 Languages: Perl (100.0%)
* 📚 Documentation: Markdown (54.6%), Text (45.4%)
* 📊 Commits: 98
* 📈 Lines of Code: 1902
* 📄 Lines of Documentation: 423
* 🏷️ Tags: 2
* 📅 Development Period: 2023-01-02 to 2025-11-01
* 🏆 Score: 2.3 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v0.2.0 (2025-10-21)


A privacy-respecting web analytics tool for OpenBSD that processes HTTP/HTTPS and Gemini protocol logs to generate anonymous site statistics. Designed for the foo.zone ecosystem and similar sites, it provides comprehensive traffic analysis while preserving visitor privacy through SHA3-512 IP hashing.

[View on Codeberg](https://codeberg.org/snonux/foostats)  
[View on GitHub](https://github.com/snonux/foostats)  

---

### 25. timr 25↙21↙20↙19

* 💻 Languages: Go (96.0%), Shell (4.0%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 32
* 📈 Lines of Code: 1538
* 📄 Lines of Documentation: 99
* 🏷️ Tags: 5
* 📅 Development Period: 2025-06-25 to 2026-01-02
* 🏆 Score: 2.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: MIT
* 🏷️ Latest Release: v0.3.0 (2026-01-02)


A simple command-line tool to track time spent on tasks. It has been primarily coded using Google Gemini CLI and Claude Code CLI.

[View on Codeberg](https://codeberg.org/snonux/timr)  
[View on GitHub](https://github.com/snonux/timr)  

---

### 26. gemtexter 26↙22↖23↙22

* 💻 Languages: Shell (70.8%), CSS (26.2%), Config (1.8%), HTML (1.2%)
* 📚 Documentation: Text (76.1%), Markdown (23.9%)
* 📊 Commits: 477
* 📈 Lines of Code: 2491
* 📄 Lines of Documentation: 1180
* 🏷️ Tags: 6
* 📅 Development Period: 2021-05-21 to 2026-03-12
* 🏆 Score: 2.0 (combines recent activity, code size, tags, and release status)
* ⚖️ License: GPL-3.0
* 🏷️ Latest Release: 3.0.0 (2024-10-01)


This is the source code of my personal internet site and blog engine. All content is written in Gemini Gemtext format, but the script `gemtexter` generates multiple other static output formats (with zero JavaScript) from it. You can reach the site(s)...

[View on Codeberg](https://codeberg.org/snonux/gemtexter)  
[View on GitHub](https://github.com/snonux/gemtexter)  

---

### 27. wireguardmeshgenerator 27↙23↙22↖23

* 💻 Languages: Ruby (63.5%), YAML (36.5%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 37
* 📈 Lines of Code: 583
* 📄 Lines of Documentation: 24
* 🏷️ Tags: 1
* 📅 Development Period: 2025-04-18 to 2026-03-18
* 🏆 Score: 1.5 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v1.0.0 (2025-05-11)


Have a look at the `wireguardmeshgenerator.yaml`

[View on Codeberg](https://codeberg.org/snonux/wireguardmeshgenerator)  
[View on GitHub](https://github.com/snonux/wireguardmeshgenerator)  

---

### 28. goprecords 28↙24←24←24

* 💻 Languages: Go (100.0%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 118
* 📈 Lines of Code: 2855
* 📄 Lines of Documentation: 489
* 🏷️ Tags: 6
* 📅 Development Period: 2013-03-22 to 2026-03-08
* 🏆 Score: 1.3 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: v0.2.1 (2026-02-20)


`goprecords` is a Go command-line program that generates uptime reports for hosts based on the input record files from `uptimed`. It supports importing records into SQLite and querying for reports, or reporting directly from a stats directory.

[View on Codeberg](https://codeberg.org/snonux/goprecords)  
[View on GitHub](https://github.com/snonux/goprecords)  

---

### 29. ioriot 29↖34↖35←35

* 💻 Languages: C (58.7%), C/C++ (22.5%), Config (17.9%), Make (1.0%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 84
* 📈 Lines of Code: 13609
* 📄 Lines of Documentation: 899
* 🏷️ Tags: 8
* 📅 Development Period: 2018-03-01 to 2026-03-19
* 🏆 Score: 1.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Apache-2.0
* 🏷️ Latest Release: 0.5.1 (2019-01-04)


[![ioriot screenshot](showcase/ioriot/image-1.png "ioriot screenshot")](showcase/ioriot/image-1.png)  

...is an I/O benchmarking tool for Linux based operating systems which captures I/O operations on a (possibly production) server in order to replay the exact same I/O operations on a load test machine.

[View on Codeberg](https://codeberg.org/snonux/ioriot)  
[View on GitHub](https://github.com/snonux/ioriot)  

---

### 30. quicklogger 30↙26←26↙25

* 💻 Languages: Go (96.4%), XML (1.8%), Shell (1.1%), TOML (0.7%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 36
* 📈 Lines of Code: 1220
* 📄 Lines of Documentation: 78
* 🏷️ Tags: 5
* 📅 Development Period: 2024-01-20 to 2026-03-01
* 🏆 Score: 0.8 (combines recent activity, code size, tags, and release status)
* ⚖️ License: MIT
* 🏷️ Latest Release: v0.1.0 (2026-03-01)


[![quicklogger screenshot](showcase/quicklogger/image-1.png "quicklogger screenshot")](showcase/quicklogger/image-1.png)  

This is a tiny GUI app written in Go using the Fyne framework to quickly log a message to a file. Read on my blog more about this: https://foo.zone/gemfeed/2024-03-03-a-fine-fyne-android-app-for-quickly-logging-ideas-programmed-in-golang.html

[View on Codeberg](https://codeberg.org/snonux/quicklogger)  
[View on GitHub](https://github.com/snonux/quicklogger)  

---

### 31. sillybench 31↙27←27←27

* 💻 Languages: Go (90.9%), Shell (9.1%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 5
* 📈 Lines of Code: 33
* 📄 Lines of Documentation: 3
* 🏷️ Tags: 0
* 📅 Development Period: 2025-04-03 to 2025-04-03
* 🏆 Score: 0.6 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


To compare how fast this runs on FreeBSD vs a Linux Bhyve VM

[View on Codeberg](https://codeberg.org/snonux/sillybench)  
[View on GitHub](https://github.com/snonux/sillybench)  

---

### 32. terraform 32↙28←28↙26

* 💻 Languages: HCL (96.6%), Make (1.9%), YAML (1.5%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 125
* 📈 Lines of Code: 2851
* 📄 Lines of Documentation: 52
* 🏷️ Tags: 0
* 📅 Development Period: 2023-08-27 to 2025-08-08
* 🏆 Score: 0.5 (combines recent activity, code size, tags, and release status)
* ⚖️ License: MIT
* 🧪 Status: Experimental (no releases yet)


Go to AWS Secrets manager manually and create it!

[View on Codeberg](https://codeberg.org/snonux/terraform)  
[View on GitHub](https://github.com/snonux/terraform)  

---

### 33. geheim 33↙29↖30←30

* 💻 Languages: Ruby (86.7%), Shell (13.3%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 75
* 📈 Lines of Code: 822
* 📄 Lines of Documentation: 108
* 🏷️ Tags: 4
* 📅 Development Period: 2018-05-26 to 2026-03-07
* 🏆 Score: 0.4 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: v0.3.1 (2025-11-01)


> **⚠️ DEPRECATED:** This project is no longer maintained. I have switched to another solution and will not be doing any further work on this project.

[View on Codeberg](https://codeberg.org/snonux/geheim)  
[View on GitHub](https://github.com/snonux/geheim)  

---

### 34. gorum 34↙30↖31↙28

* 💻 Languages: Go (91.3%), JSON (6.4%), YAML (2.3%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 83
* 📈 Lines of Code: 1525
* 📄 Lines of Documentation: 17
* 🏷️ Tags: 0
* 📅 Development Period: 2023-04-17 to 2026-03-07
* 🏆 Score: 0.4 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🧪 Status: Experimental (no releases yet)


Gogios is a minimalistic quorum manager.

[View on Codeberg](https://codeberg.org/snonux/gorum)  
[View on GitHub](https://github.com/snonux/gorum)  

---

### 35. docker-radicale-server 35↙31↖32↙31

* 💻 Languages: Make (57.5%), Docker (42.5%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 5
* 📈 Lines of Code: 40
* 📄 Lines of Documentation: 3
* 🏷️ Tags: 0
* 📅 Development Period: 2023-12-31 to 2025-08-11
* 🏆 Score: 0.3 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


For the Radicale server https://radicale.org

[View on Codeberg](https://codeberg.org/snonux/docker-radicale-server)  
[View on GitHub](https://github.com/snonux/docker-radicale-server)  

---

### 36. photoalbum 36↙32↖33↖34

* 💻 Languages: Shell (80.1%), Make (12.3%), Config (7.6%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 153
* 📈 Lines of Code: 342
* 📄 Lines of Documentation: 39
* 🏷️ Tags: 15
* 📅 Development Period: 2011-11-19 to 2022-04-02
* 🏆 Score: 0.3 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 0.5.0 (2022-02-21)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

photoalbum is a minimal Bash script for Unix like operating systems (such as Linux) to generate static web photo albums.
The resulting static photo album is pure HTML+CSS (without any JavaScript!).

[View on Codeberg](https://codeberg.org/snonux/photoalbum)  
[View on GitHub](https://github.com/snonux/photoalbum)  

---

### 37. randomjournalpage 37↙33↖34↙33

* 💻 Languages: Shell (94.1%), Make (5.9%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 8
* 📈 Lines of Code: 51
* 📄 Lines of Documentation: 26
* 🏷️ Tags: 0
* 📅 Development Period: 2022-06-02 to 2024-04-20
* 🏆 Score: 0.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

This is a quick and dirty script which I use personally to grab a random PDF file (a scanned version of one of my bullet journals) and to extract a random set of pages from it in order to reflect/read what was happening in the past. This also includes various notes of books I have read and random ideas I wrote down and my want to reconsider.

[View on Codeberg](https://codeberg.org/snonux/randomjournalpage)  
[View on GitHub](https://github.com/snonux/randomjournalpage)  

---

### 38. algorithms 38↙35↖36↙32

* 💻 Languages: Go (99.2%), Make (0.8%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 82
* 📈 Lines of Code: 1728
* 📄 Lines of Documentation: 18
* 🏷️ Tags: 0
* 📅 Development Period: 2020-07-12 to 2023-04-09
* 🏆 Score: 0.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🧪 Status: Experimental (no releases yet)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

This includes exercises from the Algorithms lecture. Well, this is just a refresher exercise.

[View on Codeberg](https://codeberg.org/snonux/algorithms)  
[View on GitHub](https://github.com/snonux/algorithms)  

---

### 39. ipv6test 39↙36↖37↙36

* 💻 Languages: Perl (65.8%), Docker (34.2%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 22
* 📈 Lines of Code: 149
* 📄 Lines of Documentation: 21
* 🏷️ Tags: 0
* 📅 Development Period: 2011-07-09 to 2026-02-17
* 🏆 Score: 0.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🧪 Status: Experimental (no releases yet)


This is a quick and dirty Perl-based IPv6 test website.

[View on Codeberg](https://codeberg.org/snonux/ipv6test)  
[View on GitHub](https://github.com/snonux/ipv6test)  

---

### 40. staticfarm-apache-handlers 40↙37↖38↖40

* 💻 Languages: Perl (96.4%), Make (3.6%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 4
* 📈 Lines of Code: 919
* 📄 Lines of Documentation: 16
* 🏷️ Tags: 1
* 📅 Development Period: 2015-01-02 to 2026-03-07
* 🏆 Score: 0.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 1.1.3 (2015-01-02)


DEPRECATED
    This project is no longer maintained. No further updates, bug fixes, or
    feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/staticfarm-apache-handlers)  
[View on GitHub](https://github.com/snonux/staticfarm-apache-handlers)  

---

### 41. sway-autorotate 41↙38↖39↙38

* 💻 Languages: Shell (100.0%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 8
* 📈 Lines of Code: 41
* 📄 Lines of Documentation: 17
* 🏷️ Tags: 0
* 📅 Development Period: 2020-01-30 to 2025-04-30
* 🏆 Score: 0.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: GPL-3.0
* 🧪 Status: Experimental (no releases yet)


This is a fork of https://github.com/tedk0n/autorotate_sway_script

[View on Codeberg](https://codeberg.org/snonux/sway-autorotate)  
[View on GitHub](https://github.com/snonux/sway-autorotate)  

---

### 42. guprecords 42↙39↙29←29

* 💻 Languages: Raku (100.0%)
* 📊 Commits: 97
* 📈 Lines of Code: 195
* 🏷️ Tags: 1
* 📅 Development Period: 2013-03-22 to 2023-03-09
* 🏆 Score: 0.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: v1.0.0 (2023-04-29)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

guprecords: source code repository.

[View on Codeberg](https://codeberg.org/snonux/guprecords)  
[View on GitHub](https://github.com/snonux/guprecords)  

---

### 43. mon 43↙40←40↙39

* 💻 Languages: Perl (96.5%), Shell (1.8%), Make (1.2%), Config (0.4%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 8
* 📈 Lines of Code: 5360
* 📄 Lines of Documentation: 793
* 🏷️ Tags: 2
* 📅 Development Period: 2015-01-02 to 2026-03-07
* 🏆 Score: 0.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 1.0.1 (2015-01-02)


DEPRECATED
    This project is no longer maintained. No further updates, bug fixes, or
    feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/mon)  
[View on GitHub](https://github.com/snonux/mon)  

---

### 44. fapi 44↙41←41↖44

* 💻 Languages: Python (96.6%), Make (3.1%), Config (0.3%)
* 📚 Documentation: Text (98.3%), Markdown (1.7%)
* 📊 Commits: 222
* 📈 Lines of Code: 1681
* 📄 Lines of Documentation: 543
* 🏷️ Tags: 32
* 📅 Development Period: 2014-03-10 to 2026-03-07
* 🏆 Score: 0.2 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 1.0.2 (2014-11-17)


DEPRECATED
    This project is no longer maintained. No further updates, bug fixes, or
    feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/fapi)  
[View on GitHub](https://github.com/snonux/fapi)  

---

### 45. pingdomfetch 45↙42←42↙41

* 💻 Languages: Perl (97.3%), Make (2.7%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 10
* 📈 Lines of Code: 1839
* 📄 Lines of Documentation: 416
* 🏷️ Tags: 3
* 📅 Development Period: 2015-01-02 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 1.0.2 (2015-01-02)


DEPRECATED
    This project is no longer maintained. No further updates, bug fixes, or
    feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/pingdomfetch)  
[View on GitHub](https://github.com/snonux/pingdomfetch)  

---

### 46. fype 46↙43←43↙37

* 💻 Languages: C (77.3%), C/C++ (13.1%), HTML (7.5%), Make (2.1%)
* 📚 Documentation: Text (65.8%), LaTeX (20.5%), Markdown (13.7%)
* 📊 Commits: 120
* 📈 Lines of Code: 7904
* 📄 Lines of Documentation: 2774
* 🏷️ Tags: 0
* 📅 Development Period: 2008-05-15 to 2026-02-28
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🧪 Status: Experimental (no releases yet)


**F**or **Y**our **P**rogram **E**xecution — a lightweight scripting language.

[View on Codeberg](https://codeberg.org/snonux/fype)  
[View on GitHub](https://github.com/snonux/fype)  

---

### 47. pwgrep 47↙44←44↖50

* 💻 Languages: Shell (85.0%), Make (15.0%)
* 📚 Documentation: Text (75.0%), Markdown (25.0%)
* 📊 Commits: 143
* 📈 Lines of Code: 493
* 📄 Lines of Documentation: 28
* 🏷️ Tags: 33
* 📅 Development Period: 2009-09-27 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 0.9.3 (2014-06-14)


> **⚠️ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/pwgrep)  
[View on GitHub](https://github.com/snonux/pwgrep)  

---

### 48. xerl 48↙45←45↙42

* 💻 Languages: Perl (98.3%), Config (1.2%), Make (0.5%)
* 📊 Commits: 671
* 📈 Lines of Code: 1675
* 🏷️ Tags: 1
* 📅 Development Period: 2011-03-06 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v1.0.0 (2018-12-22)


Those are the host templates to be used with Xerl itself.

[View on Codeberg](https://codeberg.org/snonux/xerl)  
[View on GitHub](https://github.com/snonux/xerl)  

---

### 49. awksite 49↙46←46↖61

* 💻 Languages: AWK (72.1%), HTML (16.4%), Config (11.5%)
* 📚 Documentation: Markdown (50.0%), Text (50.0%)
* 📊 Commits: 4
* 📈 Lines of Code: 122
* 📄 Lines of Documentation: 12
* 🏷️ Tags: 2
* 📅 Development Period: 2011-01-27 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: v0.2 (2011-01-27)


> **⚠️ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/awksite)  
[View on GitHub](https://github.com/snonux/awksite)  

---

### 50. gotop 50↙47←47↖48

* 💻 Languages: Go (98.0%), Make (2.0%)
* 📚 Documentation: Markdown (60.0%), Text (40.0%)
* 📊 Commits: 58
* 📈 Lines of Code: 499
* 📄 Lines of Documentation: 10
* 🏷️ Tags: 1
* 📅 Development Period: 2015-05-24 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 0.1 (2015-06-01)


> **⚠️ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/gotop)  
[View on GitHub](https://github.com/snonux/gotop)  

---

### 51. japi 51↙48←48↖53

* 💻 Languages: Perl (78.3%), Make (21.7%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 42
* 📈 Lines of Code: 286
* 📄 Lines of Documentation: 148
* 🏷️ Tags: 12
* 📅 Development Period: 2013-03-22 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 0.4.3 (2014-06-16)


DEPRECATED
    This project is no longer maintained. No further updates, bug fixes, or
    feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/japi)  
[View on GitHub](https://github.com/snonux/japi)  

---

### 52. rubyfy 52↙49↖50↙49

* 💻 Languages: Ruby (98.5%), JSON (1.5%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 35
* 📈 Lines of Code: 273
* 📄 Lines of Documentation: 34
* 🏷️ Tags: 1
* 📅 Development Period: 2015-09-29 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Apache-2.0
* 🏷️ Latest Release: 0 (2015-10-26)


> **⚠️ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/rubyfy)  
[View on GitHub](https://github.com/snonux/rubyfy)  

---

### 53. perl-c-fibonacci 53↙50↖51↙45

* 💻 Languages: C (80.4%), Make (19.6%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 4
* 📈 Lines of Code: 51
* 📄 Lines of Documentation: 69
* 🏷️ Tags: 0
* 📅 Development Period: 2014-03-24 to 2022-04-23
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

perl-c-fibonacci: source code repository.

[View on Codeberg](https://codeberg.org/snonux/perl-c-fibonacci)  
[View on GitHub](https://github.com/snonux/perl-c-fibonacci)  

---

### 54. netdiff 54↙51↖52↖56

* 💻 Languages: Shell (52.2%), Make (46.3%), Config (1.5%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 43
* 📈 Lines of Code: 134
* 📄 Lines of Documentation: 110
* 🏷️ Tags: 10
* 📅 Development Period: 2013-03-22 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 0.1.5 (2014-06-22)


DEPRECATED
    This project is no longer maintained. No further updates, bug fixes, or
    feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/netdiff)  
[View on GitHub](https://github.com/snonux/netdiff)  

---

### 55. perldaemon 55↙52↙49↖51

* 💻 Languages: Perl (74.2%), Shell (22.2%), Config (3.6%)
* 📊 Commits: 111
* 📈 Lines of Code: 659
* 🏷️ Tags: 6
* 📅 Development Period: 2011-02-05 to 2022-04-21
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v1.4 (2022-04-29)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

PerlDaemon is a minimal daemon for Linux and other UNIX a like operating system
programmed in Perl.  It can be extended to fit any task...

[View on Codeberg](https://codeberg.org/snonux/perldaemon)  
[View on GitHub](https://github.com/snonux/perldaemon)  

---

### 56. jsmstrade 56↙53←53↙52

* 💻 Languages: Java (76.0%), Shell (15.4%), XML (8.6%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 21
* 📈 Lines of Code: 720
* 📄 Lines of Documentation: 8
* 🏷️ Tags: 3
* 📅 Development Period: 2008-06-21 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v0.3 (2009-02-08)


[![jsmstrade screenshot](showcase/jsmstrade/image-1.png "jsmstrade screenshot")](showcase/jsmstrade/image-1.png)  

> **⚠️ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/jsmstrade)  
[View on GitHub](https://github.com/snonux/jsmstrade)  

---

### 57. muttdelay 57↙54←54↖55

* 💻 Languages: Make (47.1%), Shell (46.3%), Vim Script (5.9%), Config (0.7%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 42
* 📈 Lines of Code: 136
* 📄 Lines of Documentation: 100
* 🏷️ Tags: 4
* 📅 Development Period: 2013-03-22 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 0.2.0 (2014-07-05)


DEPRECATED
    This project is no longer maintained. No further updates, bug fixes, or
    feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/muttdelay)  
[View on GitHub](https://github.com/snonux/muttdelay)  

---

### 58. netcalendar 58↙55←55↙46

* 💻 Languages: Java (83.0%), HTML (12.9%), XML (3.0%), CSS (0.8%), Make (0.2%)
* 📚 Documentation: Text (89.5%), Markdown (10.5%)
* 📊 Commits: 51
* 📈 Lines of Code: 17380
* 📄 Lines of Documentation: 949
* 🏷️ Tags: 1
* 📅 Development Period: 2009-02-07 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: GPL-2.0
* 🏷️ Latest Release: v0.1 (2009-02-08)


[![netcalendar screenshot](showcase/netcalendar/image-1.png "netcalendar screenshot")](showcase/netcalendar/image-1.png)  

> **⚠️ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/netcalendar)  
[View on GitHub](https://github.com/snonux/netcalendar)  

---

### 59. vs-sim 59↙56↖63←63

* 💻 Languages: Java (98.8%), Shell (0.7%), XML (0.4%)
* 📚 Documentation: LaTeX (98.3%), Text (1.4%), Markdown (0.3%)
* 📊 Commits: 409
* 📈 Lines of Code: 16303
* 📄 Lines of Documentation: 2905
* 🏷️ Tags: 4
* 📅 Development Period: 2008-05-15 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🏷️ Latest Release: v1.0 (2008-08-24)


[![vs-sim screenshot](showcase/vs-sim/image-1.jpg "vs-sim screenshot")](showcase/vs-sim/image-1.jpg)  

VS-Sim is an open source simulator programmed in Java for distributed systems. VS-Sim stands for "Verteilte Systeme Simulator" which is the german translation for "Distributed Sytstems Simulator".

[View on Codeberg](https://codeberg.org/snonux/vs-sim)  
[View on GitHub](https://github.com/snonux/vs-sim)  

---

### 60. cpuinfo 60↙57↙56↖59

* 💻 Languages: Shell (53.2%), Make (46.8%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 28
* 📈 Lines of Code: 124
* 📄 Lines of Documentation: 75
* 🏷️ Tags: 4
* 📅 Development Period: 2010-11-05 to 2021-11-05
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 1.0.2 (2014-06-22)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

cpuinfo - A small and humble tool to print out CPU data

[View on Codeberg](https://codeberg.org/snonux/cpuinfo)  
[View on GitHub](https://github.com/snonux/cpuinfo)  

---

### 61. template 61↙58↙57↖60

* 💻 Languages: Make (89.2%), Shell (10.8%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 23
* 📈 Lines of Code: 65
* 📄 Lines of Documentation: 232
* 🏷️ Tags: 1
* 📅 Development Period: 2013-03-22 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: 0.0.0.0 (2013-03-22)


DEPRECATED
    This project is no longer maintained. No further updates, bug fixes, or
    feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/template)  
[View on GitHub](https://github.com/snonux/template)  

---

### 62. dyndns 62↙59↙58↖62

* 💻 Languages: Shell (100.0%)
* 📚 Documentation: Text (100.0%)
* 📊 Commits: 4
* 📈 Lines of Code: 18
* 📄 Lines of Documentation: 53
* 🏷️ Tags: 0
* 📅 Development Period: 2014-03-24 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


DEPRECATED
    This project is no longer maintained. No further updates, bug fixes, or
    feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/dyndns)  
[View on GitHub](https://github.com/snonux/dyndns)  

---

### 63. debroid 63↙60↙59↙57

* 💻 Languages: Shell (92.0%), Make (8.0%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 17
* 📈 Lines of Code: 88
* 📄 Lines of Documentation: 150
* 🏷️ Tags: 1
* 📅 Development Period: 2015-06-18 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


[![debroid screenshot](showcase/debroid/image-1.png "debroid screenshot")](showcase/debroid/image-1.png)  

> **⚠️ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/debroid)  
[View on GitHub](https://github.com/snonux/debroid)  

---

### 64. perl-poetry 64↙61↙60↙54

* 💻 Languages: Perl (100.0%)
* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 2
* 📈 Lines of Code: 191
* 📄 Lines of Documentation: 8
* 🏷️ Tags: 0
* 📅 Development Period: 2014-03-24 to 2014-03-24
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

Here you find some Poetry written in Perl.

[View on Codeberg](https://codeberg.org/snonux/perl-poetry)  
[View on GitHub](https://github.com/snonux/perl-poetry)  

---

### 65. hsbot 65↙62↙61↙58

* 💻 Languages: Haskell (98.5%), Make (1.5%)
* 📊 Commits: 81
* 📈 Lines of Code: 601
* 🏷️ Tags: 0
* 📅 Development Period: 2009-11-22 to 2026-03-07
* 🏆 Score: 0.1 (combines recent activity, code size, tags, and release status)
* ⚖️ License: Custom License
* 🧪 Status: Experimental (no releases yet)


This project is no longer maintained. No further updates, bug fixes, or
feature additions will be made. Use at your own risk.

[View on Codeberg](https://codeberg.org/snonux/hsbot)  
[View on GitHub](https://github.com/snonux/hsbot)  

---

### 66. ychat 66↙63↙62↙43

* 📚 Documentation: Text (100.0%)
* 📊 Commits: 67
* 📈 Lines of Code: 0
* 📄 Lines of Documentation: 9
* 🏷️ Tags: 34
* 📅 Development Period: 2008-05-15 to 2013-12-15
* 🏆 Score: 0.0 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🏷️ Latest Release: yhttpd-0.7.2 (2013-04-06)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

ychat: source code repository.

[View on Codeberg](https://codeberg.org/snonux/ychat)  
[View on GitHub](https://github.com/snonux/ychat)  

---

### 67. snonux.foo 67

* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 1
* 📈 Lines of Code: 0
* 📄 Lines of Documentation: 10
* 🏷️ Tags: 0
* 📅 Development Period: 2026-03-21 to 2026-03-21
* 🏆 Score: 0.0 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)


This directory belongs to the [snonux](https://codeberg.org/snonux/snonux) microblog generator project.

[View on Codeberg](https://codeberg.org/snonux/snonux.foo)  
[View on GitHub](https://github.com/snonux/snonux.foo)  

---

### 68. foo.zone 68↙64←64↙6

* 📚 Documentation: Markdown (100.0%)
* 📊 Commits: 3643
* 📈 Lines of Code: 0
* 📄 Lines of Documentation: 23
* 🏷️ Tags: 0
* 📅 Development Period: 2021-05-21 to 2022-04-02
* 🏆 Score: 0.0 (combines recent activity, code size, tags, and release status)
* ⚖️ License: No license found
* 🧪 Status: Experimental (no releases yet)

⚠️  **Notice**: This project appears to be finished, obsolete, or no longer maintained. Last meaningful activity was over 2 years ago. Use at your own risk.

Each format is in it's own branch in this repository. E.g.:

[View on Codeberg](https://codeberg.org/snonux/foo.zone)  
[View on GitHub](https://github.com/snonux/foo.zone)