-
Notifications
You must be signed in to change notification settings - Fork 1
/
works.yaml
10631 lines (10631 loc) · 270 KB
/
works.yaml
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
---
Darknet:
uri:
- http://pjreddie.com/darknet
description:
- Darknet is an open source neural network framework written in C and CUDA. It is fast, easy to install, and supports CPU and GPU computation.
license:
- MIT/X11
- WTFPL
license_reference:
- https://github.com/pjreddie/darknet/blob/master/LICENSE.mit
- https://github.com/pjreddie/darknet/blob/master/LICENSE.fuck
tags:
- go (game)
- multilicensed
- neural network
- software
Ray:
uri:
- https://github.com/zakki/Ray
description:
- Ray is a Go program, built with Microsoft Cognitive Toolkit.
license:
- Simplified BSD License
license_reference:
- https://github.com/zakki/Ray/blob/nn/COPYING
tags:
- game
- go (game)
- neural network
- software
AQ:
uri:
- https://github.com/ymgaq/AQ
description:
- AQ is an expert level Go program.
license:
- MIT/X11 License
license_reference:
- https://github.com/ymgaq/AQ/blob/master/LICENSE.txt
tags:
- game
- go (game)
- neural network
- software
Glift:
uri:
- https://github.com/Kashomon/glift
description:
- Glift is a modern JavaScript client for the game Go. It was created to be a modern Go UI that supports both mobile and desktop use.
license:
- MIT/X11 License
license_reference:
- https://github.com/Kashomon/glift/blob/master/LICENSE
tags:
- client
- game
- go (game)
- network
- software
- web
- webapp
Shin KGS:
uri:
- https://shin.gokgs.com
description:
- Shin KGS is an unofficial JavaScript client for KGS Go Server.
license:
- MIT/X11 License
license_reference:
- https://github.com/jkk/shinkgs/blob/master/LICENSE.txt
tags:
- client
- game
- go (game)
- network
- software
- web
- webapp
Rofi:
uri:
- https://davedavenport.github.io/rofi
description:
- Rofi is a window switcher, application launcher, and dmenu replacement, based on simpleswitcher.
license:
- MIT/X11 License
license_reference:
- https://github.com/DaveDavenport/rofi/blob/master/COPYING
tags:
- menu
- software
simpleswitcher:
uri:
- https://github.com/seanpringle/simpleswitcher
description:
- Similar to superswitcher, but with a friendlier license, simpleswitcher is a popup window switcher requiring only xlib and xft.
license:
- MIT/X11 License
license_reference:
- https://github.com/seanpringle/simpleswitcher/blob/master/LICENSE
tags:
- menu
- software
StockSnap:
uri:
- https://stocksnap.io
description:
- StockSnap offers hundreds of high resolution images, added weekly, free from copyright restrictions.
license:
- CC0
license_reference:
- https://stocksnap.io/license
tags:
- image
- collection
- web
Pixabay:
uri:
- https://pixabay.com
description:
- Pixabay has free images and videos you can use anywhere.
license:
- CC0
license_reference:
- https://pixabay.com/en/service/terms/#usage
tags:
- image
- collection
- video
- web
Pexels:
uri:
- https://www.pexels.com
description:
- Pexels provides high quality and completely free stock photos licensed under the Creative Commons Zero (CC0) license. All photos are nicely tagged, searchable, and easy to discover through its discover pages.
license:
- CC0
license_reference:
- https://www.pexels.com/photo-license
tags:
- image
- collection
- web
The Lounge:
uri:
- https://thelounge.github.io
description:
- The Lounge is a modern web IRC client designed for self-hosting.
license:
- MIT/X11 License
license_reference:
- https://github.com/thelounge/lounge/blob/master/LICENSE
tags:
- client
- irc
- network
- node.js
- software
- web
- webapp
Bitcoin-Qt:
uri:
- http://bitcoin.org/en/download
category:
- Cryptography
tags:
- bitcoin
- cryptocurrency
- cryptography
- software
license:
- MIT/X11 License
license_reference:
- https://github.com/bitcoin/bitcoin/blob/master/COPYING
description:
- Bitcoin is an innovative payment network and a new kind of money, and this is a GUI Bitcoin wallet application.
Bitcoind:
uri:
- https://en.bitcoin.it/wiki/Bitcoind
category:
- Cryptography
tags:
- bitcoin
- blockchain
- cryptocurrency
- cryptography
- software
license:
- MIT/X11 License
license_reference:
- https://github.com/bitcoin/bitcoin/blob/master/COPYING
description:
- This project provides the reference implementation for a Bitcoin library, daemon, and command-line wallet.
btcd:
uri:
- https://github.com/btcsuite/btcd
category:
- Cryptography
tags:
- bitcoin
- blockchain
- cryptocurrency
- cryptography
- software
license:
- ISC License
license_reference:
- https://github.com/btcsuite/btcd/blob/master/LICENSE
description:
- As an alternative full-node implementation of the bitcoin protocol written in Go, btcd provides an alternative to bitcoind that can substantially improve the diversity and resilience of the bitcoin ecosystem and infrastructure.
Litecoin:
uri:
- https://litecoin.org
category:
- Cryptography
tags:
- blockchain
- cryptocurrency
- cryptography
- software
license:
- MIT/X11 License
license_reference: []
Mechiel Lukkien's DES:
uri:
- http://www.ueber.net/code/r/des
category:
- Cryptography
tags:
- cryptography
- software
license:
- public domain
license_reference: []
Mechiel Lukkien's SHA2:
uri:
- http://www.ueber.net/code/r/sha2
category:
- Cryptography
tags:
- cryptography
- software
license:
- public domain
license_reference: []
OpenPGP SDK:
uri:
- http://openpgp.nominet.org.uk/cgi-bin/trac.cgi/wiki
category:
- Cryptography
tags:
- cryptography
- encryption
- openpgp
- privacy
- security
- software
license:
- BSD License
license_reference: []
OpenSSH:
uri:
- http://www.openssh.com/
category:
- Cryptography
tags:
- cryptography
- software
license:
- BSD License
license_reference: []
pgpdsa:
uri:
- http://www.cypherspace.org/openpgp/pgpdsa/
category:
- Cryptography
tags:
- cryptography
- software
license:
- public domain
license_reference: []
Tom Zerucha's OpenPGP:
uri:
- http://www.cypherspace.org/openpgp/zerucha/
category:
- Cryptography
tags:
- cryptography
- encryption
- openpgp
- privacy
- security
- software
license:
- BSD License
license_reference: []
Tor:
uri:
- https://www.torproject.org/
category:
- Cryptography
tags:
- cryptography
- software
license:
- Revised BSD License
license_reference:
- https://gitweb.torproject.org/tor.git/tree/LICENSE
PostgreSQL:
uri:
- http://www.postgresql.org/
category:
- Database
tags:
- database
- software
license:
- PostgreSQL License
license_reference: []
SQLite:
uri:
- http://www.sqlite.org/
category:
- Database
tags:
- database
- software
license:
- public domain
license_reference:
- http://www.sqlite.org/copyright.html
cryptfile:
uri:
- http://www.ueber.net/code/r/cryptfile
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference:
- https://bitbucket.org/mjl/cryptfile/src/default/README
dhcpd:
uri:
- http://www.ueber.net/code/r/dhcpd
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
ircfs:
uri:
- http://www.ueber.net/code/r/ircfs
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
ftpserv:
uri:
- http://www.ueber.net/code/r/ftpsrv
category:
- Inferno/P9
tags:
- ftp
- inferno
- software
license:
- public domain
license_reference: []
hdict:
uri:
- https://github.com/polachok/hdict
category:
- Inferno/P9
tags:
- dictionary
- software
license:
- Revised BSD License
license_reference:
- https://github.com/polachok/hdict/blob/master/LICENSE
hgfs:
uri:
- http://www.ueber.net/code/r/hgfs
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
hgweb:
uri:
- http://www.ueber.net/code/r/hgweb
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
http:
uri:
- http://www.ueber.net/code/r/http
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
torrent:
uri:
- http://www.ueber.net/code/r/torrent
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
nfssrv:
uri:
- http://www.ueber.net/code/r/nfssrv
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
nopoint:
uri:
- http://www.ueber.net/code/r/nopoint
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
pdfread:
uri:
- http://www.ueber.net/code/r/pdfread
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
playfs:
uri:
- http://www.ueber.net/code/r/playfs
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
scgid:
uri:
- http://www.ueber.net/code/r/scgid
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
shttpd:
uri:
- http://www.ueber.net/code/r/httpd
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
ssh:
uri:
- http://www.ueber.net/code/r/ssh
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
textmangle:
uri:
- http://www.ueber.net/code/r/textmangle
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
ventisrv:
uri:
- http://www.ueber.net/code/r/ventisrv
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
web:
uri:
- http://www.ueber.net/code/r/web
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
webdavfs:
uri:
- http://www.ueber.net/code/r/webdavfs
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
zipfs:
uri:
- http://www.ueber.net/code/r/zipfs
category:
- Inferno/P9
tags:
- inferno
- software
license:
- public domain
license_reference: []
ii:
uri:
- http://tools.suckless.org/ii/
category:
- Network Client
tags:
- client
- network
- software
license:
- MIT/X11 License
license_reference:
- http://git.suckless.org/ii/tree/LICENSE
jab:
uri:
- http://bitbucket.org/sterlingcamden/jab
category:
- Network Client
tags:
- client
- network
- software
license:
- Open Works License
license_reference:
- https://bitbucket.org/sterlingcamden/jab/src/default/license.txt
rbot:
uri:
- http://ruby-rbot.org/
category:
- Network Client
tags:
- client
- multilicensed
- network
- software
license:
- MIT/X11 License
license_alternate:
- GPL
license_reference:
- http://ruby-rbot.org/rbot-trac/browser/COPYING
samblah:
uri:
- http://www.ueber.net/code/r/samblah
category:
- Network Client
tags:
- client
- network
- software
license:
- public domain
license_reference: []
sic:
uri:
- http://tools.suckless.org/sic
category:
- Network Client
tags:
- client
- network
- software
license:
- MIT/X11 License
license_reference:
- http://git.suckless.org/sic/tree/LICENSE
herrie:
uri:
- http://herrie.info/
category:
- Media Player
tags:
- media player
- software
license:
- BSD License
license_reference: []
S5:
uri:
- http://meyerweb.com/eric/tools/s5/
tags:
- office
- software
license:
- public domain
license_reference: []
AerieBSD:
uri:
- https://github.com/mikekmv/aeriebsd-src
tags:
- bsd
- os
- software
- unix
license:
- ISC License
license_reference:
- https://github.com/mikekmv/aeriebsd-src/blob/master/share/doc/README
DesktopBSD:
uri:
- http://www.desktopbsd.net/
tags:
- bsd
- os
- software
- unix
license:
- BSD License
license_reference: []
DragonFly BSD:
uri:
- http://www.dragonflybsd.org/
tags:
- bsd
- os
- software
- unix
license:
- BSD License
license_reference: []
description:
- DragonFly BSD is a BSD Unix OS with a number of differentiating features like advanced parallelization capabilities, the HAMMER filesystem, and virtual kernels, among others. The development community takes its own approach to system development where it makes sense to meet the project's goals, and maintains strong FreeBSD compatibility where it doesn't.
FreeBSD:
uri:
- http://www.freebsd.org/
tags:
- bsd
- os
- software
- unix
license:
- BSD License
license_reference: []
NetBSD:
uri:
- http://www.netbsd.org/
tags:
- bsd
- os
- software
- unix
license:
- BSD License
license_reference: []
OpenBSD:
uri:
- http://www.openbsd.org/
tags:
- bsd
- os
- software
- unix
license:
- ISC Licenses
license_reference: []
PC-BSD:
uri:
- http://www.pcbsd.org/
tags:
- bsd
- os
- software
- unix
license:
- BSD License
license_reference: []
ANTLR:
uri:
- http://www.antlr.org/
tags:
- parser generator
- software
license:
- Revised BSD License
license_reference:
- https://github.com/antlr/antlr4/blob/master/LICENSE.txt
Berkeley Yacc:
uri:
- http://invisible-island.net/byacc/byacc.html
tags:
- parser generator
- software
license:
- public domain
license_reference:
- http://invisible-island.net/byacc/byacc.html#licensing
Cocotron:
uri:
- http://www.cocotron.org/
tags:
- objective c
- programming
- software
license:
- MIT/X11 License
license_reference:
- http://www.cocotron.org/Info/MIT_License/
Gauche:
uri:
- http://practical-scheme.net/gauche/
tags:
- interpreter
- language
- lisp
- programming
- scheme
- software
license:
- Revised BSD License
license_reference:
- https://sourceforge.net/p/gauche/code/ci/master/tree/COPYING
description:
- Gauche is an R7RS Scheme implementation developed to be a handy script interpreter, which allows programmers and system administrators to write small to large scripts for their daily chores. Quick startup, built-in system interface, and native multilingual support are some of its goals.
Glasgow Haskell Compiler:
uri:
- http://www.haskell.org/ghc/
tags:
- compiler
- haskell
- language
- llvm
- programming
- software
license:
- Revised BSD License
license_reference:
- http://www.haskell.org/ghc/license
description:
- GHC is a state-of-the-art, open source compiler and interactive environment for the functional language Haskell.
Hugs:
uri:
- http://www.haskell.org/hugs
tags:
- dead
- haskell
- programming
- software
license:
- Revised BSD License
license_reference:
- https://www.haskell.org/hugs/pages/users_guide/license.html
description:
- Hugs 98 is a functional programming system based on Haskell 98, the de facto standard for non-strict functional programming languages. Hugs 98 provides an almost complete implementation of Haskell 98
Logo3D:
uri:
- http://sourceforge.net/projects/logo3d/
tags:
- gui
- jvm
- logo
- programming
- software
license:
- ISC License
license_reference:
- http://sourceforge.net/projects/logo3d/
description:
- This project presents an implementation of the turtle graphics system originally developed for the Logo programming language developed at MIT by Seymour Papert.
Lua:
uri:
- http://www.lua.org/
tags:
- embedded
- language
- lua
- programming
- software
- vm
license:
- MIT/X11 License
license_reference:
- http://www.lua.org/license.html
description:
- Lua is a powerful, fast, lightweight, embeddable scripting language.
MochiKit:
uri:
- http://mochi.github.io/mochikit/
tags:
- library
- multilicensed
- software
license:
- MIT/X11 License
license_alternate:
- Academic Free License
license_reference:
- https://github.com/mochi/mochikit/blob/master/LICENSE.txt
Portable C Compiler:
uri:
- http://pcc.ludd.ltu.se/
tags:
- c
- compiler
- language
- programming
- software
license:
- BSD License
license_reference: []
Reia:
uri:
- http://reia-lang.org/
tags:
- beam
- dead
- language
- programming
- reia
- software
- vm
license:
- MIT/X11 License
license_reference:
- https://github.com/tarcieri/reia/blob/master/LICENSE
description:
- Reia (pronounced RAY-uh) is a Ruby-like scripting language for the Erlang virtual machine (BEAM).
Scala:
uri:
- http://www.scala-lang.org/
tags:
- jvm
- language
- programming
- scala
- software
license:
- Revised BSD License
license_reference:
- https://github.com/scala/scala/blob/2.12.x/doc/LICENSE.md
description:
- Scala is a JVM language with seamless Java interop, type inference, class-based OOP facilities, and functional features like higher-order functions.
Scheme 48:
uri:
- http://s48.org/
tags:
- language
- lisp
- programming
- scheme
- software
- vm
license:
- BSD License
license_reference:
- http://www.s48.org/cgi-bin/hgwebdir.cgi/s48/file/default/COPYING
description:
- Scheme 48 is a bytecode interpreted implementation of R5RS designed to be used as a testbed for experiments in implementation techniques and as an expository tool.
Squeak:
uri:
- http://www.squeak.org/
tags:
- language
- programming
- smalltalk
- software
- vm
license:
- MIT/X11 License
license_reference:
- http://www.squeak.org/SqueakLicense
description:
- Squeak is an open-source Smalltalk programming system with fast execution environments for all major platforms. It features the Morphic framework, which promotes low effort graphical, interactive application development and maintenance.
Steel Bank Common Lisp:
uri:
- http://www.sbcl.org/
tags:
- common lisp
- compiler
- language
- lisp
- programming
- software
license:
- public domain
license_reference:
- https://sourceforge.net/p/sbcl/sbcl/ci/master/tree/COPYING
description:
- Steel Bank Common Lisp (SBCL) is a high performance compiler and runtime system for ANSI Common Lisp. It provides an interactive environment including a debugger, a statistical profiler, a code coverage tool, and many other extensions.
TenDRA:
uri:
- http://www.tendra.org/
tags:
- c
- compiler
- language
- programming
- software
license:
- DERA Copyright License + OSF License + Revised BSD License
license_reference: []
TinyScheme:
uri:
- http://tinyscheme.sourceforge.net/
tags:
- interpreter
- language
- lisp
- programming
- scheme
- software
license:
- Revised BSD License
license_reference:
- http://tinyscheme.sourceforge.net/license.txt
description:
- TinyScheme is a lightweight Scheme interpreter that implements as large a subset of R5RS as was possible without getting very large and complicated. It is meant to be used as an embedded scripting interpreter for other programs. A lot of functionality in TinyScheme is included conditionally, to allow developers freedom in balancing features and footprint.
V8:
uri:
- http://v8project.blogspot.com/
- https://bugs.chromium.org/p/v8/
tags:
- javascript
- language
- programming
- software
- vm
license:
- Revised BSD License
license_reference:
- https://code.google.com/p/v8/source/browse/trunk/LICENSE
description:
- V8 is a JavaScript engine originally released with the Chromium browser, but it has since been widely used as a stand-alone JavaScript implementation.
Yasm:
uri:
- http://www.tortall.net/projects/yasm/
tags:
- assembler
- assembly
- contaminated
- language
- programming
- software
license: