id
int64
0
45.1k
file_name
stringlengths
4
68
file_path
stringlengths
14
193
content
stringlengths
32
9.62M
size
int64
32
9.62M
language
stringclasses
1 value
extension
stringclasses
6 values
total_lines
int64
1
136k
avg_line_length
float64
3
903k
max_line_length
int64
3
4.51M
alphanum_fraction
float64
0
1
repo_name
stringclasses
779 values
repo_stars
int64
0
882
repo_forks
int64
0
108
repo_open_issues
int64
0
90
repo_license
stringclasses
8 values
repo_extraction_date
stringclasses
146 values
sha
stringlengths
64
64
__index_level_0__
int64
0
45.1k
exdup_ids_cmlisp_stkv2
listlengths
1
47
25,694
simut.lisp
foss-santanu_simut/simut.lisp
;;;; simut.lisp (in-package #:simut) ;;; "simut" goes here. Hacks and glory await!
88
Common Lisp
.lisp
3
26.666667
45
0.675
foss-santanu/simut
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
bb6c668b32d701456ff980ff18f73fbda6f042d88a95bb6f1de55f8da4bfd7ae
25,694
[ -1 ]
25,695
test-unit-test-structs.lisp
foss-santanu_simut/test/test-unit-test-structs.lisp
(in-package #:test-simut) ;; Test for create-fixture (create-fixture initialize-a (setf a (make-hash-table)) (setf (gethash 'name a) "santanu")) ;; Call setup function initialize-a to set variable a (initialize-a) (assert (string= (gethash 'name a) "santanu")) ;; Test for create-unit-...
6,196
Common Lisp
.lisp
136
41.610294
88
0.667603
foss-santanu/simut
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
653e52a99f2d68cd46b1a58f76b427a2b58265243a75070cc45eba40c565e7eb
25,695
[ -1 ]
25,696
unit-test-structs.lisp
foss-santanu_simut/src/unit-test-structs.lisp
(in-package #:simut) ;; Repository of all test cases and test suites (setf *global-test-suite* (make-hash-table)) (defmacro create-fixture (fixture-name &rest forms) "create-fixture: builds a fixture function and assigns to a symbol Arguments: fixture-name - name of fixture function forms - Lisp f...
12,378
Common Lisp
.lisp
230
45.813043
125
0.651155
foss-santanu/simut
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
4d45ae930b679e233152153c614ab9543174d8a6c7ec22e74d2bca988c6e31d0
25,696
[ -1 ]
25,697
simut.asd
foss-santanu_simut/simut.asd
;;;; simut.asd (asdf:defsystem #:simut :serial t :description "My (sim)ple (u)nit (t)esting framework" :author "Santanu Chakrabarti <santanu.chakrabarti@gmail.com>" :version "0.1" :license "GPL" :components ((:file "package") (:file "simut") (:module "src" ...
494
Common Lisp
.asd
15
23.533333
71
0.530526
foss-santanu/simut
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
35c537ab0c33837f6041ae89996c0335c318767a3953bee17ffb8041bf891d9b
25,697
[ -1 ]
25,701
user_manual.md
foss-santanu_simut/user_manual.md
## Rudimentary Documentation for UNIT-TEST-STRUCTS.LISP *Containing Directory /host/santanu/programming/Lisp/simut/src/* ### API Documentation #### CREATE-FIXTURE (fixture-name &rest forms) [MACRO] > > create-fixture: builds a fixture function and assigns to a symbol > Argu...
10,819
Common Lisp
.l
196
53.086735
173
0.695052
foss-santanu/simut
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
0f89d8a37ef24825d34d687c373408479d6c3554341ed51aa77165a8d8604074
25,701
[ -1 ]
25,718
day3.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day3.lisp
(in-package #:day3) (defparameter day3-input "~/Projects/advent-of-code-2020/input/day3-input.txt") (defun parse-line (tree-line) (coerce tree-line 'list)) (defparameter tree-lines (mapcar #'parse-line (uiop:read-file-lines day3-input))) (defparameter trees (make-array (list (length tree-lines) (length (first tre...
742
Common Lisp
.lisp
19
33.684211
86
0.639665
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8c89aa3513d837bb06995d51f1c5d827b524ca8f7ceae9cb68fb4ca3e6c2c684
25,718
[ -1 ]
25,719
day12.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day12.lisp
(in-package :day12) (defparameter day12-input "~/Projects/advent-of-code-2020/input/day12-input.txt") (defparameter day12-test-input "~/Projects/advent-of-code-2020/input/day12-test-input.txt") (defparameter +cardinals+ '((north 0) (east 90) (south 180) (west 270))) (defparameter *part1-actions* '((N . n1) ...
4,681
Common Lisp
.lisp
124
29.604839
91
0.549215
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
2e8b5c9f14ec238732625dafbf3ec5a84ac9b8a7c50fe3f7e01f677aa59eb343
25,719
[ -1 ]
25,720
day16.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day16.lisp
(in-package :day16) (defparameter input "~/Projects/advent-of-code-2020/input/day16-input.txt") (defparameter test-input "~/Projects/advent-of-code-2020/input/day16-test-input.txt") (defparameter test-input-2 "~/Projects/advent-of-code-2020/input/day16-test-input-2.txt") (defun parse-rule (rule-str) (let* ((pos-co...
4,344
Common Lisp
.lisp
90
33.6
96
0.504721
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a4e9f5de72417d745e308ef793fac88f14e5219b278bf6118add19a033b2b40e
25,720
[ -1 ]
25,721
package.lisp
paul-jewell_advent-of-code-2020/2020/lisp/package.lisp
;;;; package.lisp (defpackage #:day1 (:use #:cl #:cl-ppcre) (:export solution1 solution2)) (defpackage #:day2 (:use #:cl #:cl-ppcre) (:export solution1 solution2)) (defpackage #:day3 (:use #:cl #:cl-ppcre) (:export solution1 solution2)) (defpackag...
2,555
Common Lisp
.lisp
135
11.6
31
0.499167
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
2878a2809ea1039e51b0607784e7e5432b295eece6842c04c0f0f6c89f038d72
25,721
[ -1 ]
25,722
day13.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day13.lisp
(in-package :day13) (defparameter day13-test-input "~/Projects/advent-of-code-2020/input/day13-test-input.txt") (defparameter day13-input "~/Projects/advent-of-code-2020/input/day13-input.txt") (defun parse-input (file) (let* ((input (uiop:read-file-lines file)) (start-time (parse-integer (car input))) ...
2,425
Common Lisp
.lisp
47
45.212766
106
0.628596
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
e85cf2660b7347d343fd60fb682bce0d869cc9329328dd2ffdd287620a4fb372
25,722
[ -1 ]
25,723
day5.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day5.lisp
(in-package :day5) (defparameter day5-input "~/Projects/advent-of-code-2020/input/day5-input.txt") (defparameter boarding-passes (uiop:read-file-lines day5-input)) (defparameter day5-test-input-1 "~/Projects/advent-of-code-2020/input/day5-test-input-1.txt") (defparameter test-boarding-passes (uiop:read-file-lines day...
1,359
Common Lisp
.lisp
25
50.16
104
0.675452
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
15f4a20546e5d5b36ea99a51f469b59283f7b4f1c8f997f3ef4de375fe0bc09e
25,723
[ -1 ]
25,724
day6.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day6.lisp
(in-package :day6) (defparameter day6-test-input "~/Projects/advent-of-code-2020/input/day6-test-input.txt") (defparameter day6-input "~/Projects/advent-of-code-2020/input/day6-input.txt") (defun count-yes (response) (length (remove-duplicates (remove-if #'(lambda (c) (char= c #...
1,450
Common Lisp
.lisp
35
28.257143
89
0.501425
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
5b1a14ddfeb498bd6007c007170d628bdc89607726dad2215770b64b9cfb8c01
25,724
[ -1 ]
25,725
day19.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day19.lisp
(in-package :day19) (defparameter day19-test-input "~/Projects/advent-of-code-2020/input/day19-test-input.txt") (defparameter day19-test-input2 "~/Projects/advent-of-code-2020/input/day19-test-input2.txt") (defparameter day19-input "~/Projects/advent-of-code-2020/input/day19-input.txt") ;; These three functions need ...
4,096
Common Lisp
.lisp
89
37.876404
116
0.577482
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
4976dacb802adc2d387d6ae8c3f1f14e25bd0a894beab4e76c4a1d39456fa969
25,725
[ -1 ]
25,726
day17.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day17.lisp
(in-package #:day17) (defparameter input "~/Projects/advent-of-code-2020/input/day17-input.txt") (defparameter test-input "~/Projects/advent-of-code-2020/input/day17-test-input.txt") ;; Design choices ;; -------------- ;; Initial array is 2 dimensional, and represents the layer in the middle of the ;; cube. Each iter...
7,108
Common Lisp
.lisp
143
37.006993
96
0.514541
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
4f05bd8cfb722a50a9e834222623cd6f3d94db0c1444831a36b4ba476ad77f43
25,726
[ -1 ]
25,727
day4.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day4.lisp
(in-package :day4) (defparameter day4-test-input-1 "~/Projects/advent-of-code-2020/input/day4-test-input.txt") ;; Test input 2 containts 4 valid and 4 invalid passports according to part 2 criteria (defparameter day4-test-input-2 "~/Projects/advent-of-code-2020/input/day4-test-input-2.txt") (defparameter day4-input "...
2,587
Common Lisp
.lisp
52
42.942308
93
0.625
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
6ccd83d54eeea068626f4aa671adb22e0e998d2ec641084201a36fd8877dc893
25,727
[ -1 ]
25,728
day15.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day15.lisp
(in-package :day15) (defparameter input '(12 1 16 3 11 0)) (defparameter test-input '(0 3 6)) (defvar memory) (defun load-initial-data (data) (loop :for turn :from 1 :for value :in data :do (setf (gethash value memory) turn))) (defun compute-next-number (num turn end) (cond ((= turn end) num) ...
920
Common Lisp
.lisp
25
32.88
107
0.670056
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
0d58fd1e9f3b9186391c0cf06ddc0e8fc4c644225987dff7018f333644edd2db
25,728
[ -1 ]
25,729
day14.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day14.lisp
(in-package :day14) (defparameter day14-input "~/Projects/advent-of-code-2020/input/day14-input.txt") (defparameter day14-test-input "~/Projects/advent-of-code-2020/input/day14-test-input.txt") (defparameter day14-test-input-2 "~/Projects/advent-of-code-2020/input/day14-test-input-2.txt") (defstruct d-comp code (...
3,537
Common Lisp
.lisp
76
35.276316
119
0.554266
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
0936bb16a89ab0c58be54c32e8de32dc08dadd10bbcbf88e7a9b18c2634e2571
25,729
[ -1 ]
25,730
day9.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day9.lisp
(in-package :day9) (defparameter day9-test-input "~/Projects/advent-of-code-2020/input/day9-test-input.txt") (defparameter day9-input "~/Projects/advent-of-code-2020/input/day9-input.txt") (defun sums-in-preamble (list) (loop :for values on list :for x := (first values) :nconc (loop :for y :in (rest...
1,514
Common Lisp
.lisp
29
46.103448
103
0.63981
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
48a9c882c7086175c31884fda1f0926778ef4ea22b6e92d784f48766bb1f9edf
25,730
[ -1 ]
25,731
day18.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day18.lisp
(in-package :day18) (defparameter +test1-input+ "2 * 3 + (4 * 5)") (defparameter +test2-input+ "5 + (8 * 3 + 9 + 3 * 4 * 3)") (defparameter +test3-input+ "5 * 9 * (7 * 3 * 3 + 9 * 3 + (8 + 6 * 4))") (defparameter +test4-input+ "((2 + 4 * 9) * (6 + 9 * 8 + 6) + 6) + 2 + 4 * 2") (defparameter day18-input "~/Projects/adv...
1,928
Common Lisp
.lisp
35
51.571429
110
0.619883
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
fcf0c54e5afb99073da4220c15676018363ef9d483d5c1e6f678a6db3705e496
25,731
[ -1 ]
25,732
day11.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day11.lisp
(in-package :day11) (defparameter day11-input "~/Projects/advent-of-code-2020/input/day11-input.txt") (defparameter day11-test-input "~/Projects/advent-of-code-2020/input/day11-test-input.txt") (defun parse-layout (filename) (let ((file-lines (uiop:read-file-lines filename))) (make-array (list (length file-line...
5,213
Common Lisp
.lisp
104
36.538462
124
0.522714
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a16974a64fd1cf69c8e1dff116d44b33912803759b14cbcc730482f7aeb7825c
25,732
[ -1 ]
25,733
day10.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day10.lisp
(in-package :day10) (defparameter day10-test-input1 "~/Projects/advent-of-code-2020/input/day10-test-input-1.txt") (defparameter day10-test-input2 "~/Projects/advent-of-code-2020/input/day10-test-input-2.txt") (defparameter day10-input "~/Projects/advent-of-code-2020/input/day10-input.txt") (defun part1 (filename) ...
1,812
Common Lisp
.lisp
42
36.190476
94
0.62707
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
7d041d954b46d0af79af2af0aff994a5a6a2f32b14ed08a6c22b9ad8cf8523c8
25,733
[ -1 ]
25,734
day7.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day7.lisp
(in-package :day7) (defparameter day7-test-input "~/Projects/advent-of-code-2020/input/day7-test-input.txt") (defparameter day7-input "~/Projects/advent-of-code-2020/input/day7-input.txt") (defparameter test-input (uiop:read-file-lines day7-test-input)) ;; Disclosure - I worked on this all day, but failed to find a ...
2,657
Common Lisp
.lisp
54
40.462963
89
0.607419
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
1c2482432da4071f16e5b12e0177190ba15c6192f7653f97907ff27fd67063e4
25,734
[ -1 ]
25,735
day1.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day1.lisp
(in-package #:day1) ;; Read input into list (defparameter day1-input "~/Projects/advent-of-code-2020/input/day1-input.txt") (defparameter expenses (mapcar #'parse-integer (uiop:read-file-lines day1-input))) ;; Refactor - second version - credit and thanks to bpanthi on lisp discord ;; My observations/learning from th...
860
Common Lisp
.lisp
21
33.809524
82
0.596871
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d416e79abc8d022e5ea6f40e14f10143e1763302a0a02cc74effd0c63a8fa7b6
25,735
[ -1 ]
25,736
day20.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day20.lisp
(in-package :day20) (defparameter day20-test-input "~/Projects/advent-of-code-2020/input/day20-test-input.txt") (defparameter day20-input "~/Projects/advent-of-code-2020/input/day20-input.txt") ;; Parse tiles from input string ;; - First line: Tile nnnn: (defun parse-input (file) (let* ((tile-strs (split "\\n\\n" ...
7,906
Common Lisp
.lisp
167
34.796407
117
0.52609
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
2adb8feb58945e29d89ba0d936d0dd7ad4f14b0f5a16bea82d95b759a3b3064e
25,736
[ -1 ]
25,737
day2.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day2.lisp
(in-package #:day2) (defparameter day2-input "~/Projects/advent-of-code-2020/input/day2-input.txt") (defun parse-password (pass-str) ;; Password line format: ;; x - y c: password ;; character c must be present between x and y times (let* ((pos-- (position #\- pass-str)) (pos-space (position #\SPACE p...
1,801
Common Lisp
.lisp
45
32.377778
85
0.590961
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
3a91db4ad0c683f5201f85dd708f65a437a3689e26589ca70c8e9a6b0ac8fcd8
25,737
[ -1 ]
25,738
day8.lisp
paul-jewell_advent-of-code-2020/2020/lisp/day8.lisp
(in-package :day8) (defparameter day8-test-input "~/Projects/advent-of-code-2020/input/day8-test-input.txt") (defparameter day8-input "~/Projects/advent-of-code-2020/input/day8-input.txt") (defstruct console code (acc 0) (pc 0)) (defmacro create-console (name code) `(setq ,name (make-console :code ,code))) ...
2,977
Common Lisp
.lisp
65
39.492308
123
0.636678
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
fd8de7263f788f64efeb2cdee0c0953066a80daacd5458dd6e48b2d2ec0a183f
25,738
[ -1 ]
25,739
main.lisp
paul-jewell_advent-of-code-2020/2020/lisp/tests/main.lisp
;;;; tests/main.lisp ;; note: answers in this test suite relate to the data provided to me ;; by the advent of code website. Different data sets are provided ;; to different users - your data set and answers therefore will be ;; different. (defpackage #:advent2020/test (:use #:cl #:fiveam) ...
4,217
Common Lisp
.lisp
143
26.895105
79
0.663344
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
1bd5bc407291e0769a9e8e9812f8e40ba80c3e6eb1942567a971e2fdadba621f
25,739
[ -1 ]
25,740
advent2020.asd
paul-jewell_advent-of-code-2020/2020/lisp/advent2020.asd
;;;; advent2020.asd (defsystem #:advent2020 :description "Advent of Code 2020" :author "Paul Jewell <paul@teulu.org>" :license "GNU3" ;; Check proper license attribution :version "0.0.1" :serial t :depends-on (#:cl-ppcre #:fiveam #:memoize) :components ((:file "package") ...
1,226
Common Lisp
.asd
39
20.512821
65
0.452321
paul-jewell/advent-of-code-2020
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
c5894e619c151aa19ca39df986c4018c621066e9b611f43c0007fa36ccf31cf0
25,740
[ -1 ]
25,778
index.lisp
gcentauri_iktomi/index.lisp
(in-package :spinneret) (defun home () (with-html (:doctype) (:html (:head (:title "Home page")) (:body (:header (:h1 "Home page")) (:form :action "my-form" :method "post" (:div (:label :for "name") (:input :type "text" :id "name" :name "name")...
776
Common Lisp
.lisp
26
21.192308
60
0.487282
gcentauri/iktomi
1
1
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
4ae43987f2fd5dd810a8bada56a15464e3708f37ecac27693d83654b7ef57ec5
25,778
[ -1 ]
25,781
netlify.toml
gcentauri_iktomi/dist/netlify.toml
[[redirects]] from = "/my-form" to = "https://postman-echo.com/post" status = 200 headers = {X-From = "Netlify"} signed = "API_SIGNATURE_TOKEN"
153
Common Lisp
.l
6
23
38
0.641892
gcentauri/iktomi
1
1
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
43a75fed314d04cfebaa61090c900c134635b423eeb1625a15849c7100bd6836
25,781
[ -1 ]
25,782
index.html
gcentauri_iktomi/dist/index.html
<!DOCTYPE html> <html lang=en> <head> <meta charset=UTF-8> <title>Home page</title> </head> <body> <header> <h1>Home page</h1> </header> <form action=my-form method=post> <div> <label for=name></label> <input type=text id=name name=name> </div> <div> <label for=salary></label> <...
511
Common Lisp
.l
27
15.592593
45
0.624742
gcentauri/iktomi
1
1
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
f831a26432e606c36412fef83acd9004c424fc251d9cb14a081a3e9a491cf997
25,782
[ -1 ]
25,797
package.lisp
Junker_extracond/package.lisp
(defpackage extracond (:use #:cl) (:export #:let1 #:if-let1 #:when-let1 #:if-let* #:cond-list))
144
Common Lisp
.lisp
7
12.714286
24
0.445255
Junker/extracond
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
3221f628153ba4603f1de0903e366a88c9c333aeabdaa2e7f283c16ec2b68f38
25,797
[ -1 ]
25,798
extracond.lisp
Junker_extracond/extracond.lisp
(in-package #:extracond) (defmacro let1 (var val &body body) "Bind VAR to VAL and evaluate BODY. Same as (let ((VAR VAL)) BODY)" `(let ((,var ,val)) ,@body)) (defmacro if-let1 (var val &body body) "Bind VAR to VAL in THEN/ELSE form." `(uiop:if-let ((,var ,val)) ,@body)) (defmacro when-let1 (var val...
3,980
Common Lisp
.lisp
97
31.381443
112
0.548989
Junker/extracond
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
779f1e7bd13cfb7cc8e8152c829a3148996da093482a351bd8966cb26fcc0f0e
25,798
[ -1 ]
25,799
extracond.asd
Junker_extracond/extracond.asd
(defsystem extracond :version "0.1.0" :author "Dmitrii Kosenkov" :license "GPL3" :depends-on () :description "Extra set of conditional macros" :homepage "https://github.com/Junker/extracond" :source-control (:git "https://github.com/Junker/extracond.git") :components ((:file "package") (:...
340
Common Lisp
.asd
10
29.9
66
0.684848
Junker/extracond
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
291a2e1c94d4422cbb68612f1af5802cbfa1e104766a03f25ddd6b5dd77ce038
25,799
[ -1 ]
25,817
cl-utils.lisp
LeoMingo_cl-utils/cl-utils.lisp
(defpackage cl-utils (:export :make-adjustable-array :make-adjustable-string :push-char :split-at :trim-arr-edge :trim-nth :conc-str-arr :concstr :concarr :char-arr->str :seq ;A ...
7,198
Common Lisp
.lisp
195
26.292308
88
0.527919
LeoMingo/cl-utils
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d4822300c7e2db5954fedbef2c25973df86ef681983f0b98910e578ede10a402
25,817
[ -1 ]
25,834
package.lisp
atgreen_cl-vault/package.lisp
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-VAULT; Base: 10 -*- ;;; ;;; Copyright (C) 2019 Anthony Green <green@moxielogic.com> ;;; ;;; This program is free software: you can redistribute it and/or ;;; modify it under the terms of the GNU Affero General Public License ;;; as published...
922
Common Lisp
.lisp
20
43.55
72
0.707778
atgreen/cl-vault
1
0
0
AGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
99a8589d6ca2a946e8670aa435ef9cbd94b036ec807e7ae9493187d7eddbafae
25,834
[ -1 ]
25,835
vault.lisp
atgreen_cl-vault/vault.lisp
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL-VAULT; Base: 10 -*- ;;; ;;; Copyright (C) 2019 Anthony Green <green@moxielogic.com> ;;; ;;; This program is free software: you can redistribute it and/or ;;; modify it under the terms of the GNU Affero General Public License ;;; as published...
1,540
Common Lisp
.lisp
34
41.764706
86
0.699268
atgreen/cl-vault
1
0
0
AGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8717618e83d85ccdfeff092414a3e01fe6fa3e0fcfce8511cc17c2e4e7a02fbc
25,835
[ -1 ]
25,836
cl-vault.asd
atgreen_cl-vault/cl-vault.asd
;;; -*- Mode: LISP; Syntax: COMMON-LISP; Package: CL; Base: 10 -*- ;;; ;;; Copyright (C) 2019 Anthony Green <green@moxielogic.com> ;;; ;;; This program is free software: you can redistribute it and/or ;;; modify it under the terms of the GNU Affero General Public License ;;; as published by th...
1,137
Common Lisp
.asd
25
42.32
70
0.702703
atgreen/cl-vault
1
0
0
AGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
c4d78a343e1b9a97185f499b1e18205bc6e26ab687e200ce3f584f5754e329f3
25,836
[ -1 ]
25,855
cl-lib-version.lisp
Bradford-Miller_CL-LIB/cl-lib-version.lisp
(in-package cl-lib) ;; load this AFTER :cl-lib-essentials ;; when updating the functions put this line before the CL-LIB one (so the time stamp is updated). (cl-lib-essentials:version-reporter "CL-LIB-FNS" 5 20 ";; Time-stamp: <2022-01-31 12:53:51 gorbag>" ...
744
Common Lisp
.lisp
12
48.25
114
0.583448
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
5db87af8acec9e47529dc77d750b283c32a78f4773fcea340fa09756f48a2954
25,855
[ -1 ]
25,856
init-extras.lisp
Bradford-Miller_CL-LIB/init-extras.lisp
;;; -*- Mode: LISP; Syntax: ansi-common-lisp; Package: CL-LIB; Base: 10 -*- ;; Time-stamp: <2008-05-03 13:12:47 gorbag> ;; CVS: $Id: init-extras.lisp,v 1.2 2008/05/03 17:41:47 gorbag Exp $ (in-package cl-lib) ;;; ;; This portion of CL-LIB Copyright (C) 2000-2008 Bradford W. Miller ;; ;; This library is free software;...
1,441
Common Lisp
.lisp
1
1,440
1,441
0.700208
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
678e10512f211e6e8cff4bb98c838cdf3af00b2ff20afa91e05b2a1891dc134e
25,856
[ -1 ]
25,857
cl-lib-tests.lisp
Bradford-Miller_CL-LIB/cl-lib-tests.lisp
(cl-lib:version-reporter "CL-LIB-Tests" 5 18 ";; Time-stamp: <2020-01-04 17:12:45 Bradford Miller(on Aragorn.local)>" "5am testing initializations") (defpackage :CL-LIB-TESTS (:shadowing-import-from :clos-facets #:defclass #:slot-makunbound #:slot-unbound #:slot-va...
2,217
Common Lisp
.lisp
39
52.307692
118
0.713822
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8bfbdb4c12ffec83ba3f167895811f98fca7bba36ef57451eb7f55e99aa3ec0b
25,857
[ -1 ]
25,858
cl-lib-lispdoc.asd
Bradford-Miller_CL-LIB/cl-lib-lispdoc.asd
;; Time-stamp: <2019-01-27 17:57:26 Bradford Miller(on Aragorn.local)> ;; This portion of CL-LIB Copyright (C) 2019 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Software Found...
1,143
Common Lisp
.lisp
20
54.55
111
0.747312
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
0211e4a32e6d92c65db6230a16ccfaa3da63ec4cf1f5718e913db608fcd651ff
25,858
[ -1 ]
25,859
clim-extensions.lisp
Bradford-Miller_CL-LIB/compatibility/clim-extensions.lisp
;;; -*- Mode: LISP; Syntax: ansi-common-lisp; Package: CL-LIB; Base: 10 -*- ;; Time-stamp: <2012-01-05 17:49:12 millerb> ;; CVS: $Id: clim-extensions.lisp,v 1.2 2012/01/05 22:51:27 millerb Exp $ ;;; ;;; Copyright (C) 2002 by Bradford W. Miller bradford.w.miller@gmail.com ;;; ;;; Right of use & redistribution is grante...
1,583
Common Lisp
.lisp
34
43.735294
78
0.715953
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
e1f862c158be3f6a7bc882c1d98ae675b851a30f711509fa37854f23e5c7f360
25,859
[ -1 ]
25,860
process.lisp
Bradford-Miller_CL-LIB/compatibility/process.lisp
;;; -*- Mode: LISP; Syntax: Ansi-common-lisp; Package: process; Base: 10; Vsp: 1 -*- ;; Time-stamp: <2007-05-18 11:32:47 miller> ;; CVS: $Id: process.lisp,v 1.1.1.1 2007/11/19 17:38:18 gorbag Exp $ ;;;; Copyright (C) 1994, 1993, 1992 by the Trustees of the University of Rochester. All rights reserved. ;;; Right of use...
5,876
Common Lisp
.lisp
1
5,874
5,876
0.687713
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
60051b3bc947fcf118d34ad1fdc5f4bbd8acc07314f52f99c76c08a005297327
25,860
[ -1 ]
25,861
cltl2.lisp
Bradford-Miller_CL-LIB/compatibility/cltl2.lisp
;;; -*- Mode: LISP; Syntax: Ansi-common-lisp; Package: FUTURE-COMMON-LISP-INTERNALS; Base: 10 -*- ;; Time-stamp: <2007-05-18 11:09:25 miller> ;; CVS: $Id: cltl2.lisp,v 1.1.1.1 2007/11/19 17:38:04 gorbag Exp $ (EVAL-WHEN (COMPILE LOAD EVAL) (PUSHNEW :LOGICAL-PATHNAMES *FEATURES*) (PUSHNEW :ANSI *FEATURES*) #+SYM...
491
Common Lisp
.lisp
1
489
491
0.665988
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
e765121f73cb025f9494f4e6e19ede3aee9f3adc078bc6ea8ed88296455e808a
25,861
[ -1 ]
25,862
cl-array-fns.lisp
Bradford-Miller_CL-LIB/functions/cl-array-fns.lisp
(in-package cl-lib) (version-reporter "CL-LIB-FNS-Array Fns" 5 0 ";; Time-stamp: <2012-01-05 17:44:49 millerb>" "CVS: $Id: cl-array-fns.lisp,v 1.2 2012/01/05 22:47:53 millerb Exp $ restructured version") ;;; ;;; Copyright (C) 1996--1992 by Bradford W. Miller, miller@cs.rochester.edu ;;; ...
3,949
Common Lisp
.lisp
74
49.337838
92
0.680239
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
3690e67b7b3fbc0a643ce6fce8d86dc2214c6a9f3bd36d9f09db1b228472ab25
25,862
[ -1 ]
25,863
cl-list-fns.lisp
Bradford-Miller_CL-LIB/functions/cl-list-fns.lisp
(in-package cl-lib) (version-reporter "CL-LIB-FNS-List Fns" 5 13 ";; Time-stamp: <2019-02-18 16:00:00 Bradford Miller(on Aragorn.local)>" ";; use lispworks' version of dotted-list-p") ;; 5.13 10/19/11 use lispworks' version of dotted-list-p ;; 5.12 7/11/08 New: de-alistify, dotted-list-p, dotted-li...
10,507
Common Lisp
.lisp
250
37.18
126
0.655977
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
1a66167d27ffa59166dc81561c7dd3122b4cedcbda4064b5db43e01bf1a61035
25,863
[ -1 ]
25,864
cl-lib-function-tests.lisp
Bradford-Miller_CL-LIB/functions/cl-lib-function-tests.lisp
(in-package cl-lib-tests) (version-reporter "CL-LIB-Func Tests" 5 18 ";; Time-stamp: <2020-01-05 16:55:11 Bradford Miller(on Aragorn.local)>" ";; new 5am testing") ;; 5.18 1/ 3/20 fix array-fn test ;; 5.17 10/26/19 move etest here so we don't have problems later; fix various typ...
9,196
Common Lisp
.lisp
275
29.087273
118
0.605305
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
433001657f531b705da136ab8a8679735d17857a552c3d219a69ba2edc7a9f80
25,864
[ -1 ]
25,865
cl-map-fns.lisp
Bradford-Miller_CL-LIB/functions/cl-map-fns.lisp
(in-package cl-lib) (version-reporter "CL-LIB-FNS-Map Fns" 5 0 ";; Time-stamp: <2012-01-05 17:45:44 millerb>" "CVS: $Id: cl-map-fns.lisp,v 1.2 2012/01/05 22:47:54 millerb Exp $ restructured version") ;;; ;;; Copyright (C) 1996--1992 by Bradford W. Miller, miller@cs.rochester.edu ;;; ...
10,214
Common Lisp
.lisp
193
40.740933
130
0.551365
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
62fbf4f14f0a9fd8975c1f1df5120300076eda5adadd7e47dc3446ade0adf824
25,865
[ -1 ]
25,866
keywords.lisp
Bradford-Miller_CL-LIB/functions/keywords.lisp
(in-package cl-lib) (version-reporter "CL-LIB-FNS-Keyword Fns" 5 20 ";; Time-stamp: <2022-01-31 12:57:03 gorbag>" ";; remove-keyword-args") ;; 5.20 1/31/22 add remove-keyword-args as a more efficient version of ;; remove-keyword-arg when there are multiple ;; ke...
6,568
Common Lisp
.lisp
132
44.69697
137
0.679101
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
19f3601f7a8c5f0a229a6ff1ca49d29dc4eb47c91630178b0bcce8ca4868343b
25,866
[ -1 ]
25,867
cl-lib-defpackage.lisp
Bradford-Miller_CL-LIB/functions/cl-lib-defpackage.lisp
(in-package cl-user) (defpackage :cl-lib-initializations (:use common-lisp) (:export #:add-initialization #:initializations #:delete-initialization #:reset-initializations #:*cold-initialization-list* #:*warm-initialization-list* #:*once-initialization-list* #:*gc-initialization-list* #:*before-cold-initialization-lis...
9,792
Common Lisp
.lisp
165
54.381818
444
0.711656
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d28adddb01dde2a03ebce4930c90ebe064e75d4f0c7b3fa222db254479f02732
25,867
[ -1 ]
25,868
strings.lisp
Bradford-Miller_CL-LIB/functions/strings.lisp
;;; -*- Mode: LISP; Syntax: Ansi-common-lisp; Package: CL-LIB; Base: 10 -*- (IN-PACKAGE CL-LIB) (version-reporter "CL-LIB-FNS-Strings" 5 0 ";; Time-stamp: <2008-05-03 13:36:04 gorbag>" "CVS: $Id: strings.lisp,v 1.2 2008/05/03 17:42:01 gorbag Exp $ restructured version") ;; This portion of CL-LIB Cop...
12,757
Common Lisp
.lisp
1
12,756
12,757
0.647252
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
408d4421f17473854f6f6f3ebd88110b589ac9238c4e78afdeb2aa8c974aa3bc
25,868
[ -1 ]
25,869
files.lisp
Bradford-Miller_CL-LIB/functions/files.lisp
;;; -*- Mode: LISP; Syntax: Ansi-common-lisp; Package: CL-LIB; Base: 10 -*- (IN-PACKAGE CL-LIB) (version-reporter "CL-LIB-FNS-File Fns" 5 0 ";; Time-stamp: <2008-05-03 13:35:04 gorbag>" "CVS: $Id: files.lisp,v 1.2 2008/05/03 17:42:01 gorbag Exp $ restructured version") ;; This portion of CL-LIB Copy...
4,432
Common Lisp
.lisp
86
48.139535
102
0.658053
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
5535e271404cde11ce00c1677349cdadf67994f695bb40300d86a98d9917fce5
25,869
[ -1 ]
25,870
number-handling.lisp
Bradford-Miller_CL-LIB/functions/number-handling.lisp
;;; -*- Mode: LISP; Syntax: ansi-common-lisp; Package: CL-LIB; Base: 10 -*- (in-package cl-lib) (version-reporter "CL-LIB-FNS-Number Handling" 5 1 ";; Time-stamp: <2007-05-18 11:35:41 miller>" "CVS: $Id: number-handling.lisp,v 1.1.1.1 2007/11/19 17:41:31 gorbag Exp $ add round-off") ;;; ;;; Copyri...
5,003
Common Lisp
.lisp
1
5,002
5,003
0.64961
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
e377e5ff81ef8b6319c3cd00145d5c82c60052c04768dabdd65c8e87ccf0a25e
25,870
[ -1 ]
25,871
clos-extensions.lisp
Bradford-Miller_CL-LIB/functions/clos-extensions.lisp
(in-package cl-lib) (version-reporter "CL-LIB-FNS-CLOS" 5 16 ";; Time-stamp: <2019-03-16 17:57:22 Bradford Miller(on Aragorn.local)>" "update documentation descriptions") ;; 5.16 3/16/19 Expand some of the description fields before releasing to github ;; 5.0 5/ 3/08 make generate-inherite...
7,178
Common Lisp
.lisp
136
45.154412
152
0.655649
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
59b6ed038056883948ec1f7aa2544fef6bd1f83ec1644118b9b6e2fc10d89fc1
25,871
[ -1 ]
25,872
cl-lib-essentials.lisp
Bradford-Miller_CL-LIB/functions/cl-lib-essentials.lisp
;;; -*- Mode: LISP; Syntax: ansi-common-lisp; Package: CL-LIB; Base: 10 -*- (in-package cl-lib-essentials) (defparameter *cl-lib-essentials-version* '(version-reporter "CL-LIB-Essentials" 5 16 ";; Time-stamp: <2019-03-16 13:01:13 Bradford Miller(on Aragorn.local)>" ...
9,250
Common Lisp
.lisp
130
61.923077
153
0.66685
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
c86e554fc59899bc92e398a83916fb6d07f5ad06617439fc44c07156f663933e
25,872
[ -1 ]
25,873
cl-sets.lisp
Bradford-Miller_CL-LIB/functions/cl-sets.lisp
(IN-PACKAGE CL-LIB) (version-reporter "CL-LIB-FNS-Set Fns" 5 16 ";; Time-stamp: <2019-03-23 21:17:01 Bradford Miller(on Aragorn.local)>" "fix documentation strings") ;; 5.16 3/23/19 fix documentation strings ;; Some portions Copyright (C) 2019 Bradford W. Miller ;; This portion of CL-LIB Copyright...
7,907
Common Lisp
.lisp
1
7,905
7,907
0.635513
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
3ef2783b41bf4f093b1dd500e9d838a98c9b9d97eec03596c52b637c92cf0c21
25,873
[ -1 ]
25,874
cl-extensions.lisp
Bradford-Miller_CL-LIB/functions/cl-extensions.lisp
(in-package cl-lib) (cl-lib:version-reporter "CL-LIB-FNS-Extensions" 5 16 ";; Time-stamp: <2019-03-03 11:47:39 Bradford Miller(on Aragorn.local)>" "sbcl: get-compiled-function-name, getenv port") ;; 5.16 2/23/19 port get-compiled-function-name and getenv to sbcl ;;...
10,753
Common Lisp
.lisp
1
10,752
10,753
0.623361
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
addd94d474055fdbf86de6a9f6afe6bc1f3ffabdb41ab34977b4660ff7b6b126
25,874
[ -1 ]
25,875
cl-boolean.lisp
Bradford-Miller_CL-LIB/functions/cl-boolean.lisp
(IN-PACKAGE CL-LIB) (version-reporter "CL-LIB-FNS-Boolean Fns" 5 16 ";; Time-stamp: <2019-03-16 16:32:58 Bradford Miller(on Aragorn.local)>" "fix doc on nand") ;; 5.16. 3/16/19 fix doc on nand ;;;; **************************************************************** ;;;; Extensions to Common Lisp *****...
7,492
Common Lisp
.lisp
161
40.496894
125
0.624674
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
39a7512640ecd98755ee9812bb6b67041830482af16769969acc4ed044e9a7cc
25,875
[ -1 ]
25,876
re-to-dfa.lisp
Bradford-Miller_CL-LIB/packages/re-to-dfa.lisp
;;; -*- Syntax: ANSI-Common-Lisp; Package: CL-LIB; Mode: LISP -*- (in-package CL-LIB) (cl-lib:version-reporter "CL-LIB-RE-to-DFA" 5 0 ";; Time-stamp: <2007-05-18 11:28:10 miller>" "CVS: $Id: re-to-dfa.lisp,v 1.1.1.1 2007/11/19 17:47:19 gorbag Exp $ restructured version") ;;; Copyright (C) 19...
28,071
Common Lisp
.lisp
1
28,070
28,071
0.630116
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a7702bd72d81bdfba7d6d694b529d4dcbbe60abac7518319c0039ec46baf9ff3
25,876
[ -1 ]
25,877
syntax.lisp
Bradford-Miller_CL-LIB/packages/syntax.lisp
(in-package CL-LIB) (cl-lib:version-reporter "CL-LIB-Syntax" 5 0 ";; Time-stamp: <2008-05-03 13:20:20 gorbag>" "CVS: $Id: syntax.lisp,v 1.2 2008/05/03 17:42:03 gorbag Exp $ restructured version") ;; This portion of CL-LIB Copyright (C) 1985-2008 by Bradford W. Miller and the Trustees of the ...
1,863
Common Lisp
.lisp
1
1,862
1,863
0.705851
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
3a209224b293b01a4fd158180dc6761e8570db8d2e42e1614693593b62be9fce
25,877
[ -1 ]
25,878
transcripts.lisp
Bradford-Miller_CL-LIB/packages/transcripts.lisp
(in-package cl-user) (cl-lib:version-reporter "CL-LIB-Transcripts" 5 13 ";; Time-stamp: <2011-11-16 17:31:23 millerb>" "CVS: $Id: transcripts.lisp,v 1.5 2011/11/24 16:05:50 millerb Exp $ ;; *suppress-logs*") ;; 5.13 11/16/11 add *suppress-logs* to disable opening logs (e.g. when testing from ...
14,060
Common Lisp
.lisp
1
14,059
14,060
0.63357
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
4197b994b31709a273a4c43319d5730663dc656da4cb026509eabe690031c3dd
25,878
[ -1 ]
25,879
triangular-matrices.lisp
Bradford-Miller_CL-LIB/packages/triangular-matrices.lisp
(in-package CL-LIB) (cl-lib:version-reporter "CL-LIB-Triangular-Matrices" 5 16 ";; Time-stamp: <2019-11-11 17:03:48 Bradford Miller(on Aragorn.local)>" "restructured version") ;; Version history ;; 5.16 5/19/19 Reformatting to fix nominal screen size (mostly just fixing comments and line...
18,684
Common Lisp
.lisp
1
18,683
18,684
0.621762
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
52c93e369975efd24a249973e23a472849b35365b83f78aa11ae055f03e88092
25,879
[ -1 ]
25,880
resources.lisp
Bradford-Miller_CL-LIB/packages/resources.lisp
(in-package CL-LIB) (cl-lib:version-reporter "CL-LIB-Resources" 5 17 ";; Time-stamp: <2019-10-19 14:23:02 Bradford Miller(on Aragorn.local)>" "fix toplevel") ;; 5.17 10/19/19 add lispworks specific allocation code (for gc purposes) ;; 5.16 3/ 1/19 add test code ;; 5.16 2/23/19 fixup top...
23,401
Common Lisp
.lisp
1
23,400
23,401
0.60335
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
acf2f639eda522ac6dbd7fb5835cee9f7c073a4d855ebb36d72b8536e777ddae
25,880
[ -1 ]
25,881
queues.lisp
Bradford-Miller_CL-LIB/packages/queues.lisp
;;; -*- Mode: LISP; Syntax: Ansi-common-lisp; Package: CL-LIB; Base: 10 -*- (in-package CL-LIB) (cl-lib:version-reporter "CL-LIB-Queues" 5 0 ";; Time-stamp: <2012-01-05 17:47:01 millerb>" "CVS: $Id: queues.lisp,v 1.2 2012/01/05 22:47:56 millerb Exp $ restructured version") ;;; This is a cop...
3,013
Common Lisp
.lisp
1
3,012
3,013
0.63392
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d0b0ca2bf805b0dffdf7f430306c5e05fad1883f2ff2d771bc6c65fa09671efb
25,881
[ -1 ]
25,882
chart.lisp
Bradford-Miller_CL-LIB/packages/chart.lisp
;; $Id: chart.lisp,v 1.2 2008/05/03 17:42:02 gorbag Exp $ ;; Author Bradford W. Miller (miller@mcc.com) (cl-lib:version-reporter "CL-LIB-Chart" 5 7 ";; Time-stamp: <2008-05-03 13:13:44 gorbag>" "CVS: $Id: chart.lisp,v 1.2 2008/05/03 17:42:02 gorbag Exp $ ;; documentation") ;;; ;;; Copyright...
11,824
Common Lisp
.lisp
1
11,823
11,824
0.690714
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
06a140ddbc2b69ff163fb0b6e44cdba82286c8efa4c6bc2bc59e64c29e2068ab
25,882
[ -1 ]
25,883
nregex.lisp
Bradford-Miller_CL-LIB/packages/nregex.lisp
(in-package cl-lib) ; bwm (cl-lib:version-reporter "CL-LIB-NRegex" 5 16 ";; Time-stamp: <2019-03-02 11:40:34 Bradford Miller(on Aragorn.local)>" "fix toplevel") ; bwm ;; minor changes by BWM, no copyright on these changes asserted. ;; 5.16 3/ 2/19 make clear that thes to...
20,251
Common Lisp
.lisp
1
20,249
20,251
0.631031
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d4765dbfc012796d43ba17358f54b3dbe55852a59fd83f70b8bbdc943a34dc5f
25,883
[ -1 ]
25,884
initializations.lisp
Bradford-Miller_CL-LIB/packages/initializations.lisp
(in-package cl-lib-initializations) (defparameter *cl-lib-initializations-version* '(cl-lib:version-reporter "CL-LIB-Initializations" 5 16 ";; Time-stamp: <2019-02-18 13:14:31 Bradford Miller(on Aragorn.local)>" "5am testing")) ;; 5.16. 2/16/19 5am testing (see file initializations-test...
19,455
Common Lisp
.lisp
391
43.639386
131
0.68358
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
b50e7ed81f2651dcc4dd8738528ab9378145e8b5df92d3c958277b6d30901157
25,884
[ -1 ]
25,885
clos-facets.lisp
Bradford-Miller_CL-LIB/packages/clos-facets.lisp
(cl-lib:version-reporter "CL-LIB-CLOS-Facets" 5 17 ";; Time-stamp: <2019-10-27 16:39:13 Bradford Miller(on Aragorn.local)>" "CVS: $Id: clos-facets.lisp,v 1.2 2008/05/03 17:42:02 gorbag Exp $ ;; documentation") ;; 5.17 10/27/19 minor fixes to 5.16 ;; 5.16 3/ 3/19 finish implementation of mu...
31,768
Common Lisp
.lisp
474
59.518987
284
0.709027
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
93e0f5d05d8041ed3556e0edafbeabe9e09a52ed175b486cda50f003f9744c76
25,885
[ -1 ]
25,886
locatives.lisp
Bradford-Miller_CL-LIB/packages/locatives.lisp
(cl-lib:version-reporter "CL-LIB-Locatives" 5 17 ";; Time-stamp: <2020-01-05 17:09:03 Bradford Miller(on Aragorn.local)>" "fix toplevel, add test-setters") ;; 5.17 10/27/19 add :key #'car to check-setter ;; 5.16 3/ 1/19 fixup toplevel, add test-setters. Note, not yet ported to SBCL! ;;; ***...
14,764
Common Lisp
.lisp
1
14,763
14,764
0.599905
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
42f08b637fed6a68a38647e5fda13bf02b9e943cdf3cfcbe73b1cadc47944c35
25,886
[ -1 ]
25,887
reader.lisp
Bradford-Miller_CL-LIB/packages/reader.lisp
(in-package CL-LIB) (cl-lib:version-reporter "CL-LIB-Reader" 5 16 ";; Time-stamp: <2019-05-19 17:18:52 Bradford Miller(on Aragorn.local)>" "toplevel forms") ;; 5.16. 2/23/19 fix toplevel forms ;;; ;;;; (C) 1993 by Bradford W. Miller and the Trustees of the University of Rochester. ;;;; (C) ...
6,051
Common Lisp
.lisp
1
6,050
6,051
0.55528
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
39c611a807b6f7b3bd2ccbd987c611206379736ec512fafc5a1a42a7f209e08e
25,887
[ -1 ]
25,888
prompt-and-read.lisp
Bradford-Miller_CL-LIB/packages/prompt-and-read.lisp
;;; -*- Mode: LISP; Syntax: ansi-common-lisp; Package: CL-LIB; Base: 10 -*- (in-package cl-lib) (cl-lib:version-reporter "CL-LIB-Prompt" 5 0 ";; Time-stamp: <2007-05-18 11:27:37 miller>" "CVS: $Id: prompt-and-read.lisp,v 1.1.1.1 2007/11/19 17:46:48 gorbag Exp $ restructured version") ;;; ;;...
4,910
Common Lisp
.lisp
1
4,909
4,910
0.658859
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d87fe40478ac7d7918e9ef56d0ba837bf32f22f76df3c923320bbfe2f57edab3
25,888
[ -1 ]
25,889
scheme-streams.lisp
Bradford-Miller_CL-LIB/packages/scheme-streams.lisp
;;; -*- Mode: LISP; Syntax: ansi-common-lisp; Package: CL-LIB; Base: 10 -*- (in-package CL-LIB) (cl-lib:version-reporter "CL-LIB-Scheme-Streams" 5 0 ";; Time-stamp: <2012-01-05 17:47:16 millerb>" "CVS: $Id: scheme-streams.lisp,v 1.2 2012/01/05 22:47:56 millerb Exp $ restructured version") ;...
4,769
Common Lisp
.lisp
101
41.732673
100
0.671831
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
c0f3fefdbcc5bc5fe83c6ffcce2e8e85b0d7f8f84633bfb2fb96a397cecde0cb
25,889
[ -1 ]
25,890
clos-facets-tests.lisp
Bradford-Miller_CL-LIB/packages/clos-facets-tests.lisp
(in-package :clos-facets) (cl-lib:version-reporter "CL-LIB-CLOS-Facets-Tests" 5 17 ";; Time-stamp: <2020-01-04 17:14:12 Bradford Miller(on Aragorn.local)>" "CVS: $Id: clos-facets-tests.lisp,v 1.3 2011/11/04 14:10:52 gorbag Exp $ ;; development - note warnings on comp...
4,649
Common Lisp
.lisp
83
52.831325
166
0.698151
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8f9f40363c83f867cc2404fd0278b99cf3b9aa8087580b5a5b3f3c77c72868b0
25,890
[ -1 ]
25,891
clos-facet-defs.lisp
Bradford-Miller_CL-LIB/packages/clos-facet-defs.lisp
(in-package :clos-facets) (cl-lib:version-reporter "CL-LIB-CLOS-Facets-Defs" 0 2 ";; Time-stamp: <2011-10-21 10:36:10 millerb>" "CVS: $Id: clos-facet-defs.lisp,v 1.3 2011/11/04 14:10:52 gorbag Exp $ ;; development (fix comment)") ;; This portion of CL-LIB Copyright (C) 2003-2008 Bradford W. M...
1,696
Common Lisp
.lisp
26
62.615385
102
0.751202
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
06fec10a22bfbe52dbc7f9d258971401f571b8e4fc47f5f9b34267cccd78c561
25,891
[ -1 ]
25,892
resources-tests.lisp
Bradford-Miller_CL-LIB/packages/resources-tests.lisp
(in-package CL-LIB) (cl-lib:version-reporter "CL-LIB-Resources Tests" 5 18 ";; Time-stamp: <2020-01-05 17:17:17 Bradford Miller(on Aragorn.local)>" "new") ;; 5.18 1/ 5/20 In lispworks, make sure we specifically refer to cl-lib version of resources ;; 5.16. 2/17/19 5am testing (new) ;; Th...
7,312
Common Lisp
.lisp
145
38.993103
128
0.581503
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
54aa29d6df5bf0f62cdc5dccf294036f71645c58e94d5e00147645c4a57fab18
25,892
[ -1 ]
25,893
initializations-tests.lisp
Bradford-Miller_CL-LIB/packages/initializations-tests.lisp
;; if FiveAM is loaded, then set up some tests. (in-package :cl-lib-tests) (cl-lib:version-reporter "CL-LIB-Initializations Tests" 5 17 ";; Time-stamp: <2019-10-26 20:28:02 Bradford Miller(on Aragorn.local)>" "5am testing") ;; 5.17 10/26/19 make sure we generate a new initialization name e...
2,424
Common Lisp
.lisp
47
47.787234
134
0.696444
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a2e9c74467b9d60ead808445e238c263f51ce08327828e76a1a323d3515b14bf
25,893
[ -1 ]
25,894
popup-console.lisp
Bradford-Miller_CL-LIB/packages/popup-console.lisp
(cl-lib:version-reporter "CL-LIB-Popup Console" 5 7 ";; Time-stamp: <2021-12-16 13:24:55 gorbag>" "CVS: $Id: popup-console.lisp,v 1.1.1.1 2007/11/26 15:13:24 gorbag Exp $ ;; documentation") ;; 5.1 5/18/07 Title Option (LispWorks Native Windows (CAPI)) ;;; Copyright (C) 2005 by Bradford W. Mi...
6,569
Common Lisp
.lisp
124
49.274194
126
0.726536
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
cb5ad403f05a0d4df314e31b760f05dab0c2458e4c24de91f17fed21f38059a6
25,894
[ -1 ]
25,895
s-package.lisp
Bradford-Miller_CL-LIB/packages/SERIES/s-package.lisp
;;;;-*- Mode: lisp; Package: (SERIES :use "COMMON-LISP" :colon-mode :external) -*- ;;;; The package initialization stuff is done here now, instead of in s-code.lisp. This is based a comment by Bruno Haible who said ;;;; ;;;; "The important point is that the packages setup when you compile ;;;; a file must be identica...
9,186
Common Lisp
.lisp
240
35.758333
132
0.685154
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
f1f22dce3570f44ebdc30824b4dc550c8c804cdd222a7b0ac59bf3852d5aa790
25,895
[ -1 ]
25,896
s-code.lisp
Bradford-Miller_CL-LIB/packages/SERIES/s-code.lisp
;-*- Mode: lisp; syntax:ANSI-COMMON-LISP; Package: (SERIES :use "COMMON-LISP" :colon-mode :external) -*- ;;;; The standard version of this program is available from ;;;; ;;;; http://series.sourceforge.net/ ;;;; ;;;; If you obtained this file from somewhere else, or copied the ;;;; files a long time ago, you might cons...
371,115
Common Lisp
.lisp
9,029
34.672167
362
0.607846
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
79968debe748a440fb1b140537a2a34bbd2b6f67558aa7d944211cf3d657a46b
25,896
[ -1 ]
25,897
s-install.lisp
Bradford-Miller_CL-LIB/packages/SERIES/s-install.lisp
;; This is for loading and installing the SERIES package. (eval-when (load) (series::install))
101
Common Lisp
.lisp
3
30.666667
57
0.744681
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a8c412beef61de4d56c10680ae67f05e428a4df45655ff259214dec53a311ad2
25,897
[ -1 ]
25,898
old-defsystem.lisp
Bradford-Miller_CL-LIB/archive/old-defsystem.lisp
;; Time-stamp: <2005-06-29 11:08:23 miller> ;;; OBSOLETE! ;;; Note new defsystem-lispworks.lisp which has references to the new file-refactoring. ;;; ;;; New versions for other platforms should be straightforward based on that file (essentially only needs ported for the ;;; native defsystem for that platform) ;;; ;;; ...
12,535
Common Lisp
.lisp
1
12,534
12,535
0.601915
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a9b8343b56f979abc78554e250ae45d895e04f8d776ccc5e3faae223b0b0d1b1
25,898
[ -1 ]
25,899
old-minimal-cl-lib.lisp
Bradford-Miller_CL-LIB/archive/old-minimal-cl-lib.lisp
;; Time-stamp: <2012-01-05 17:41:04 millerb> ;;; OBSOLETE! ;;; Note new defsystem-lispworks.lisp which has references to the new file-refactoring. ;;; ;;; New versions for other platforms should be straightforward based on that file (essentially only needs ported for the ;;; native defsystem for that platform) ;;...
10,386
Common Lisp
.lisp
1
10,385
10,386
0.601386
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
01ffde22c3aa9298bc62633eb667df15a298f7b13b27e56616c9d3739440eeb4
25,899
[ -1 ]
25,900
defsystem-lispworks.lisp
Bradford-Miller_CL-LIB/archive/defsystem-lispworks.lisp
(in-package cl-user) ;; Time-stamp: <2012-01-30 15:42:53 gorbag> ;; CVS: $Id: defsystem-lispworks.lisp,v 1.5 2012/01/30 20:44:12 gorbag Exp $ ;; This portion of CL-LIB Copyright (C) 2000-2008 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the G...
8,073
Common Lisp
.lisp
1
8,071
8,073
0.596309
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
31877cd166c551dcfabbd8b26db39a2af5c84da6809ef072127c32961093f1f7
25,900
[ -1 ]
25,901
MCL-mop.lisp
Bradford-Miller_CL-LIB/archive/MCL/MCL-mop.lisp
; Some MCL MOP examples ; Saturday October 30,1999 ; Provides a few more CLOS mop capabilities to MCL. This code is highly MCL-specific. ; No warranties--use at your own risk. Please send suggestions ; and changes to svspire@nmia.com (defmethod finalize-inheritance ((class standard-class)) (ccl::initialize-class...
5,457
Common Lisp
.lisp
1
5,456
5,457
0.703317
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
6f1a8feed687c99d56528ef4fd85b8e208bc8ee2481b6635c99259a9da7631ec
25,901
[ -1 ]
25,902
MCL-TimeStamp.lisp
Bradford-Miller_CL-LIB/archive/MCL/MCL-TimeStamp.lisp
;; The timestamp functionality for FRED: patterned after a similar function in elisp. ;; ;; Author: Bradford W. Miller (bradford.w.miller@gmail.com) ;; made part of CL-LIB 3/2/01 by bradford.w.miller@gmail.com ;;; ;;; Copyright (c) 2001 by Bradford W. Miller ;;; Right of use & redistribution is granted as per the t...
2,914
Common Lisp
.lisp
1
2,913
2,914
0.683253
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8306d1bb23229c525f6d1930d84bc53b94502e5af64e609f161819746d3f532c
25,902
[ -1 ]
25,903
MCL-CLOS.lisp
Bradford-Miller_CL-LIB/archive/MCL/MCL-CLOS.lisp
;; Time-stamp: <2008-05-03 13:26:47 gorbag> ;; MCL doesn't have a CLOS package. Define some MOP definitions compatible with Allegro ;; This portion of CL-LIB Copyright (C) 2001-2008 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Les...
1,960
Common Lisp
.lisp
1
1,959
1,960
0.731633
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
c4a966e31a4c4d58b9686835bf65ba33c947f72516a2fce8f4166f8b3dd6b1ac
25,903
[ -1 ]
25,904
allegro-patches.lisp
Bradford-Miller_CL-LIB/archive/allegro/allegro-patches.lisp
(in-package excl) ;; Time-stamp: <96/01/12 15:57:58 miller> ;; miller@cs.rochester.edu 5/19/93 ;; Patch to allegro source (from 4-1). Distributed with permission. See spr8367. (defun sharp-sharp (stream chr label) (declare (ignore chr)) (when *read-suppress* (return-from sharp-sharp nil)) (if (integerp label...
2,617
Common Lisp
.lisp
1
2,615
2,617
0.64081
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
155e82d9d31515fe006273cd61e5533aa2f12eda89ff55e326c920aae7fa0f2f
25,904
[ -1 ]
25,905
allegro-stuff.lisp
Bradford-Miller_CL-LIB/archive/allegro/allegro-stuff.lisp
(in-package defsys) ;; Time-stamp: <1999-11-22 17:39:44 brad> ;; miller@cs.rochester.edu ;; some new modules (eval-when (compile load eval) (export '(lisp-example-module foreign-syntax-module foreign-syntax-example-module edit-system md-lisp-example-module))) ;; lisp example - lisp code you don't want to compile bu...
16,758
Common Lisp
.lisp
1
16,756
16,758
0.53473
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
75c011b7400ca2eb871d91750e378c86dfc0e4b64e173051f738a22757f95342
25,905
[ -1 ]
25,906
string-io-stream.lisp
Bradford-Miller_CL-LIB/archive/allegro/string-io-stream.lisp
(in-package CL-LIB) (cl-lib:version-reporter "CL-LIB-String-io-streams" 5 0 ";; Time-stamp: <2007-05-18 11:29:41 miller>" "CVS: $Id: string-io-stream.lisp,v 1.1.1.1 2007/11/19 17:48:12 gorbag Exp $ restructured version") ;;; **************************************************************** ;...
14,530
Common Lisp
.lisp
1
14,529
14,530
0.65265
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
ebc1122c9aec8578cbea6f9e1ef8cdbcbc441e715314db5bf89acb9c18fdb4f4
25,906
[ -1 ]
25,907
more-allegro.lisp
Bradford-Miller_CL-LIB/archive/allegro/more-allegro.lisp
(in-package cl-lib) ;; Time-stamp: <96/01/12 15:58:07 miller> ;; raw io (defun raw-read-char (&optional (stream *standard-input*) &rest args) ;; copied from the example on page 14-87 of the allegro 4.1 manual. ;; raw-reading is in response to our earlier enhancement request for the FI interface. (excl:set-termin...
2,224
Common Lisp
.lisp
1
2,222
2,224
0.651978
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
ccda0e214540f426da86fa32de68ea27ed414a16efef8ebb754de61ce2e97de9
25,907
[ -1 ]
25,908
cl-lib-tests.asd
Bradford-Miller_CL-LIB/cl-lib-tests.asd
;; Time-stamp: <2020-01-03 17:33:02 Bradford Miller(on Aragorn.local)> ;; This portion of CL-LIB Copyright (C) 2019, 2020 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Software...
1,404
Common Lisp
.asd
28
43.178571
102
0.66618
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
cf7a3905639f40478f8f518d8588660d0f5ada3077a209268a354ae2375c8b72
25,908
[ -1 ]
25,909
cl-lib-prompt-and-read.asd
Bradford-Miller_CL-LIB/cl-lib-prompt-and-read.asd
;; Time-stamp: <2019-01-27 16:53:34 Bradford Miller(on Aragorn.local)> ;; This portion of CL-LIB Copyright (C) 2019 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Software Found...
1,159
Common Lisp
.asd
20
55.35
111
0.74735
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
899e6b020a0cbcbef65920d0546a5ad0d1c2e8eaf1257245fd1d61f671f96997
25,909
[ -1 ]
25,910
cl-lib-chart.asd
Bradford-Miller_CL-LIB/cl-lib-chart.asd
;; Time-stamp: <2019-01-27 16:53:47 Bradford Miller(on Aragorn.local)> ;; This portion of CL-LIB Copyright (C) 2019 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Software Found...
1,139
Common Lisp
.asd
20
54.35
111
0.746403
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
448d60df540f677c51f871279f1c10ee9396c43ed4d0a3027dcc55f4217be935
25,910
[ -1 ]
25,911
cl-lib-syntax.asd
Bradford-Miller_CL-LIB/cl-lib-syntax.asd
;; Time-stamp: <2019-01-27 17:54:33 Bradford Miller(on Aragorn.local)> ;; This portion of CL-LIB Copyright (C) 2019 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Software Found...
1,141
Common Lisp
.asd
20
54.45
111
0.746858
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d68992d507e08cf4a0c21cd4586f8346b2301952d6dad28344903c95b8ff933b
25,911
[ -1 ]
25,912
cl-lib-queues.asd
Bradford-Miller_CL-LIB/cl-lib-queues.asd
;; Time-stamp: <2019-01-27 16:36:35 Bradford Miller(on Aragorn.local)> ;; This portion of CL-LIB Copyright (C) 2019 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Software Found...
1,141
Common Lisp
.asd
20
54.45
111
0.746858
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
51e6dccd4edee1068187c7ef65711e55a4e03a21443e7a7d04712ae1a68640c9
25,912
[ -1 ]
25,913
cl-lib-scheme-streams.asd
Bradford-Miller_CL-LIB/cl-lib-scheme-streams.asd
;; Time-stamp: <2019-01-27 16:33:19 Bradford Miller(on Aragorn.local)> ;; This portion of CL-LIB Copyright (C) 2019 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Software Found...
1,157
Common Lisp
.asd
20
55.25
111
0.748673
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
502df82c4c9bd74dc38f8d7196e83401dbd0a1595449ee5c584d0ffbe90d8762
25,913
[ -1 ]
25,914
cl-lib.asd
Bradford-Miller_CL-LIB/cl-lib.asd
;; Time-stamp: <2017-04-14 13:31:25 Brad Miller(on ubuntu-vm-on-lobotomy)> ;; This portion of CL-LIB Copyright (C) 2000-2008 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Softw...
1,573
Common Lisp
.asd
31
42.935484
111
0.645833
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8bfad8ac2854612bf1c1779de30fbcec43439defb59909fcdb3c57418d4d0fc3
25,914
[ -1 ]
25,915
cl-lib-better-errors.asd
Bradford-Miller_CL-LIB/cl-lib-better-errors.asd
;; Time-stamp: <2019-01-27 16:55:37 Bradford Miller(on Aragorn.local)> ;; This portion of CL-LIB Copyright (C) 2019 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Software Found...
1,155
Common Lisp
.asd
20
55.15
111
0.748227
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8581ce2bd592d1ca8878e22ebda142f83d15616898688e759e1fbfb9c6e39ffd
25,915
[ -1 ]
25,916
cl-lib-nregex.asd
Bradford-Miller_CL-LIB/cl-lib-nregex.asd
;; Time-stamp: <2019-01-27 17:54:58 Bradford Miller(on Aragorn.local)> ;; This portion of CL-LIB Copyright (C) 2019 Bradford W. Miller ;; ;; This library is free software; you can redistribute it and/or modify it under the terms of the GNU ;; Lesser General Public License as published by the Free Software Found...
1,141
Common Lisp
.asd
20
54.45
111
0.746858
Bradford-Miller/CL-LIB
1
0
1
LGPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
364de1e3c3230d3307bfc64e22eace4c0400eeae8a67c82155d9bdbb5eaa5449
25,916
[ -1 ]