summaryrefslogtreecommitdiff
path: root/about/showcase.gmi.tpl
blob: aba26e62cc392d2f1c605b5e6dc912c43b7dba3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
# Project Showcase

Generated on: 2025-08-31

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, and licensing. The projects are ordered by recent activity, with the most actively maintained projects listed first.

<< template::inline::toc

## Overall Statistics

* πŸ“¦ Total Projects: 59
* πŸ“Š Total Commits: 11,848
* πŸ“ˆ Total Lines of Code: 206,416
* πŸ“„ Total Lines of Documentation: 23,246
* πŸ’» Languages: Go (32.9%), Java (19.6%), Perl (8.5%), C++ (8.3%), C (8.2%), C/C++ (5.9%), Shell (3.5%), Config (1.9%), HTML (1.8%), Ruby (1.7%), YAML (1.6%), HCL (1.3%), JSON (0.9%), Python (0.8%), CSS (0.8%), Make (0.7%), Raku (0.4%), TOML (0.4%), XML (0.3%), Haskell (0.3%), TypeScript (0.2%)
* πŸ“š Documentation: Text (50.6%), Markdown (49.4%)
* 🎡 Vibe-Coded Projects: 4 out of 59 (6.8%)
* πŸ€– AI-Assisted Projects (including vibe-coded): 9 out of 59 (15.3% AI-assisted, 84.7% human-only)
* πŸš€ Release Status: 35 released, 24 experimental (59.3% with releases, 40.7% experimental)

## Projects

### hexai

