-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathnotfound.json
12663 lines (12663 loc) · 478 KB
/
notfound.json
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
[
{
"name": "Countly Community Edition",
"primary_url": "https://count.ly",
"description": "Real time mobile and web analytics, crash reporting and push notifications platform.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Nodejs/Docker`" },
"source_url": "/~https://github.com/countly",
"category": "/analytics"
},
{
"name": "Shynet",
"primary_url": "/~https://github.com/milesmcc/shynet",
"description": "Modern, privacy-friendly, and detailed web analytics that works without cookies or JS.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Python/Docker`" },
"category": "/analytics"
},
{
"name": "Socioboard",
"primary_url": "/~https://github.com/socioboard/Socioboard-5.0",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Nodejs`" },
"category": "/analytics"
},
{
"name": "Superset",
"primary_url": "http://superset.apache.org",
"description": "Modern data exploration and visualization platform.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Python`" },
"source_url": "/~https://github.com/apache/superset",
"category": "/analytics"
},
{
"name": "Swetrix",
"primary_url": "https://swetrix.com",
"description": "Ultimate, open-source web analytics to satisfy all your needs.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Docker`" },
"source_url": "/~https://github.com/Swetrix/selfhosting",
"demo_url": "https://swetrix.com/projects/STEzHcB1rALV",
"category": "/analytics"
},
{
"name": "Umami",
"primary_url": "https://umami.is",
"description": "Simple, fast, privacy-focused alternative to Google Analytics.",
"stack": "MIT",
"license": { "name": "`MIT` `Nodejs/Docker`" },
"source_url": "/~https://github.com/umami-software/umami",
"demo_url": "https://app.umami.is/share/8rmHaheU/umami.is",
"category": "/analytics"
},
{
"name": "Access to Memory (AtoM)",
"primary_url": "https://www.accesstomemory.org",
"description": "Web-based, open source application for standards-based archival description and access in a multilingual, multi-repository environment.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `PHP`" },
"source_url": "/~https://github.com/artefactual/atom",
"demo_url": "https://demo.accesstomemory.org/",
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "ArchiveBox",
"primary_url": "https://archivebox.io",
"description": "Self-hosted _wayback machine_ that creates HTML & screenshot archives of sites from your bookmarks, browsing history, RSS feeds, or other sources.",
"stack": "MIT",
"license": { "name": "`MIT` `Python/Docker`" },
"source_url": "/~https://github.com/ArchiveBox/ArchiveBox",
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "Archivematica",
"primary_url": "https://www.archivematica.org/en",
"description": "Mature digital preservation system designed to maintain standards-based, long-term access to collections of digital objects.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Python`" },
"source_url": "/~https://github.com/artefactual/archivematica",
"demo_url": "https://sandbox.archivematica.org/administration/accounts/login/",
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "ArchivesSpace",
"primary_url": "https://archivesspace.org",
"description": "Archives information management application for managing and providing Web access to archives, manuscripts and digital objects.",
"stack": "ECL-2.0",
"license": { "name": "`ECL-2.0` `Ruby`" },
"source_url": "/~https://github.com/archivesspace/archivesspace",
"demo_url": "https://archivesspace.org/application/demo",
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "CKAN",
"primary_url": "https://ckan.org",
"description": "CKAN is a tool for making open data websites.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Python`" },
"source_url": "/~https://github.com/ckan/ckan",
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "Collective Access - Providence",
"primary_url": "https://collectiveaccess.org",
"description": "Highly configurable Web-based framework for management, description, and discovery of digital and physical collections supporting a variety of metadata standards, data types, and media formats.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `PHP`" },
"source_url": "/~https://github.com/collectiveaccess/providence",
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "Ganymede",
"primary_url": "/~https://github.com/Zibbp/ganymede",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Docker`" },
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "LiveStreamDVR",
"primary_url": "/~https://github.com/MrBrax/LiveStreamDVR",
"stack": "MIT",
"license": { "name": "`MIT` `Python/Nodejs/Docker`" },
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "Omeka S",
"primary_url": "https://omeka.org/s",
"description": "Omeka S is a web publication system for universities, galleries, libraries, archives, and museums. It consists of a local network of independently curated exhibits sharing a collaboratively built pool of items, media, and their metadata.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Nodejs`" },
"source_url": "/~https://github.com/omeka/omeka-s",
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "Wayback",
"primary_url": "/~https://github.com/wabarc/wayback",
"description": "A self-hosted toolkit for archiving webpages to the Internet Archive, archive.today, IPFS, and local file systems.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Go`" },
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "Webarchive",
"primary_url": "/~https://github.com/derfenix/webarchive",
"description": "Lightweight self-hosted _wayback machine_ that creates HTML and PDF files from your bookmarks.",
"stack": "BSD-3-Clause",
"license": { "name": "`BSD-3-Clause` `Go`" },
"category": "/archiving-and-digital-preservation-dp"
},
{
"name": "Accelerated Text",
"primary_url": "/~https://github.com/accelerated-text/accelerated-text",
"description": "Automatically generate multiple natural language descriptions of your data varying in wording and structure.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Java`" },
"category": "/automation"
},
{
"name": "Activepieces",
"primary_url": "https://www.activepieces.com",
"description": "No-code business automation tool like Zapier or Tray. For example, you can send a Slack notification for each new Trello card.",
"stack": "MIT",
"license": { "name": "`MIT` `Typescript`" },
"source_url": "/~https://github.com/activepieces/activepieces",
"category": "/automation"
},
{
"name": "ActiveWorkflow",
"primary_url": "/~https://github.com/automaticmode/active_workflow",
"description": "An intelligent process and workflow automation platform based on software agents.",
"stack": "MIT",
"license": { "name": "`MIT` `Ruby`" },
"category": "/automation"
},
{
"name": "AmIUnique",
"primary_url": "https://amiunique.org",
"description": "Learn how identifiable you are on the Internet",
"stack": "MIT",
"license": { "name": "`MIT` `Java`" },
"source_url": "/~https://github.com/DIVERSIFY-project/amiunique",
"category": "/automation"
},
{
"name": "Apache Airflow",
"primary_url": "https://airflow.apache.org",
"description": "Airflow is a platform to programmatically author, schedule, and monitor workflows.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Python/Docker`" },
"source_url": "/~https://github.com/apache/airflow",
"category": "/automation"
},
{
"name": "Automatisch",
"primary_url": "https://automatisch.io",
"description": "Business automation tool that lets you connect different services like Twitter, Slack, and more to automate your business processes",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Docker`" },
"source_url": "/~https://github.com/automatisch/automatisch",
"category": "/automation"
},
{
"name": "betanin",
"primary_url": "/~https://github.com/sentriz/betanin",
"description": "Music organization man-in-the-middle of your torrent client and music player. Based on beets.io, similar to Sonarr and Radarr.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python/Docker`" },
"category": "/automation"
},
{
"name": "ChiefOnboarding",
"primary_url": "https://chiefonboarding.com",
"description": "Employee onboarding platform that allows you to provision user accounts and create sequences with todo items, resources, text/email/Slack messages, and more! Available as a web portal and Slack bot.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Docker`" },
"source_url": "/~https://github.com/chiefonboarding/ChiefOnboarding",
"category": "/automation"
},
{
"name": "Eonza",
"primary_url": "https://www.eonza.org",
"description": "Eonza is used to create scripts and automate tasks on servers or VPS hosting. Manage your servers from any browser on any device.",
"stack": "MIT",
"license": { "name": "`MIT` `Go`" },
"source_url": "/~https://github.com/gentee/eonza",
"demo_url": "https://playground.eonza.org/",
"category": "/automation"
},
{
"name": "Exadel CompreFace",
"primary_url": "https://exadel.com/solutions/compreface",
"description": "Face recognition system that provides REST API for face recognition, face detection, and other face services, and is easily deployed with docker. There are SDKs for Python and JavaScript languages. Can be used without prior machine learning skills.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Docker/Java/Nodejs`" },
"source_url": "/~https://github.com/exadel-inc/CompreFace",
"category": "/automation"
},
{
"name": "feed2toot",
"primary_url": "https://feed2toot.readthedocs.io/en/latest",
"description": "Feed2toot parses a RSS feed, extracts the last entries and sends them to Mastodon.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"source_url": "https://gitlab.com/chaica/feed2toot",
"category": "/automation"
},
{
"name": "feedmixer",
"primary_url": "/~https://github.com/cristoper/feedmixer",
"description": "FeedMixer is a WSGI",
"stack": "WTFPL",
"license": { "name": "`WTFPL` `Python`" },
"demo_url": "https://mretc.net/feedmixer/json?f=https://hnrss.org/newest&f=https://americancynic.net/atom.xml&n=1",
"category": "/automation"
},
{
"name": "Headphones",
"primary_url": "/~https://github.com/rembo10/headphones",
"description": "Automated music downloader for NZB and Torrent, written in Python. It supports SABnzbd, NZBget, Transmission, µTorrent, Deluge and Blackhole.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"category": "/automation"
},
{
"name": "Healthchecks",
"primary_url": "https://healthchecks.io",
"description": "Django app which listens for pings and sends alerts when pings are late.",
"stack": "BSD-3-Clause",
"license": { "name": "`BSD-3-Clause` `Python`" },
"source_url": "/~https://github.com/healthchecks/healthchecks",
"category": "/automation"
},
{
"name": "homebank-converter",
"primary_url": "/~https://github.com/Binnette/homebank-converter",
"description": "Web app to convert an export bank file to compatible Homebank csv.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `HTML5`" },
"demo_url": "https://binnette.github.io/homebank-converter/",
"category": "/automation"
},
{
"name": "HRConvert2",
"primary_url": "/~https://github.com/zelon88/HRConvert2",
"description": "Drag-and-drop file conversion server with session based authentication, automatic temporary file maintenance, and logging capability.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `PHP`" },
"category": "/automation"
},
{
"name": "Huginn",
"primary_url": "/~https://github.com/huginn/huginn",
"description": "Allows you to build agents that monitor and act on your behalf.",
"stack": "MIT",
"license": { "name": "`MIT` `Ruby`" },
"category": "/automation"
},
{
"name": "Kibitzr",
"primary_url": "https://kibitzr.github.io",
"description": "Lightweight personal web assistant with powerful integrations.",
"stack": "MIT",
"license": { "name": "`MIT` `Python`" },
"source_url": "/~https://github.com/kibitzr/kibitzr",
"category": "/automation"
},
{
"name": "Krayin",
"primary_url": "https://krayincrm.com",
"description": "Free and Opensource Laravel CRM Application.",
"stack": "MIT",
"license": { "name": "`MIT` `PHP`" },
"source_url": "/~https://github.com/krayin/laravel-crm",
"demo_url": "https://demo.krayincrm.com/",
"category": "/automation"
},
{
"name": "LazyLibrarian",
"primary_url": "https://gitlab.com/LazyLibrarian/LazyLibrarian",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"category": "/automation"
},
{
"name": "Leon",
"primary_url": "https://getleon.ai",
"description": "Open-source personal assistant who can live on your server.",
"stack": "MIT",
"license": { "name": "`MIT` `Nodejs`" },
"source_url": "/~https://github.com/leon-ai/leon",
"category": "/automation"
},
{
"name": "Lidarr",
"primary_url": "https://lidarr.audio",
"description": "Lidarr is a music collection manager for Usenet and BitTorrent users.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `C#/Docker`" },
"source_url": "/~https://github.com/Lidarr/Lidarr",
"category": "/automation"
},
{
"name": "Matchering",
"primary_url": "/~https://github.com/sergree/matchering",
"description": "A containerized web app for automated music mastering",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Docker`" },
"category": "/automation"
},
{
"name": "Medusa",
"primary_url": "https://pymedusa.com",
"description": "Automatic Video Library Manager for TV Shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"source_url": "/~https://github.com/pymedusa/Medusa",
"category": "/automation"
},
{
"name": "MetaTube",
"primary_url": "/~https://github.com/JVT038/MetaTube",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"category": "/automation"
},
{
"name": "MeTube",
"primary_url": "/~https://github.com/alexta69/metube",
"description": "Web GUI for youtube-dl, with playlist support. Allows downloading videos from dozens of websites.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Python/Nodejs/Docker`" },
"category": "/automation"
},
{
"name": "nefarious",
"primary_url": "/~https://github.com/lardbit/nefarious",
"description": "Web application that automates downloading Movies and TV Shows.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"category": "/automation"
},
{
"name": "OliveTin",
"primary_url": "/~https://github.com/OliveTin/OliveTin",
"description": "OliveTin is a web interface for running Linux shell commands.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Go`" },
"category": "/automation"
},
{
"name": "Patrowl",
"primary_url": "/~https://github.com/Patrowl/PatrowlManager",
"description": "Open Source, Smart and Scalable Security Operations Orchestration Platform.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Python`" },
"category": "/automation"
},
{
"name": "Podgrab",
"primary_url": "/~https://github.com/akhilrex/podgrab",
"description": "Lightweight podcast manager and automatic podcast episode downloader. It will monitor podcasts for your and download them automatically whenever a new episode goes live.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Docker/Go`" },
"category": "/automation"
},
{
"name": "pyLoad",
"primary_url": "https://pyload.net",
"description": "Lightweight, customizable and remotely manageable downloader for 1-click-hosting sites like rapidshare.com or uploaded.to.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"source_url": "/~https://github.com/pyload/pyload",
"category": "/automation"
},
{
"name": "Radarr",
"primary_url": "https://radarr.video",
"description": "Radarr is an independent fork of Sonarr reworked for automatically downloading movies via Usenet and BitTorrent, à la Couchpotato.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `C#/Docker`" },
"source_url": "/~https://github.com/Radarr/Radarr",
"category": "/automation"
},
{
"name": "SickChill",
"primary_url": "https://sickchill.github.io",
"description": "SickChill is an automatic video library manager for TV shows. It watches for new episodes of your favorite shows, and when they are posted it does its magic.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python/Docker`" },
"source_url": "/~https://github.com/SickChill/SickChill",
"category": "/automation"
},
{
"name": "SiteInspector",
"primary_url": "https://www.getsiteinspector.com",
"description": "Web-based tool for catching spelling errors, grammatical errors, broken links, and other errors on websites.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Docker`" },
"source_url": "/~https://github.com/siteinspector/siteinspector",
"category": "/automation"
},
{
"name": "Sonarr",
"primary_url": "https://sonarr.tv",
"description": "Automatic TV Shows downloader and manager for Usenet and BitTorrent. It can grab, sort and rename new episodes and automatically upgrade the quality of files already downloaded when a better quality format becomes available.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `C#/Docker`" },
"source_url": "/~https://github.com/Sonarr/Sonarr",
"category": "/automation"
},
{
"name": "StackStorm",
"primary_url": "https://stackstorm.com",
"description": "StackStorm",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Python`" },
"source_url": "/~https://github.com/StackStorm/st2",
"category": "/automation"
},
{
"name": "Tube Archivist",
"primary_url": "https://www.tubearchivist.com",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python/Docker`" },
"source_url": "/~https://github.com/tubearchivist/tubearchivist",
"category": "/automation"
},
{
"name": "tubesync",
"primary_url": "/~https://github.com/meeb/tubesync",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Docker/Python`" },
"category": "/automation"
},
{
"name": "ydl_api_ng",
"primary_url": "/~https://github.com/Totonyus/ydl_api_ng",
"description": "Simple youtube-dl REST API to launch downloads on a distant server.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"category": "/automation"
},
{
"name": "YoutubeDL-Material",
"primary_url": "/~https://github.com/Tzahi12345/YoutubeDL-Material",
"description": "Material Design inspired YouTube downloader, based on youtube-dl. Supports playlists, quality select, search, dark mode and much more, all with a clean and modern design.",
"stack": "MIT",
"license": { "name": "`MIT` `Nodejs/Docker`" },
"category": "/automation"
},
{
"name": "YoutubeDL-Server",
"primary_url": "/~https://github.com/nbr23/youtube-dl-server",
"description": "Web and REST interface for downloading videos onto a server.",
"stack": "MIT",
"license": { "name": "`MIT` `Python/Docker`" },
"category": "/automation"
},
{
"name": "yt-dlp Web UI",
"primary_url": "/~https://github.com/marcopeocchi/yt-dlp-web-ui",
"description": "Web GUI for yt-dlp.",
"stack": "MPL-2.0",
"license": { "name": "`MPL-2.0` `Docker/Go/Nodejs`" },
"category": "/automation"
},
{
"name": "µTask",
"primary_url": "/~https://github.com/ovh/utask",
"description": "Automation engine that models and executes business processes declared in yaml.",
"stack": "BSD-3-Clause",
"license": { "name": "`BSD-3-Clause` `Go/Docker`" },
"category": "/automation"
},
{
"name": "Antville",
"primary_url": "https://antville.org",
"description": "Free, open source project aimed at the development of a high performance, feature rich weblog hosting software.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Javascript`" },
"source_url": "/~https://github.com/antville/antville",
"category": "/blogging-platforms"
},
{
"name": "Blog",
"primary_url": "/~https://github.com/m1k1o/blog",
"description": "Facebook-styled blog. Free, extremely lightweight, single-user and easy to install.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `PHP`" },
"category": "/blogging-platforms"
},
{
"name": "Castopod",
"primary_url": "https://castopod.org",
"description": "A podcast management hosting platform that includes the latest podcast 2.0 standards, an automated Fediverse feed, analytics, an embeddable player, and more.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `PHP/Docker`" },
"source_url": "https://code.castopod.org/adaures/castopod",
"category": "/blogging-platforms"
},
{
"name": "Chyrp Lite",
"primary_url": "https://chyrplite.net",
"description": "Extra-awesome, extra-lightweight blog engine.",
"stack": "BSD-3-Clause",
"license": { "name": "`BSD-3-Clause` `PHP`" },
"source_url": "/~https://github.com/xenocrat/chyrp-lite",
"category": "/blogging-platforms"
},
{
"name": "Dotclear",
"primary_url": "https://dotclear.org",
"description": "Take control over your blog.",
"stack": "GPL-2.0",
"license": { "name": "`GPL-2.0` `PHP`" },
"source_url": "https://git.dotclear.org/dev/dotclear",
"category": "/blogging-platforms"
},
{
"name": "FlatPress",
"primary_url": "https://flatpress.org",
"description": "A lightweight, easy-to-set-up flat-file blogging engine.",
"stack": "GPL-2.0",
"license": { "name": "`GPL-2.0` `PHP`" },
"source_url": "/~https://github.com/flatpressblog/flatpress",
"category": "/blogging-platforms"
},
{
"name": "Ghost",
"primary_url": "https://ghost.org",
"description": "Just a blogging platform.",
"stack": "MIT",
"license": { "name": "`MIT` `Nodejs`" },
"source_url": "/~https://github.com/TryGhost/Ghost",
"category": "/blogging-platforms"
},
{
"name": "Haven",
"primary_url": "https://havenweb.org",
"description": "Private blogging system with markdown editing and built in RSS reader.",
"stack": "MIT",
"license": { "name": "`MIT` `Ruby`" },
"source_url": "/~https://github.com/havenweb/haven",
"demo_url": "https://havenweb.org/demo.html",
"category": "/blogging-platforms"
},
{
"name": "htmly",
"primary_url": "https://www.htmly.com",
"description": "Databaseless Blogging Platform",
"stack": "GPL-2.0",
"license": { "name": "`GPL-2.0` `PHP`" },
"source_url": "/~https://github.com/danpros/htmly",
"demo_url": "https://demo.htmly.com/",
"category": "/blogging-platforms"
},
{
"name": "Known",
"primary_url": "https://withknown.com",
"description": "A collaborative social publishing platform.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `PHP`" },
"source_url": "/~https://github.com/idno/known",
"category": "/blogging-platforms"
},
{
"name": "PluXml",
"primary_url": "https://pluxml.org",
"description": "XML-based blog/CMS platform.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `PHP`" },
"source_url": "/~https://github.com/pluxml/PluXml",
"category": "/blogging-platforms"
},
{
"name": "Serendipity",
"primary_url": "https://docs.s9y.org",
"description": "Serendipity",
"stack": "BSD-3-Clause",
"license": { "name": "`BSD-3-Clause` `PHP`" },
"source_url": "/~https://github.com/s9y/serendipity",
"category": "/blogging-platforms"
},
{
"name": "WriteFreely",
"primary_url": "https://writefreely.org",
"description": "Writing software for starting a minimalist, federated blog — or an entire community.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Go`" },
"source_url": "/~https://github.com/writefreely/writefreely",
"category": "/blogging-platforms"
},
{
"name": "Alf.io",
"primary_url": "https://alf.io",
"description": "The open source ticket reservation system.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Java`" },
"source_url": "/~https://github.com/alfio-event/alf.io",
"demo_url": "https://demo.alf.io/authentication",
"category": "/booking-and-scheduling"
},
{
"name": "Cal.com",
"primary_url": "https://cal.com",
"description": "The open-source online appointment scheduling system.",
"stack": "MIT",
"license": { "name": "`MIT` `Nodejs`" },
"source_url": "/~https://github.com/calcom/cal.com",
"demo_url": "https://app.cal.com/bailey",
"category": "/booking-and-scheduling"
},
{
"name": "Easy!Appointments",
"primary_url": "https://easyappointments.org",
"description": "A highly customizable web application that allows your customers to book appointments with you via the web.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `PHP`" },
"source_url": "/~https://github.com/alextselegidis/easyappointments",
"demo_url": "https://easyappointments.org/demo/",
"category": "/booking-and-scheduling"
},
{
"name": "QloApps",
"primary_url": "https://qloapps.com",
"description": "An open-source, customizable and intuitive web-based hotel reservation system and a booking engine.",
"stack": "OSL-3.0",
"license": { "name": "`OSL-3.0` `PHP/Nodejs`" },
"source_url": "/~https://github.com/webkul/hotelcommerce",
"demo_url": "https://demo.qloapps.com/",
"category": "/booking-and-scheduling"
},
{
"name": "Seatsurfing",
"primary_url": "https://seatsurfing.app",
"description": "Webbased app to book seats, desks and rooms for offices.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Docker`" },
"source_url": "/~https://github.com/seatsurfing/backend",
"demo_url": "https://seatsurfing.app/get-started/",
"category": "/booking-and-scheduling"
},
{
"name": "Briefkasten",
"primary_url": "/~https://github.com/ndom91/briefkasten",
"description": "Modern app for saving and managing your own bookmarks. Includes a browser extension.",
"stack": "MIT",
"license": { "name": "`MIT` `Nodejs/Docker`" },
"demo_url": "https://briefkastenhq.com/auth/signin",
"category": "/bookmarks-and-link-sharing"
},
{
"name": "Buku",
"primary_url": "/~https://github.com/jarun/Buku",
"description": "A powerful bookmark manager and a personal textual mini-web.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"category": "/bookmarks-and-link-sharing"
},
{
"name": "Espial",
"primary_url": "/~https://github.com/jonschoning/espial",
"description": "An open-source, web-based bookmarking server.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Haskell`" },
"category": "/bookmarks-and-link-sharing"
},
{
"name": "Firefox Account Server",
"primary_url": "https://mozilla-services.readthedocs.io/en/latest/howtos/run-fxa.html",
"description": "This allows you to host your own Firefox accounts server.",
"stack": "MPL-2.0",
"license": { "name": "`MPL-2.0` `Nodejs/Java`" },
"source_url": "/~https://github.com/mozilla/fxa",
"category": "/bookmarks-and-link-sharing"
},
{
"name": "Hackershare",
"primary_url": "/~https://github.com/hackershare/hackershare",
"description": "Social bookmarks website for hackers.",
"stack": "MIT",
"license": { "name": "`MIT` `Ruby`" },
"demo_url": "https://hackershare.dev/en",
"category": "/bookmarks-and-link-sharing"
},
{
"name": "LinkAce",
"primary_url": "https://www.linkace.org",
"description": "A bookmark archive with automatic backups to the Internet Archive, link monitoring, and a full REST API. Installation is done via Docker, or as a simple PHP application.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Docker/PHP`" },
"source_url": "/~https://github.com/Kovah/LinkAce",
"demo_url": "https://demo.linkace.org/guest/links",
"category": "/bookmarks-and-link-sharing"
},
{
"name": "linkding",
"primary_url": "/~https://github.com/sissbruecker/linkding",
"description": "Minimal bookmark management with a fast and clean UI. Simple installation through Docker and can run on your Raspberry Pi.",
"stack": "MIT",
"license": { "name": "`MIT` `Docker/Python/Nodejs`" },
"category": "/bookmarks-and-link-sharing"
},
{
"name": "LinkWarden",
"primary_url": "https://linkwarden.app",
"description": "A self-hosted bookmark + archive manager to store your useful links.",
"stack": "MIT",
"license": { "name": "`MIT` `Docker/Nodejs`" },
"source_url": "/~https://github.com/linkwarden/linkwarden",
"category": "/bookmarks-and-link-sharing"
},
{
"name": "NeonLink",
"primary_url": "/~https://github.com/AlexSciFier/neonlink",
"description": "Self-hosted bookmark service with unique design and simple installation with Docker.",
"stack": "MIT",
"license": { "name": "`MIT` `Docker`" },
"category": "/bookmarks-and-link-sharing"
},
{
"name": "Pinry",
"primary_url": "https://docs.getpinry.com",
"description": "The tiling image board system for people who want to save, tag, and share images, videos, and webpages.",
"stack": "BSD-2-Clause",
"license": { "name": "`BSD-2-Clause` `Docker/Python`" },
"source_url": "/~https://github.com/pinry/pinry",
"demo_url": "https://pin.37soloist.com/",
"category": "/bookmarks-and-link-sharing"
},
{
"name": "Shaarli",
"primary_url": "/~https://github.com/shaarli/Shaarli",
"description": "Personal, minimalist, super-fast, no-database bookmarking and link sharing platform.",
"stack": "Zlib",
"license": { "name": "`Zlib` `PHP`" },
"demo_url": "https://demo.shaarli.org",
"category": "/bookmarks-and-link-sharing"
},
{
"name": "Shiori",
"primary_url": "/~https://github.com/go-shiori/shiori",
"description": "Simple bookmark manager built with Go.",
"stack": "MIT",
"license": { "name": "`MIT` `Go/Docker`" },
"category": "/bookmarks-and-link-sharing"
},
{
"name": "SyncMarks",
"primary_url": "https://codeberg.org/Offerel/SyncMarks-Webapp",
"description": "Sync and manage your browser bookmarks from Edge, Firefox and Chromium.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `PHP`" },
"category": "/bookmarks-and-link-sharing"
},
{
"name": "Baïkal",
"primary_url": "https://sabre.io/baikal",
"description": "Lightweight CalDAV and CardDAV server based on sabre/dav.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `PHP`" },
"source_url": "/~https://github.com/sabre-io/Baikal",
"category": "/calendar-and-contacts/cal-dav-or-card-dav-servers"
},
{
"name": "calypso",
"primary_url": "https://keithp.com/calypso",
"description": "Python-based CalDAV and CardDAV server",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"source_url": "https://keithp.com/cgit",
"category": "/calendar-and-contacts/cal-dav-or-card-dav-servers"
},
{
"name": "DAViCal",
"primary_url": "https://www.davical.org",
"description": "Server for calendar sharing",
"stack": "GPL-2.0",
"license": { "name": "`GPL-2.0` `PHP`" },
"source_url": "https://gitlab.com/davical-project/davical",
"category": "/calendar-and-contacts/cal-dav-or-card-dav-servers"
},
{
"name": "Davis",
"primary_url": "/~https://github.com/tchapi/davis",
"description": "A simple, dockerizable and fully translatable admin interface for sabre/dav based on Symfony 5 and Bootstrap 4, largely inspired by Baïkal.",
"stack": "MIT",
"license": { "name": "`MIT` `PHP`" },
"category": "/calendar-and-contacts/cal-dav-or-card-dav-servers"
},
{
"name": "Etebase (EteSync)",
"primary_url": "https://www.etebase.com",
"description": "End-to-end encrypted and journaled personal information server supporting calendar and contact data, offering its own clients.",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Python/Django`" },
"source_url": "/~https://github.com/etesync/server",
"category": "/calendar-and-contacts/cal-dav-or-card-dav-servers"
},
{
"name": "Radicale",
"primary_url": "https://radicale.org",
"description": "Simple calendar and contact server with extremely low administrative overhead.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"source_url": "/~https://github.com/Kozea/Radicale",
"category": "/calendar-and-contacts/cal-dav-or-card-dav-servers"
},
{
"name": "SabreDAV",
"primary_url": "https://sabre.io",
"description": "Open source CardDAV, CalDAV, and WebDAV framework and server.",
"stack": "MIT",
"license": { "name": "`MIT` `PHP`" },
"source_url": "/~https://github.com/sabre-io/dav",
"category": "/calendar-and-contacts/cal-dav-or-card-dav-servers"
},
{
"name": "Xandikos",
"primary_url": "/~https://github.com/jelmer/xandikos",
"description": "Open source CardDAV and CalDAV server with minimal administrative overhead, backed by a Git repository.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Python`" },
"category": "/calendar-and-contacts/cal-dav-or-card-dav-servers"
},
{
"name": "AgenDAV",
"primary_url": "https://agendav.github.io/agendav",
"description": "Multilanguage CalDAV web client with a rich AJAX interface and shared calendars support.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `PHP`" },
"source_url": "/~https://github.com/agendav/agendav",
"category": "/calendar-and-contacts/cal-dav-or-card-dav-web-based-clients"
},
{
"name": "EteSync Web",
"primary_url": "https://www.etesync.com/faq/#web-client",
"description": "EteSync's official Web-based client",
"stack": "AGPL-3.0",
"license": { "name": "`AGPL-3.0` `Javascript`" },
"source_url": "/~https://github.com/etesync/etesync-web",
"demo_url": "https://client.etesync.com/",
"category": "/calendar-and-contacts/cal-dav-or-card-dav-web-based-clients"
},
{
"name": "Manage My Damn Life",
"primary_url": "https://intri.in/manage-my-damn-life",
"description": "Manage my Damn Life",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `Nodejs/Docker`" },
"source_url": "/~https://github.com/intri-in/manage-my-damn-life-nextjs",
"category": "/calendar-and-contacts/cal-dav-or-card-dav-web-based-clients"
},
{
"name": "Apprise",
"primary_url": "/~https://github.com/caronc/apprise",
"description": "Apprise allows you to send a notification to almost all of the most popular notification services available to us today such as: Telegram, Discord, Slack, Amazon SNS, Gotify, etc.",
"stack": "MIT",
"license": { "name": "`MIT` `Python/Docker`" },
"category": "/communication/custom-communication-systems"
},
{
"name": "BluetoothCommunicatorExample",
"primary_url": "/~https://github.com/niedev/BluetoothCommunicatorExample",
"description": "Bluetooth LE chat app to communicate between android devices with P2P architecture.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Java`" },
"category": "/communication/custom-communication-systems"
},
{
"name": "Centrifugo",
"primary_url": "https://centrifugal.dev",
"description": "Language-agnostic real-time messaging",
"stack": "MIT",
"license": { "name": "`MIT` `Go/Docker/K8S`" },
"source_url": "/~https://github.com/centrifugal/centrifugo",
"demo_url": "/~https://github.com/centrifugal/centrifugo#demo",
"category": "/communication/custom-communication-systems"
},
{
"name": "Chatwoot",
"primary_url": "https://www.chatwoot.com",
"description": "Self-hosted customer communication platform",
"stack": "MIT",
"license": { "name": "`MIT` `Ruby/Docker/K8S`" },
"source_url": "/~https://github.com/chatwoot/chatwoot",
"category": "/communication/custom-communication-systems"
},
{
"name": "Chitchatter",
"primary_url": "https://chitchatter.im",
"description": "A peer-to-peer chat app that is serverless, decentralized, and ephemeral.",
"stack": "GPL-2.0",
"license": { "name": "`GPL-2.0` `Nodejs`" },
"source_url": "/~https://github.com/jeremyckahn/chitchatter",
"category": "/communication/custom-communication-systems"
},
{
"name": "Conduit",
"primary_url": "https://conduit.rs",
"description": "A simple, fast, and reliable chat server powered by Matrix.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Rust`" },
"source_url": "https://gitlab.com/famedly/conduit",
"category": "/communication/custom-communication-systems"
},
{
"name": "Darkwire.io",
"primary_url": "/~https://github.com/darkwire/darkwire.io",
"description": "End-to-end encrypted instant web chat.",
"stack": "MIT",
"license": { "name": "`MIT` `Nodejs`" },
"category": "/communication/custom-communication-systems"
},
{
"name": "Databag",
"primary_url": "/~https://github.com/balzack/databag",
"description": "Federated, end-to-end encrypted messaging service for the web, iOS, and Android, supporting text, photos, video, and WebRTC video and audio calls.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Docker`" },
"demo_url": "https://databag.coredb.org/#/create",
"category": "/communication/custom-communication-systems"
},
{
"name": "Dendrite",
"primary_url": "https://matrix-org.github.io/dendrite",
"description": "Second-generation Matrix homeserver written in Go. It intends to provide an efficient, reliable and scalable alternative to Synapse.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Go`" },
"source_url": "/~https://github.com/matrix-org/dendrite",
"category": "/communication/custom-communication-systems"
},
{
"name": "Element",
"primary_url": "https://element.io",
"description": "Fully-featured Matrix client for Web, iOS & Android.",
"stack": "Apache-2.0",
"license": { "name": "`Apache-2.0` `Nodejs`" },
"source_url": "/~https://github.com/vector-im/element-web",
"category": "/communication/custom-communication-systems"
},
{
"name": "GNUnet",
"primary_url": "https://gnunet.org",
"description": "Free software framework for decentralized, peer-to-peer networking.",
"stack": "GPL-3.0",
"license": { "name": "`GPL-3.0` `C`" },
"source_url": "https://gnunet.org/git",
"category": "/communication/custom-communication-systems"
},
{
"name": "Gotify",
"primary_url": "https://gotify.net",
"description": "Self-hosted notification server with Android and CLI clients, similar to PushBullet.",
"stack": "MIT",
"license": { "name": "`MIT` `Go/Docker`" },
"source_url": "/~https://github.com/gotify/server",
"category": "/communication/custom-communication-systems"
},