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
35,385
fibonacci.lisp
yangby_template-commonlisp-project/t/fibonacci.lisp
#| Copyright (C) 2018 YangBy <yby@yangby.org> 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distribut...
1,272
Common Lisp
.lisp
29
41.448276
76
0.730583
yangby/template-commonlisp-project
0
0
0
AGPL-3.0
9/19/2024, 11:44:08 AM (Europe/Amsterdam)
5bee6939e1991d4bfb9dcbbdc8778509c14d635da779f27a4c8d869c8add35af
35,385
[ -1 ]
35,386
fibonacci-test.asd
yangby_template-commonlisp-project/fibonacci-test.asd
#| Copyright (C) 2018 YangBy <yby@yangby.org> 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distribut...
925
Common Lisp
.asd
21
40.238095
75
0.741111
yangby/template-commonlisp-project
0
0
0
AGPL-3.0
9/19/2024, 11:44:08 AM (Europe/Amsterdam)
66410d6f6ca82a005392362d752346a0544e002121656788cb4081d1e0f8f423
35,386
[ -1 ]
35,387
fibonacci.asd
yangby_template-commonlisp-project/fibonacci.asd
#| Copyright (C) 2018 YangBy <yby@yangby.org> 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 the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distribut...
1,162
Common Lisp
.asd
26
40.384615
75
0.725265
yangby/template-commonlisp-project
0
0
0
AGPL-3.0
9/19/2024, 11:44:08 AM (Europe/Amsterdam)
5a9a249dfb8d7180c4c2ff86918fc2f8650d9b85a1fe2a9ec7717b293c80074d
35,387
[ -1 ]
35,390
Makefile
yangby_template-commonlisp-project/Makefile
ROSWELL = ros RM = rm -f test: ${ROSWELL} run -l run-tests.lisp clean: -find . -type f -name "*.fasl" | xargs -I {} ${RM} {}
129
Common Lisp
.l
6
19.833333
54
0.595041
yangby/template-commonlisp-project
0
0
0
AGPL-3.0
9/19/2024, 11:44:08 AM (Europe/Amsterdam)
cdcdd0cd000df57b8bcd2c4720cedec5b1f0c15d8059f226d7b73e244103a563
35,390
[ -1 ]
35,391
.travis.yml
yangby_template-commonlisp-project/.travis.yml
sudo: false language: generic notifications: email: false git: depth: 5 cache: directories: - ${HOME}/.roswell - ${HOME}/.config/common-lisp addons: apt: packages: - libc6-i386 - default-jre env: matrix: - LISP=sbcl-bin - LISP=abcl - LISP=allegro - LISP=ccl - LISP=c...
918
Common Lisp
.l
46
16.391304
123
0.658257
yangby/template-commonlisp-project
0
0
0
AGPL-3.0
9/19/2024, 11:44:08 AM (Europe/Amsterdam)
e0ea9f3ef26eb90f69e9615b7da529ebd1dd8d1a60bf7b2df8920bcea743ad2a
35,391
[ -1 ]
35,409
calc.lisp
shepherdjerred-homework_calc/src/calc.lisp
; Jerred Shepherd (defun calc (x) (let ((operator (second x)) (left (first x)) (right (third x))) (let ((l (if (listp left) (calc left) left)) (r (if (listp right) (calc right) right))) (apply operator l r nil)))) ; ...
430
Common Lisp
.lisp
15
20.666667
36
0.384988
shepherdjerred-homework/calc
0
0
0
GPL-3.0
9/19/2024, 11:44:08 AM (Europe/Amsterdam)
de5335c6aa793cee925b94d505c5f3e2cf8d583543f32bcfea5372d4a40db473
35,409
[ -1 ]
35,426
guessmynumber.lisp
AbhijeetO_LandoLisp/guessmynumber/guessmynumber.lisp
(defparameter *small* 1) (defparameter *big* 100) (defun guessmynumber() (ash (+ *small* *big*) -1)) (defun smaller () (setf *big* (1- (guessmynumber))) (guessmynumber)) (defun bigger () (setf *small* (1+ (guessmynumber))) (guessmynumber)) (defun start-over () (defparameter *small* 1) (defparameter *big* ...
344
Common Lisp
.lisp
14
22.428571
37
0.672727
AbhijeetO/LandoLisp
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
c9aff3b886bc936a914e7fdc93ef93f63cd00fce42637201550ef51a16d79eb0
35,426
[ -1 ]
35,443
turing.lisp
Hector93_turing-machine-lisp/turing.lisp
(defparameter *cinta* nil) (defparameter *Q* '()) ;states (defparameter *blank* nil) (defparameter *Q0* nil) ;initial state (defparameter *F* nil) ;final state (defparameter *cabeza* nil);head (defun knownState() "starts the variables for the turing machine" (setq *cinta* '(1)) (setq *Q* '((A (0 - ...
2,350
Common Lisp
.lisp
87
23.022989
110
0.571492
Hector93/turing-machine-lisp
0
0
0
GPL-2.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
31f5c1066a79fc10627be24e27ce1457ad188e2446ea67f89729e9c5d728a242
35,443
[ -1 ]
35,460
queens.lisp
la3lma_fun-with-lisp/queens.lisp
;;; ;;; The 8 queens problem, just as a kata :-) ;;; ;; XXX NOTE: THis thing makes _some_ correct solutions, not yet verified that it does all. (defun all-permutations (list) "Generate all permutations of the elements in a list" (cond ((null list) nil) ((null (cdr list)) (list list)) (t (loop for...
3,239
Common Lisp
.lisp
93
31.311828
90
0.684615
la3lma/fun-with-lisp
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
d6f50f8493fad95e85568c546d76056d835dd3712f4f9853a1d4fc417a95a34d
35,460
[ -1 ]
35,477
encoder.lisp
Three-Winters_lisp-shellcode-tools/encoder.lisp
;;;; This file is for encoding shellcode using a XOR encoder or custom encoder. (ql:quickload :cl-ppcre) ;; Put your shellcode down in this variable. (defparameter *shellcode* "") (setf *print-base* 16) (setf *read-base* 16) (defun write-data (lst) "Debug, for printing internal data" (format t "~x" lst)) (defun ...
2,243
Common Lisp
.lisp
55
36.727273
104
0.678309
Three-Winters/lisp-shellcode-tools
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
6ea4518ebe1c597d364084f59c7accb0e371e729a38844c13d01ae9221d5ee51
35,477
[ -1 ]
35,478
lmutate.lisp
Three-Winters_lisp-shellcode-tools/lmutate.lisp
;;;; This file is for replacing instructions before assembly with equivalent ones to avoid fingerprinting ;;;; (i.e. shellcode polymorphism) ;;;; Only supports intel nasm syntax. ;; address of the E of magic bytes in ELF executables for interesting stuff. (defparameter *magic-address* "0x400000") (ql:quickload :cl-ut...
2,070
Common Lisp
.lisp
51
31.647059
105
0.552434
Three-Winters/lisp-shellcode-tools
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
6f6e6b487372879d749f97524568acff5def0de448f9a1217b1d3904ec68bcc0
35,478
[ -1 ]
35,481
make-shellcode.sh
Three-Winters_lisp-shellcode-tools/make-shellcode.sh
#!/bin/bash #objdumps .text section of an object in C-style escaped values. E_WRONG_ARGS=3 num_expected_args=1 if [ $# -ne $num_expected_args ] then echo "Usage: `basename $0` object_file" exit $E_WRONG_ARGS fi for i in $(objdump -d $@ |grep "^ " |cut -f2); do echo -n '\x'$i; done; echo
297
Common Lisp
.l
13
21.153846
63
0.682143
Three-Winters/lisp-shellcode-tools
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
4f7152973413980c78c49d6abde653f484df23b0ef2492c6ed8b040269ad32cd
35,481
[ -1 ]
35,497
main.lisp
rvedam_cl-solid/main.lisp
(in-package #:cl-user) (defpackage #:cl-solid (:use #:cl #:cl-solid/src/util #:cl-solid/src/config #:cl-solid/src/web #:cl-solid/src/view #:cl-solid/src/db #:cl-solid/src/authentication #:cl-solid/src/make ) (:import-from :cl-solid/src/config :config) (:import-from :clack ...
958
Common Lisp
.lisp
39
20.076923
66
0.633078
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
b36b31e679eccec5d1ddebf516d9431280a11a222e12bb0adc61a5964f987323
35,497
[ -1 ]
35,498
app.lisp
rvedam_cl-solid/app.lisp
(ql:quickload :cl-solid) (defpackage cl-solid/app (:use :cl :cl-solid/src/util ) (:import-from :lack.builder :builder) (:import-from :ppcre :scan :regex-replace) (:import-from :cl-solid/src/web :*web*) (:import-from :cl-solid/src/config ...
990
Common Lisp
.lisp
40
17.775
88
0.53692
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
8f1d08b4cfd82d8f7723d040aebe3f66157e50b404b022903f1d746083692248
35,498
[ -1 ]
35,499
db.lisp
rvedam_cl-solid/src/db.lisp
(in-package :cl-user) (defpackage #:cl-solid/src/db (:use :cl :cl-solid/src/util ) (:import-from :cl-solid/src/config :config) (:import-from :dexador) (:export :connection-settings :db :with-connection :sparql-query :sparql-values :create-triple :delete-tr...
6,040
Common Lisp
.lisp
165
32.363636
121
0.641868
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
3bc58f71ea19f33dfd80887f2832a8f0a84f03b19cf7cc723c547d582aa2ae86
35,499
[ -1 ]
35,500
util.lisp
rvedam_cl-solid/src/util.lisp
(in-package :cl-user) (defpackage #:cl-solid/src/util (:use :cl :cl-json :alexandria :babel :quri ) (:export :plist->json :json->plist :json->lisp :json-string->plist :json-string->list :split-string :string+ :getk :process-error :?uri :?iri :get-iri :get-uri ...
3,026
Common Lisp
.lisp
106
24.981132
77
0.647323
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
2e7c902a899df20652a9ba7749a121850727dd621d5371ebcfe623bf31d1c33f
35,500
[ -1 ]
35,501
make.lisp
rvedam_cl-solid/src/make.lisp
(in-package :cl-user) (defpackage #:cl-solid/src/make (:use :cl :cl-solid/src/db :cl-solid/src/util ) (:import-from :cl-solid/src/config :config) (:export :make-webid :make-agent )) (in-package :cl-solid/src/make) ;;NOTE: This implementation is using the web-id as a named graph for al...
2,633
Common Lisp
.lisp
54
44.111111
138
0.691738
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
788f1913712fe4864e38bbb91cdd0af8834503429a9b17e8f2d8d480b4008363
35,501
[ -1 ]
35,502
view.lisp
rvedam_cl-solid/src/view.lisp
(in-package :cl-user) (defpackage #:cl-solid/src/view (:use :cl) (:import-from :cl-solid/src/config :*template-directory*) (:import-from :caveman2 :*response* :response-headers) (:import-from :djula :add-template-directory :compile-...
1,498
Common Lisp
.lisp
43
27.023256
79
0.620594
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
dcbd945957349198e7ad1b838ba587ad584642f2d3697dcee2f3060239cfc33c
35,502
[ -1 ]
35,503
config.lisp
rvedam_cl-solid/src/config.lisp
(in-package :cl-user) (defpackage #:cl-solid/src/config (:use :cl) (:import-from :envy :config-env-var :defconfig) (:export :config :*application-root* :*static-directory* :*template-directory* :appenv :developmentp ...
2,992
Common Lisp
.lisp
70
37.685714
269
0.667588
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
7348f6c04fe602c60502553bbe5d52e85e322278bf19169af4f914a8f62fe283
35,503
[ -1 ]
35,504
authentication.lisp
rvedam_cl-solid/src/authentication.lisp
(in-package :cl-user) (defpackage #:cl-solid/src/authentication (:use :cl :jose ) (:nicknames #:authenticate) (:export )) (in-package #:authenticate) ;;https://github.com/solid/webid-oidc-spec ;;https://github.com/BnMcGn/clath ;;
243
Common Lisp
.lisp
12
18.166667
42
0.71179
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
4ddbb6d28861b2d4068bf554faf0a1a9cf41af67fd10309e6b720120411cd383
35,504
[ -1 ]
35,505
web.lisp
rvedam_cl-solid/src/web.lisp
(in-package :cl-user) (defpackage #:cl-solid/src/web (:use :cl :caveman2 :cl-solid/src/config :cl-solid/src/view :cl-solid/src/db :datafly :sxql) (:export :*web*)) (in-package :cl-solid/src/web) ;; for @route annotation (syntax:use-syntax :annot) ;; ;; Application ...
662
Common Lisp
.lisp
28
19.642857
54
0.614035
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
6aa52d382347e3dd4d3f436185859abcd3a19a498c224116700ecac322ca4252
35,505
[ -1 ]
35,506
cl-solid.lisp
rvedam_cl-solid/tests/cl-solid.lisp
(in-package :cl-user) (defpackage cl-solid-test (:use :cl :cl-solid :prove)) (in-package :cl-solid-test) (plan nil) ;; blah blah blah. (finalize)
167
Common Lisp
.lisp
9
15.222222
27
0.645161
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
36cf4b8ac6f6d063bc20a5fdb375ffdd22759355d1a169d2a84dfb9dd57d26e3
35,506
[ -1 ]
35,507
cl-solid-test.asd
rvedam_cl-solid/cl-solid-test.asd
(defsystem "cl-solid-test" :defsystem-depends-on ("prove-asdf") :author "Frederick C Gibson" :license "" :depends-on ("cl-solid" "prove") :components ((:module "tests" :components ((:test-file "cl-solid")))) :description "Test system for cl-solid" :perform (t...
381
Common Lisp
.asd
11
28.090909
73
0.602703
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
55ab7774749ab2b1a27a04105c5dcac99cbdc121f072eed9f2a6cb374b2c7e41
35,507
[ -1 ]
35,508
cl-solid.asd
rvedam_cl-solid/cl-solid.asd
(defpackage cl-solid-asd (:use :cl :asdf)) (in-package :cl-solid-asd) (defsystem "cl-solid" :class :package-inferred-system :version "0.1.0" :author "Frederick C Gibson, Mark Watson" :license "GNU General Public License Version 3" :depends-on ("clack" "lack" "caveman2" ...
789
Common Lisp
.asd
26
20.692308
97
0.526385
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
6457f689ce7ab006e17c8b1e91c51d71c6ff2201cacb39af715d5c53dc0a77f4
35,508
[ -1 ]
35,521
index.html
rvedam_cl-solid/templates/index.html
{% extends "layouts/default.html" %} {% block title %}Welcome to Caveman2{% endblock %} {% block content %} <div id="main"> Welcome to <a href="http://8arrow.org/caveman/">Caveman2</a>! </div> {% endblock %}
210
Common Lisp
.l
7
28.714286
63
0.665025
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
6597b5705cef729b6679f77094987498c734ff0ffd8c4509e4620d324bcb82a3
35,521
[ -1 ]
35,522
default.html
rvedam_cl-solid/templates/layouts/default.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>{% block title %}{% endblock %}</title> <link rel="stylesheet" type="text/css" media="screen" href="/css/main.css"> </head> <body> {% block content %}{% endblock %} </body> </html>
249
Common Lisp
.l
11
20.909091
77
0.634454
rvedam/cl-solid
0
1
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
a345ffc53f07e818bff0b44b7e1b19dadb91475cfdf1a67417e9a1df2a51074a
35,522
[ -1 ]
35,539
test.lisp
shepherdjerred-homework_unify-function/test/test.lisp
(progn (load "../src/match.lisp") (load "../src/simplify.lisp") (load "../src/unify.lisp") (trace unify) (trace do-unify) (trace match) (trace simplify) (trace apply-subs) (trace apply-one-sub)) (and (equal (unify '(+ a b) '(+ a x)) '((X . B))) (equal (unify '(+ a b) '(x a b)) '((...
1,069
Common Lisp
.lisp
54
16.092593
41
0.412463
shepherdjerred-homework/unify-function
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
72be7d3293e6a12e9566d3407f929c4669ae1078c783952e1a125588df77d148
35,539
[ -1 ]
35,540
unify.lisp
shepherdjerred-homework_unify-function/src/unify.lisp
; unify ; Jerred Shepherd ; Takes a term and applies a substitution to it ; sub is the form of (X . B) where X is the target and B is the replacement value (defun apply-one-sub (term sub) (let ( (sub-key (car sub)) (sub-value (cdr sub))) (if (eq term sub-key) sub-value (if ...
1,642
Common Lisp
.lisp
71
16.253521
82
0.511821
shepherdjerred-homework/unify-function
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
e71cd63e5d8b36eff023f512375e2cd6cdf640d90fd96819aae89c06b601e363
35,540
[ -1 ]
35,558
tour.lisp
ggrabuskie_giraffe/tour.lisp
(defun getMoves (x y) (list (cons (+ x 1) (+ y 0)) ;1 right (cons (- x 1) (+ y 0)) ;1 left (cons (+ x 0) (+ y 1)) ;1 up (cons (+ x 0) (- y 1)) ;1 down (cons (+ x 2) (+ y 1)) ;2 right 1 up (cons (+ x 2) (- y 1)) ;2 right 1 down (cons (+ x 1) (+ y 2)) ;1 r...
567
Common Lisp
.lisp
16
28.9375
41
0.449704
ggrabuskie/giraffe
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
db44c6ca4f7db2caf78b2dcee1ad153b5b515582199408c1a044e5fb46de1a6c
35,558
[ -1 ]
35,575
model.lisp
borodust_bamboozy/src/model.lisp
(cl:in-package :bamboozy) (declaim (special *model-height*)) (defun parse-color (string &optional (opacity 1.0)) (unless (or (null string) (equalp string "none")) (let* ((color-string (subseq string 1)) (hex-color (parse-number:parse-number color-string :radix 16))) (flet ((read-color (num) ...
9,469
Common Lisp
.lisp
184
39.98913
111
0.596968
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
9d3c9215d8220325c821dd30bab6f0597e7e5067c8be9015ad5fb4b36bb9da9d
35,575
[ -1 ]
35,576
camera.lisp
borodust_bamboozy/src/camera.lisp
(cl:in-package :bamboozy) (defparameter *camera-speed* 8) (defclass camera () ((current-position :initform (gamekit:vec2 0 0)) (timestamp :initform 0d0))) (defun camera-position (camera player-pos) (with-slots (current-position timestamp) camera (let* ((cursor-offset (gamekit:div (gamekit:subt *viewpor...
1,245
Common Lisp
.lisp
22
43.681818
104
0.604766
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
0be6b5d7f210556afcf0991f590cf5eb94373cb0dcd8eaa9f3c7b1cdfa6c28da
35,576
[ -1 ]
35,577
utils.lisp
borodust_bamboozy/src/utils.lisp
(cl:in-package :bamboozy) (declaim (special *this-shape* *that-shape*)) (defparameter *unit-scale* 100) (defgeneric scale (value)) (defgeneric unscale (value)) (defmethod scale ((null null)) null) (defmethod unscale ((null null)) null) (defmethod scale ((number number)) (* *unit-scale*...
1,311
Common Lisp
.lisp
38
30.131579
68
0.681124
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
ee84de3918dd98097e71825e8f1bdef163a4c3e997b9069c9c5fac14f30704c5
35,577
[ -1 ]
35,578
visual.lisp
borodust_bamboozy/src/visual.lisp
(cl:in-package :bamboozy) (defgeneric make-visual-from-feature (model-feature &key &allow-other-keys)) (defclass visual () ((fill-paint :initform nil :initarg :fill-paint :reader fill-paint-of) (stroke-paint :initform nil :initarg :stroke-paint :reader stroke-paint-of) (stroke-width :initform nil :initarg :...
5,820
Common Lisp
.lisp
120
37.175
87
0.594695
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
9d9ee25f3b631aaddafe5accf55238dbd0eef27dfb680961ce142896f78490e9
35,578
[ -1 ]
35,579
game.lisp
borodust_bamboozy/src/game.lisp
(cl:in-package :bamboozy) (defparameter *viewport-width* 1024) (defparameter *viewport-height* 768) (defparameter *viewport-half* (gamekit:vec2 (/ 1024 2) (/ 768 2))) (defvar *game* nil) (defclass game () ((universe))) (defun universe () (slot-value *game* 'universe)) (defmethod initialize-instance :after...
1,186
Common Lisp
.lisp
26
35.153846
79
0.579268
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
60d39c04b0d27624947991394a15fcca02a39b8d912502e05a1f70b4fff143cb
35,579
[ -1 ]
35,580
bamboozy.lisp
borodust_bamboozy/src/bamboozy.lisp
(cl:in-package :bamboozy) (fistmage:defgame (bamboozy start-state) (:viewport-title "BAMBOOZY") (:viewport-width *viewport-width*) (:viewport-height *viewport-height*)) (defmethod initialize-instance ((this bamboozy) &rest args &key &allow-other-keys) (destructurin...
764
Common Lisp
.lisp
17
38.058824
97
0.676754
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
6847153312bb1e7d289e790d8a01615e5500aa065e4381435eb9d2dabba77db4
35,580
[ -1 ]
35,581
level.lisp
borodust_bamboozy/src/objects/level.lisp
(cl:in-package :bamboozy) ;;; ;;; CONTROLLERS ;;; (defclass controller () ((id :initarg :id :initform (error ":id missing") :reader id-of) (shape :initarg :type :reader shape-of))) (defmethod initialize-instance :after ((this controller) &key shape-constructor) (with-slots (shape) this (setf shape (funca...
4,179
Common Lisp
.lisp
95
34.642105
84
0.612114
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
e1b50a6aed11021d4661e263ab43e7a1db918c972d257c1594ee54f5f5b79a3f
35,581
[ -1 ]
35,582
slime.lisp
borodust_bamboozy/src/objects/slime.lisp
(cl:in-package :bamboozy) (defparameter *slime-skin-subdivision* 20) (defparameter *slime-core-stiffness* 1500) (defparameter *slime-core-damping* 20) (defparameter *slime-grounded-p* nil) (defparameter *slime-model* (parse-model (alexandria:read-file-into-string (asdf:system-relative-pathname :bamboozy "...
9,347
Common Lisp
.lisp
198
32.540404
100
0.529955
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
219627244b96053017d38cd77c098da4655e069ef9ce09daf3c289c2a3a9dba1
35,582
[ -1 ]
35,583
start.lisp
borodust_bamboozy/src/state/start.lisp
(cl:in-package :bamboozy) (defparameter *test-level* (parse-model (alexandria:read-file-into-string (asdf:system-relative-pathname :bamboozy (format nil "rsc/level/level0.svg"))))) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; (defclass start-state () ((camera :initform (mak...
2,253
Common Lisp
.lisp
48
39.875
86
0.649699
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
c2d5c2cd409f4ac3dc2b4c89ae6110a85560d3226a9483449aa403a3c244f02f
35,583
[ -1 ]
35,584
bamboozy.asd
borodust_bamboozy/bamboozy.asd
(asdf:defsystem :bamboozy :description "Autumn Lisp Game Jam 2018 Entry" :license "GPLv3" :author "Pavel Korolev" :version "1.0.0" :depends-on (bodge-utilities alexandria split-sequence parse-number cl-svg-polygon cl-bodge/physics cl-bodge/physics/2d fistmage) :pathname...
835
Common Lisp
.asd
23
23
85
0.477833
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
5dda675e18ea2e70b12c69b61b4e7bcec6a211c4e8d37ff2c9c5dfce42627a68
35,584
[ -1 ]
35,586
.travis.yml
borodust_bamboozy/.travis.yml
language: common-lisp sudo: false addons: apt: packages: - zip env: global: - GAMEKIT_SYSTEM_NAME: bamboozy - GAMEKIT_APPLICATION_PACKAGE: bamboozy - GAMEKIT_APPLICATION_MAIN_CLASS: bamboozy - PATH: ~/bin/:$PATH - GAMEKIT_TARGET_PACKAGE: $GAMEKIT_SYSTEM_NAME-x86-64-$TRAVIS_OS_NAME-$TRAVIS_BRANCH...
1,673
Common Lisp
.l
40
38.675
698
0.820308
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
435723cdcb280e93d1d9e7ead8e2e870641fe0605d1716e32a73f720a4505fb6
35,586
[ -1 ]
35,587
.appveyor.yml
borodust_bamboozy/.appveyor.yml
image: - Visual Studio 2017 platform: - x64 environment: global: GAMEKIT_SYSTEM_NAME: bamboozy GAMEKIT_APPLICATION_PACKAGE: bamboozy GAMEKIT_APPLICATION_MAIN_CLASS: bamboozy GAMEKIT_ARTIFACT: $(GAMEKIT_SYSTEM_NAME)-x86-64-windows-$(APPVEYOR_REPO_TAG_NAME).zip GAMEKIT_BUILD_DIR: $(TMP)\$(GAME...
1,467
Common Lisp
.l
51
25.019608
89
0.700994
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
73d89b297dd4ca7f07fbc6d1b8ffa60be9c030aa90a1834b2b7fad3d321d6794
35,587
[ -1 ]
35,597
level0.svg
borodust_bamboozy/rsc/level/level0.svg
<?xml version="1.0" encoding="UTF-8" standalone="no"?> <!-- Created with Inkscape (http://www.inkscape.org/) --> <svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns...
7,663
Common Lisp
.l
156
42.467949
353
0.676392
borodust/bamboozy
0
0
0
GPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
6886588f07fe5e534a6c01871c589d9b2b856d5d0e2e60b4d90cf40386ae181d
35,597
[ -1 ]
35,612
load-gendl.lisp
lisp-mirror_gendl/load-gendl.lisp
(in-package :common-lisp-user) (let ((personal-boot-file "../gdl/tools/boot/load.lisp")) (when (probe-file personal-boot-file) (load personal-boot-file))) (funcall (find-symbol (string '#:quickload) :ql) :gendl) (gendl:start-gendl!)
238
Common Lisp
.lisp
5
45.6
67
0.717391
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
1b8cfc24324e6f3a26a683b6a6583590b09e580b90f712f6a92235ba735b32f5
35,612
[ -1 ]
35,613
gendl-asdf.lisp
lisp-mirror_gendl/gendl-asdf.lisp
;;;; -*- coding: utf-8 -*- (in-package :cl-user) (defclass asdf::gdl (asdf::cl-source-file) ((type :initform "gdl"))) (defclass asdf::gendl (asdf::cl-source-file) ((type :initform "gendl"))) (defclass asdf::lisp (asdf::cl-source-file) ())
242
Common Lisp
.lisp
5
46.8
72
0.653846
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
d88f934a6918ac2f9e538479a257aefa6cf7e05059f5a7ab0512f08210d3e090
35,613
[ -1 ]
35,614
setup.lisp
lisp-mirror_gendl/setup-cffi/source/setup.lisp
;;(when (find-package :cffi) (in-package :cffi)) #-allegro (in-package :cffi) #-allegro (defun %exe-path% () #+sbcl (make-pathname :name nil :type nil :defaults sb-ext:*core-pathname*) #+ccl (make-pathname :name nil :type nil :defaults (first (ccl::command-line-arguments))) #+allegro (translate-logical-p...
784
Common Lisp
.lisp
17
41.941176
100
0.682477
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
a85839ca83008350410bb6d837e841a89b85bdb91466b5589fb818c08d027328
35,614
[ -1 ]
35,615
general-note.lisp
lisp-mirror_gendl/regression/geom-base/source/general-note.lisp
(in-package :gdl-user) (define-object general-note-sample (base-object) :objects ((x-axis :type 'line :start (make-point 0 0 0) :end (make-point 1 0 0)) (origin-text :type 'general-note :start (make-point 0 0 0) :outline-shape-type :rectangle :strings "O" :character-size 0.1)))
296
Common Lisp
.lisp
8
33.875
73
0.686411
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
865c2c67094866db040b71c704cf1e0537d331e25cc7fe19bf23ecad4614a4c5
35,615
[ -1 ]
35,616
angle-between-vectors.lisp
lisp-mirror_gendl/regression/geom-base/source/angle-between-vectors.lisp
(in-package :gdl-lift-tests) (define-object angle-between-vectors-test () :input-slots ((vector-1 (make-vector 1 0 0)) (vector-2 (make-vector 0 1 0)) (vector-3 (make-vector 0 0 1))) :computed-slots ((vector-3-r (reverse-vector (the vector-3))) (regression-test-data (list (angle-between-vectors (...
1,608
Common Lisp
.lisp
24
58.416667
108
0.64359
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
14dc078b95e6d6a623c3dd795bafe5c07cd8ceb2347f13776aae68f2f71ffa7f
35,616
[ -1 ]
35,617
box-matrix.lisp
lisp-mirror_gendl/regression/geom-base/source/box-matrix.lisp
(in-package :gdl-user) #+nil (define-object box-matrix (base-object) :input-slots ((rows 50) (columns 50)) :objects ((box-container :type 'box-container :box-length 10 :box-width 10 :box-height 1 :pass-down (rows columns)) (box-solid-container :type 'box-solid-container :bo...
2,207
Common Lisp
.lisp
68
27.323529
61
0.656802
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
9a458d973f6c11a9d759a68aabe61cbbdf9c588724657e6fd3914ba1a9228a7a
35,617
[ -1 ]
35,618
drawing.lisp
lisp-mirror_gendl/regression/geom-base/source/drawing.lisp
(in-package :gdl-user) (define-object box-with-annotated-drawing (base-object) :objects ((drawing :type 'box-annotated-drawing :dl-objects (list (the box))) (box :type 'box :length 10 :width 20 :height 30))) (define-object box-annotated-drawing (base-drawing) :input-slots (...
4,159
Common Lisp
.lisp
76
42.513158
101
0.592024
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
102fff538af03638ebc58a62b89bdaf073bc6b8c9d3f2adee2d1d0fa37f22737
35,618
[ -1 ]
35,619
package.lisp
lisp-mirror_gendl/regression/utils/source/package.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as publis...
959
Common Lisp
.lisp
21
44.428571
100
0.758805
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
eadd443bedcb0018d220df56ad3a8b33aea79b14f03fcf271890f984b16df272
35,619
[ -1 ]
35,620
functions.lisp
lisp-mirror_gendl/regression/utils/source/functions.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as publis...
9,656
Common Lisp
.lisp
216
39.828704
236
0.667698
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
6505b7fdb5f1ba7cbb38ac0d634b7b209f97b23cbed1f6fbd97027a0134d3b2c
35,620
[ -1 ]
35,621
genworks.lisp
lisp-mirror_gendl/regression/utils/source/genworks.lisp
(in-package :com.genworks.lisp) (defun close-old-areas () #+allegro (setf (sys:gsgc-parameter :open-old-area-fence) -1) #-allegro (warn "Learn how to close old areas in currently running Lisp.~%")) (defun open-old-areas () #+allegro (setf (sys:gsgc-parameter :open-old-area-fence) 0) #-allegro (warn "Lea...
657
Common Lisp
.lisp
15
41.066667
97
0.698113
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
b0af6ff242878995e2b8cc6a487b0c42aeac27fff95985483f437d81e2a2a971
35,621
[ -1 ]
35,622
bracket.lisp
lisp-mirror_gendl/regression/assembly-output/source/bracket.lisp
(in-package :bracket) (define-object simple-bracket (base-object) :input-slots ( (thickness 2 :settable) (width 100 :settable) (length-A 10 :settable) (length-B 30 :settable) (length-C 10 :settable) (angle-AB 45 :settable) (angle-BC 90 :settable) (radius-AB 2 :settable) (ra...
7,900
Common Lisp
.lisp
230
28.386957
125
0.618487
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
7f06bdd357e12910f38057e1fb6762878e314110b817507aea93fbd2df9ea2a9
35,622
[ -1 ]
35,623
bracket-test.lisp
lisp-mirror_gendl/regression/assembly-output/source/bracket-test.lisp
(in-package :bracket) (define-object bracket-test (base-object) :objects ((bracket :type 'simple-bracket)) :functions ((step-out! () (with-format (step "/tmp/try.stp" :assembly? t) (write-the bracket cad-output-tree)))))
239
Common Lisp
.lisp
8
26.625
91
0.681223
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
f1d9b7f2d755ef12638ac25cf7af754c89425f4c99de6b4af7d075cf0b836bd1
35,623
[ -1 ]
35,624
syntax-checker.lisp
lisp-mirror_gendl/regression/gdl/source/syntax-checker.lisp
(in-package :gdl-lift-tests) (define-condition not-raised (error) ;; Private condition to use inside assert-raises." ((expected-condition :initarg :expected-condition :reader expected-condition) (raised-condition :initarg :raised-condition :reader raised-condition :initform nil) (expression :initarg :express...
7,156
Common Lisp
.lisp
183
32.31694
124
0.631139
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
b5ba12a2f3535e99570b14d5f3bb1ec8add0ffda4d827dc8f34ceeaaf79d2264
35,624
[ -1 ]
35,625
center-loss.lisp
lisp-mirror_gendl/regression/tasty/source/center-loss.lisp
(in-package :gdl-user) (define-object tasty-center-test (base-object) :objects ((child1 :type 'box :center (make-point 1 0 0) :width 1 :length 1 :height 1) (child2 :type 'box :width 1 :length 1 :height 1)))
222
Common Lisp
.lisp
6
33.5
63
0.669767
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
eab37cc5ec94285d3ea63b49c938960aadbf3c9ad5ad90697c2c512ccb7916f2
35,625
[ -1 ]
35,626
package.lisp
lisp-mirror_gendl/regression/gwl/source/package.lisp
;; ;; Copyright 2002, 2012 Genworks International ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as published by the Free S...
903
Common Lisp
.lisp
21
41.714286
70
0.759954
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
f21bf5ec1c40ccdd0e0760bd7b1df74529e40b9720eed66cec311fdea55588a6
35,626
[ -1 ]
35,627
svg-error-handling.lisp
lisp-mirror_gendl/regression/gwl/source/svg-error-handling.lisp
(in-package :gdl-user) (define-object bad-box (box) :computed-slots ((length 10) (height 20) (width (div (the height) 0))))
136
Common Lisp
.lisp
6
19.666667
33
0.65625
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
2bacd175be32bdef0d20371b4e4e6e41cceb63a7f6c04b95215f79707cb20b0a
35,627
[ -1 ]
35,628
hey-now.lisp
lisp-mirror_gendl/regression/gwl/source/hey-now.lisp
;; ;; Copyright 2002, 2012 Genworks International ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as published by th...
2,102
Common Lisp
.lisp
51
35.72549
71
0.673674
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
ac9bc5b7970d28879e912890e13699b09c878f85e4dd1ff28a258f2873b236fe
35,628
[ -1 ]
35,629
short-form-element-test.lisp
lisp-mirror_gendl/regression/gwl/source/short-form-element-test.lisp
;; ;; Copyright 2002-2011 Genworks International ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains 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,925
Common Lisp
.lisp
48
31.8125
71
0.642978
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
b29735ed6b25ae44c0fe4d0d6ec529d20e29e3c74c5772774c2e0c2f02ad393d
35,629
[ -1 ]
35,630
large-data.lisp
lisp-mirror_gendl/regression/gwl/source/large-data.lisp
;; ;; Copyright 2002, 2012 Genworks International ;; ;; This source file is part of the General-purpose Declarative ;; (roLanguage project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as published by the Fre...
2,005
Common Lisp
.lisp
49
36.673469
95
0.68866
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
8a4085590037927aed248e20b180542513cd11f0ce3b31a145fc530a8cf92618
35,630
[ -1 ]
35,631
test-seq.lisp
lisp-mirror_gendl/regression/gwl/source/test-seq.lisp
;; ;; Copyright 2002-2011 Genworks International ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as published by th...
2,396
Common Lisp
.lisp
56
31.017857
76
0.562172
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
f4651fb0400c193d4676385829d88309a3726287c5ec7169b320f091dc78e62e
35,631
[ -1 ]
35,632
form-element-tests.lisp
lisp-mirror_gendl/regression/gwl/source/form-element-tests.lisp
;; ;; Copyright 2002-2011 Genworks International ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as published by th...
9,143
Common Lisp
.lisp
191
32.209424
98
0.493967
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
1c527a047d98b53e818380cc6a7e98eb16d3fd3aa75774c82ee6b08f5a1ee558
35,632
[ -1 ]
35,633
form-element-validation.lisp
lisp-mirror_gendl/regression/gwl/source/form-element-validation.lisp
;; ;; Copyright 2002-2011 Genworks International ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as published by th...
3,153
Common Lisp
.lisp
68
34.117647
114
0.565987
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
3539f4004e3b5bd3d5ce8ca9f8d0597adf34f4e40252941527565e7bc8a3ad65
35,633
[ -1 ]
35,634
ajax-json.lisp
lisp-mirror_gendl/regression/gwl/source/ajax-json.lisp
(in-package :gwl-user) (define-object ajax-json-test (base-ajax-sheet) :computed-slots ((use-jquery? t) (main-sheet-body (with-cl-who-string () (str (the Main-Section main-div))))) :objects ((Main-Section :type 'sheet-section :inner-html (with-cl-who-string () (str (the developmen...
925
Common Lisp
.lisp
25
30.24
80
0.632054
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
46ce4a1e591ce1af134bcd6700c8b268e4b52c36aeffd6544b8fd563c44bd313
35,634
[ -1 ]
35,635
issue-65.lisp
lisp-mirror_gendl/regression/issues/source/issue-65.lisp
(in-package :gdl-user) (define-object manifold-sample (base-object) :objects ((box :type 'box-solid :width 2 :length 2 :height 2) (merged :type 'merged-solid :other-brep (the box :face-breps :list-elements)) ("merge trial" merged2 :type 'merged-solid :other-brep (the box :face-breps :list...
357
Common Lisp
.lisp
10
31.1
80
0.674419
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
b71cec561992f34b71f2c9b88067a51e550c9b3b6b6636108a5ee8c9c78c64cc
35,635
[ -1 ]
35,636
issue-67.lisp
lisp-mirror_gendl/regression/issues/source/issue-67.lisp
(in-package :gdl-user) (define-object issue-67 (base-object) :objects ((box :type 'box-solid :width 2 :length 2 :height 2) (clean-surfaces :type 'surface :sequence (:size 6) :built-from (the box (faces (the-child index)) basis-surface)) (stitched :type 'stitched-solid :faces-in (list-elements (...
531
Common Lisp
.lisp
11
44.272727
118
0.710117
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
d9e729a65377f58efad30b207c04aa23e125ab80e29a1e1c985e0632b50c525d
35,636
[ -1 ]
35,637
issue-68.lisp
lisp-mirror_gendl/regression/issues/source/issue-68.lisp
(in-package :gdl-user) ;; ;; Submitted by Hermen de Jong of KE-works ;; (define-object huge-boxes-sequence (base-object) :input-slots ((number-of-boxes 100 :settable)) :computed-slots ((wall-width (floor (sqrt (the number-of-boxes))))) :objects ((boxes :type 'box :sequence (:size (the number-of-boxe...
662
Common Lisp
.lisp
23
23.913043
56
0.626772
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
7a964cee6117bd952067866f611697c2d10e867e3d62693209ac00051bf6ff88
35,637
[ -1 ]
35,638
syntax.lisp
lisp-mirror_gendl/regression/base/syntax.lisp
(in-package :gdl-user) (define-object-macro-toplevel :super-inputs (messages) `(:input-slots ,messages)) (define-object toplevel () :super-inputs (hey now)) (define-object broken () :silly-inputs (hey now))
218
Common Lisp
.lisp
7
28.571429
54
0.728155
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
be47381b8712ceb7bef852a37b96e9d9ecd9b4a39f0f25da371d37c6700e7520
35,638
[ -1 ]
35,639
variable-sequence.lisp
lisp-mirror_gendl/regression/base/variable-sequence.lisp
(in-package :gdl-user) (define-object container () :objects ((kids :type 'vkid :sequence (:indices nil)))) (define-object vkid () :computed-slots ((a nil :settable) (b nil :settable)))
205
Common Lisp
.lisp
8
22.125
31
0.668421
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
5acafd1c1169225645810408b0f06a4dbc8f909f3a51aa2c4a6d9599eeb61f71
35,639
[ -1 ]
35,640
box-solid.lisp
lisp-mirror_gendl/regression/threads/source/box-solid.lisp
(in-package :gdl-lift-tests) #+allegro (defparameter *box-solid-lock* (mp:make-process-lock :name "box-solid-lock")) #+allegro (defparameter *collected-breps* nil) #+allegro (defparameter *collected-breps-old* nil) #+allegro (defun make-and-check-box-solid (&key (value 20) (n nil)) (let (self) (mp:with-p...
2,168
Common Lisp
.lisp
47
40.297872
90
0.628979
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
1e4333492b6079914bb24b14df17570abfcd25bdf1b921e50e13b80bae332bde
35,640
[ -1 ]
35,641
remote.lisp
lisp-mirror_gendl/regression/dgdl/source/remote.lisp
(in-package :gdl-user) #| To use: 1. (setq *compile-for-dgdl?* t) 2. Compile & load this file in the "primary" Gendl session. 3. Start a separate Gendl session (this should start by default on 9001) 4. compile & load this file in the "secondary" Gendl session *compile-for-dgdl?* should not be necessary on ...
886
Common Lisp
.lisp
26
30.153846
78
0.688679
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
e6b0df9e1c5b8f0a059c8a30f98e886f560ef656760c2fea8a35037503f32845
35,641
[ -1 ]
35,642
pegasus-regioned-solid.lisp
lisp-mirror_gendl/regression/source/pegasus-regioned-solid.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as publis...
1,661
Common Lisp
.lisp
37
40.837838
109
0.716677
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
65bfcf681c0210cecfb551d1bc58cc569ace33685dd9febd073a7930cae2331e
35,642
[ -1 ]
35,643
transformed-solid.lisp
lisp-mirror_gendl/regression/source/transformed-solid.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,384
Common Lisp
.lisp
33
38.242424
80
0.721595
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
9394745201dbce73a68adc44f172ec42b3d8c1b4cb5a0989d4e9fd65ba7ce573
35,643
[ -1 ]
35,644
merged-solid.lisp
lisp-mirror_gendl/regression/source/merged-solid.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
4,882
Common Lisp
.lisp
112
37.446429
88
0.650538
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
52d09a0a241dbd5b601dc874d518e1be2a4e15d32068856128db8288b7fcf63a
35,644
[ -1 ]
35,645
step-writer.lisp
lisp-mirror_gendl/regression/source/step-writer.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,693
Common Lisp
.lisp
38
39.947368
93
0.702257
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
de0b4f209c74b674e6d32c45bd59b265254dfd97b0bb99b06178c66bf2677f89
35,645
[ -1 ]
35,646
regioned-solid.lisp
lisp-mirror_gendl/regression/source/regioned-solid.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as publis...
2,653
Common Lisp
.lisp
52
41.096154
107
0.591805
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
a12e5a1c4ca1df410216f3f080b8ec20be074bcee7b4653958275c51d9217f40
35,646
[ -1 ]
35,647
general-note.lisp
lisp-mirror_gendl/regression/source/general-note.lisp
(in-package :gdl-lift-tests) (define-object general-note-test (base-object) :objects ( (center-sphere :type 'sphere :radius .1) (note :type 'general-note :display-controls (list :color (list .32 .54 .26) :specular-color (list 0.46 0.46 0.46) :ambient-intensity 0.0933 :billboard t) :...
752
Common Lisp
.lisp
26
24.192308
51
0.661932
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
71b484ffe5ce6b9671e2b74d24add5f2b56342dade0b010703658471be15bd2c
35,647
[ -1 ]
35,648
cylinder-solid.lisp
lisp-mirror_gendl/regression/source/cylinder-solid.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,267
Common Lisp
.lisp
30
38.633333
101
0.729064
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
1a141609edccfd0014bdb6cfe426f58c9e12f39a3060c506bcf3f6f392843a94
35,648
[ -1 ]
35,649
package.lisp
lisp-mirror_gendl/regression/source/package.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as publis...
920
Common Lisp
.lisp
21
42.47619
70
0.760045
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
0f25410e7674434cc35910afa4b7dde97c414cff1014241d40de3547b0f586cf
35,649
[ -1 ]
35,650
orientations.lisp
lisp-mirror_gendl/regression/source/orientations.lisp
;; ;; Copyright 2012 Genworks International ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as published by the Free Softwar...
3,284
Common Lisp
.lisp
79
35.759494
94
0.650047
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
f3cd04b626920ff6007ca12b4ddec0f818a1ff65f540069c878ef4ffcd2261ce
35,650
[ -1 ]
35,651
iges-writer.lisp
lisp-mirror_gendl/regression/source/iges-writer.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
4,872
Common Lisp
.lisp
116
34.724138
100
0.640555
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
e5b6dd65afa8c3a97ba03527e88adc6f0b9b1b81eaac0981495d7c8d8c9bcfcb
35,651
[ -1 ]
35,652
trimmed-surface.lisp
lisp-mirror_gendl/regression/source/trimmed-surface.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
18,776
Common Lisp
.lisp
385
30.768831
115
0.475663
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
8b721aaa9bc8d4082be87d96835631c921071eeaedfc4289b6c79e64d74141c6
35,652
[ -1 ]
35,653
native-reader.lisp
lisp-mirror_gendl/regression/source/native-reader.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,670
Common Lisp
.lisp
35
43.457143
98
0.721566
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
5572c8657693c5ce87f4eec99155eae7719e6b32b4e84ce3651126ba17452cc6
35,653
[ -1 ]
35,654
transformed-surface.lisp
lisp-mirror_gendl/regression/source/transformed-surface.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,871
Common Lisp
.lisp
41
41.439024
101
0.673913
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
b371414155ad2b210637e6be43d8b5274c6f8717b9fea45ec87a659feeb3ab7b
35,654
[ -1 ]
35,655
linear-curve.lisp
lisp-mirror_gendl/regression/source/linear-curve.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,176
Common Lisp
.lisp
27
40.259259
71
0.735816
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
79b7275c5fa9323893195054f85bdd34cdcfb3ec60dfd53e4b52472434fbd8e7
35,655
[ -1 ]
35,656
intersected-solid.lisp
lisp-mirror_gendl/regression/source/intersected-solid.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,894
Common Lisp
.lisp
49
33.102041
82
0.682724
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
da541bc7d6c187c09f02a3be1b1b13986a13fced2ce9cd65eb52d119348fa021
35,656
[ -1 ]
35,657
cone-solid.lisp
lisp-mirror_gendl/regression/source/cone-solid.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,289
Common Lisp
.lisp
32
36.28125
81
0.716599
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
92d8b029c9124d76540f6ee49f271ca17487638b00fc0ca98b46ba0ac66e49e7
35,657
[ -1 ]
35,658
subtracted-solid.lisp
lisp-mirror_gendl/regression/source/subtracted-solid.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,431
Common Lisp
.lisp
37
34.054054
82
0.705409
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
0b60ca64a824d3d78b69132fd405a5b1a6cdaa96e540bb604548f3f9fa00b54c
35,658
[ -1 ]
35,659
surface-knot-reduction.lisp
lisp-mirror_gendl/regression/source/surface-knot-reduction.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as publis...
2,856
Common Lisp
.lisp
82
29.646341
85
0.657404
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
59e53ab043f850ff89d9955f77c255bfbb68197005c3cbcc9d7c208a86bb98b8
35,659
[ -1 ]
35,660
transformed-curve.lisp
lisp-mirror_gendl/regression/source/transformed-curve.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,359
Common Lisp
.lisp
35
35.257143
71
0.723372
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
019591372357ca2d08eabc796708ea3451e42ad5d69f353f8ff583d46513b799
35,660
[ -1 ]
35,661
test-harness.lisp
lisp-mirror_gendl/regression/source/test-harness.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as publis...
17,074
Common Lisp
.lisp
233
69.330472
128
0.726811
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
16f35304ff133974a978717292989446e439e6c1139029f4215f141756b3eb36
35,661
[ -1 ]
35,662
boxed-curve.lisp
lisp-mirror_gendl/regression/source/boxed-curve.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
4,754
Common Lisp
.lisp
110
35.872727
76
0.659251
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
9cceb23da44a25771cfd4967e550eaa302df9a7f04a816120af43284864fdbf0
35,662
[ -1 ]
35,663
global-filleted-polyline-curves.lisp
lisp-mirror_gendl/regression/source/global-filleted-polyline-curves.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
2,514
Common Lisp
.lisp
60
35.4
89
0.672234
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
bc19fe775b5d2e695d99db1d6722b0798c9201d7e92c3463697e76736b471bc8
35,663
[ -1 ]
35,664
separated-solid.lisp
lisp-mirror_gendl/regression/source/separated-solid.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,991
Common Lisp
.lisp
48
35.645833
78
0.686016
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
0778c227b843821defdcea70784156051ae589552be3962ca25ee2c4b52bb06f
35,664
[ -1 ]
35,665
edge-blend-surface.lisp
lisp-mirror_gendl/regression/source/edge-blend-surface.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
2,252
Common Lisp
.lisp
61
30.770492
71
0.654064
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
288477f280bc24015beac212e1d308246662ba8f3fed4b3613329ec7c6a48366
35,665
[ -1 ]
35,666
trimmed-curve.lisp
lisp-mirror_gendl/regression/source/trimmed-curve.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,482
Common Lisp
.lisp
37
35.297297
71
0.686096
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
894927e5dd254e5253a155b0c8d44ea80143282dd043a8ee5e32d02955ce609a
35,666
[ -1 ]
35,667
poly-brep.lisp
lisp-mirror_gendl/regression/source/poly-brep.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
2,080
Common Lisp
.lisp
52
35.038462
95
0.690536
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
8046e8ca64acfcf8c6fa1eec4acbf3bd9e0bd3c1aa88f62bfe25c77c449071f4
35,667
[ -1 ]
35,668
conic-curve.lisp
lisp-mirror_gendl/regression/source/conic-curve.lisp
;; ;; Copyright 2014 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License as publ...
1,355
Common Lisp
.lisp
32
38.34375
75
0.70827
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
41a4315587524dee5eddc2cd5e5292f152bfda35987cd77bc73dc7d0795cdb9f
35,668
[ -1 ]
35,669
decomposed-curves.lisp
lisp-mirror_gendl/regression/source/decomposed-curves.lisp
;; ;; Copyright 2002, 2009 Genworks International and Genworks BV ;; ;; This source file is part of the General-purpose Declarative ;; Language project (GDL). ;; ;; This source file contains free software: you can redistribute it ;; and/or modify it under the terms of the GNU Affero General Public ;; License a...
1,641
Common Lisp
.lisp
38
38.421053
108
0.712015
lisp-mirror/gendl
0
0
0
AGPL-3.0
9/19/2024, 11:44:17 AM (Europe/Amsterdam)
563a8cd5da18f3fbbf84a0aa360c101980f6aef652fe5243627d4882c1a39ac9
35,669
[ -1 ]