-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathshort-descriptions.html
14380 lines (11514 loc) · 540 KB
/
short-descriptions.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 2024-10-16 Wed 14:51 -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Quicklisp Projects with Short Descriptions From Their ASD files (16 Oct 2024 Edition)</title>
<meta name="author" content="Sabra Crolleton" />
<meta name="generator" content="Org Mode" />
<link rel="stylesheet" type="text/css" href="https://fniessen.github.io/org-html-themes/src/readtheorg_theme/css/htmlize.css"/>
<link rel="stylesheet" type="text/css" href="https://fniessen.github.io/org-html-themes/src/readtheorg_theme/css/readtheorg.css"/>
<link rel="stylesheet" type="text/css" href="src/readtheorg_theme/css/search.css"/>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://fniessen.github.io/org-html-themes/src/lib/js/jquery.stickytableheaders.min.js"></script>
<script type="text/javascript" src="https://fniessen.github.io/org-html-themes/src/readtheorg_theme/js/search.js"></script>
<script type="text/javascript" src="https://fniessen.github.io/org-html-themes/src/readtheorg_theme/js/readtheorg.js"></script>
<link rel="stylesheet" href="https://cdn.datatables.net/1.12.1/css/jquery.dataTables.min.css">
<script>
window.MathJax = {
tex: {
ams: {
multlineWidth: '85%'
},
tags: 'ams',
tagSide: 'right',
tagIndent: '.8em'
},
chtml: {
scale: 1.0,
displayAlign: 'center',
displayIndent: '0em'
},
svg: {
scale: 1.0,
displayAlign: 'center',
displayIndent: '0em'
},
output: {
font: 'mathjax-modern',
displayOverflow: 'overflow'
}
};
</script>
<script
id="MathJax-script"
async
src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js">
</script>
</head>
<body>
<div id="content" class="content">
<h1 class="title">Quicklisp Projects with Short Descriptions From Their ASD files (16 Oct 2024 Edition)</h1>
<table>
<colgroup>
<col class="org-left">
<col class="org-left">
</colgroup>
<thead>
<tr>
<th scope="col" class="org-left">Project Name</th>
<th scope="col" class="org-left">Short Description</th>
</tr>
</thead>
<tbody>
<tr>
<td class="org-left"><a href="https://github.com/lmj/1am">1am</a></td>
<td class="org-left">A minimal testing framework. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3b-bmfont">3b-bmfont</a></td>
<td class="org-left">BMFont file format readers/writers (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3bgl-shader">3bgl-shader</a></td>
<td class="org-left">CL-hosted CL-like DSL for generating GLSL (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3b-hdr">3b-hdr</a></td>
<td class="org-left">reader and writer for radiance HDR files (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3bmd">3bmd</a></td>
<td class="org-left">markdown processor in CL using esrap parser. (MIT)</td>
</tr>
<tr>
<td class="org-left">3bmd-ext-code-blocks</td>
<td class="org-left">extension to 3bmd implementing github style ``` delimited code blocks, with support for syntax highlighting using colorize, pygments, or chroma (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3bmd">3bmd-ext-definition-lists</a></td>
<td class="org-left">extension to 3bmd implementing 'PHP Markdown Extra' style definition lists (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3bmd">3bmd-ext-math</a></td>
<td class="org-left">An extension for 3bmd for handling math markup (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3bmd">3bmd-ext-tables</a></td>
<td class="org-left">Extension to 3bmd implementing PHP Markdown Extra style tables (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3bmd">3bmd-ext-wiki-links</a></td>
<td class="org-left">example extension to 3bmd implementing simple wiki-style links (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3bmd">3bmd-youtube</a></td>
<td class="org-left">An extension for 3bmd for embedding YouTube videos</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3b-swf">3b-swf</a></td>
<td class="org-left">Common Lisp .swf file manipulation library</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3b-swf">3b-swf-swc</a></td>
<td class="org-left">Partial hacks for extracting data from flash .swc files.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/3b/3bz">3bz</a></td>
<td class="org-left">deflate decompressor (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://shinmera.github.io/3d-math/">3d-math</a></td>
<td class="org-left">A library implementing the necessary linear algebra math for 2D and 3D computations (zlib)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Shinmera/3d-matrices">3d-matrices</a></td>
<td class="org-left">A utility library implementing 2x2, 3x3, 4x4, and NxN matrix functionality. (zlib)</td>
</tr>
<tr>
<td class="org-left"><a href="https://shinmera.github.io/3d-quaternions/">3d-quaternions</a></td>
<td class="org-left">A utility library implementing quaternion and dual-quaternion functionality. (zlib)</td>
</tr>
<tr>
<td class="org-left"><a href="https://shirakumo.github.io/3d-spaces/">3d-spaces</a></td>
<td class="org-left">A library implementing spatial query structures (zlib)</td>
</tr>
<tr>
<td class="org-left"><a href="https://shinmera.github.io/3d-transforms/">3d-transforms</a></td>
<td class="org-left">A utility library implementing a common structure to encapsulate spatial transformations (zlib)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Shinmera/3d-vectors">3d-vectors</a></td>
<td class="org-left">A utility library implementing 2D, 3D, and 4D vector functionality. (zlib)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/40ants/40ants-asdf-system/">40ants-asdf-system</a></td>
<td class="org-left">Provides a class for being used instead of asdf:package-inferred-system. (BSD)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/40ants/doc">40ants-doc, aka doc</a></td>
<td class="org-left">Documentation generator, based on MGL-PAX. Allows to put documentation inside lisp files and cross-reference between different entities.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/40ants/doc">40ants-doc-full</a></td>
<td class="org-left">Documentation generator for 40ANTS-DOC (based on MGL-PAX). You will need to load this system, to build documentation for a library which uses 40ANTS-DOC system.</td>
</tr>
<tr>
<td class="org-left"><a href="https://40ants.com/slynk/">40ants-slynk</a></td>
<td class="org-left">Utilities to start SLYNK if needed and to track active connections. (Unlicense)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/dherring/able">able</a></td>
<td class="org-left">A Common Lisp editor (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/dimitri/cl-abnf">abnf</a></td>
<td class="org-left">ABNF Parser Generator, per RFC2234 (ISC license)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/digikar99/abstract-arrays/">abstract-arrays</a></td>
<td class="org-left">Julias AbstractArray like abstraction for Common Lisp.(MIT) REMOVED OCT 15, 2024</td>
</tr>
<tr>
<td class="org-left"><a href="https://bitbucket.org/eeeickythump/cl-abstract-classes">abstract-classes</a></td>
<td class="org-left">Extends the MOP to allow `abstract` and `final` classes.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/sharplispers/access">access</a></td>
<td class="org-left">A library providing functions that unify data-structure access for Common Lisp:access and (setf access). (BSD 2 clause)Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/03/0007-access.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/robert-strandh/Acclimation">acclimation</a></td>
<td class="org-left">Library supporting internationalization (FreeBSD)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/rpav/cl-cairo2">a-cl-cairo2-loader</a></td>
<td class="org-left">Cairo bindings for common lisp (Boost Software License 1.0)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/AccelerationNet/a-cl-logger">a-cl-logger</a></td>
<td class="org-left">A logger that sends to multiple destinations in multiple formats. Based on arnesi logger (BSD 3 clause)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/AccelerationNet/a-cl-logger">a-cl-logger-logstash</a></td>
<td class="org-left">Load the logstash appender for a-cl-logger (BSD)</td>
</tr>
<tr>
<td class="org-left">acm-random</td>
<td class="org-left">A fast, cryptographically insecure, random number generator.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Shinmera/action-list">action-list</a></td>
<td class="org-left">An implementation of action lists — zlib</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/awolven/adhoc/">adhoc</a></td>
<td class="org-left">Another Declarative Hierarchical Object-centric CLOS Customization (GPLv3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://hg.stevelosh.com/adopt">adopt</a></td>
<td class="org-left">Simple, flexible, UNIX-style option parsing. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.com/daewok/adopt-subcommands">adopt-subcommands</a></td>
<td class="org-left">Extend the Adopt command line processing library to handle nested subcommands. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Hectarea1996/adp/">adp</a></td>
<td class="org-left">Add Documentation, Please. A documentation generator. — The Unlicense</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Hectarea1996/adp-github/">adp-github</a></td>
<td class="org-left">ADP extension to generate github markdown files. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Hectarea1996/adp-plain/">adp-plain</a></td>
<td class="org-left">Add Documentation, Please… using plain text. An extension of ADP to generate files with barely additional features. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Kalimehtar/advanced-readtable">advanced-readtable</a></td>
<td class="org-left">Advanced customizable readtable (BSD 2 Clause)</td>
</tr>
<tr>
<td class="org-left"><a href="https://common-lisp.net/project/adw-charting/adw-charting.tar.gz">adw-charting</a></td>
<td class="org-left">Charting package to make pretty graphs and charts - Removed in Oct 2021 Quicklisp Update (LGPL)</td>
</tr>
<tr>
<td class="org-left">adw-charting-google</td>
<td class="org-left">Charting package to make graphs and charts using the Google chart API</td>
</tr>
<tr>
<td class="org-left">adw-charting-vecto</td>
<td class="org-left">Charting package to make pretty graphs and charts using Vecto</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/dtqec/aether">aether</a></td>
<td class="org-left">A DSL for emulating an actor-based distributed system, housed on a family of emulated devices. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.common-lisp.net/mraskin/agnostic-lizard">agnostic-lizard</a></td>
<td class="org-left">A portable code walker that makes a best effort to be correct in most cases (GPL 3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.common-lisp.net/mraskin/agnostic-lizard">agnostic-lizard-debugger-prototype</a></td>
<td class="org-left">A portable debugger prototype that injects debugger hooks into code (GPL 3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/alex-gutev/agutil">agutil</a></td>
<td class="org-left">A collection of utility functions not found in other utility libraries. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/ahungry/ahungry-fleece">ahungry-fleece</a></td>
<td class="org-left">A general utility library of convenience functions and features. (GPL 3) REMOVED OCT 15, 2024</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/rigetti/alexa">alexa</a></td>
<td class="org-left">A lexical analyzer generator.(BSD 3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.common-lisp.net/alexandria/alexandria">alexandria</a></td>
<td class="org-left">Alexandria is a collection of portable public domain utilities. (Public Domain)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Symbolics/alexandria-plus/">alexandria-plus</a></td>
<td class="org-left">A conservative set of extensions to Alexandria utilities (Public Domain)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/tarballs-are-good/algebraic-data-library">algebraic-data-library</a></td>
<td class="org-left">A library of common algebraic data types. (BSD 3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Hectarea1996/allioli/">allioli</a></td>
<td class="org-left">Alliolification (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/varjagg/also-alsa">also-alsa</a></td>
<td class="org-left">Basic ALSA bindings for Common Lisp (LGPL)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/digikar99/alternate-asdf-system-connections/">alternate-asdf-system-connections</a></td>
<td class="org-left">Allows for ASDF system to be connected so that auto-loading may occur. This is a fork of asdf-system-connections and incorporates a load-system-driven mechanism for loading dependencies and also loads the dependencies of the connections. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/gonzojive/amazon-ecs">amazon-ecs</a></td>
<td class="org-left">Amazon Product Advertising API library for Common Lisp (LLGPL)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/phoe/amb/">amb</a></td>
<td class="org-left">An implementation of John McCarthy's ambiguous operator(MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/spwhitton/anaphora">anaphora</a></td>
<td class="org-left">The Anaphoric Macro Package from Hell (Public Domain)</td>
</tr>
<tr>
<td class="org-left"><a href="https://tarballs.hexstreamsoft.com/libraries/latest/anaphoric-variants_latest.tar.gz">anaphoric-variants</a></td>
<td class="org-left">Gives access to anaphoric variants of operators through one macro: ANAPHORIC. The user explicitly provides a variable name, preserving sanity, in contrast to the traditional use of an evil implicit variable (\</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/dtqec/anatevka/">anatevka</a></td>
<td class="org-left">A distributed blossom algorithm for minimum-weight perfect matching. — MIT</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/yitzchak/ansi-test-harness/">ansi-test-harness</a></td>
<td class="org-left">A testing harness that fetches ansi-test and allows subsets and extrinsic systems (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.common-lisp.net/antik/antik">antik</a></td>
<td class="org-left">A library of numerical mathematics. (GPL 3)</td>
</tr>
<tr>
<td class="org-left">antik-base</td>
<td class="org-left">Basic definitions providing a foundation for computational mathematics, science, and engineering. (GPL 3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/fukamachi/anypool">anypool</a></td>
<td class="org-left">General-purpose pooling library (BSD 2 clause)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/pve1/apply-argv">apply-argv</a></td>
<td class="org-left">Apply-argv is a library for parsing command line arguments. (LLGPL)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/phantomics/april">april</a></td>
<td class="org-left">April is a subset of the APL programming language that compiles to Common Lisp. (Apache 2) Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/04/0025-april.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/g000001/arc-compat">arc-compat</a></td>
<td class="org-left">Arc compatible package for CL</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/scymtym/architecture.builder-protocol">architecture.builder-protocol</a></td>
<td class="org-left">Protocol and framework for building parse results and other object graphs.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/scymtym/architecture.builder-protocol">architecture.builder-protocol.json</a></td>
<td class="org-left">Serialize node trees into JSON documents.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/scymtym/architecture.builder-protocol">architecture.builder-protocol.universal-builder</a></td>
<td class="org-left">Builder and un-builder for standard-object instances.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/scymtym/architecture.builder-protocol">architecture.builder-protocol.xpath</a></td>
<td class="org-left">Query node trees using XPath expressions.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/scymtym/architecture.service-provider">architecture.service-provider</a></td>
<td class="org-left">Provides a framework for registering and finding services and providers of these.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/scymtym/architecture.builder-protocol">architecture.service-provider-and-hooks</a></td>
<td class="org-left">Run hooks when service providers change.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/sharplispers/archive">archive</a></td>
<td class="org-left">A package for reading and writing archive (tar, cpio, etc.) files. (BSD 2 Clause) Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/03/0019-archive.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/K1D77A/arithmetic-operators-as-words">arithmetic-operators-as-words</a></td>
<td class="org-left">Just simple macros that expand to the normal arithmetic operators.(MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/AccelerationNet/arnesi">arnesi</a></td>
<td class="org-left">A bag-of-tools utilities library used to aid in implementing the bese.it toolkit (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/bendudson/array-operations">array-operations</a></td>
<td class="org-left">Simple array operations library for Common Lisp. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Shinmera/array-utils">array-utils</a></td>
<td class="org-left">A few utilities for working with arrays. (zlib)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/guicho271828/ArriVAL">arrival</a></td>
<td class="org-left">Classical planning plan validator written in modern Common Lisp (LLGPL)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/hipeta/arrow-macros">arrow-macros</a></td>
<td class="org-left">arrow-macros provides clojure-like arrow macros and diamond wands. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.com/Harleqin/arrows">arrows</a></td>
<td class="org-left">Implements -> and ->> from Clojure, as well as several expansions on the idea. (Creative Commons) Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/04/0046-arrows.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://bitbucket.org/vityok/cl-string-match">ascii-strings</a></td>
<td class="org-left">Operations on ASCII strings. Essentially this can be any kind ofsingle-byte encoded strings.(BSD 3 Clause)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/digikar99/asdf-dependency-graph/">asdf-dependency-graph</a></td>
<td class="org-left">A minimal wrapper around `dot` available at least on Linux systems to generate dependency-graphs. — MIT</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.common-lisp.net/xcvb/asdf-dependency-grovel">asdf-dependency-grovel</a></td>
<td class="org-left">Analyse the dependencies in an ASDF system</td>
</tr>
<tr>
<td class="org-left">asdf-driver</td>
<td class="org-left"> </td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.common-lisp.net/asdf/asdf-encodings">asdf-encodings</a></td>
<td class="org-left">Portable interface to character encodings and your implementation's external-format</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.common-lisp.net/asdf/asdf-finalizers">asdf-finalizers</a></td>
<td class="org-left">Enforced calling of finalizers for Lisp code. Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/04/0040-asdf-finalizers.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/eudoxia0/asdf-linguist">asdf-linguist</a></td>
<td class="org-left">Extensions for ASDF. (MIT) Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/04/0038-asdf-linguist.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/roswell/asdf-manager">asdf-manager</a></td>
<td class="org-left">Download and manage ASDF versions. (MIT)</td>
</tr>
<tr>
<td class="org-left">asdf-nst</td>
<td class="org-left">NST integration with ASDF</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.common-lisp.net/asdf/asdf-package-system">asdf-package-system</a></td>
<td class="org-left">Backward-compatible stub for ASDF 3.1's package-inferred-system feature</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/gwkkwg/asdf-system-connections">asdf-system-connections</a></td>
<td class="org-left">Allows for ASDF system to be connected so that auto-loading may occur.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/guicho271828/asdf-viz">asdf-viz</a></td>
<td class="org-left">Visualizes the dependencies between asdf systems / Visualize the function call graph. Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/05/0063-asdf-viz.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/phoe/asd-generator">asd-generator</a></td>
<td class="org-left">Automatic directory scanner/generator for .asd project files. (GPL 3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/fukamachi/asn1/">asn1</a></td>
<td class="org-left">ASN.1 encoder/decoder (BSD 2-Clause)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/noloop/assertion-error">assertion-error</a></td>
<td class="org-left">Error pattern for assertion libraries in Common Lisp. (GPL 3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/noloop/assert-p">assert-p</a></td>
<td class="org-left">A library of assertions written in Common Lisp. (GPL 3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/fukamachi/assoc-utils">assoc-utils</a></td>
<td class="org-left">Utilities for manipulating association lists. (Public Domain) Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/05/0083-assoc-utils.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/stacksmith/asteroids">asteroids</a></td>
<td class="org-left">An improved asteroids game with sounds</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.com/TheLostLambda/astonish">astonish</a></td>
<td class="org-left">A small library for querying and manipulating Lisp ASTs (GPL v. 3)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/cl-doc-systems/atdoc">[atdoc</a></td>
<td class="org-left">Documentation builder. See 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/12/0218-atdoc.org">comments</a> (Unlicense)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/shinmera/atomics">atomics</a></td>
<td class="org-left">Portability layer for atomic operations like compare-and-swap (CAS). Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/05/0058-atomics.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/C-Entropy/audio-tag">audio-tag</a></td>
<td class="org-left">tool to deal with audio tags. read, view and write</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/kkazuo/authenticated-encryption">authenticated-encryption</a></td>
<td class="org-left">Authenticated-Encryption functions</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/fami-com/autoexport/">autoexport</a></td>
<td class="org-left">A small library to automatically export definitions</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/tdrhq/auto-restart/">auto-restart</a></td>
<td class="org-left">automatically generate restart-cases for the most common use cases, and also use the restart for automatic retries (Apache 2.0)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/eudoxia0/avatar-api">avatar-api</a></td>
<td class="org-left">Get avatars from Gravatar, Google+ and others.</td>
</tr>
<tr>
<td class="org-left"><a href="https://git.mfiano.net/mfiano/avl-tree">avl-tree</a></td>
<td class="org-left">An implementation of the AVL tree data structure. — (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/stablecross/aws-foundation">aws-foundation</a></td>
<td class="org-left">Amazon AWS low-level utilities</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/pokepay/aws-sdk-lisp/">Aws-sdk-lisp</a></td>
<td class="org-left">AWS-SDK for Common Lisp — BSD 2-Clause</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/rotatef/aws-sign4">aws-sign4</a></td>
<td class="org-left">A library for Amazon Web Services signing version 4</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/aarvid/ayah-captcha">ayah-captcha</a></td>
<td class="org-left">A simple interface to the API of the play-thru captcha of areYouAHuman.com</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/cl-babel/babel">babel</a></td>
<td class="org-left">Babel, a charset conversion library.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/cl-babel/babel">babel-streams</a></td>
<td class="org-left">Some useful streams based on Babel's encoding code</td>
</tr>
<tr>
<td class="org-left"><a href="https://thephoeron.github.io/babylon/">babylon</a></td>
<td class="org-left">Jürgen Walther's modular, configurable, hybrid knowledge engineering systems framework for Common Lisp, restored from the CMU AI Repository. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/massung/base64">base64</a></td>
<td class="org-left">Base64 encoding and decoding for Common Lisp.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/base-blobs">base-blobs</a></td>
<td class="org-left">Base system foreign library collection</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/markcox80/basic-binary-ipc">basic-binary-ipc</a></td>
<td class="org-left">A inter-process communication library for transmitting binary data over a stream.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/tamurashingo/cl-batis">batis</a></td>
<td class="org-left">SQL Mapping Framework for Common Lisp</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/defaultxr/bdef">bdef</a></td>
<td class="org-left">Buffer definition audio buffer abstraction for sound synthesis systems</td>
</tr>
<tr>
<td class="org-left"><a href="https://hg.stevelosh.com/beast">beast</a></td>
<td class="org-left">Basic Entity/Aspect/System Toolkit. Comments from 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/04/0052-beast.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.common-lisp.net/beirc/beirc">beirc</a></td>
<td class="org-left">beirc is a graphical Internet Relay Chat client using the clim (or mcclim) graphical library.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/nja/cl-bencode">bencode</a></td>
<td class="org-left">Bencode</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/flambard/cl-bert">bert</a></td>
<td class="org-left">BERT serializer. Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/03/0015-cl-bert.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/mkoeppe/cl-bibtex">bibtex</a></td>
<td class="org-left">Compatible re-implementation of the BibTeX program, with a BST-to-CL compiler.</td>
</tr>
<tr>
<td class="org-left"><a href="https://bitbucket.org/tarballs_are_good/big-string">big-string</a></td>
<td class="org-left">Big strings, similar to Java's StringBuilder.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Lovesan/bike">bike</a></td>
<td class="org-left">Common Lisp .Net Core Interop</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Lovesan/bike">bike-internals</a></td>
<td class="org-left">Common Lisp .Net Core Interop Internals</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/mgi/binary-io">binary-io</a></td>
<td class="org-left">Library for reading and writing binary data.</td>
</tr>
<tr>
<td class="org-left">binary-lass</td>
<td class="org-left">System to create a binary executable for LASS.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/mfiano/binary-parser">binary-parser</a></td>
<td class="org-left">A toolset for parsing binary data formats.(MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://git.mfiano.net/mfiano/binary-search-tree">binary-search-tree</a></td>
<td class="org-left">An implementation of the binary search tree data structure.(MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://shinmera.github.io/binary-structures/">binary-structures</a></td>
<td class="org-left">A library for reading, writing, and representing structures from binary representations — zlib</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/Ferada/binary-types">binary-types</a></td>
<td class="org-left">A library for reading and writing binary records.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/sharplispers/binascii">binascii</a></td>
<td class="org-left">A library of ASCII encoding schemes for binary data (BSD-3 License)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/phoe/binding-arrows">binding-arrows</a></td>
<td class="org-left">An implementation of threading macros based on binding anonymous variables (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/vcerovski/binfix">binfix</a></td>
<td class="org-left">BINFIX – A powerful binary infix syntax for Common LISP.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/vy/binomial-heap">binomial-heap</a></td>
<td class="org-left">A compact binomial heap implementation.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/lispgames/binpack">binpack</a></td>
<td class="org-left">Rectangle packer for sprite/texture atlases</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/jorams/birch">birch</a></td>
<td class="org-left">A simple Common Lisp IRC client library</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/marcoheisig/bitfield/">bitfield</a></td>
<td class="org-left">Efficiently represent several finite sets or small integers as a single non-negative integer. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://bitbucket.org/swizard/bitfield-schema">bitfield-schema</a></td>
<td class="org-left">SIMPLE-BIT-VECTOR low level routines and convenient eDSL over it.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/psilord/bitio">bitio</a></td>
<td class="org-left">A wrapper for octet streams that enable bit level streams.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/guicho271828/bit-ops">bit-ops</a></td>
<td class="org-left">Optimized bit-vector operations</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/thephoeron/bit-smasher">bit-smasher</a></td>
<td class="org-left">Utility library for handling bit vectors, bit vector arithmetic, and universal integer type conversions between bit-vectors, byte-vectors, octals, decimals, and hexadecimal notation.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/vy/bk-tree">bk-tree</a></td>
<td class="org-left">This program implements a derivative of BK-Tree data structure described in "Some Approaches to Best-Match File Searching" paper of W. A. Burkhard and R. M. Keller.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/orthecreedence/blackbird">blackbird</a></td>
<td class="org-left">A promise implementation for Common Lisp.</td>
</tr>
<tr>
<td class="org-left"><a href="https://gitlab.com/aerique/black-tie">black-tie</a></td>
<td class="org-left">Noise library for Common Lisp.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/hyotang666/bnf">bnf</a></td>
<td class="org-left">BNF example generator. Useful for testing parser. (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://hg.stevelosh.com/bobbin">bobbin</a></td>
<td class="org-left">Simple (word) wrapping utilities for strings.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-blobs-support">bodge-blobs-support</a></td>
<td class="org-left">Common utilities for loading/distributing foreign libraries. Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/04/0041-bodge-blobs-support.org">here</a>.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-chipmunk">bodge-chipmunk</a></td>
<td class="org-left">Wrapper over chipmunk 2d physics library</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-concurrency">bodge-concurrency</a></td>
<td class="org-left">Concurrency utilities (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-glad">bodge-glad</a></td>
<td class="org-left">OpenGL 4.6 Core GLAD wrapper for cl-bodge system</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-glfw">bodge-glfw</a></td>
<td class="org-left">Wrapper over glfw3 library</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-heap">bodge-heap</a></td>
<td class="org-left">Heap implementation (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-host">bodge-host</a></td>
<td class="org-left">OS-dependent routines (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-libc-essentials">bodge-libc-essentials</a></td>
<td class="org-left">Common Lisp bindings to most essential part of libc (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-math">bodge-math</a></td>
<td class="org-left">Math routines (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-memory">bodge-memory</a></td>
<td class="org-left">Memory handling utilities (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-nanovg">bodge-nanovg</a></td>
<td class="org-left">Wrapper over nanovg library for cl-bodge system (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-nuklear">bodge-nuklear</a></td>
<td class="org-left">Wrapper over Nuklear IM GUI library</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-ode">bodge-ode</a></td>
<td class="org-left">Thin wrapper over Open Dynamics Engine</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-openal">bodge-openal</a></td>
<td class="org-left">Thin wrapper over OpenAL cross-platform 3D audio API</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-queue">bodge-queue</a></td>
<td class="org-left">Simple FIFO implementation with no external dependencies (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-sndfile">bodge-sndfile</a></td>
<td class="org-left">Wrapper over libsndfile for cl-bodge system</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/borodust/bodge-utilities">bodge-utilities</a></td>
<td class="org-left">Utility library (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="http://vintage-digital.com/hefner/software/bordeaux-fft/bordeaux-fft-current.tar.gz">bordeaux-fft</a></td>
<td class="org-left">An efficient and portable implementation of the Fast Fourier Transform</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/sionescu/bordeaux-threads">bordeaux-threads</a></td>
<td class="org-left">Bordeaux Threads makes writing portable multi-threaded apps simple.</td>
</tr>
<tr>
<td class="org-left"><a href="http://juhaarpi.users.paivola.fi/bourbaki/bourbaki.tar.gz">bourbaki</a></td>
<td class="org-left">A system for verifying formal mathematical proofs.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/rodentrabies/bp">bp</a></td>
<td class="org-left">Bitcoin Protocol components in Common Lisp</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/glv2/bst">bst</a></td>
<td class="org-left">Binary search tree</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/peterhil/btrie">btrie</a></td>
<td class="org-left">Branch trie - a generic trie implementation with branch widths.* Implementation is generic: keys can be of sequences of any type.* Branch width of a trie node tells how many branches go through that node and can be used to calculate probabilites for different suffixes.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/rmoritz/bt-semaphore">bt-semaphore</a></td>
<td class="org-left">A simple semaphore class for bordeaux-threads inspired by SBCL's semaphore.</td>
</tr>
<tr>
<td class="org-left"><a href="https://tarballs.hexstreamsoft.com/libraries/latest/bubble-operator-upwards_latest.tar.gz">bubble-operator-upwards</a></td>
<td class="org-left">bubble-operator-upwards is a function that bubbles an operator upwards in a form, demultiplexing all alternative branches by way of cartesian product. This operation is notably useful for easy implementation of certain kinds of shorthand notations in macros. A cartesian-product function is also exported, as it's needed to implement the main function. Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/03/0022-bubble-operator-upwards.org">here</a></td>
</tr>
<tr>
<td class="org-left"><a href="https://www.xach.com/lisp/buildapp.tgz">buildapp</a></td>
<td class="org-left">Buildapp is an application for SBCL and CCL that configures and saves an executable Common Lisp image or non-executable core.</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/AccelerationNet/buildnode">buildnode</a></td>
<td class="org-left">Tool for building up an xml dom nicely. (BSD 3 clause) Comments by 40ants <a href="https://github.com/40ants/lisp-project-of-the-day/blob/master/content/2020/04/0032-buildnode.org">here</a>.</td>
</tr>
<tr>
<td class="org-left">buildnode-excel</td>
<td class="org-left">Tool for building up an xml dom of an excel spreadsheet nicely. (BSD 3 clause) Uses this XML format: <a href="http://msdn.microsoft.com/en-us/library/aa140066%28office.10%29.aspx">http://msdn.microsoft.com/en-us/library/aa140066%28office.10%29.aspx</a></td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/AccelerationNet/buildnode">buildnode-html5</a></td>
<td class="org-left">Tool for building up an xml dom of an html5 document (BSD 3 clause)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/AccelerationNet/buildnode">buildnode-kml</a></td>
<td class="org-left">Tool for building up an xml dom of an KML. (BSD 3 clause)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/AccelerationNet/buildnode">buildnode-xhtml</a></td>
<td class="org-left">Tool for building up an xml dom of an excel spreadsheet nicely. (BSD 3 clause)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/AccelerationNet/buildnode">buildnode-xul</a></td>
<td class="org-left">Tool for building up an xml dom of a Mozilla xul document (BSD 3 clause)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/pinterface/burgled-batteries">burgled-batteries</a></td>
<td class="org-left">Lisp-Python interface (MIT)</td>
</tr>
<tr>
<td class="org-left"><a href="https://github.com/mmontone/burgled-batteries.syntax">burgled-batteries.syntax</a></td>
<td class="org-left">Embedded Python syntax for burgled-batteries (MIT)</td>
</tr>
<tr>