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
|
# Project Showcase
Generated on: 2026-03-28
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.
<< template::inline::toc
## Overall Statistics
* ๐ฆ Total Projects: 68
* ๐ Total Commits: 11,807
* ๐ Total Lines of Code: 406,165
* ๐ Total Lines of Documentation: 270,443
* ๐ป Languages: Go (55.1%), Java (14.7%), C (5.0%), XML (5.0%), YAML (3.9%), Perl (3.5%), Shell (2.6%), Ruby (1.8%), TypeScript (1.4%), HTML (1.3%), C/C++ (1.1%), CSS (0.9%), Config (0.7%), Python (0.7%), HCL (0.7%), JSON (0.5%), Make (0.3%), TOML (0.3%), Haskell (0.1%), JavaScript (0.1%)
* ๐ Documentation: Text (82.7%), Markdown (16.0%), 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)
=> showcase/hexai/image-1.png hexai screenshot
Hexai, the AI addition for your Helix Editor (https://helix-editor.com) .. Other editors should work but weren't tested.
=> https://codeberg.org/snonux/hexai View on Codeberg
=> https://github.com/snonux/hexai View on GitHub
---
### 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:
=> https://codeberg.org/snonux/gt View on Codeberg
=> https://github.com/snonux/gt View on GitHub
---
### 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)
=> showcase/hypr/image-1.svg hypr screenshot
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.
=> https://codeberg.org/snonux/hypr View on Codeberg
=> https://github.com/snonux/hypr View on GitHub
---
### 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.
=> https://codeberg.org/snonux/dotfiles View on Codeberg
=> https://github.com/snonux/dotfiles View on GitHub
---
### 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
=> https://codeberg.org/snonux/snonux View on Codeberg
=> https://github.com/snonux/snonux View on GitHub
---
### 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)
=> showcase/dtail/image-1.png dtail screenshot
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.
=> https://codeberg.org/snonux/dtail View on Codeberg
=> https://github.com/snonux/dtail View on GitHub
---
### 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...
=> https://codeberg.org/snonux/conf View on Codeberg
=> https://github.com/snonux/conf View on GitHub
---
### 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)
=> showcase/ior/image-1.png ior screenshot
> **๐ง 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.
=> https://codeberg.org/snonux/ior View on Codeberg
=> https://github.com/snonux/ior View on GitHub
---
### 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.
=> https://codeberg.org/snonux/timesamurai View on Codeberg
=> https://github.com/snonux/timesamurai View on GitHub
---
### 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)
=> showcase/loadbars/image-1.gif loadbars screenshot
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.
=> https://codeberg.org/snonux/loadbars View on Codeberg
=> https://github.com/snonux/loadbars View on GitHub
---
### 11. foo.zone 68โ64โ64โ6
* ๐ป Languages: XML (98.2%), Shell (1.5%), Go (0.3%)
* ๐ Documentation: Markdown (73.4%), Text (26.6%)
* ๐ Commits: 1736
* ๐ Lines of Code: 19874
* ๐ Lines of Documentation: 563
* ๐ท๏ธ Tags: 0
* ๐
Development Period: 2021-04-29 to 2026-03-11
* ๐ Score: 13.9 (combines recent activity, code size, tags, and release status)
* โ๏ธ License: No license found
* ๐งช Status: Experimental (no releases yet)
Each format is in it's own branch in this repository. E.g.:
=> https://codeberg.org/snonux/foo.zone View on Codeberg
=> https://github.com/snonux/foo.zone View on GitHub
---
### 12. 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.
=> https://codeberg.org/snonux/foostore View on Codeberg
=> https://github.com/snonux/foostore View on GitHub
---
### 13. 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)
=> showcase/ds-sim/image-1.png ds-sim screenshot
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.
=> https://codeberg.org/snonux/ds-sim View on Codeberg
=> https://github.com/snonux/ds-sim View on GitHub
---
### 14. 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)
=> showcase/epimetheus/image-1.png epimetheus screenshot
> **๐ง 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.
=> https://codeberg.org/snonux/epimetheus View on Codeberg
=> https://github.com/snonux/epimetheus View on GitHub
---
### 15. 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.
=> https://codeberg.org/snonux/gitsyncer View on Codeberg
=> https://github.com/snonux/gitsyncer View on GitHub
---
### 16. 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.
=> https://codeberg.org/snonux/scifi View on Codeberg
=> https://github.com/snonux/scifi View on GitHub
---
### 17. 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)
=> showcase/rcm/image-1.png rcm screenshot
A KISS (Keep It Simple, Stupid) configuration management system written in Ruby, designed for personal use.
=> https://codeberg.org/snonux/rcm View on Codeberg
=> https://github.com/snonux/rcm View on GitHub
---
### 18. 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)
=> showcase/yoga/image-1.png yoga screenshot
> **โ ๏ธ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.
=> https://codeberg.org/snonux/yoga View on Codeberg
=> https://github.com/snonux/yoga View on GitHub
---
### 19. 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)
=> showcase/totalrecall/image-1.png totalrecall screenshot
`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.
=> https://codeberg.org/snonux/totalrecall View on Codeberg
=> https://github.com/snonux/totalrecall View on GitHub
---
### 20. 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)
=> showcase/gogios/image-1.png gogios screenshot
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.
=> https://codeberg.org/snonux/gogios View on Codeberg
=> https://github.com/snonux/gogios View on GitHub
---
### 21. 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.
=> https://codeberg.org/snonux/log4jbench View on Codeberg
=> https://github.com/snonux/log4jbench View on GitHub
---
### 22. 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.
=> https://codeberg.org/snonux/perc View on Codeberg
=> https://github.com/snonux/perc View on GitHub
---
### 23. 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)
=> showcase/tasksamurai/image-1.png tasksamurai screenshot
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.
=> https://codeberg.org/snonux/tasksamurai View on Codeberg
=> https://github.com/snonux/tasksamurai View on GitHub
---
### 24. 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)
=> showcase/gos/image-1.png gos screenshot
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.
=> https://codeberg.org/snonux/gos View on Codeberg
=> https://github.com/snonux/gos View on GitHub
---
### 25. 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.
=> https://codeberg.org/snonux/foostats View on Codeberg
=> https://github.com/snonux/foostats View on GitHub
---
### 26. 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.
=> https://codeberg.org/snonux/timr View on Codeberg
=> https://github.com/snonux/timr View on GitHub
---
### 27. 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)...
=> https://codeberg.org/snonux/gemtexter View on Codeberg
=> https://github.com/snonux/gemtexter View on GitHub
---
### 28. 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`
=> https://codeberg.org/snonux/wireguardmeshgenerator View on Codeberg
=> https://github.com/snonux/wireguardmeshgenerator View on GitHub
---
### 29. 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.
=> https://codeberg.org/snonux/goprecords View on Codeberg
=> https://github.com/snonux/goprecords View on GitHub
---
### 30. 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)
=> showcase/ioriot/image-1.png ioriot screenshot
...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.
=> https://codeberg.org/snonux/ioriot View on Codeberg
=> https://github.com/snonux/ioriot View on GitHub
---
### 31. 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)
=> showcase/quicklogger/image-1.png quicklogger screenshot
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
=> https://codeberg.org/snonux/quicklogger View on Codeberg
=> https://github.com/snonux/quicklogger View on GitHub
---
### 32. 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
=> https://codeberg.org/snonux/sillybench View on Codeberg
=> https://github.com/snonux/sillybench View on GitHub
---
### 33. 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!
=> https://codeberg.org/snonux/terraform View on Codeberg
=> https://github.com/snonux/terraform View on GitHub
---
### 34. 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.
=> https://codeberg.org/snonux/geheim View on Codeberg
=> https://github.com/snonux/geheim View on GitHub
---
### 35. 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.
=> https://codeberg.org/snonux/gorum View on Codeberg
=> https://github.com/snonux/gorum View on GitHub
---
### 36. 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
=> https://codeberg.org/snonux/docker-radicale-server View on Codeberg
=> https://github.com/snonux/docker-radicale-server View on GitHub
---
### 37. 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!).
=> https://codeberg.org/snonux/photoalbum View on Codeberg
=> https://github.com/snonux/photoalbum View on GitHub
---
### 38. 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.
=> https://codeberg.org/snonux/randomjournalpage View on Codeberg
=> https://github.com/snonux/randomjournalpage View on GitHub
---
### 39. 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.
=> https://codeberg.org/snonux/algorithms View on Codeberg
=> https://github.com/snonux/algorithms View on GitHub
---
### 40. 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.
=> https://codeberg.org/snonux/ipv6test View on Codeberg
=> https://github.com/snonux/ipv6test View on GitHub
---
### 41. 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.
=> https://codeberg.org/snonux/staticfarm-apache-handlers View on Codeberg
=> https://github.com/snonux/staticfarm-apache-handlers View on GitHub
---
### 42. 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
=> https://codeberg.org/snonux/sway-autorotate View on Codeberg
=> https://github.com/snonux/sway-autorotate View on GitHub
---
### 43. 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.
=> https://codeberg.org/snonux/guprecords View on Codeberg
=> https://github.com/snonux/guprecords View on GitHub
---
### 44. 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.
=> https://codeberg.org/snonux/mon View on Codeberg
=> https://github.com/snonux/mon View on GitHub
---
### 45. 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.
=> https://codeberg.org/snonux/fapi View on Codeberg
=> https://github.com/snonux/fapi View on GitHub
---
### 46. 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.
=> https://codeberg.org/snonux/pingdomfetch View on Codeberg
=> https://github.com/snonux/pingdomfetch View on GitHub
---
### 47. 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.
=> https://codeberg.org/snonux/fype View on Codeberg
=> https://github.com/snonux/fype View on GitHub
---
### 48. 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.
=> https://codeberg.org/snonux/pwgrep View on Codeberg
=> https://github.com/snonux/pwgrep View on GitHub
---
### 49. 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.
=> https://codeberg.org/snonux/xerl View on Codeberg
=> https://github.com/snonux/xerl View on GitHub
---
### 50. 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.
=> https://codeberg.org/snonux/awksite View on Codeberg
=> https://github.com/snonux/awksite View on GitHub
---
### 51. 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.
=> https://codeberg.org/snonux/gotop View on Codeberg
=> https://github.com/snonux/gotop View on GitHub
---
### 52. 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.
=> https://codeberg.org/snonux/japi View on Codeberg
=> https://github.com/snonux/japi View on GitHub
---
### 53. 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.
=> https://codeberg.org/snonux/rubyfy View on Codeberg
=> https://github.com/snonux/rubyfy View on GitHub
---
### 54. 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.
=> https://codeberg.org/snonux/perl-c-fibonacci View on Codeberg
=> https://github.com/snonux/perl-c-fibonacci View on GitHub
---
### 55. 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.
=> https://codeberg.org/snonux/netdiff View on Codeberg
=> https://github.com/snonux/netdiff View on GitHub
---
### 56. 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...
=> https://codeberg.org/snonux/perldaemon View on Codeberg
=> https://github.com/snonux/perldaemon View on GitHub
---
### 57. 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)
=> showcase/jsmstrade/image-1.png jsmstrade screenshot
> **โ ๏ธ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.
=> https://codeberg.org/snonux/jsmstrade View on Codeberg
=> https://github.com/snonux/jsmstrade View on GitHub
---
### 58. 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.
=> https://codeberg.org/snonux/muttdelay View on Codeberg
=> https://github.com/snonux/muttdelay View on GitHub
---
### 59. 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)
=> showcase/netcalendar/image-1.png netcalendar screenshot
> **โ ๏ธ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.
=> https://codeberg.org/snonux/netcalendar View on Codeberg
=> https://github.com/snonux/netcalendar View on GitHub
---
### 60. 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)
=> showcase/vs-sim/image-1.jpg vs-sim screenshot
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".
=> https://codeberg.org/snonux/vs-sim View on Codeberg
=> https://github.com/snonux/vs-sim View on GitHub
---
### 61. 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
=> https://codeberg.org/snonux/cpuinfo View on Codeberg
=> https://github.com/snonux/cpuinfo View on GitHub
---
### 62. 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.
=> https://codeberg.org/snonux/template View on Codeberg
=> https://github.com/snonux/template View on GitHub
---
### 63. 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.
=> https://codeberg.org/snonux/dyndns View on Codeberg
=> https://github.com/snonux/dyndns View on GitHub
---
### 64. 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)
=> showcase/debroid/image-1.png debroid screenshot
> **โ ๏ธ DEPRECATED:** This project is no longer maintained. No further updates, bug fixes, or feature additions will be made. Use at your own risk.
=> https://codeberg.org/snonux/debroid View on Codeberg
=> https://github.com/snonux/debroid View on GitHub
---
### 65. 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.
=> https://codeberg.org/snonux/perl-poetry View on Codeberg
=> https://github.com/snonux/perl-poetry View on GitHub
---
### 66. 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.
=> https://codeberg.org/snonux/hsbot View on Codeberg
=> https://github.com/snonux/hsbot View on GitHub
---
### 67. 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.
=> https://codeberg.org/snonux/ychat View on Codeberg
=> https://github.com/snonux/ychat View on GitHub
---
### 68. 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.
=> https://codeberg.org/snonux/snonux.foo View on Codeberg
=> https://github.com/snonux/snonux.foo View on GitHub
|