* πŸ’» Languages: Go (100.0%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 103
* πŸ“ˆ Lines of Code: 5521
* πŸ“„ Lines of Documentation: 399
* πŸ“… Development Period: 2025-08-01 to 2025-08-29
* πŸ”₯ Recent Activity: 8.1 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: v0.3.3 (2025-08-29)
* πŸ€– AI-Assisted: This project was partially created with the help of generative AI


=> showcase/hexai/image-1.png hexai screenshot

# Hexai

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

---

### conf

* πŸ’» Languages: Perl (27.4%), YAML (24.1%), Shell (23.8%), TOML (6.4%), Config (5.8%), CSS (5.7%), Ruby (4.2%), Lua (1.2%), Docker (0.7%), JSON (0.6%), INI (0.1%)
* πŸ“š Documentation: Text (70.2%), Markdown (29.8%)
* πŸ“Š Commits: 964
* πŸ“ˆ Lines of Code: 5749
* πŸ“„ Lines of Documentation: 1183
* πŸ“… Development Period: 2021-12-28 to 2025-08-31
* πŸ”₯ Recent Activity: 16.6 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* πŸ§ͺ Status: Experimental (no releases yet)


Certainly! However, the provided description ("Bapdidu di du di du dap dap dap!") does not contain any technical or contextual information about the "Jupdidu" project. To give a meaningful summary, I would need details such as the project's purpose, its main features, how it is implemented, and its architecture.

If you can provide a README, project documentation, or a brief description of what Jupdidu does, I can summarize it clearly and concisely, focusing on its functionality, usefulness, and technical implementation. Please share more information or context about the project!

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

---

### rexfiles

* πŸ’» Languages: Perl (28.0%), YAML (24.3%), Shell (23.3%), TOML (6.2%), Config (5.8%), CSS (5.7%), Ruby (4.3%), Lua (1.2%), Docker (0.7%), JSON (0.5%), INI (0.1%)
* πŸ“š Documentation: Text (70.2%), Markdown (29.8%)
* πŸ“Š Commits: 947
* πŸ“ˆ Lines of Code: 5715
* πŸ“„ Lines of Documentation: 1183
* πŸ“… Development Period: 2021-12-28 to 2025-08-13
* πŸ”₯ Recent Activity: 22.6 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* πŸ§ͺ Status: Experimental (no releases yet)


Jupdidu
=======

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

---

### hxcode

* πŸ’» Languages: JSON (53.6%), Ruby (19.3%), TypeScript (17.9%), JavaScript (3.2%), Python (3.1%), Shell (2.9%)
* πŸ“š Documentation: Markdown (96.5%), Text (3.5%)
* πŸ“Š Commits: 2
* πŸ“ˆ Lines of Code: 1796
* πŸ“„ Lines of Documentation: 114
* πŸ“… Development Period: 2025-07-22 to 2025-07-23
* πŸ”₯ Recent Activity: 39.7 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* πŸ§ͺ Status: Experimental (no releases yet)


# HxCode

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

---

### totalrecall

* πŸ’» Languages: Go (98.9%), Shell (0.5%), YAML (0.5%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 88
* πŸ“ˆ Lines of Code: 12003
* πŸ“„ Lines of Documentation: 361
* πŸ“… Development Period: 2025-07-14 to 2025-08-02
* πŸ”₯ Recent Activity: 40.1 days (avg. age of last 42 commits)
* βš–οΈ License: MIT
* 🏷️ Latest Release: v0.7.5 (2025-08-02)
* 🎡 Vibe-Coded: This project has been vibe coded


=> showcase/totalrecall/image-1.png totalrecall screenshot

# totalrecall - Bulgarian Anki Flashcard Generator

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

---

### gitsyncer

* πŸ’» Languages: Go (90.6%), Shell (7.8%), YAML (1.0%), JSON (0.7%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 104
* πŸ“ˆ Lines of Code: 9605
* πŸ“„ Lines of Documentation: 2433
* πŸ“… Development Period: 2025-06-23 to 2025-08-19
* πŸ”₯ Recent Activity: 44.9 days (avg. age of last 42 commits)
* βš–οΈ License: BSD-2-Clause
* 🏷️ Latest Release: v0.9.0 (2025-08-19)
* 🎡 Vibe-Coded: This project has been vibe coded


# GitSyncer

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

---

### timr

* πŸ’» Languages: Go (98.3%), YAML (1.7%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 21
* πŸ“ˆ Lines of Code: 873
* πŸ“„ Lines of Documentation: 137
* πŸ“… Development Period: 2025-06-25 to 2025-07-19
* πŸ”₯ Recent Activity: 64.1 days (avg. age of last 42 commits)
* βš–οΈ License: BSD-2-Clause
* 🏷️ Latest Release: v0.0.0 (2025-06-29)
* 🎡 Vibe-Coded: This project has been vibe coded


# timr

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

---

### tasksamurai

* πŸ’» Languages: Go (99.8%), YAML (0.2%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 216
* πŸ“ˆ Lines of Code: 6160
* πŸ“„ Lines of Documentation: 162
* πŸ“… Development Period: 2025-06-19 to 2025-07-12
* πŸ”₯ Recent Activity: 65.9 days (avg. age of last 42 commits)
* βš–οΈ License: BSD-2-Clause
* 🏷️ Latest Release: v0.9.2 (2025-07-02)
* 🎡 Vibe-Coded: This project has been vibe coded


=> showcase/tasksamurai/image-1.png tasksamurai screenshot

# Task Samurai

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

---

### ior

* πŸ’» Languages: Go (50.2%), C (43.4%), Raku (4.4%), Make (1.1%), C/C++ (0.9%)
* πŸ“š Documentation: Text (63.6%), Markdown (36.4%)
* πŸ“Š Commits: 331
* πŸ“ˆ Lines of Code: 12762
* πŸ“„ Lines of Documentation: 742
* πŸ“… Development Period: 2024-01-18 to 2025-07-14
* πŸ”₯ Recent Activity: 103.8 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* πŸ§ͺ Status: Experimental (no releases yet)
* πŸ€– AI-Assisted: This project was partially created with the help of generative AI


=> showcase/ior/image-1.png ior screenshot

# I/O Riot NG (aka ior)

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

---

### dtail

* πŸ’» 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: 1049
* πŸ“ˆ Lines of Code: 20091
* πŸ“„ Lines of Documentation: 5674
* πŸ“… Development Period: 2020-01-09 to 2025-06-20
* πŸ”₯ Recent Activity: 105.4 days (avg. age of last 42 commits)
* βš–οΈ License: Apache-2.0
* 🏷️ Latest Release: v4.3.3 (2024-08-23)
* πŸ€– AI-Assisted: This project was partially created with the help of generative AI


=> showcase/dtail/image-1.png dtail screenshot

DTail
=====

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

---

### wireguardmeshgenerator

* πŸ’» Languages: Ruby (73.5%), YAML (26.5%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 33
* πŸ“ˆ Lines of Code: 396
* πŸ“„ Lines of Documentation: 24
* πŸ“… Development Period: 2025-04-18 to 2025-05-11
* πŸ”₯ Recent Activity: 124.7 days (avg. age of last 42 commits)
* βš–οΈ License: Custom License
* 🏷️ Latest Release: v1.0.0 (2025-05-11)


# WireGuard Mesh Generator

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

---

### foostats

* πŸ’» Languages: Perl (100.0%)
* πŸ“š Documentation: Markdown (85.1%), Text (14.9%)
* πŸ“Š Commits: 76
* πŸ“ˆ Lines of Code: 1577
* πŸ“„ Lines of Documentation: 154
* πŸ“… Development Period: 2023-01-02 to 2025-08-31
* πŸ”₯ Recent Activity: 135.0 days (avg. age of last 42 commits)
* βš–οΈ License: Custom License
* 🏷️ Latest Release: v0.1.0 (2025-07-12)


# foostats

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

---

### ds-sim

* πŸ’» 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
* πŸ“… Development Period: 2008-05-15 to 2025-06-27
* πŸ”₯ Recent Activity: 138.1 days (avg. age of last 42 commits)
* βš–οΈ License: Custom License
* πŸ§ͺ Status: Experimental (no releases yet)
* πŸ€– AI-Assisted: This project was partially created with the help of generative AI


=> showcase/ds-sim/image-1.png ds-sim screenshot

# DS-Sim

=> https://codeberg.org/snonux/ds-sim View on Codeberg
=> https://github.com/snonux/ds-sim View on GitHub

---

### sillybench

* πŸ’» Languages: Go (90.9%), Shell (9.1%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 5
* πŸ“ˆ Lines of Code: 33
* πŸ“„ Lines of Documentation: 3
* πŸ“… Development Period: 2025-04-03 to 2025-04-03
* πŸ”₯ Recent Activity: 150.6 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* πŸ§ͺ Status: Experimental (no releases yet)


# Silly Benchmark

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

---

### gos

* πŸ’» Languages: Go (98.6%), YAML (1.1%), JSON (0.2%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 384
* πŸ“ˆ Lines of Code: 3951
* πŸ“„ Lines of Documentation: 342
* πŸ“… Development Period: 2024-05-04 to 2025-08-28
* πŸ”₯ Recent Activity: 154.1 days (avg. age of last 42 commits)
* βš–οΈ License: Custom License
* 🏷️ Latest Release: v1.0.0 (2025-03-04)


=> showcase/gos/image-1.png gos screenshot

# Gos (Go Social Media)

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

---

### rcm

* πŸ’» Languages: Ruby (99.8%), TOML (0.2%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 76
* πŸ“ˆ Lines of Code: 1373
* πŸ“„ Lines of Documentation: 48
* πŸ“… Development Period: 2024-12-05 to 2025-02-28
* πŸ”₯ Recent Activity: 191.3 days (avg. age of last 42 commits)
* βš–οΈ License: Custom License
* πŸ§ͺ Status: Experimental (no releases yet)


# rcm

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

---

### gemtexter

* πŸ’» Languages: Shell (68.1%), CSS (28.7%), Config (1.9%), HTML (1.3%)
* πŸ“š Documentation: Text (76.1%), Markdown (23.9%)
* πŸ“Š Commits: 466
* πŸ“ˆ Lines of Code: 2268
* πŸ“„ Lines of Documentation: 1180
* πŸ“… Development Period: 2021-05-21 to 2025-08-05
* πŸ”₯ Recent Activity: 245.5 days (avg. age of last 42 commits)
* βš–οΈ License: GPL-3.0
* 🏷️ Latest Release: 3.0.0 (2024-10-01)


The Gemtexter blog engine and static site generator
===================================================

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

---

### docker-gpodder-sync-server

* πŸ’» Languages: Make (100.0%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 4
* πŸ“ˆ Lines of Code: 17
* πŸ“„ Lines of Documentation: 3
* πŸ“… Development Period: 2024-03-24 to 2025-08-08
* πŸ”₯ Recent Activity: 399.5 days (avg. age of last 42 commits)
* βš–οΈ License: Custom License
* πŸ§ͺ Status: Experimental (no releases yet)


This project provides a Dockerized build environment for the GPodder sync server, specifically targeting the [mygpo](https://github.com/gpodder/mygpo) backend. The GPodder sync server enables users to synchronize podcast subscriptions and playback progress across multiple devices and clients, making it easier to keep listening experiences consistent. By containerizing the server with Docker, the project simplifies deployment and management, ensuring that all dependencies and configurations are encapsulated and reproducible.

The implementation centers around a Dockerfile and related configuration files that automate the setup of the mygpo server, including its Python dependencies and any required services (such as a database). Key features include ease of deployment (just a few Docker commands to get started), isolation from the host system, and portability across different environments. The architecture leverages Docker’s layered image system to build, run, and update the GPodder sync server efficiently, making it accessible for both development and production use.

=> https://codeberg.org/snonux/docker-gpodder-sync-server View on Codeberg
=> https://github.com/snonux/docker-gpodder-sync-server View on GitHub

---

### docker-radicale-server

* πŸ’» Languages: Make (57.5%), Docker (42.5%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 5
* πŸ“ˆ Lines of Code: 40
* πŸ“„ Lines of Documentation: 3
* πŸ“… Development Period: 2023-12-31 to 2025-08-11
* πŸ”₯ Recent Activity: 490.9 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* πŸ§ͺ Status: Experimental (no releases yet)


This project provides a Docker image for the [Radicale server](https://radicale.org), an open-source CalDAV and CardDAV server for managing calendars and contacts. By containerizing Radicale, the project makes it easy to deploy and run the server in isolated, reproducible environments, simplifying installation and upgrades. Users can quickly set up a personal or small-team calendar/contact server without worrying about system dependencies or manual configuration.

The Docker image is built to be lightweight and configurable, exposing necessary ports and allowing persistent storage of data via Docker volumes. The architecture typically involves a Dockerfile that installs Radicale and its dependencies, sets up configuration files, and defines entrypoints for running the server. This approach ensures portability, consistency across environments, and ease of integration with orchestration tools like Docker Compose or Kubernetes. Key features include simplified deployment, secure isolation, and support for custom configuration through environment variables or mounted files.

=> https://codeberg.org/snonux/docker-radicale-server View on Codeberg
=> https://github.com/snonux/docker-radicale-server View on GitHub

---

### quicklogger

* πŸ’» Languages: Go (97.6%), Shell (1.5%), TOML (0.9%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 32
* πŸ“ˆ Lines of Code: 917
* πŸ“„ Lines of Documentation: 33
* πŸ“… Development Period: 2024-01-20 to 2025-07-06
* πŸ”₯ Recent Activity: 501.3 days (avg. age of last 42 commits)
* βš–οΈ License: MIT
* 🏷️ Latest Release: v0.0.3 (2025-07-06)


=> showcase/quicklogger/image-1.png quicklogger screenshot

# Quick logger

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

---

### terraform

* πŸ’» Languages: HCL (96.6%), Make (1.9%), YAML (1.5%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 125
* πŸ“ˆ Lines of Code: 2851
* πŸ“„ Lines of Documentation: 52
* πŸ“… Development Period: 2023-08-27 to 2025-08-08
* πŸ”₯ Recent Activity: 527.1 days (avg. age of last 42 commits)
* βš–οΈ License: MIT
* πŸ§ͺ Status: Experimental (no releases yet)


# Terraform

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

---

### docker-anki-sync-server

* πŸ’» Languages: Docker (54.5%), Make (45.5%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 4
* πŸ“ˆ Lines of Code: 33
* πŸ“„ Lines of Documentation: 3
* πŸ“… Development Period: 2023-08-13 to 2025-07-31
* πŸ”₯ Recent Activity: 534.2 days (avg. age of last 42 commits)
* βš–οΈ License: MIT
* πŸ§ͺ Status: Experimental (no releases yet)


The **docker-anki-sync-server** project provides a Docker image for running an Anki sync server, which enables users to synchronize their Anki flashcard collections across multiple devices without relying on AnkiWeb. This is particularly useful for individuals or organizations who want to maintain control over their data, improve privacy, or operate in environments with restricted internet access. By containerizing the sync server, the project simplifies deployment, making it easy to set up a consistent and isolated environment on any system that supports Docker.

The implementation centers around creating a Docker image that packages the official Anki sync server along with its dependencies. The Dockerfile automates the installation and configuration process, exposing necessary ports and allowing for environment variable customization. Users can launch the server with a single command, and it integrates seamlessly with Anki clients by specifying the custom sync server URL. The architecture leverages Docker’s portability and isolation, ensuring that updates, scaling, and maintenance are straightforward and reproducible.

=> https://codeberg.org/snonux/docker-anki-sync-server View on Codeberg
=> https://github.com/snonux/docker-anki-sync-server View on GitHub

---

### gogios

* πŸ’» Languages: Go (94.4%), YAML (3.4%), JSON (2.2%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 77
* πŸ“ˆ Lines of Code: 1096
* πŸ“„ Lines of Documentation: 287
* πŸ“… Development Period: 2023-04-17 to 2025-06-12
* πŸ”₯ Recent Activity: 568.0 days (avg. age of last 42 commits)
* βš–οΈ License: Custom License
* 🏷️ Latest Release: v1.1.0 (2024-05-03)
* πŸ€– AI-Assisted: This project was partially created with the help of generative AI


=> showcase/gogios/image-1.png gogios screenshot

# Gogios

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

---

### gorum

* πŸ’» Languages: Go (91.3%), JSON (6.4%), YAML (2.3%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 82
* πŸ“ˆ Lines of Code: 1525
* πŸ“„ Lines of Documentation: 15
* πŸ“… Development Period: 2023-04-17 to 2023-11-19
* πŸ”₯ Recent Activity: 754.1 days (avg. age of last 42 commits)
* βš–οΈ 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.

# Gorum

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

---

### guprecords

* πŸ’» Languages: Raku (100.0%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 95
* πŸ“ˆ Lines of Code: 312
* πŸ“„ Lines of Documentation: 416
* πŸ“… Development Period: 2013-03-22 to 2025-05-18
* πŸ”₯ Recent Activity: 804.1 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: v1.0.0 (2023-04-29)


# guprecords - Global uptime records

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

---

### randomjournalpage

* πŸ’» Languages: Shell (94.1%), Make (5.9%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 8
* πŸ“ˆ Lines of Code: 51
* πŸ“„ Lines of Documentation: 26
* πŸ“… Development Period: 2022-06-02 to 2024-04-20
* πŸ”₯ Recent Activity: 818.8 days (avg. age of last 42 commits)
* βš–οΈ 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.

# Read a random journal

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

---

### sway-autorotate

* πŸ’» Languages: Shell (100.0%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 8
* πŸ“ˆ Lines of Code: 41
* πŸ“„ Lines of Documentation: 17
* πŸ“… Development Period: 2020-01-30 to 2025-04-30
* πŸ”₯ Recent Activity: 1112.3 days (avg. age of last 42 commits)
* βš–οΈ License: GPL-3.0
* πŸ§ͺ Status: Experimental (no releases yet)


# sway-autorotate

=> https://codeberg.org/snonux/sway-autorotate View on Codeberg
=> https://github.com/snonux/sway-autorotate View on GitHub

---

### algorithms

* πŸ’» Languages: Go (99.2%), Make (0.8%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 82
* πŸ“ˆ Lines of Code: 1728
* πŸ“„ Lines of Documentation: 18
* πŸ“… Development Period: 2020-07-12 to 2023-04-09
* πŸ”₯ Recent Activity: 1483.1 days (avg. age of last 42 commits)
* βš–οΈ 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 project is a collection of exercises and implementations based on an Algorithms lecture, designed primarily as a refresher for fundamental algorithmic concepts. It provides a structured environment for practicing and testing various algorithms, making it useful for students or professionals looking to reinforce their understanding of algorithm design and analysis. The project includes both unit tests and benchmarking capabilities, allowing users to verify correctness and measure the performance of their solutions.

The architecture is straightforward: algorithm implementations are organized in source files, with accompanying test suites to ensure reliability. The use of Makefile commands (e.g., make test and make bench) streamlines the process of running tests and benchmarks, promoting good development practices. This setup encourages iterative development and performance tuning, making the project both educational and practical for algorithm study and review.

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

---

### geheim

* πŸ’» Languages: Ruby (100.0%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 66
* πŸ“ˆ Lines of Code: 671
* πŸ“„ Lines of Documentation: 19
* πŸ“… Development Period: 2018-05-26 to 2025-01-21
* πŸ”₯ Recent Activity: 1484.9 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* πŸ§ͺ Status: Experimental (no releases yet)


# geheim.rb

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

---

### foo.zone

* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 3040
* πŸ“ˆ Lines of Code: 0
* πŸ“„ Lines of Documentation: 23
* πŸ“… Development Period: 2021-05-21 to 2022-04-02
* πŸ”₯ Recent Activity: 1498.7 days (avg. age of last 42 commits)
* βš–οΈ 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.

The foo.zone internet site
===========================

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

---

### perl-c-fibonacci

* πŸ’» Languages: C (80.4%), Make (19.6%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 4
* πŸ“ˆ Lines of Code: 51
* πŸ“„ Lines of Documentation: 69
* πŸ“… Development Period: 2014-03-24 to 2022-04-23
* πŸ”₯ Recent Activity: 1964.0 days (avg. age of last 42 commits)
* βš–οΈ 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

---

### ioriot

* πŸ’» 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
* πŸ“… Development Period: 2018-03-01 to 2020-01-22
* πŸ”₯ Recent Activity: 2505.5 days (avg. age of last 42 commits)
* βš–οΈ 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

# I/O Riot

## Overview

<img src=doc/ioriot_small.png align=right />

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

I/O Riot is operated in 5 steps:

1. Capture: Record all I/O operations over a given period of time to a capture log.
2. Initialize: Copy the log to a load test machine and initialize the load test environment.
3. Replay: Drop all OS caches and replay all I/O operations.
4. Analyze: Look at the OS and hardware stats (throughput, I/O ops, load average) from the run phase and draw conclusions. The aim is to identify possible I/O bottlenecks.
5. Repeat: Repeat steps 2-4 multiple times but adjust OS and hardware settings in order to improve I/O performance.

Examples of OS and hardware settings and adjustments:

* Change of system parameters (file system mount options, file system caching, file system type, file system creation flags).
* Replay the I/O at different speed(s).
* Replay the I/O with modified pattern(s) (e.g. remove reads from the replay journal).
* Replay the I/O on different types of hardware.

The file system fragmentation (depending on the file system type and utilisation) might affect I/O performance as well. Therefore, replaying the I/O will not give the exact same result as on a production system. But it provides a pretty good way to determine I/O bottlenecks. As a rule of thumb file system fragmentation will not be an issue, unless the file system begins to fill up. Modern file systems (such as Ext4) will slowly start to suffer from fragmentation and slow down then.

## Benefits

In contrast to traditional I/O benchmarking tools, I/O Riot reproduces real production I/O, and does not rely on a pre-defined set of I/O operations.

Also, I/O Riot only requires a server machine for capturing and another server machine for replaying. A traditional load test environment would usually be a distributed system which can consist of many components and machines. Such a distributed system can become quite complex which makes it difficult to isolate possible I/O bottlenecks. For example in order to trigger I/O events a client application would usually have to call a remote server application. The remote server application itself would query a database and the database would trigger the actual I/O operations in Linux. Furthermore, it is not easy to switch forth and back between hardware and OS settings. For example without a backup and restore procedure a database would most likely be corrupt after reformatting the data partitions with a different file system type.

The benefits of I/O Riot are:

* It is easy to determine whether a new hardware type is suitable for an already existing application.
* It is easy to change OS and hardware for performance tests and optimizations.
* Findings can be applied to production machines in order to optimize OS configuration and to save hardware costs.
* Benchmarks are based on production I/O patterns and not on artificial I/O patterns.
* Log files can be modified to see whether a change in the application behavior would improve I/O performance (without actually touching the application code)
* Log files could be generated synthetically in order to find out how a new application would perform (even if there isn't any code for the new application yet)
* It identifies possible flaws in the applications (e.g. Java programs which produce I/O operations on the server machines). Findings can be reported to the corresponding developers so that changes can be introduced to improve the applications I/O performance.
* It captures I/O in Linux Kernel space (very efficient, no system slowdowns even under heavy I/O load)
* It replays I/O via a tool developed in C with as little overhead as possible.

# Send in patches

Patches of any kind (bug fixes, new features...) are welcome! I/O Riot is new software and not everything might be perfect yet. Also, I/O Riot is used for a very specific use case at Mimecast. It may need tuning or extension for your use case. It will grow and mature over time.

This is also potentially a great tool just for analysing (not replaying) the I/O, therefore it would be a great opportunity to add more features related to that (e.g. more stats, filters, etc.).

Future work will also include file hole support and I/O support for memory mapped files.

# How to install I/O Riot

I/O Riot depends on SystemTap and a compatible version of the Linux Kernel. To get started have a read through the [installation guide](doc/markdown/installation.md).

# How to use I/O Riot

Check out the [I/O Riot usage guide](doc/markdown/usage.md) for a full usage workflow demonstration.

# Appendix

## Supported file systems

Currently I/O Riot supports replaying I/O on ``ext2``, ``ext3``, ``ext4`` and ``xfs``. However, it should be straightforward add additional file systems. 

## Supported syscalls

Currently, these file I/O related syscalls are supported (as of CentOS 7):

```code
open
openat
lseek
llseek
fcntl
creat
write
writev
unlink
unlinkat
rename
renameat
renameat2
read
readv
readahead - Initial support only
readdir
readlink
readlinkat
fdatasync
fsync
sync_file_range - Initial support only
sync
syncfs
close
getdents
mkdir
rmdir
mkdirat
stat
statfs - Initial support only
statfs64 - Initial support only
fstatfs - Initial support only
fstatfs64 - Initial support only
lstat
fstat
fstatat
chmod
fchmodat
fchmod
chown
chown16
lchown
lchown16
fchown
fchown16
fchownat
mmap2 - Initial support only
mremap - Initial support only
munmap - Initial support only
msync - Initial support only
exit_group - To detect process termination (closing all open file handles)
```

## Source code documentation

The documentation of the source code can be generated via the Doxygen Framework. To install doxygen run ``sudo yum install doxygen`` and to generate the documentation run ``make doxygen`` in the top level source directory.  Once done, the resulting documentation can be found in the ``doc/html`` subfolder of the project. It is worthwhile to start from ``ioriot/src/main.c`` and read your way through. Functions are generally documented in the header files. Exceptions are static functions which don't have any separate declarations.

More
====

* [How to contribute](CONTRIBUTING.md)
* [Code of conduct](CODE_OF_CONDUCT.md)
* [License](LICENSE)

Credits
=======

* I/O Riot was created by **Paul Buetow** *<pbuetow@mimecast.com>*

* Thank you to **Vlad-Marian Marian** for creating the I/O Riot logo.

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

---

### photoalbum

* πŸ’» Languages: Shell (78.1%), Make (13.5%), Config (8.4%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 153
* πŸ“ˆ Lines of Code: 311
* πŸ“„ Lines of Documentation: 45
* πŸ“… Development Period: 2011-11-19 to 2022-02-20
* πŸ”₯ Recent Activity: 2930.0 days (avg. age of last 42 commits)
* βš–οΈ 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.

NAME
    photoalbum - photoalbum is a minimal bash script for linux to generate
    static web photo albums.

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

---

### staticfarm-apache-handlers

* πŸ’» Languages: Perl (96.4%), Make (3.6%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 3
* πŸ“ˆ Lines of Code: 919
* πŸ“„ Lines of Documentation: 12
* πŸ“… Development Period: 2015-01-02 to 2021-11-04
* πŸ”₯ Recent Activity: 3014.3 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 1.1.3 (2015-01-02)

⚠️  **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.

NAME
    staticfarm-apache-handlers

=> https://codeberg.org/snonux/staticfarm-apache-handlers View on Codeberg
=> https://github.com/snonux/staticfarm-apache-handlers View on GitHub

---

### dyndns

* πŸ’» Languages: Shell (100.0%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 3
* πŸ“ˆ Lines of Code: 18
* πŸ“„ Lines of Documentation: 49
* πŸ“… Development Period: 2014-03-24 to 2021-11-05
* πŸ”₯ Recent Activity: 3250.1 days (avg. age of last 42 commits)
* βš–οΈ 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.

dyndns updater
==============

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

---

### mon

* πŸ’» Languages: Perl (96.5%), Shell (1.8%), Make (1.2%), Config (0.4%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 7
* πŸ“ˆ Lines of Code: 5360
* πŸ“„ Lines of Documentation: 789
* πŸ“… Development Period: 2015-01-02 to 2021-11-05
* πŸ”₯ Recent Activity: 3516.8 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 1.0.1 (2015-01-02)

⚠️  **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.

NAME
    mon - A Humble Monitoring API Tool for
    https://github.com/Crapworks/RESTlos

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

---

### rubyfy

* πŸ’» Languages: Ruby (98.5%), JSON (1.5%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 34
* πŸ“ˆ Lines of Code: 273
* πŸ“„ Lines of Documentation: 32
* πŸ“… Development Period: 2015-09-29 to 2021-11-05
* πŸ”₯ Recent Activity: 3521.0 days (avg. age of last 42 commits)
* βš–οΈ License: Apache-2.0
* 🏷️ Latest Release: 0 (2015-10-26)

⚠️  **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.

Rubyfy
======

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

---

### pingdomfetch

* πŸ’» Languages: Perl (97.3%), Make (2.7%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 9
* πŸ“ˆ Lines of Code: 1839
* πŸ“„ Lines of Documentation: 412
* πŸ“… Development Period: 2015-01-02 to 2021-11-05
* πŸ”₯ Recent Activity: 3600.6 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 1.0.2 (2015-01-02)

⚠️  **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.

NAME
    pingdomfetch - A small and humble tool to fetch availability stats from
    Pingdom and notify via E-Mail

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

---

### gotop

* πŸ’» Languages: Go (98.0%), Make (2.0%)
* πŸ“š Documentation: Markdown (50.0%), Text (50.0%)
* πŸ“Š Commits: 57
* πŸ“ˆ Lines of Code: 499
* πŸ“„ Lines of Documentation: 8
* πŸ“… Development Period: 2015-05-24 to 2021-11-03
* πŸ”₯ Recent Activity: 3611.3 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 0.1 (2015-06-01)

⚠️  **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.

gotop
=====

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

---

### debroid

* πŸ’» Languages: Shell (92.0%), Make (8.0%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 16
* πŸ“ˆ Lines of Code: 88
* πŸ“„ Lines of Documentation: 148
* πŸ“… Development Period: 2015-06-18 to 2015-12-05
* πŸ”₯ Recent Activity: 3715.1 days (avg. age of last 42 commits)
* βš–οΈ 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.

=> showcase/debroid/image-1.png debroid screenshot

**Debroid** is a project that enables users to install a full Debian GNU/Linux environment (using a chroot) on an LG G3 D855 smartphone running CyanogenMod 13 (Android 6). By leveraging root access and developer mode, Debroid allows the phone to run a standard Debian Jessie userland alongside Android, effectively turning the device into a dual-purpose system. This is particularly useful for developers, tinkerers, or anyone needing a full Linux environment on their Android device for tasks such as software development, running Linux-specific tools, or learning Linux without needing a separate computer.

The implementation involves several key steps and features: First, a Debian base image is created on a Linux PC using debootstrap, then transferred to the phone’s SD card. On the phone, the image is mounted as a loopback device, and essential Android and Linux filesystems (like /proc, /dev, /sys, and storage) are bind-mounted into the chroot environment. The second stage of debootstrap is completed inside the chroot on the phone, finalizing the Debian installation. Custom scripts are used to automate entering the chroot and starting services, and integration with Android’s startup scripts ensures the environment can be launched automatically. The architecture relies on chroot isolation, loopback mounting, and careful integration between Android and Debian filesystems, providing a flexible, powerful Linux environment on mobile hardware.

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

---

### xerl

* πŸ’» Languages: Perl (98.4%), Config (1.1%), Make (0.5%)
* πŸ“Š Commits: 670
* πŸ“ˆ Lines of Code: 1667
* πŸ“… Development Period: 2011-03-06 to 2017-01-01
* πŸ”₯ Recent Activity: 3933.1 days (avg. age of last 42 commits)
* βš–οΈ License: Custom License
* 🏷️ Latest Release: v1.0.0 (2018-12-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.

STYLEGUIDE:

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

---

### fapi

* πŸ’» Languages: Python (96.6%), Make (3.1%), Config (0.3%)
* πŸ“š Documentation: Text (98.3%), Markdown (1.7%)
* πŸ“Š Commits: 219
* πŸ“ˆ Lines of Code: 1681
* πŸ“„ Lines of Documentation: 539
* πŸ“… Development Period: 2014-03-10 to 2021-11-03
* πŸ”₯ Recent Activity: 3993.1 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 1.0.2 (2014-11-17)

⚠️  **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.

NAME
    fapi - A humble command line tool to manage F5 BigIP loadbalancers

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

---

### template

* πŸ’» Languages: Make (89.2%), Shell (10.8%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 22
* πŸ“ˆ Lines of Code: 65
* πŸ“„ Lines of Documentation: 228
* πŸ“… Development Period: 2013-03-22 to 2021-11-04
* πŸ”₯ Recent Activity: 4047.5 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 0.0.0.0 (2013-03-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.

NAME
    template - A template project

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

---

### muttdelay

* πŸ’» Languages: Make (47.1%), Shell (46.3%), Vim Script (5.9%), Config (0.7%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 41
* πŸ“ˆ Lines of Code: 136
* πŸ“„ Lines of Documentation: 96
* πŸ“… Development Period: 2013-03-22 to 2021-11-05
* πŸ”₯ Recent Activity: 4060.5 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 0.2.0 (2014-07-05)

⚠️  **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.

NAME
    muttdelay - A bash script to delay mails written via mutt

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

---

### netdiff

* πŸ’» Languages: Shell (52.2%), Make (46.3%), Config (1.5%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 42
* πŸ“ˆ Lines of Code: 134
* πŸ“„ Lines of Documentation: 106
* πŸ“… Development Period: 2013-03-22 to 2021-11-05
* πŸ”₯ Recent Activity: 4068.0 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 0.1.5 (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.

NAME
    netdiff - A simple script to diff a file or a directory of two hosts
    over the network.

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

---

### pwgrep

* πŸ’» Languages: Shell (85.0%), Make (15.0%)
* πŸ“š Documentation: Text (80.8%), Markdown (19.2%)
* πŸ“Š Commits: 142
* πŸ“ˆ Lines of Code: 493
* πŸ“„ Lines of Documentation: 26
* πŸ“… Development Period: 2009-09-27 to 2021-11-02
* πŸ”₯ Recent Activity: 4111.3 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 0.9.3 (2014-06-14)

⚠️  **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.

pwgrep
======

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

---

### japi

* πŸ’» Languages: Perl (78.3%), Make (21.7%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 41
* πŸ“ˆ Lines of Code: 286
* πŸ“„ Lines of Documentation: 144
* πŸ“… Development Period: 2013-03-22 to 2021-11-05
* πŸ”₯ Recent Activity: 4116.3 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 0.4.3 (2014-06-16)

⚠️  **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.

NAME
    japi - A Humble Jira API Tool

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

---

### perl-poetry

* πŸ’» Languages: Perl (100.0%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 2
* πŸ“ˆ Lines of Code: 191
* πŸ“„ Lines of Documentation: 8
* πŸ“… Development Period: 2014-03-24 to 2014-03-24
* πŸ”₯ Recent Activity: 4177.6 days (avg. age of last 42 commits)
* βš–οΈ 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-poetry
===========

=> https://codeberg.org/snonux/perl-poetry View on Codeberg
=> https://github.com/snonux/perl-poetry View on GitHub

---

### ipv6test

* πŸ’» Languages: Perl (100.0%)
* πŸ“Š Commits: 7
* πŸ“ˆ Lines of Code: 80
* πŸ“… Development Period: 2011-07-09 to 2015-01-13
* πŸ”₯ Recent Activity: 4257.6 days (avg. age of last 42 commits)
* βš–οΈ 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 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

---

### cpuinfo

* πŸ’» Languages: Shell (53.2%), Make (46.8%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 28
* πŸ“ˆ Lines of Code: 124
* πŸ“„ Lines of Documentation: 75
* πŸ“… Development Period: 2010-11-05 to 2021-11-05
* πŸ”₯ Recent Activity: 4298.3 days (avg. age of last 42 commits)
* βš–οΈ 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** is a lightweight command-line utility designed to display detailed information about the system's CPU in a human-readable format. Its primary function is to extract and present key processor dataβ€”such as model name, cores, cache size, and supported featuresβ€”by parsing the `/proc/cpuinfo` file found on Linux systems. This makes it a handy tool for users and administrators who need quick insights into the hardware without manually sifting through raw system files.

The tool is implemented as a simple shell script that leverages AWK, a powerful text-processing utility, to filter and format the contents of `/proc/cpuinfo`. This approach keeps the utility fast, portable, and easy to maintain, as it does not require any external dependencies beyond standard Unix tools. The architecture is straightforward: upon execution, `cpuinfo` runs AWK commands to extract relevant fields and outputs them in a clear, organized manner. This simplicity and efficiency make `cpuinfo` especially useful for scripting, troubleshooting, or inventorying hardware across multiple systems.

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

---

### loadbars

* πŸ’» Languages: Perl (97.4%), Make (2.6%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 527
* πŸ“ˆ Lines of Code: 1828
* πŸ“„ Lines of Documentation: 100
* πŸ“… Development Period: 2010-11-05 to 2015-05-23
* πŸ”₯ Recent Activity: 4328.4 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: 0.7.5 (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.

loadbars: source code repository.

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

---

### perldaemon

* πŸ’» Languages: Perl (74.2%), Shell (22.2%), Config (3.6%)
* πŸ“Š Commits: 110
* πŸ“ˆ Lines of Code: 659
* πŸ“… Development Period: 2011-02-05 to 2022-04-21
* πŸ”₯ Recent Activity: 4472.6 days (avg. age of last 42 commits)
* βš–οΈ 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.

TOC:
01. HELLO WORLD
02. QUICK START GUIDE
03. CONFIGURATION
04. HIGH RESOLUTION SCHEDULING TIME
05. WRITING YOUR OWN MODULES

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

---

### awksite

* πŸ’» Languages: AWK (72.1%), HTML (16.4%), Config (11.5%)
* πŸ“š Documentation: Text (60.0%), Markdown (40.0%)
* πŸ“Š Commits: 3
* πŸ“ˆ Lines of Code: 122
* πŸ“„ Lines of Documentation: 10
* πŸ“… Development Period: 2011-01-27 to 2014-06-22
* πŸ”₯ Recent Activity: 4708.9 days (avg. age of last 42 commits)
* βš–οΈ License: No license found
* 🏷️ Latest Release: v0.2 (2011-01-27)

⚠️  **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.

Awksite is a lightweight CGI (Common Gateway Interface) application designed to generate dynamic HTML websites using GNU AWK, a powerful text-processing language available on most Unix-like systems. Its primary function is to allow users to create and serve dynamic web content without the need for more complex web frameworks or server-side languages. By leveraging AWK scripts, Awksite processes input data and templates to produce HTML pages on-the-fly, making it especially useful for simple websites, dashboards, or reports where minimal dependencies and ease of deployment are priorities.

The core architecture of Awksite revolves around using AWK as the backend engine for handling HTTP requests and generating responses. When a request is made to the server, the CGI script invokes AWK, which reads templates and data files, processes them according to user-defined logic, and outputs HTML content. This approach keeps the application portable and easy to maintain, as it only requires GNU AWK and a web server capable of running CGI scripts. Key features include dynamic content generation, template support, and compatibility with a wide range of Unix-like systems, making Awksite a practical solution for users seeking a simple, scriptable way to build dynamic web pages.

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

---

### jsmstrade

* πŸ’» Languages: Java (76.0%), Shell (15.4%), XML (8.6%)
* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 20
* πŸ“ˆ Lines of Code: 720
* πŸ“„ Lines of Documentation: 6
* πŸ“… Development Period: 2008-06-21 to 2021-11-03
* πŸ”₯ Recent Activity: 4771.5 days (avg. age of last 42 commits)
* βš–οΈ License: Custom License
* 🏷️ Latest Release: v0.3 (2009-02-08)

⚠️  **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/jsmstrade/image-1.png jsmstrade screenshot

jsmstrade
=========

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

---

### ychat

* πŸ’» Languages: C++ (62.8%), C/C++ (27.1%), HTML (3.1%), Config (2.5%), Perl (1.9%), Shell (1.9%), Make (0.4%), CSS (0.2%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 67
* πŸ“ˆ Lines of Code: 27104
* πŸ“„ Lines of Documentation: 109
* πŸ“… Development Period: 2008-05-15 to 2014-07-01
* πŸ”₯ Recent Activity: 5372.5 days (avg. age of last 42 commits)
* βš–οΈ License: GPL-2.0
* 🏷️ 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; Homepage: www.yChat.org; Version 0.7.9.5-RELEASE

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

---

### netcalendar

* πŸ’» Languages: Java (83.0%), HTML (12.9%), XML (3.0%), CSS (0.8%), Make (0.2%)
* πŸ“š Documentation: Text (89.7%), Markdown (10.3%)
* πŸ“Š Commits: 50
* πŸ“ˆ Lines of Code: 17380
* πŸ“„ Lines of Documentation: 947
* πŸ“… Development Period: 2009-02-07 to 2021-05-01
* πŸ”₯ Recent Activity: 5402.2 days (avg. age of last 42 commits)
* βš–οΈ License: GPL-2.0
* 🏷️ Latest Release: v0.1 (2009-02-08)

⚠️  **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/netcalendar/image-1.png netcalendar screenshot

Quick howto for the NetCalendar 
===============================

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

---

### hsbot

* πŸ’» Languages: Haskell (98.5%), Make (1.5%)
* πŸ“Š Commits: 80
* πŸ“ˆ Lines of Code: 601
* πŸ“… Development Period: 2009-11-22 to 2011-10-17
* πŸ”₯ Recent Activity: 5497.9 days (avg. age of last 42 commits)
* βš–οΈ 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.

REQUIREMENTS:

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

---

### fype

* πŸ’» Languages: C (63.7%), C/C++ (25.3%), HTML (9.2%), Make (1.8%)
* πŸ“š Documentation: Text (100.0%)
* πŸ“Š Commits: 99
* πŸ“ˆ Lines of Code: 6450
* πŸ“„ Lines of Documentation: 516
* πŸ“… Development Period: 2008-05-15 to 2014-06-30
* πŸ”₯ Recent Activity: 5628.2 days (avg. age of last 42 commits)
* βš–οΈ 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.

fype: source code repository.

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

---

### vs-sim

* πŸ“š Documentation: Markdown (100.0%)
* πŸ“Š Commits: 411
* πŸ“ˆ Lines of Code: 0
* πŸ“„ Lines of Documentation: 7
* πŸ“… Development Period: 2008-05-15 to 2015-05-23
* πŸ”₯ Recent Activity: 5858.8 days (avg. age of last 42 commits)
* βš–οΈ 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
======

=> https://codeberg.org/snonux/vs-sim View on Codeberg
=> https://github.com/snonux/vs-sim View on GitHub