summaryrefslogtreecommitdiff
path: root/about/showcase.gmi.tpl
blob: b71aec63cdd56d20180ffa1f606a6923971f3e52 (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
# Project Showcase

Generated on: 2026-03-12

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: 64
* ๐Ÿ“Š Total Commits: 13,595
* ๐Ÿ“ˆ Total Lines of Code: 334,197
* ๐Ÿ“„ Total Lines of Documentation: 46,922
* ๐Ÿ’ป Languages: Go (53.7%), Java (12.3%), C (5.8%), CSS (5.3%), YAML (4.7%), Perl (4.3%), HTML (2.9%), Shell (2.6%), Python (2.1%), C/C++ (1.3%), JSON (1.1%), Config (1.0%), Ruby (0.9%), HCL (0.8%), Make (0.4%), XML (0.2%), Haskell (0.2%), JavaScript (0.1%), Raku (0.1%)
* ๐Ÿ“š Documentation: Markdown (74.1%), Text (24.7%), LaTeX (1.2%)
* ๐Ÿš€ Release Status: 42 released, 22 experimental (65.6% with releases, 34.4% experimental)

## Projects

### 1. ior 1โ†1

* ๐Ÿ’ป Languages: Go (88.9%), C (10.6%), JSON (0.3%), C/C++ (0.2%)
* ๐Ÿ“š Documentation: Markdown (85.8%), Text (14.2%)
* ๐Ÿ“Š Commits: 732
* ๐Ÿ“ˆ Lines of Code: 55808
* ๐Ÿ“„ Lines of Documentation: 3394
* ๐Ÿท๏ธ Tags: 0
* ๐Ÿ“… Development Period: 2024-01-18 to 2026-03-11
* ๐Ÿ† Score: 111.7 (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

---

### 2. timesamurai 2

* ๐Ÿ’ป Languages: Go (99.2%), Shell (0.6%), YAML (0.1%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 91
* ๐Ÿ“ˆ Lines of Code: 9493
* ๐Ÿ“„ Lines of Documentation: 112
* ๐Ÿท๏ธ Tags: 4
* ๐Ÿ“… Development Period: 2025-06-25 to 2026-03-07
* ๐Ÿ† Score: 59.3 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: MIT
* ๐Ÿท๏ธ Latest Release: v0.7.0 (2026-03-05)


> **๐Ÿšง 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

---

### 3. hexai 3โ†™2

* ๐Ÿ’ป Languages: Go (100.0%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 377
* ๐Ÿ“ˆ Lines of Code: 31218
* ๐Ÿ“„ Lines of Documentation: 4089
* ๐Ÿท๏ธ Tags: 50
* ๐Ÿ“… Development Period: 2025-08-01 to 2026-03-10
* ๐Ÿ† Score: 50.6 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: No license found
* ๐Ÿท๏ธ Latest Release: v0.21.0 (2026-02-12)


=> 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

---

### 4. dotfiles 4โ†™3

* ๐Ÿ’ป Languages: Shell (66.6%), CSS (10.9%), Config (10.1%), TOML (10.0%), JSON (1.1%), Ruby (1.0%), INI (0.2%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 845
* ๐Ÿ“ˆ Lines of Code: 2990
* ๐Ÿ“„ Lines of Documentation: 5386
* ๐Ÿท๏ธ Tags: 0
* ๐Ÿ“… Development Period: 2023-07-30 to 2026-03-10
* ๐Ÿ† Score: 35.1 (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. loadbars 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: 25.5 (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

---

### 6. foostore 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: 17.6 (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

---

### 7. epimetheus 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: 14.5 (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

---

### 8. conf 8โ†™5

* ๐Ÿ’ป Languages: YAML (80.7%), Perl (9.9%), Shell (6.0%), Python (2.3%), Docker (0.7%), Config (0.2%), HTML (0.1%)
* ๐Ÿ“š Documentation: Markdown (97.1%), Text (2.9%)
* ๐Ÿ“Š Commits: 791
* ๐Ÿ“ˆ Lines of Code: 19132
* ๐Ÿ“„ Lines of Documentation: 6572
* ๐Ÿท๏ธ Tags: 0
* ๐Ÿ“… Development Period: 2021-12-28 to 2026-02-15
* ๐Ÿ† Score: 11.3 (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

---

### 9. scifi 9โ†™8

* ๐Ÿ’ป Languages: JSON (35.9%), CSS (30.6%), JavaScript (29.6%), HTML (3.8%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 23
* ๐Ÿ“ˆ Lines of Code: 1664
* ๐Ÿ“„ Lines of Documentation: 853
* ๐Ÿท๏ธ Tags: 0
* ๐Ÿ“… Development Period: 2026-01-25 to 2026-01-27
* ๐Ÿ† Score: 7.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

---

### 10. gitsyncer 10โ†–15

* ๐Ÿ’ป Languages: Go (93.4%), Shell (6.3%), JSON (0.3%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 132
* ๐Ÿ“ˆ Lines of Code: 11821
* ๐Ÿ“„ Lines of Documentation: 2456
* ๐Ÿท๏ธ Tags: 34
* ๐Ÿ“… Development Period: 2025-06-23 to 2026-03-11
* ๐Ÿ† Score: 5.5 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: BSD-2-Clause
* ๐Ÿท๏ธ Latest Release: v0.15.4 (2026-03-11)


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

---

### 11. log4jbench 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: 5.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

---

### 12. rcm 12โ†™10

* ๐Ÿ’ป Languages: Ruby (99.6%), TOML (0.4%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 109
* ๐Ÿ“ˆ Lines of Code: 1719
* ๐Ÿ“„ Lines of Documentation: 778
* ๐Ÿท๏ธ Tags: 3
* ๐Ÿ“… Development Period: 2024-12-05 to 2026-03-02
* ๐Ÿ† Score: 5.0 (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

---

### 13. yoga 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.8 (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

---

### 14. gogios 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.7 (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

---

### 15. totalrecall 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.7 (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

---

### 16. perc 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: 4.3 (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

---

### 17. tasksamurai 17โ†™16

* ๐Ÿ’ป Languages: Go (99.8%), YAML (0.2%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 235
* ๐Ÿ“ˆ Lines of Code: 6567
* ๐Ÿ“„ Lines of Documentation: 251
* ๐Ÿท๏ธ Tags: 10
* ๐Ÿ“… Development Period: 2025-06-19 to 2026-03-05
* ๐Ÿ† Score: 3.8 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: BSD-2-Clause
* ๐Ÿท๏ธ Latest Release: v0.11.4 (2026-03-05)


=> 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

---

### 18. gos 18โ†18

* ๐Ÿ’ป Languages: Go (99.5%), Shell (0.2%), JSON (0.2%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 402
* ๐Ÿ“ˆ Lines of Code: 4143
* ๐Ÿ“„ Lines of Documentation: 477
* ๐Ÿท๏ธ Tags: 13
* ๐Ÿ“… Development Period: 2024-05-04 to 2026-02-28
* ๐Ÿ† Score: 2.5 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: Custom License
* ๐Ÿท๏ธ Latest Release: v1.2.4 (2026-02-17)


=> 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

---

### 19. foostats 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.4 (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

---

### 20. timr 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.4 (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

---

### 21. dtail 21โ†™20

* ๐Ÿ’ป Languages: Go (93.9%), JSON (2.8%), C (2.0%), Make (0.5%), C/C++ (0.3%), Config (0.2%), Shell (0.2%), Docker (0.1%)
* ๐Ÿ“š Documentation: Text (79.4%), Markdown (20.6%)
* ๐Ÿ“Š Commits: 1104
* ๐Ÿ“ˆ Lines of Code: 20091
* ๐Ÿ“„ Lines of Documentation: 5674
* ๐Ÿท๏ธ Tags: 27
* ๐Ÿ“… Development Period: 2020-01-09 to 2025-06-20
* ๐Ÿ† Score: 2.2 (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

---

### 22. wireguardmeshgenerator 22โ†–23

* ๐Ÿ’ป Languages: Ruby (65.4%), YAML (34.6%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 36
* ๐Ÿ“ˆ Lines of Code: 563
* ๐Ÿ“„ Lines of Documentation: 24
* ๐Ÿท๏ธ Tags: 1
* ๐Ÿ“… Development Period: 2025-04-18 to 2026-01-20
* ๐Ÿ† 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

---

### 23. gemtexter 23โ†™22

* ๐Ÿ’ป Languages: CSS (55.3%), Python (16.1%), HTML (15.3%), JSON (6.6%), Shell (5.3%), Config (1.5%)
* ๐Ÿ“š Documentation: Text (70.2%), Markdown (29.8%)
* ๐Ÿ“Š Commits: 480
* ๐Ÿ“ˆ Lines of Code: 30319
* ๐Ÿ“„ Lines of Documentation: 1280
* ๐Ÿท๏ธ Tags: 6
* ๐Ÿ“… Development Period: 2021-05-21 to 2025-06-22
* ๐Ÿ† Score: 1.4 (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

---

### 24. goprecords 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

---

### 25. ds-sim 25โ†™21

* ๐Ÿ’ป Languages: Java (98.9%), Shell (0.6%), CSS (0.5%)
* ๐Ÿ“š Documentation: Markdown (98.7%), Text (1.3%)
* ๐Ÿ“Š Commits: 438
* ๐Ÿ“ˆ Lines of Code: 25762
* ๐Ÿ“„ Lines of Documentation: 3101
* ๐Ÿท๏ธ Tags: 0
* ๐Ÿ“… Development Period: 2008-05-15 to 2025-06-27
* ๐Ÿ† Score: 1.2 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: Custom License
* ๐Ÿงช Status: Experimental (no releases yet)


=> 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

---

### 26. quicklogger 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

---

### 27. sillybench 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.7 (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

---

### 28. terraform 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

---

### 29. guprecords 29โ†29

* ๐Ÿ’ป Languages: Raku (100.0%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 97
* ๐Ÿ“ˆ Lines of Code: 383
* ๐Ÿ“„ Lines of Documentation: 425
* ๐Ÿท๏ธ Tags: 1
* ๐Ÿ“… Development Period: 2013-03-22 to 2026-03-07
* ๐Ÿ† Score: 0.5 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: No license found
* ๐Ÿท๏ธ Latest Release: v1.0.0 (2023-04-29)


guprecords: source code repository.

=> https://codeberg.org/snonux/guprecords View on Codeberg
=> https://github.com/snonux/guprecords View on GitHub

---

### 30. geheim 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

---

### 31. gorum 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

---

### 32. docker-radicale-server 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

---

### 33. photoalbum 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

---

### 34. randomjournalpage 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

---

### 35. ioriot 35โ†35

* ๐Ÿ’ป Languages: C (55.5%), C/C++ (24.0%), Config (19.6%), Make (1.0%)
* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 50
* ๐Ÿ“ˆ Lines of Code: 12420
* ๐Ÿ“„ Lines of Documentation: 610
* ๐Ÿท๏ธ Tags: 8
* ๐Ÿ“… Development Period: 2018-03-01 to 2020-01-22
* ๐Ÿ† Score: 0.2 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: Apache-2.0
* ๐Ÿท๏ธ Latest Release: 0.5.1 (2019-01-04)

โš ๏ธ  **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.

=> 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

---

### 36. algorithms 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

---

### 37. ipv6test 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

---

### 38. staticfarm-apache-handlers 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

---

### 39. sway-autorotate 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

---

### 40. mon 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

---

### 41. fapi 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

---

### 42. pingdomfetch 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

---

### 43. fype 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

---

### 44. pwgrep 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

---

### 45. xerl 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

---

### 46. awksite 46โ†–61

* ๐Ÿ’ป Languages: AWK (72.1%), HTML (16.4%), Config (11.5%)
* ๐Ÿ“š Documentation: Text (50.0%), Markdown (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

---

### 47. gotop 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

---

### 48. japi 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

---

### 49. perldaemon 49โ†–51

* ๐Ÿ’ป Languages: Perl (72.7%), Shell (23.9%), Config (3.4%)
* ๐Ÿ“Š Commits: 111
* ๐Ÿ“ˆ Lines of Code: 611
* ๐Ÿท๏ธ Tags: 6
* ๐Ÿ“… Development Period: 2011-02-05 to 2026-03-07
* ๐Ÿ† Score: 0.1 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: Custom License
* ๐Ÿท๏ธ Latest Release: v1.4 (2022-04-29)


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

---

### 50. rubyfy 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

---

### 51. perl-c-fibonacci 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

---

### 52. netdiff 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

---

### 53. jsmstrade 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

---

### 54. muttdelay 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

---

### 55. netcalendar 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

---

### 56. cpuinfo 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

---

### 57. template 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

---

### 58. dyndns 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

---

### 59. debroid 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

---

### 60. perl-poetry 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

---

### 61. hsbot 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

---

### 62. ychat 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

---

### 63. vs-sim 63โ†63

* ๐Ÿ“š Documentation: Markdown (100.0%)
* ๐Ÿ“Š Commits: 412
* ๐Ÿ“ˆ Lines of Code: 0
* ๐Ÿ“„ Lines of Documentation: 7
* ๐Ÿท๏ธ Tags: 4
* ๐Ÿ“… Development Period: 2008-05-15 to 2015-05-23
* ๐Ÿ† Score: 0.0 (combines recent activity, code size, tags, and release status)
* โš–๏ธ License: No license found
* ๐Ÿท๏ธ Latest Release: v1.0 (2008-08-24)

โš ๏ธ  **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.

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

---

### 64. foo.zone 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.:

=> https://codeberg.org/snonux/foo.zone View on Codeberg
=> https://github.com/snonux/foo.zone View on GitHub