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
27,030
lexer.lisp
zeller_cl-simpledb/lexer.lisp
(in-package :simpledb) ;; lex an input-stream to symbols for use in the parser (defun maybe-unread (char stream) (when char (unread-char char stream))) (defun intern-id (string) (let ((*package* '#.*package*)) (read-from-string string))) (defun read-id (stream) (let ((v '())) (loop (let ((c...
2,908
Common Lisp
.lisp
83
26.566265
76
0.506392
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8b2674663deaec7ae6946e7130eb366a0318828dd84a8b5ce312b2f790d73518
27,030
[ -1 ]
27,031
package.lisp
zeller_cl-simpledb/package.lisp
;; package.lisp -- ;; Copyright (C) 2010 Michael Zeller ;; ;; This file is part of simpledb. ;; ;; simpledb is free software; you can redistribute it and/or modify it ;; under the terms of the GNU General Public License as published by ;; the Free Software Foundation; either version 2, or (at your option) ;; any late...
899
Common Lisp
.lisp
21
41.333333
70
0.753723
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
7798870c4b0440a10df6312fcdc50a1adfd2bcb1d03657880d7d1fd0e497dbbb
27,031
[ -1 ]
27,032
catalog.lisp
zeller_cl-simpledb/catalog.lisp
(in-package :simpledb) ;;** catalog ;; table-info keeps track of the table name and the column names, ;; which are stored in the catalog ;; note: not currently used yet (defclass table-info () ((table-name :initarg :table-name :accessor table-name) (column-names :initarg :column-names :accessor column-names))...
2,401
Common Lisp
.lisp
48
47.25
78
0.742392
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
4329359ee43944c4ba51d6acdf5fcf06bfede077226d006aceb1d51c3be8646a
27,032
[ -1 ]
27,033
utils.lisp
zeller_cl-simpledb/utils.lisp
(in-package :simpledb) ;;** some helper functions (defmacro write-debug (&rest args) (if t ;; set to t or nil to toggle debugging information output `(format t ,@args))) ;;** some utility methods (defun parse-csv-file (file-name type-descriptor) (write-debug "Parsing CSV file.~%") (with-open-file (f fil...
2,452
Common Lisp
.lisp
59
32.627119
91
0.587075
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
82c4d77c2f347dd48a93acc537cf161a822b3d6d9abc1252844a207cd19ad6f5
27,033
[ -1 ]
27,034
simpledb.lisp
zeller_cl-simpledb/simpledb.lisp
#| exec sbcl --noinform --load $0 --end-toplevel-options "$@" |# ;; -*- mode: lisp; mode: outline-minor; -*- ;; Copyright (C) 2010 Michael Zeller ;;* Commentary ;; ;; This file implements a simple database that is influenced by the SimpleDB project @ MIT ;; ;;* Tasks ;; - Add unit tests ;; - Support aliases in SEL...
6,640
Common Lisp
.lisp
150
38.826667
90
0.665061
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
b236abf0e7b92ba0f2e22b29aba557df4be4e45d7995adef421e2f39a033ee1e
27,034
[ -1 ]
27,035
parser.lisp
zeller_cl-simpledb/parser.lisp
(in-package :simpledb) #+asdf(eval-when (:compile-toplevel :execute :load-toplevel) (asdf:oos 'asdf:load-op :fucc-parser)) #+asdf(eval-when (:compile-toplevel :execute) (asdf:oos 'asdf:load-op :fucc-generator)) (fucc:defparser *query-parser* s (= < > <= >= :semicolon :id :const :asterisk :comma...
7,616
Common Lisp
.lisp
189
27.412698
103
0.495806
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
ef6ce2ea055ae6e184a2b7db28cbb0c09cbafcfc0607e2a421fa089b84940683
27,035
[ -1 ]
27,036
bufferpool.lisp
zeller_cl-simpledb/bufferpool.lisp
(in-package :simpledb) ;;** bufferpool (defclass bufferpool () ((pool :initform (make-hash-table) :reader pool) (front :initform nil :accessor front) (back :initform nil :accessor back) (queue-length :initform 0 :accessor queue-length))) (defun clear-bufferpool () (loop while (front *bufferpool*) do ...
1,662
Common Lisp
.lisp
43
32.976744
73
0.654467
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a75b0190e6114aecd12c10421b05d100b6893dace9f41841fa236fa5b9bc7fe4
27,036
[ -1 ]
27,037
cursor.lisp
zeller_cl-simpledb/cursor.lisp
(in-package :simpledb) ;; iterator methods in lisp (defclass cursor () ((next :initarg :next :accessor next :initform nil))) (defgeneric cursor-next (cursor) (:documentation "Gets the next tuple or nil")) (defmethod cursor-next ((cursor cursor)) (with-slots (next) cursor (unless (cursor-finished-p cursor)...
12,229
Common Lisp
.lisp
261
36.681992
96
0.578408
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
e5dddf7678183bb9176805f21ed55f1974d1cf8e50e129f29cd2dec2c79994ec
27,037
[ -1 ]
27,038
parameters.lisp
zeller_cl-simpledb/parameters.lisp
(in-package :simpledb) ;;** parameters (defparameter *max-int-size* 4294967296 "The maximum storable INT") (defparameter *int-size* (ceiling (/ (ceiling (log *max-int-size* 2)) 8)) "The number of bytes needed for storing an int") (defparameter *max-table-size* 2147483648 "The max allowable size of a table (fi...
982
Common Lisp
.lisp
20
46.7
78
0.722689
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
07c6182bacca3ba090e8b82d89332861b08b1c9692def6325787f59211c097de
27,038
[ -1 ]
27,039
make-image.lisp.in
zeller_cl-simpledb/make-image.lisp.in
(require 'asdf) (require 'simpledb) (sb-ext:save-lisp-and-die "simpledb" :toplevel (lambda () ;; asdf requires sbcl_home to be set, so set it to the value when the image was built (sb-posix:putenv (format nil "SBCL_HOME=~A" #.(sb-ext:posix-getenv "SBCL_HOME"))) (simpledb:sim...
359
Common Lisp
.lisp
10
29
98
0.616715
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
66fc564f6adfdc789219ae6c5891e74b104af521bcb561b2310c844ffb4ae604
27,039
[ -1 ]
27,040
simpledb.asd
zeller_cl-simpledb/simpledb.asd
;; -*- mode: lisp -*- (defpackage :simpledb-system (:use :cl :asdf)) (in-package :simpledb-system) (defsystem :simpledb :name "SimpleDB" :author "Michael Zeller <me@michaelzeller.com>" :version "0.1" :maintainer "Michael Zeller <me@michaelzeller.com>" ;; :license "GNU General Public License" :descripti...
766
Common Lisp
.asd
23
26.652174
79
0.597297
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
f9335952a2c70567ac4ffb829137a6d8b5fea6803912e2be483d8fc4642048cf
27,040
[ -1 ]
27,049
Makefile.in
zeller_cl-simpledb/Makefile.in
LISP=@LISP_PROGRAM@ sbcl_BUILDOPTS=--load ./make-image.lisp datarootdir = @datarootdir@ prefix=@prefix@ exec_prefix= @exec_prefix@ bindir=@bindir@ infodir=@infodir@ # You shouldn't have to edit past this # This is copied from the .asd file. It'd be nice to have the list in # one place, but oh well. FILES=package.li...
748
Common Lisp
.l
23
30.869565
69
0.73986
zeller/cl-simpledb
1
0
0
GPL-2.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
19095580b9f1a18a45132fc51ced43060b6dea743f8b9c8d5e851555b91ee712
27,049
[ -1 ]
27,069
agents.lsp
plazajan_Wall-Follower-Evolutionary-Programming/agents.lsp
;; agents.lsp (Trees representing Boolean conditions) ;; Evolutionary programming in LISP ;; educational software inspired by Nils. J. Nilsson ;; March 16, 2000 ;; https://github.com/plazajan ;; (c) 2000 Jan A. Plaza ;; This file is part of LISP-Evolutionary-Programming-Wall-Follower. ;; LISP-Evolutionary-Programming...
11,557
Common Lisp
.l
353
27.354108
80
0.502374
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
0e6c17ffc1879b39b9e7ba5eeade691a48c55b667ca7764ef5cebcb6437da71d
27,069
[ -1 ]
27,070
main.lsp
plazajan_Wall-Follower-Evolutionary-Programming/main.lsp
;; main.lsp ;; Evolutionary programming in LISP ;; educational software inspired by Nils. J. Nilsson ;; March 25, 2000 ;; https://github.com/plazajan ;; (c) 2000 Jan A. Plaza ;; This file is part of LISP-Evolutionary-Programming-Wall-Follower. ;; LISP-Evolutionary-Programming-Wall-Follower is free software: ;; you ...
2,052
Common Lisp
.l
40
49.55
80
0.662663
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d30bd3b681ee22b821a7f1440d29e56a3fe9d952ee63cd1b9676d2607730f63f
27,070
[ -1 ]
27,071
utilities.lsp
plazajan_Wall-Follower-Evolutionary-Programming/utilities.lsp
;; utilities.lsp ;; Evolutionary programming in LISP ;; educational software inspired by Nils. J. Nilsson ;; March 17, 2000 ;; https://github.com/plazajan ;; (c) 2000 Jan A. Plaza ;; This file is part of LISP-Evolutionary-Programming-Wall-Follower. ;; LISP-Evolutionary-Programming-Wall-Follower is free software: ;;...
6,618
Common Lisp
.l
198
29.848485
80
0.57599
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
28e336a6c74889d0f3bac35599628853665cdddc4a510f30efa157d139d83341
27,071
[ -1 ]
27,072
interface.lsp
plazajan_Wall-Follower-Evolutionary-Programming/interface.lsp
;; interface.lsp ;; Evolutionary programming in LISP ;; educational software inspired by Nils. J. Nilsson ;; March 27, 2000 ;; https://github.com/plazajan ;; (c) 2000 Jan A. Plaza ;; This file is part of LISP-Evolutionary-Programming-Wall-Follower. ;; LISP-Evolutionary-Programming-Wall-Follower is free software: ;; ...
5,923
Common Lisp
.l
155
33.729032
80
0.600556
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
05a082449c754dc6e576b297be738998fdfbdb4075dd0b7dbe21f704d654dd2d
27,072
[ -1 ]
27,073
genetic.lsp
plazajan_Wall-Follower-Evolutionary-Programming/genetic.lsp
;; genetic.lsp ;; Generic genetic/evolutionary programming environment ;; Evolutionary programming in LISP ;; educational software inspired by Nils. J. Nilsson ;; March 23, 2000 ;; https://github.com/plazajan ;; (c) 2000 Jan A. Plaza ;; This file is part of LISP-Evolutionary-Programming-Wall-Follower. ;; LISP-Evolut...
11,015
Common Lisp
.l
298
30.016779
80
0.569796
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
71116e3f922604b3fcee7f06eb88311093809441f65a3ca9f220c0a4f19b18f0
27,073
[ -1 ]
27,074
world1.dat
plazajan_Wall-Follower-Evolutionary-Programming/world1.dat
############# ### # ### ## # ## # # # # # # ### ### # # # # # # ## # ## ### # ### #############
181
Common Lisp
.l
13
13
13
0
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
7afa2158ce233a18b3c8f47a9b9d862b50d9955e843b8e58c5b8734e12d06d10
27,074
[ -1 ]
27,075
evaluate.lsp
plazajan_Wall-Follower-Evolutionary-Programming/evaluate.lsp
;; evaluate.lsp ;; Evolutionary programming in LISP ;; educational software inspired by Nils. J. Nilsson ;; March 20, 2000 ;; https://github.com/plazajan ;; (c) 2000 Jan A. Plaza ;; This file is part of LISP-Evolutionary-Programming-Wall-Follower. ;; LISP-Evolutionary-Programming-Wall-Follower is free software: ;; ...
16,298
Common Lisp
.l
441
32.108844
80
0.502941
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
ffd2be6d7212ece53b539a8ec89245c7eee1a7f83b4e79b885b6f6b93a6f5a13
27,075
[ -1 ]
27,076
world.lsp
plazajan_Wall-Follower-Evolutionary-Programming/world.lsp
;; world.lsp -- Prepare and display grid world. ;; Evolutionary programming in LISP ;; educational software inspired by Nils. J. Nilsson ;; March 17, 2000 ;; https://github.com/plazajan ;; (c) 2000 Jan A. Plaza ;; This file is part of LISP-Evolutionary-Programming-Wall-Follower. ;; LISP-Evolutionary-Programming-Wall...
9,335
Common Lisp
.l
247
32.214575
80
0.563307
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
46e67d845314c129c491af327e5ffd1781bb5affbbde9c969bd39a96ea49d730
27,076
[ -1 ]
27,077
output.lsp
plazajan_Wall-Follower-Evolutionary-Programming/output.lsp
;; print.lsp ;; Printing messages related to gp.lsp. ;; Evolutionary programming in LISP ;; educational software inspired by Nils. J. Nilsson ;; March 16, 2000 ;; https://github.com/plazajan ;; (c) 2000 Jan A. Plaza ;; This file is part of LISP-Evolutionary-Programming-Wall-Follower. ;; LISP-Evolutionary-Programming...
4,121
Common Lisp
.l
93
42.021505
80
0.673072
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
80cbe3b41bb8d6b11bb8f67ae2a1f5caa3134c06bd533c3970566158120bd938
27,077
[ -1 ]
27,078
world2.dat
plazajan_Wall-Follower-Evolutionary-Programming/world2.dat
########## # # # # # # # # # # # # # ## # # ## # ##########
109
Common Lisp
.l
10
10
10
0
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
e879a6efc4dfb4ea2214e5adffb7df82109fc2d58aeaca77cd4b69cb3770314d
27,078
[ -1 ]
27,079
parameters.lsp
plazajan_Wall-Follower-Evolutionary-Programming/parameters.lsp
;; parameters.lsp ;; Evolutionary programming in LISP ;; educational software inspired by Nils. J. Nilsson ;; March 17, 2000 ;; https://github.com/plazajan ;; (c) 2000 Jan A. Plaza ;; This file is part of LISP-Evolutionary-Programming-Wall-Follower. ;; LISP-Evolutionary-Programming-Wall-Follower is free software: ;...
6,287
Common Lisp
.l
119
51.07563
80
0.680268
plazajan/Wall-Follower-Evolutionary-Programming
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
b3a4f416cec2b69b2e82e60376ff76788a72386aff5b0d60af0fe262b369541f
27,079
[ -1 ]
27,103
test1.lisp
paule32_Kurt_Goedel_Experiment/src/test1.lisp
;; ---------------------------------------------------- ;; my-project.lisp - a simple test. ;; ;; (c) 2022 by Jens Kallup - paule32 ;; all rights reserved. ;; ;; Notes (2022-12-18): ;; - you have to install "quicklisp.lisp" on seperate ;; file. Then you have to create the file "quick.ok" ;; in the working directory...
2,285
Common Lisp
.lisp
81
23.82716
69
0.444749
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
6c05fdbc2e86e373044592b5c74983c68d2b0733159d5c6365de5d6af9e8716e
27,103
[ -1 ]
27,105
my-project.asd
paule32_Kurt_Goedel_Experiment/src/my-project.asd
;---------------------------------------------------- ; my-project.lisp - a simple test. ; ; (c) 2022 by Jens Kallup - paule32 ; all rights reserved. ;---------------------------------------------------- (defsystem "my-project" :version "0.0.1" :author "Jens Kallup - paule32" :license "MI...
503
Common Lisp
.asd
15
28.466667
53
0.433265
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
6435df7fd57787dd3a2b534232cabfdee65b376931c61271c9d485c464e28a63
27,105
[ -1 ]
27,109
in_proc.sql
paule32_Kurt_Goedel_Experiment/src/Duden/in_proc.sql
-- -------------------------------------------------------------------------------------- -- in_proc.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Datei darf nu...
2,170
Common Lisp
.l
60
34.45
89
0.500713
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
adafec9711b2b19d990db94383ab594242d57b7e4a7700f88217ff7536f362e5
27,109
[ -1 ]
27,110
de_duden_wrarten.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de_duden_wrarten.sql
-- -------------------------------------------------------------------------------------- -- de_wortarten.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Datei da...
5,388
Common Lisp
.l
118
44.584746
89
0.689505
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
1652da59b31bfbf8e8a95e14f3c091510e1ebfaf06628c26daf1084de5333860
27,110
[ -1 ]
27,111
de_duden_verb_ab.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de_duden_verb_ab.sql
-- -------------------------------------------------------------------------------------- -- de_duden_verb_ab.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Date...
1,330
Common Lisp
.l
27
47.925926
89
0.552995
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
ed8aab1e243a95152a3eb2b911e1d5b34b0ee17501843351531ca00a8ea3d984
27,111
[ -1 ]
27,112
de_duden_gruppen.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de_duden_gruppen.sql
-- -------------------------------------------------------------------------------------- -- de_duden.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Datei darf n...
1,454
Common Lisp
.l
28
50.678571
89
0.573333
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
b82b63875b2038959566b38abcf82b8b3f37bd2bfcbb1f070442385858c0ebee
27,112
[ -1 ]
27,113
de_config.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de_config.sql
-- -------------------------------------------------------------------------------------- -- de_config.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Datei darf ...
2,324
Common Lisp
.l
52
43.307692
89
0.4627
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
2a9bec85fb11e32823b911849a7ee51d0002f94ed31d8f2367d80c72728c147b
27,113
[ -1 ]
27,114
de_duden_pronome.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de_duden_pronome.sql
-- -------------------------------------------------------------------------------------- -- de_pronomen.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Datei dar...
2,418
Common Lisp
.l
45
52.422222
89
0.509903
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a5c71082447bc14760ecbec5cdf9816b6cf14d9f22e409027d0c72795fc67a71
27,114
[ -1 ]
27,115
de_duden_verblst.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de_duden_verblst.sql
-- -------------------------------------------------------------------------------------- -- de_duden_verblst.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Date...
5,201
Common Lisp
.l
87
58.528736
89
0.407683
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
28057ee700fc20d63a3020149fc5d3ce5c16d03b3c1d2cc29507f873c1fd898f
27,115
[ -1 ]
27,116
de.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de.sql
-- -------------------------------------------------------------------------------------- -- de_duden.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Datei darf n...
2,053
Common Lisp
.l
43
46.465116
89
0.518519
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
225ad198ca95146ab0eee989b1335b9e71d1267111d937fbf1493f1a547d7252
27,116
[ -1 ]
27,117
in_func.sql
paule32_Kurt_Goedel_Experiment/src/Duden/in_func.sql
-- -------------------------------------------------------------------------------------- -- in_func.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Datei darf nu...
1,084
Common Lisp
.l
27
38.814815
89
0.5827
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
9623bca2a3c89b0f39d7d8eb5bc20c5570f6f28fc9c8d87786c2183f81e01cb8
27,117
[ -1 ]
27,118
de_duden.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de_duden.sql
-- -------------------------------------------------------------------------------------- -- de_duden.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Datei darf n...
2,536
Common Lisp
.l
53
46.169811
89
0.547784
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
11dda70b4ce2854710338ca8447dfa1f5b3a3b358ba889890413fa1a80350deb
27,118
[ -1 ]
27,119
de_duden_wfragen.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de_duden_wfragen.sql
-- -------------------------------------------------------------------------------------- -- de_duden.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Datei darf n...
2,004
Common Lisp
.l
38
51.552632
89
0.617812
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
466adfb1420ae0c654e2b39202bad007544ff030890fc40249af6c639ae60e2e
27,119
[ -1 ]
27,120
de_duden_verb_aa.sql
paule32_Kurt_Goedel_Experiment/src/Duden/de_duden_verb_aa.sql
-- -------------------------------------------------------------------------------------- -- de_duden_verb_aa.sql: Stand: Dezember 2022 -- -- (c) 2022 by Jens Kallup - paule32 <paule32.jk@gmail.com> -- all rights reserved. -- -- Dies ist eine Zusammenstellung der im Deutschen genutzten Wört und Wortarten. -- Diese Date...
1,500
Common Lisp
.l
28
52.321429
100
0.57308
paule32/Kurt_Goedel_Experiment
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
23b87fbadcd26fb4f41fb246f60f7a0ced0858a83b8f1510d09cfdb7e583b6b2
27,120
[ -1 ]
27,135
main.lisp
Lautaro-Garcia_corona/main.lisp
(in-package :corona) (defparameter *url-csv-casos* "https://cdn.buenosaires.gob.ar/datosabiertos/datasets/salud/reporte-covid/dataset_reporte_covid_sitio_gobierno.csv") (defparameter *meses* '("JAN" "FEB" "MAR" "APR" "MAY" "JUN" "JUL" "AUG" "SEP" "OCT" "NOV" "DEC")) (define-condition fecha-mal-formateada (error) ())...
2,989
Common Lisp
.lisp
49
53.408163
152
0.649009
Lautaro-Garcia/corona
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
498580a20a1a36dc40cf1ce1ef7e9d7f18718e3d2de0c7aad57a17bfd9b20c3e
27,135
[ -1 ]
27,136
corona.asd
Lautaro-Garcia_corona/corona.asd
(asdf:defsystem :corona :description "TUI para mostrar un gráfico de los casos diarios de COVID-19 en CABA" :author "Lautaro García" :version "1.0.0" :serial t :depends-on (:cl-csv :cl-spark :trivial-download :cl-date-time-parser) :components ((:file "package") (:file "main")))
308
Common Lisp
.asd
8
33.875
85
0.677852
Lautaro-Garcia/corona
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
0e846ee549dcf88d9d7020a12b4fda5a4651bf63da076b096e8508b0e1257b99
27,136
[ -1 ]
27,153
user-commands.lisp
sauerkrause_minecraft_bridge/user-commands.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
4,008
Common Lisp
.lisp
103
34.961165
88
0.678424
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
f47297697f68c8ed69a66a222f945b031a7b84f8dd9c3d824da561c244e210de
27,153
[ -1 ]
27,154
mc-irc-bridge.lisp
sauerkrause_minecraft_bridge/mc-irc-bridge.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
4,559
Common Lisp
.lisp
134
28.141791
93
0.58237
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
07715667a8f2e2bb865744b1b406b785df08e748247d757d1e51e70083a957bd
27,154
[ -1 ]
27,155
main.lisp
sauerkrause_minecraft_bridge/main.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
1,971
Common Lisp
.lisp
56
32.017857
75
0.696842
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
69a356d8ea7c28eece482a55b6a53a0eae3e7f150c6dc298114f12fb7391d56c
27,155
[ -1 ]
27,156
ql-deps.lisp
sauerkrause_minecraft_bridge/ql-deps.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
988
Common Lisp
.lisp
20
46.55
75
0.698446
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
5c5e4475e80a93187402243be40227d43e879b7246aa4092304b2994039e1d16
27,156
[ -1 ]
27,157
settings.lisp
sauerkrause_minecraft_bridge/settings.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licens...
1,151
Common Lisp
.lisp
25
44.16
75
0.712243
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
36407ebd648d8408bfeb9c6d31f380bd398a51ac2e7df8adcdd4b62699b10fc1
27,157
[ -1 ]
27,158
common-defs.lisp
sauerkrause_minecraft_bridge/common-defs.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
1,082
Common Lisp
.lisp
23
45.26087
75
0.740741
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
29339cdaf9412189ff2ab6094001628b820609432c677e6145ac39a101eae54c
27,158
[ -1 ]
27,159
irc-mc-bridge.lisp
sauerkrause_minecraft_bridge/irc-mc-bridge.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
2,361
Common Lisp
.lisp
56
37.446429
75
0.662015
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
5fadcca1286d4b56b506886ad10b8279dc259f84536fb0ba7fcb820766902894
27,159
[ -1 ]
27,160
init.lisp
sauerkrause_minecraft_bridge/init.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
2,197
Common Lisp
.lisp
51
40.490196
75
0.725912
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
27e0f54161a557e4e6e23b9120a8594f43cc82c3d0cd1ad3f6690d2253ad9d20
27,160
[ -1 ]
27,161
ping.lisp
sauerkrause_minecraft_bridge/user-commands/ping.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
941
Common Lisp
.lisp
17
53.764706
75
0.727669
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
5e2705e5c72ad38c3333b30451e559dcb406afdf0e4655ff032ecab0e865a936
27,161
[ -1 ]
27,162
update.lisp
sauerkrause_minecraft_bridge/user-commands/update.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
1,837
Common Lisp
.lisp
48
34.395833
75
0.68054
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
e16727148c909564aebd954fe992038d0d26c0cf65abfed3c50fdee564c63536
27,162
[ -1 ]
27,163
source.lisp
sauerkrause_minecraft_bridge/user-commands/source.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
997
Common Lisp
.lisp
18
53.277778
75
0.720739
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
0af27138d8b95928193af2e88171570766c7bfd7fe035e5ecdf3ed504f788e03
27,163
[ -1 ]
27,164
quit.lisp
sauerkrause_minecraft_bridge/user-commands/quit.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
889
Common Lisp
.lisp
17
50.764706
75
0.725694
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a99a4c29b0e61bce7351104d5ae911d14467e181b398ea994b8f41a745db5087
27,164
[ -1 ]
27,165
help.lisp
sauerkrause_minecraft_bridge/user-commands/help.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
1,249
Common Lisp
.lisp
22
54.181818
181
0.719672
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
b9c1379ab045cfccc021cbef5a37d3536351c906c2539807999fba8d33c56715
27,165
[ -1 ]
27,166
join.lisp
sauerkrause_minecraft_bridge/user-commands/join.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
1,140
Common Lisp
.lisp
24
45.083333
75
0.712871
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
c2fd26113613143a5efb12e8f701545f4467f15ca600070fb32e241bc0582589
27,166
[ -1 ]
27,167
part.lisp
sauerkrause_minecraft_bridge/user-commands/part.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
1,144
Common Lisp
.lisp
25
43.24
75
0.71159
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
398e8bcd2bd10a465d93c0f5b654f9a6d1549788d9142829cdd35dce39095bd8
27,167
[ -1 ]
27,168
common.lisp
sauerkrause_minecraft_bridge/user-commands/common.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
2,523
Common Lisp
.lisp
67
32.104478
75
0.641278
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
e5b23323488ea0253fdf22b37cdd332e5e4f5e5bcd6142441bcbbfd8fdb831f1
27,168
[ -1 ]
27,169
info.lisp
sauerkrause_minecraft_bridge/user-commands/info.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Lice...
3,181
Common Lisp
.lisp
73
39.424658
110
0.678676
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
fdfec6090c3a3cc7d353e3868d5dd6deaf036a8491dd7de41cdd867ec192d7bd
27,169
[ -1 ]
27,170
about.lisp
sauerkrause_minecraft_bridge/user-commands/about.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
1,052
Common Lisp
.lisp
19
53.684211
80
0.72807
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
6c8f731b36f6447307e981f19aa4414d8081acbc1cba6ada78f11c11bf6793f2
27,170
[ -1 ]
27,171
list-commands.lisp
sauerkrause_minecraft_bridge/user-commands/list-commands.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Licen...
1,809
Common Lisp
.lisp
47
32.680851
75
0.642369
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d317a6b699bec3c30d67c1312fc12b72e8799e34fde092d39b8acf98c24f28f9
27,171
[ -1 ]
27,172
reload.lisp
sauerkrause_minecraft_bridge/user-commands/reload.lisp
;; Copyright 2013 Robert Allen Krause <robert.allen.krause@gmail.com> ;; This file is part of Robort. ;; Robort is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the Lice...
1,109
Common Lisp
.lisp
25
41.8
75
0.713488
sauerkrause/minecraft_bridge
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
13df71b52c1aaae5c959245ec023a50710d929ab7e663569235b97c86064a0fb
27,172
[ -1 ]
27,208
cl-fpgasm-device.lisp
stacksmith_cl-fpgasm-device/cl-fpgasm-device.lisp
;;;; cl-fpgasm-device.lisp #|****************************************************************************** Copyright 2012 Victor Yurkovsky This file is part of cl-fpgasm FPGAsm is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by ...
8,901
Common Lisp
.lisp
216
37.513889
109
0.548025
stacksmith/cl-fpgasm-device
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
273d5a16584226b90fdc56e7a8075a110ba9c31fc170b54ce1ab70ec70ce8459
27,208
[ -1 ]
27,209
cl-fpgasm-device.asd
stacksmith_cl-fpgasm-device/cl-fpgasm-device.asd
;;;; cl-fpgasm-device.asd (asdf:defsystem #:cl-fpgasm-device :serial t :description "A device database for cl-fpgasm" :author "stacksmith <fpgasm@apple2.x10.mx>" :license "Specify license here" :components ((:file "package") (:file "cl-fpgasm-device")))
281
Common Lisp
.asd
8
30.75
48
0.682657
stacksmith/cl-fpgasm-device
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
b88c824fce1adbaa3837dbac7f52c175cc173e3a92c3f24a33c2843321e279c1
27,209
[ -1 ]
27,213
xc3s200.xdlrc
stacksmith_cl-fpgasm-device/data/xc3s200.xdlrc
# ======================================================= # XDL REPORT MODE $Revision: 1.8 $ # time: Thu Oct 9 10:21:26 2014 # cmd: /opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64/unwrapped/xdl -report xc3s200 # ======================================================= (xdl_resource_report v0.2 xc3s200ft256-5 spartan3 # *********...
361,866
Common Lisp
.l
11,997
26.982746
425
0.713307
stacksmith/cl-fpgasm-device
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
ab43e80b9844b48341a4892ee1d74af341fe7e95995642c1328e5c2f822e3c1e
27,213
[ -1 ]
27,214
xdlrc-tweak.sed
stacksmith_cl-fpgasm-device/data/xdlrc-tweak.sed
# tweak an xdlrc file to allow Lisp reader to load it # s/# /; /g #fix comments s/#/_/g #replace # prefix with _ s|\(_[A-Za-z]\+\):<eqn>|(\1\ eqn>)|g #convert cfg assignments to pair lists
219
Common Lisp
.l
5
43
78
0.548837
stacksmith/cl-fpgasm-device
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
5475d5a7e037295fb73a0c8b6f89182ca464df62ab6bc4a59edf067a5cef2c7d
27,214
[ -1 ]
27,215
xdlrc format.txt
stacksmith_cl-fpgasm-device/doc/xdlrc format.txt
XDLRC tags: XDLRC is a Xilinx format for describing FPGA resources for a particular chip. An .xdlrc file is produced by running the xdl -report, and will generate descriptions of with various levels of detail depending on flags -pips and -all-conns. The most basic report profides the following hierarchy, in a s-expr...
2,259
Common Lisp
.l
47
40.914894
238
0.550725
stacksmith/cl-fpgasm-device
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8f938d7d7f73ee705e2276d6f4c90eee97cff292bf66d19f190ec2d5476e601a
27,215
[ -1 ]
27,230
main.lisp
Release-Candidate_Lisbonacci/src/main.lisp
;;; SPDX-License-Identifier: GPL-3.0-or-later ;;; Copyright (C) 2021 Roland Csaszar ;;; ;;; Project: Lisbonacci ;;; File: main.lisp ;;; Date: 13.11.2021 ;;; =========================================================================== (defpackage lisbonacci (:use :cl)) (in-package :lisbonacci) (declaim (optimiz...
1,793
Common Lisp
.lisp
49
33.653061
107
0.613126
Release-Candidate/Lisbonacci
1
1
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
5d160faf6a8802a0b75f3ba1b7db7b167aae78fcbc450f14c9e83ba76425ef63
27,230
[ -1 ]
27,231
main.lisp
Release-Candidate_Lisbonacci/tests/main.lisp
(defpackage lisbonacci/tests/main (:use :cl :asdf :rove)) (in-package :lisbonacci/tests/main) ;; NOTE: To run this test file, execute `(asdf:test-system :asdf)' in your Lisp. (deftest test-target-1 (testing "should (= 1 1) to be true" (ok (= 1 1))))
271
Common Lisp
.lisp
9
26.777778
80
0.657692
Release-Candidate/Lisbonacci
1
1
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
ba54d3db772c35e2af1ad50ec52a7e9a270693e62a6f45d620e8e38195aab4fd
27,231
[ -1 ]
27,232
lisbonacci.asd
Release-Candidate_Lisbonacci/lisbonacci.asd
(defsystem "lisbonacci" :version "0.1.0" :author "Release-Candidate" :license "GPLv3" :depends-on () :components ((:module "src" :components ((:file "main")))) :description "" :in-order-to ((test-op (test-op "lisbonacci/tests")))) (defsystem "lisbonacci/tests" :author "R...
593
Common Lisp
.asd
20
23.35
56
0.583916
Release-Candidate/Lisbonacci
1
1
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
fc8e2661c993ac6e42426d76e879d75a56ab9ef21c7bb8da861504f905e131c7
27,232
[ -1 ]
27,234
.markdownlintrc
Release-Candidate_Lisbonacci/.markdownlintrc
{ // Example markdownlint JSON(C) configuration with all properties set to their default value // Default state for all rules "default": true, // Path to configuration file to extend "extends": null, // MD001/heading-increment/header-increment - Heading levels should only increment by one level at a time...
6,637
Common Lisp
.l
207
27.927536
107
0.669286
Release-Candidate/Lisbonacci
1
1
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
9cde7a1133bee834dfd8764826b1bd25cf980a5fc743a0887edbf37368b63db2
27,234
[ -1 ]
27,251
xterm.lisp
vlad-km_xterm/xterm.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; ;;; tiny api for https://github.com/xtermjs/xterm.js ;;; ;;; @vlad-km, 2021 ;;; ;;; (defpackage #:xterm (:use #:cl)) (in-package :xterm) (defmacro defn- (name lambda &body body) `(progn (eval-when (:compile-toplevel) (jscl::fn-info ',name :defined t)) (...
8,696
Common Lisp
.lisp
222
36.072072
92
0.657272
vlad-km/xterm
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
0c3b9ab296ee3e7d5d8f794369656db9c9c292381711ef856d9ba892510f6248
27,251
[ -1 ]
27,252
stream.lisp
vlad-km_xterm/stream.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; Stream prototype for dumb-terminal ;;; @vlad-km, 2021 (in-package :xterm) (defclass terminal-stream () ((buffer :initform nil :accessor terminal-stream-buffer) (buffer-length :initform 0 :accessor terminal-stream-buffer-length) (dirty :initf...
4,575
Common Lisp
.lisp
123
30.146341
80
0.618585
vlad-km/xterm
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
e1fe9f75c8472bf17d4b1cfa2ccd3ec9e6a5baf00767f7968e03824faf664893
27,252
[ -1 ]
27,270
markov-n.lisp
ntrocado_markov-n/markov-n.lisp
(in-package :markov-n) (defparameter *table* (make-hash-table)) (defparameter *rand* 0) (defun combine-bytes (bytes) (loop :for n :downfrom (1- (length bytes)) :for b :in bytes :summing (* b (expt 65536 n)))) (defun get-chunk (file) (loop :for n :in (wav:read-wav-file file)) :when (equalp (getf n :chunk-id) ...
3,903
Common Lisp
.lisp
92
38.032609
94
0.647987
ntrocado/markov-n
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
c501b7112bac983eed448d0ceffec2b54298db85da8d07c11ebbded8546ebaa0
27,270
[ -1 ]
27,271
alias-method.lisp
ntrocado_markov-n/alias-method.lisp
(in-package :alias-method) ;;An implementation of the Alias Method. ;; ;; NOTE: Additional comments, and an updated, more accurate version ;; can be found here: ;; ;; ;; The function MAKE-DISCRETE-RANDOM-VAR takes an array of ;; probabilities and an (optional) array of values. Produces a ;; function which returns each...
3,780
Common Lisp
.lisp
62
57.048387
1,129
0.688901
ntrocado/markov-n
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
59dea5ff18d1d7d87d0391c142e712ac3145103452edc65a85c127741d74d0a0
27,271
[ -1 ]
27,272
packages.lisp
ntrocado_markov-n/packages.lisp
(in-package "COMMON-LISP-USER") (defpackage :alias-method (:use :common-lisp) (:export :make-discrete-random-var)) (defpackage :markov-n (:use :common-lisp :alexandria :alias-method) (:export :main))
210
Common Lisp
.lisp
7
27.571429
47
0.721393
ntrocado/markov-n
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
8883bdc3894d28393b3215c6894cde803e0ac4ff72d6b86d15a7dc640f76e6b0
27,272
[ -1 ]
27,273
markov-n.asd
ntrocado_markov-n/markov-n.asd
(defsystem "markov-n" :description "Markov chains on sample level with pcm audio files." :version "1" :author "Nuno Trocado" :depends-on ("alexandria" "cl-wav") :components ((:file "packages") (:file "alias-method" :depends-on ("packages")) (:file "markov-n" :depends-on ("alias-m...
331
Common Lisp
.asd
8
35.375
68
0.628483
ntrocado/markov-n
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
0a2cdf675d10a5421849de03e64b71bc4e0610b9f4a3b2b14d3c3d323391313d
27,273
[ -1 ]
27,292
package.lisp
chunsj_mtx/package.lisp
(cl:defpackage :mtx (:use #:common-lisp #:fnv #:cl-blapack) (:export #:$size #:$dim #:$nrow #:$ncol #:$m #:$r #:$rn #:$ones #:$zeros #:$eye #:$ #:$rows #:$cols ...
2,382
Common Lisp
.lisp
110
9.972727
34
0.335387
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
71bcff2778a7f23636f24ce2ab784d727bc2ccccf3841e470bc3f16d9f64e9f9
27,292
[ -1 ]
27,293
layers.lisp
chunsj_mtx/layers.lisp
(in-package :mtx) (defclass SIGMOIDLAYER (LAYER) ((out :initform nil))) (defun $sigmoid-layer () (make-instance 'SIGMOIDLAYER)) (defmethod forward-propagate ((l SIGMOIDLAYER) &key xs train) (declare (ignore train)) (with-slots (out) l (setf out ($sigmoid xs)) out)) (defmethod backward-propagate ((l SI...
8,054
Common Lisp
.lisp
212
32.915094
86
0.617202
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
1986dfbf555e6f6fb600b9f09af68a066eda254a95e12078dacb84e1dea9486e
27,293
[ -1 ]
27,294
basic.lisp
chunsj_mtx/basic.lisp
(in-package :mtx) (declaim (optimize (speed 3) (safety 0) (debug 1))) (declaim (inline $gemm)) (defun $gemm (a b &key (alpha 1.0) (beta 0.0) (c nil) (transa nil) (transb nil)) (let* ((nra (if transa ($ncol a) ($nrow a))) (nca (if transa ($nrow a) ($ncol a))) (ncb (if transb ($nrow b) ($ncol b))) ...
22,554
Common Lisp
.lisp
486
30.199588
99
0.382965
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
30ce52c1f0243cc13d05b544691620f659ba9012f765e80cdcae63cbabfa8674
27,294
[ -1 ]
27,295
optimizers.lisp
chunsj_mtx/optimizers.lisp
(in-package :mtx) (declaim (optimize (speed 3) (safety 0) (debug 1))) (defclass SGD (OPTIMIZER) ((lr :initarg :lr :initform 0.01))) (defun $sgd-optimizer (&key (lr 0.01)) (make-instance 'SGD :lr lr)) (defmethod update ((sgd SGD) params grads) (with-slots (lr) sgd (let ((alpha (* -1 lr))) (loop :for p ...
4,203
Common Lisp
.lisp
106
33.839623
89
0.551682
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
19fe7dad2ef16ff19a121d4e6e258b6d2e9ab1a683094a87e81331acc0e2f01a
27,295
[ -1 ]
27,296
mnist.lisp
chunsj_mtx/mnist.lisp
(in-package :mtx) (declaim (optimize (speed 3) (safety 0) (debug 1))) (defparameter +idx-types+ '((#x08 (unsigned-byte 8) 1) (#x09 (signed-byte 8) 1) ;;(#x0B (unsigned-byte 4)) (#x0C (signed-byte 32) 4) (#x0D single-float 4) (#x0E double-float 8))) (defun read-nbyte (n str) (let ((ret 0)) ...
3,823
Common Lisp
.lisp
80
39.8
97
0.597963
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
d705d71309d1c42242b97d4042ba70e50b800a6a0d698bac8ec83942105baa4c
27,296
[ -1 ]
27,297
utils.lisp
chunsj_mtx/utils.lisp
(in-package :mtx) (declaim (optimize (speed 3) (safety 0) (debug 1))) (defmacro println (&body body) `(print ,@body)) (defun $iota (n &key (start 0) (step 1)) (alexandria:iota n :start start :step step)) (defun $shuffle (sequence) (map-into sequence #'car (sort (map 'vector (lambda (x) ...
2,294
Common Lisp
.lisp
56
31.625
70
0.562837
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
324992011f7f49f2e08396447aef3daf781f20621704b88f7c6105db93848a98
27,297
[ -1 ]
27,298
nn.lisp
chunsj_mtx/nn.lisp
(in-package :mtx) (declaim (optimize (speed 3) (safety 0) (debug 1))) (defclass SNN (NEURALNETWORK) ((layers :initform nil) (rlayers :initform nil) (errlayer :initform nil) (optimizer :initform nil))) (defun $snn (lyrs &key (el ($mse-layer)) (o ($sgd-optimizer :lr 0.01))) (let ((nw (make-instance 'SNN))...
1,517
Common Lisp
.lisp
42
30.880952
72
0.628747
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
dc9fe3f902831a51a88ba3f87a9c71454baa934ec1517c0fcbbd357f57f8006b
27,298
[ -1 ]
27,299
matrix.lisp
chunsj_mtx/matrix.lisp
(in-package :mtx) (declaim (optimize (speed 3) (safety 0) (debug 1))) (defun $vx (n &key (initial-value 0.0)) (make-fnv-float n :initial-value initial-value)) (defmethod $count ((s FNV-FLOAT)) (fnv-length s)) (defmacro $ref (v i) `(fnv-float-ref ,v ,i)) (defmacro $prf (p i) `(fnv-float-ptr-ref ,p ,i)) (defclass ...
13,400
Common Lisp
.lisp
271
30.845018
101
0.365082
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
4e93b001dfe25bfe24aa95335114b6f3f8c70fb1c939f71e5b77ae13db71806d
27,299
[ -1 ]
27,300
funcs.lisp
chunsj_mtx/funcs.lisp
(in-package :mtx) (declaim (optimize (speed 3) (safety 0) (debug 1))) (defgeneric $round (m)) (defmethod $round ((n NUMBER)) (* 1.0 (round n))) (defmethod $round ((m MX)) ($map (lambda (v) (* 1.0 (round v))) m)) (defgeneric $exp (m)) (defmethod $exp ((n NUMBER)) (exp n)) (defmethod $exp ((m MX)) ($map #'exp m)) (...
3,228
Common Lisp
.lisp
78
39.166667
96
0.57893
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
5e7376f593874dc23f41253edb55dce0b985798750bd7edc1f86996365831281
27,300
[ -1 ]
27,301
nnbs.lisp
chunsj_mtx/nnbs.lisp
(in-package :mtx) (declaim (optimize (speed 3) (safety 0) (debug 1))) (defclass LAYER () ()) (defgeneric forward-propagate (layer &key) (:documentation "returns the result from the layer; generally :xs is input key")) (defgeneric backward-propagate (layer &key) (:documentation "returns computed delta of the laye...
1,805
Common Lisp
.lisp
34
51.176471
99
0.774688
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
7e7458e307ecba4a7e64e43f088446d665b67dda672c35c93fd0c87c96b9d6c4
27,301
[ -1 ]
27,302
synthgr.lisp
chunsj_mtx/scratch/synthgr.lisp
(in-package :mtx) ;; https://iamtrask.github.io/2017/03/21/synthetic-gradients/ (defun binary-list (n &optional acc) (cond ((zerop n) (or acc (list 0))) ((plusp n) (binary-list (ash n -1) (cons (logand 1 n) acc))) (t (error "~S: non-negative argument required, got ~s" 'binary-list n)))) (d...
3,662
Common Lisp
.lisp
85
34.905882
89
0.52046
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
289c0790123bc2a34e30012b7fb44d51747150eb72bc35d3b5d30ca638c6c706
27,302
[ -1 ]
27,303
conv.lisp
chunsj_mtx/scratch/conv.lisp
(in-package :mtx) (let* ((m ($m '(0 1 2 3 4 5 6 7 8 9 10 11))) (f ($m '(1 0 1 2 1 2 3 2 3)))) ($convolute m 4 4 f 3 :b 0.0)) (defparameter *mnist* (read-mnist-data)) (let* ((m ($m '((1 2 3 0) (0 1 2 3) (3 0 1 2) (2 3 0 1)))) (pm ($ptr m)) (mh ($...
6,573
Common Lisp
.lisp
192
24.520833
79
0.397135
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
6d8aacf5a1c271b0821d457bd84a6f3ef8fd1d1f31d950b7fe72a2f1def3d7be
27,303
[ -1 ]
27,304
mkltest.lisp
chunsj_mtx/scratch/mkltest.lisp
;; XXX not working, find how to load properly (org.middleangle.load-blapack-libs::load-foreign-library "/usr/local/lib/libmkl.dylib") (IN-PACKAGE :ORG.MIDDLEANGLE.CL-BLAPACK.BLAS-CFFI) (cffi:defcfun ("SGEMM" %MKLSGEMM) :VOID (TRANSA :STRING) (TRANSB :STRING) (M FORTRAN-INT) (N FORTRAN-INT) (K FORTRAN-INT...
1,659
Common Lisp
.lisp
31
38.064516
87
0.48767
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
7edaa0e7aebead1d114dc5e7c86572afae4a31ea11ff9dd1eb91b48c1f9444f2
27,304
[ -1 ]
27,305
perf.lisp
chunsj_mtx/scratch/perf.lisp
(in-package :mtx) (let ((m1 ($m 1.0 100 100)) (m2 ($m 2.0 100 100))) (time (dotimes (i 10000) ($* m1 m2)))) (let ((X ($r 10000 (* 28 28))) (W1 ($r (* 28 28) 100)) (W2 ($r 100 10))) (time (dotimes (n 100) (let* ((Z1 ($* X W1)) (A1 Z1) (Z2 ($* A1 W2)) (A...
341
Common Lisp
.lisp
14
18
40
0.396923
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
fb47c1a5ac4b68a058f4f364fb6a4ff56cb732677012493ed446d81e2b3638d0
27,305
[ -1 ]
27,306
nnd.lisp
chunsj_mtx/scratch/nnd.lisp
(in-package :mtx) (defclass AFL () ((input-size :initarg :input-size :initform nil) (output-size :initarg :output-size :initform nil) (w :initform nil) (b :initform nil) (x :initform nil) (dw :reader dw :initform nil) (db :reader db :initform nil))) (defmethod print-object ((l AFL) stream) (prin...
2,382
Common Lisp
.lisp
69
29
81
0.56231
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
f15fa72e35dcd7b0944203b3e6ce15f779a44fadd2478c043278f608ed429956
27,306
[ -1 ]
27,307
ex-mnist.lisp
chunsj_mtx/ex/ex-mnist.lisp
(in-package :mtx) (defparameter *mnist* (read-mnist-data)) (defparameter *mnist-train-indices* ($shuffle ($iota ($nrow (getf *mnist* :train-images))))) (defparameter *mnist-test-indices* ($shuffle ($iota ($nrow (getf *mnist* :test-images))))) ;; batch data generation (let* ((xtrain (getf *mnist* :train-images)) ...
5,101
Common Lisp
.lisp
114
37.605263
92
0.568647
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
f3bb24987545fab19059954fbf690852c7ccc225f077c62916220911c78fe6fb
27,307
[ -1 ]
27,308
ex-la.lisp
chunsj_mtx/ex/ex-la.lisp
(in-package :mtx) ;; https://medium.com/towards-data-science/linear-algebra-cheat-sheet-for-deep-learning-cd67aba4526c ;; dot product (let ((y ($m '(1 2 3))) (x ($m '(2 3 4)))) ($* y ($transpose x))) ;; hadamard product (let ((y ($m '(1 2 3))) (x ($m '(2 3 4)))) ($x y x)) ;; broadcasting... (let ((a...
685
Common Lisp
.lisp
27
21.962963
100
0.405239
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
dac5a995f5dc64377002c27f0e367a65b97cf1539146c0d719e1424e945917a3
27,308
[ -1 ]
27,309
ex-mln.lisp
chunsj_mtx/ex/ex-mln.lisp
(in-package :mtx) ;; sigmoid, mse, sgd (let* ((X ($m '((0 0) (1 0) (0 1) (1 1)))) (y ($m '((1 0) (0 1) (0 1) (1 0)))) (o ($sgd-optimizer :lr 10.0)) (n ($snn (list ($affine-layer 2 4 :winit :xavier) ($sigmoid-layer) ($affine-layer 4 2 :winit :xavier) ...
5,383
Common Lisp
.lisp
126
32.777778
67
0.453125
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
13ff795df21535f9c0b2d2802af18f8dbc8ff1efdf4ef009c897e3be854fb7f4
27,309
[ -1 ]
27,310
ex-gnn.lisp
chunsj_mtx/ex/ex-gnn.lisp
(in-package :mtx) ;; error functions, mean square error and cross entroy error ($mse ($m '((1 2 3) (4 5 6) (7 8 9) (10 11 12))) ($m '(11 12 23))) ($cee ($m '((1 2 3) (4 5 6) (7 8 9) (10 11 12))) ($m '(11 12 23))) ;; affine layer test (let* ((al ($affine-layer 2 2 :winit :xavier)) (x ($m '((1 0) (0 1) (1 1) (0 ...
3,577
Common Lisp
.lisp
98
30.061224
66
0.492073
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
61fc2a950710cc1b88f70b8e88e89f4e4c5fa0b2568f143f8cbc105b2ca1ed62
27,310
[ -1 ]
27,311
ex-bs.lisp
chunsj_mtx/ex/ex-bs.lisp
(in-package :mtx) ;; matrix creation (print ($m 32456 11 11)) (print ($m ($iota 10000) 100 100)) ;; random matrix ($r 4) ($r 1 4) ($r 4 1) ($r 4 4) ;; add ($+ 1 2 3 4 5) ($+ 1 2 3 ($m '(1 2))) ($+ ($m '(1 0 0 1) 2) ($m '(2 0 0 1) 2) ($m '(1 2 2 2) 2)) ;; subtract ($- 1) ($- 5 4 3 2 1) ($- ($m '(1 2))) ($- 1...
5,678
Common Lisp
.lisp
215
21.72093
83
0.465796
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
c44b2bedaa4a829bd02133d2cec9e6be9fb6aceb84aa7dc679aff2dabdb3429d
27,311
[ -1 ]
27,312
ex-opt.lisp
chunsj_mtx/ex/ex-opt.lisp
(in-package :mtx) (defun f (x y) ($+ (/ ($expt x 2.0) 20.0) ($expt y 2.0))) (defun df (x y) (list ($/ x 10.0) ($* 2.0 y))) (let* ((init-pos (list ($m '(-7.0)) ($m '(2.0)))) (params init-pos) (grads (list ($m '(0)) ($m '(0)))) (optimizers (list :SGD (make-instance 'SGD :lr 0.95) ...
896
Common Lisp
.lisp
19
37.947368
81
0.515429
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
912dcad3278ea4c506b6c4554519f2699e50702616baa97c76b1fab69c442e8d
27,312
[ -1 ]
27,313
ex-snn.lisp
chunsj_mtx/ex/ex-snn.lisp
(in-package :mtx) (defun fwd (input weight) ($sigmoid! ($* input weight))) (defun dwb (delta output) ($x delta output ($- 1 output))) ;; single layer example (let* ((X ($m '((0 0 1) (0 1 1) (1 0 1) (1 1 1)))) (y ($m '(0 0 1 1) 1)) (s ($r 3 1)) (a 1)...
4,623
Common Lisp
.lisp
159
20.610063
80
0.370146
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
a0d2ef634e0d6ec65f1babcd65080802e38237a127f222f00af1e79fda0159e9
27,313
[ -1 ]
27,314
mtx.asd
chunsj_mtx/mtx.asd
(asdf:defsystem mtx :name "mtx" :author "Sungjin Chun <chunsj@gmail.com>" :version "0.1" :maintainer "Sungjin Chun <chunsj@gmail.com>" :license "GPL3" :description "simple follow up of deep learning from scratch book" :long-description "trying to create a helper code in common lisp using cl-blapack for dl...
775
Common Lisp
.asd
21
27.190476
98
0.558355
chunsj/mtx
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
9d9bf16c2685f1dffbac0e3b3ad1a0b47508ee257dd92b72bb8e1a727843e8ef
27,314
[ -1 ]
27,352
time.lisp
Vortaro_Guild-Master/time.lisp
;; Copyright (C) 2011 Christopher Hanna ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; This...
10,712
Common Lisp
.lisp
269
37.371747
80
0.67767
Vortaro/Guild-Master
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
9b07770822c0bda5b64cd104756b4008aeaa584b9a5301a2d3a060190334e521
27,352
[ -1 ]
27,353
economy.lisp
Vortaro_Guild-Master/economy.lisp
;; Copyright (C) 2011 Christopher Hanna ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; This...
6,334
Common Lisp
.lisp
175
33.388571
112
0.644311
Vortaro/Guild-Master
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
591708e51fade4c2a07be875ffc7fd250a1db2be32f59b40fbe0a06e0d63ddd4
27,353
[ -1 ]
27,354
title.lisp
Vortaro_Guild-Master/title.lisp
;; Copyright (C) 2011 Christopher Hanna ;; This program is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; This...
1,887
Common Lisp
.lisp
38
47.342105
83
0.670652
Vortaro/Guild-Master
1
0
0
GPL-3.0
9/19/2024, 11:28:28 AM (Europe/Amsterdam)
939be0470e55cb1053482b366ccf6dd4df7704955764e3b0b5efc03065b88cda
27,354
[ -1 ]