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
15,380
indigo.tests.lisp
olewhalehunter_indigo-lisp/indigo.tests.lisp
(in-package :indigo.tests) (defun run-tests () (if (prove:run #P"test/tree.lisp" :reporter :tap) t nil))
108
Common Lisp
.lisp
3
34
59
0.682692
olewhalehunter/indigo-lisp
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
153347e2aeffebef2fbf24e2e7f7af1ef49af95e6f493d6e4908f4b78e41b98c
15,380
[ -1 ]
15,381
tree.lisp
olewhalehunter_indigo-lisp/test/tree.lisp
(in-package :indigo.tests) (plan nil) (subtest "Testing Definitions" (ok (data Tree Empty (Leaf Integer) (Branch Tree Tree)) ) (ok (def depth Empty 0 (Leaf n) 1 (Branch l r) (+ 1 (max (depth l) (depth r)))) )) (subtest "Testing Type Predicates" (ok (typep Emp...
930
Common Lisp
.lisp
36
22.222222
61
0.616516
olewhalehunter/indigo-lisp
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
8fa0e852afeef061de4b8f3003c324a37e8522641392098f9e1109b37b26058d
15,381
[ -1 ]
15,382
indigo.asd
olewhalehunter_indigo-lisp/indigo.asd
(asdf:defsystem :indigo :version "0.0.1" :description "Algebraic Data Types, Pattern Matching, and Strong Static Typing on Common Lisp." :author "Anders Puckett <andersenpuckett@gmail.com>" :license "GNU AGPLv3" :serial t :depends-on ("gambol") :components ((:file "indigo") (:file "typing...
463
Common Lisp
.asd
15
26
99
0.662132
olewhalehunter/indigo-lisp
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
502d03a5fcb04f0aa3389ce926377dc4ba27fd8162802b47dd92db735cc9e86b
15,382
[ -1 ]
15,403
operators.lisp
jollheef_cl-logic/operators.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package #:cl-logic) ;;; Определение элементарных булевых функций (defun ¬ (p) "Инверсия, uac" (not p)) (defun ...
1,305
Common Lisp
.lisp
27
38.037037
63
0.604207
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
5404f3156e73fc24197d0531067e0a7cca1f7f7e7e3db4efc80ce61341d6a986
15,403
[ -1 ]
15,404
boolean-simplify.lisp
jollheef_cl-logic/boolean-simplify.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package :cl-logic) (defun boolean-terms (vector) (remove nil (loop for i in vector for n from 0 collect (if i ...
1,312
Common Lisp
.lisp
33
35.909091
68
0.67719
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
0e74399f84c06fe171430b5414563e73f86af2fc3551853cc80603ceac1d3fe3
15,404
[ -1 ]
15,405
package.lisp
jollheef_cl-logic/package.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (defpackage #:cl-logic (:use #:cl) (:export #:infix->prefix)) (defpackage #:quine-mccluskey (:nicknames "qm") ...
365
Common Lisp
.lisp
12
28.416667
62
0.68661
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
fae996514144e5f471d70623fc71be1ee5dbc36bf4b77fe12b05c1380d36392c
15,405
[ -1 ]
15,406
cl-logic.lisp
jollheef_cl-logic/cl-logic.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package #:cl-logic) (defun boolean-table (nvars) "Генерирует таблицу значений для nvars переменных" (loop fo...
1,729
Common Lisp
.lisp
38
38.078947
73
0.683901
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
749bba763c16ab0cbf6a05b202bff5b091547b49355865ade4607de34c55feb7
15,406
[ -1 ]
15,407
shortcuts.lisp
jollheef_cl-logic/shortcuts.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package :cl-logic) ;;; Вспомогательные функции (defun int->bool (char) "Переводит из двоичной формы в булеву"...
1,745
Common Lisp
.lisp
38
36.026316
69
0.69894
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
77b32c812c9d070318e903fbc02dcf0365ac8ce6ad31532713dc48c72fd7ae7c
15,407
[ -1 ]
15,408
dual.lisp
jollheef_cl-logic/dual.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package #:cl-logic) ;;; Двойственная функция (defun map-recursive (func list) (loop for i in list collect ...
760
Common Lisp
.lisp
26
24.730769
62
0.610787
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
b14d6d9dde2cf13612c3bf80c8601290414ffa6a66edaba6de52522778f2d614
15,408
[ -1 ]
15,409
infix.lisp
jollheef_cl-logic/infix.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package #:cl-logic) (defvar *separators* '(↓ ↑ ∼ ⊕ → ∨ ∧ ¬) "Операторы по убыванию приоритета.") (defun remo...
3,186
Common Lisp
.lisp
97
27.154639
74
0.624242
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
ea074807ffc74101d66e018049509e8651c6665aeb5406420d6328da0ea93748
15,409
[ -1 ]
15,410
def.lisp
jollheef_cl-logic/def.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package #:cl-logic) ;; Определение булевых функций (defun symbol-lessp (symbol1 symbol2) (string-lessp (strin...
1,100
Common Lisp
.lisp
32
29.90625
62
0.649275
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
5de37a256b0a9bd0166aaa532a71397ffd444bc75250fa2ad503e8b3de58e608
15,410
[ -1 ]
15,411
bool-structs.lisp
jollheef_cl-logic/bool-structs.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package #:cl-logic) ;; Булевы структуры (defun describe-boolean-cube (n) (let ((boolean-table (boolean-table ...
500
Common Lisp
.lisp
14
31.928571
62
0.673077
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
d9d2f535e9a863b34ed729fd7e572c627942818bf0668fdf48bfa5c8f7f4178d
15,411
[ -1 ]
15,412
form.lisp
jollheef_cl-logic/form.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package #:cl-logic) ;;; Полином жегалкина (алгебраическая нормальная форма) (defun anf-conversion (list) (loo...
2,232
Common Lisp
.lisp
50
39.14
67
0.660488
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
436f8accded2d06e78cb022c4ba41251d932ca683c937827867f0f2db30c3e08
15,412
[ -1 ]
15,413
combinator.lisp
jollheef_cl-logic/combinator.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package #:cl-logic) (defun all-permutations (lst &optional (remain lst)) (cond ((null remain) nil) ((n...
1,401
Common Lisp
.lisp
35
35.371429
87
0.645803
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
80aee3abd300aac328566f76e1310d9fb10a162d36aa01bc63875f6123bd3cd0
15,413
[ -1 ]
15,414
random-bool.lisp
jollheef_cl-logic/random-bool.lisp
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (in-package :cl-logic) (defun random-bool-func (nvars &optional (form 'dnf)) (if (< nvars 2) (error "nvars cannot ...
646
Common Lisp
.lisp
13
47.230769
74
0.684628
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
fb4dfb6c54d14cabb50c4fe9bd51eb979595611f9680b1211428d1cc8f30750e
15,414
[ -1 ]
15,415
cl-logic.asd
jollheef_cl-logic/cl-logic.asd
;;;; This file is part of the cl-logic library, released under ;;;; GNU General Public License, Version 3.0 ;;;; See file COPYING for details. ;;;; ;;;; Author: Klementyev Mikhail <jollheef@riseup.net> (asdf:defsystem #:cl-logic :serial t :description "Boolean algebra package" :author "Mikhail Klementyev <jollhe...
1,327
Common Lisp
.asd
32
35.5
68
0.62877
jollheef/cl-logic
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
c262f955381eb01d04b71902d70d656fb2a08cd93a386be41309c7456863eb9a
15,415
[ -1 ]
15,444
cl-autologger.lisp
ashok-khanna_autologger/cl-autologger.lisp
;;;; -*- mode:lisp;coding:utf-8 -*- ;;;; ************************************************************************* ;;;; AUTHORS ;;;; <AK> Ashok Khanna <ashok.khanna@hotmail.com> ;;;; MODIFICATIONS ;;;; 2021-09-24 <AK> Initial Version ;;;; BUGS ;;;; Logging functions when not in IBCL causes errors ;;;; Logged ...
14,257
Common Lisp
.lisp
284
46.957746
134
0.697419
ashok-khanna/autologger
5
0
4
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
25cbb3bee25180024980222ea31a6f339f3b5b37092fff1e4fd547547917835d
15,444
[ -1 ]
15,445
autologger.asd
ashok-khanna_autologger/autologger.asd
(defsystem "autologger" :description "Autologger: A Simple Logging Tool" :version "0.0.1" :author "Ashok Khanna <ashok.khanna@hotmail.com>" :license "AGPL" :depends-on ("com.informatimago.common-lisp.lisp.ibcl") :serial t :components ((:file "cl-autologger")) :in-order-to ((test-op (test-op :autologger-...
329
Common Lisp
.asd
9
33.777778
57
0.7125
ashok-khanna/autologger
5
0
4
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
4b26d46223f9186067132b444e024b5fb21d954644090c1054a963de7add2e4d
15,445
[ -1 ]
15,447
el-autologger.el
ashok-khanna_autologger/el-autologger.el
;;; el-autologger.el --- Convenient look-through of Function Results in Common Lisp -*- lexical-binding: t -*- ;;; Need to clean up the below code (defun autologger-next-hashkey (hashkey) (let ((new-hashkey (copy-list hashkey))) (setf (car (last new-hashkey)) (+ (car (last new-hashkey)) 1)) new-hashkey)) (...
14,515
Common Lisp
.l
322
40.034161
138
0.629894
ashok-khanna/autologger
5
0
4
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
a5d0a676e35ea89aad5fb511513cb61c454c163190958ca7ba91fcb5e8962439
15,447
[ -1 ]
15,464
bookmark-ui.lisp
jstoddard_observatory/bookmark-ui.lisp
;;;; bookmark-ui.lisp ;;;; User interface for managing bookmarks ;;;; Part of Observatory, by Jeremiah Stoddard (in-package :observatory) (defclass bookmark-holder () ((bookmark :initform (error "bookmark can't be nil!") :initarg :bookmark :accessor bookmark-holder-bookmark))) (defun make-bookmark-hold...
963
Common Lisp
.lisp
22
40.318182
79
0.697972
jstoddard/observatory
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
03dc4fb25103efde64f1892372bf3ea5d424830352a5944bd7dedf3a732fee2f
15,464
[ -1 ]
15,465
package.lisp
jstoddard_observatory/package.lisp
;;;; package.lisp ;;;; Package definition for Observatory (defpackage :observatory (:use :clim :clim-lisp :clim-extensions) (:export :observatory-main))
158
Common Lisp
.lisp
5
29.6
42
0.743421
jstoddard/observatory
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
433cd5697436ed5fcf137b7144952741772b5f79a7cc38e85c283bbd979f653a
15,465
[ -1 ]
15,466
bookmarks.lisp
jstoddard_observatory/bookmarks.lisp
;;;; bookmarks.lisp ;;;; Functions for handling bookmarks ;;;; Part of Observatory, by Jeremiah Stoddard (in-package :observatory) (defvar *bookmarks* nil) (defun make-bookmark (uri title) (push (list :uri uri :title title) *bookmarks*)) (defun delete-bookmark (bookmark) "Delete a bookmark." (setf *bookmarks*...
794
Common Lisp
.lisp
21
35.095238
76
0.723598
jstoddard/observatory
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
230a3259ab47fc202cca766367e50ab4f374f58219d605e88c15cec5e00d1c33
15,466
[ -1 ]
15,467
document.lisp
jstoddard_observatory/document.lisp
;;;; document.lisp ;;;; Document structure and functions for parsing text/gemini documents ;;;; Part of Observatory, by Jeremiah Stoddard (in-package :observatory) (defparameter +whitespace+ (format nil "~c~c~c~c~c" #\Newline #\Space #\Tab #\Return #\Linefeed)) (defvar *parser-stat...
9,605
Common Lisp
.lisp
227
37.806167
99
0.674202
jstoddard/observatory
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
0e35591adf7c512f8c02cd2c512b682d0e2f7e22b7ddccc2c0547f0180a5995e
15,467
[ -1 ]
15,468
request.lisp
jstoddard_observatory/request.lisp
;;;; request.lisp ;;;; Functions for requesting a Gemini page ;;;; Part of Observatory, A Gemini client by Jeremiah Stoddard (in-package :observatory) (defstruct resource (raw-uri nil) (protocol "gemini") (server "gemini.circumlunar.space") (port nil) (page "/")) (defun resource-get-uri (res) "Rebuild ur...
4,993
Common Lisp
.lisp
116
38.784483
91
0.673172
jstoddard/observatory
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
1ebba65c70123a3001405dce65b6864b63d4b99bf2d905b1c349feaf246b7f6a
15,468
[ -1 ]
15,469
observatory.lisp
jstoddard_observatory/observatory.lisp
;;;; Observatory - A Gemini Client in Common Lisp ;;;; Written by Jeremiah Stoddard (in-package :observatory) ;; Recently visited documents (defvar *back-button-history* nil) (defparameter *max-history-pages* 10) (defun push-to-history (doc) "Add doc to *back-button-history*, removing old entries if needed. Return...
7,961
Common Lisp
.lisp
210
33.671429
91
0.675875
jstoddard/observatory
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
91d662aae077f8c504e626a375a01a67bb4e64271ebe3b0b42a1a1c186596a37
15,469
[ -1 ]
15,470
select-file.lisp
jstoddard_observatory/select-file.lisp
;;;; select-file.lisp ;;;; ;;;; A file selection dialog adapted by Jeremiah Stoddard for use with Observatory ;;;; Although Observatory as a whole is licensed under the terms of version 3 of the ;;;; GNU General Public License, the software in this file, which is a slightly ;;;; modified version of select-file original...
38,477
Common Lisp
.lisp
695
39.296403
342
0.529602
jstoddard/observatory
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
7124341fe973243c98747790f9cf62aaaa7deb16c4d702b103ea7d141b741b57
15,470
[ -1 ]
15,471
defaults.lisp
jstoddard_observatory/defaults.lisp
;;;; defaults.lisp ;;;; Default options/parameters for various items. ;;;; Part of Observatory, by Jeremiah Stoddard (in-package :observatory) ;; Homepage (defparameter *homepage* "gemini://gemini.circumlunar.space/") ;; Styles (defparameter *h1-style* (make-text-style :sans-serif :bold :huge)) (defparameter *h2-sty...
704
Common Lisp
.lisp
15
45.2
73
0.748538
jstoddard/observatory
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
cf8b0fc1433038338cf19bae0f7b20323c3f703ad1f5545ed4214f35c3eb0551
15,471
[ -1 ]
15,472
observatory.asd
jstoddard_observatory/observatory.asd
;;;; observatory.asd ;;;; System definition for Observatory (asdf:defsystem :observatory :description "A Gemini client" :author "Jeremiah Stoddard" :license "GPLv3" :depends-on (:cl-fad :mcclim :usocket :cl+ssl) :components ((:file "package") (:file "defaults" :depends-on ("package")) (:file ...
749
Common Lisp
.asd
23
26.217391
51
0.6
jstoddard/observatory
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
ff1a8694b4e55efa0af942e4838b192d751f18aaf0e35c01169f7f0cae498220
15,472
[ -1 ]
15,496
package.lisp
vcerovski_binfix/package.lisp
; BINFIX by V.Cerovski 2015,9 (defpackage #:binfix #-gcl(:use #:cl) #+gcl(:use #:lisp) (:export #:binfix #:def-Bop #:set-Bop #:rem-Bops #:list-Bops #:keep-Bops))
169
Common Lisp
.lisp
5
31.4
76
0.631902
vcerovski/binfix
5
1
1
GPL-2.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
bc2e269fbaeeef76fe6186601fb078805c4e718659582176f21c25d696f1bcdf
15,496
[ -1 ]
15,497
binfix-5am.lisp
vcerovski_binfix/binfix-5am.lisp
(defpackage #:binfix/5am (:use #:cl #:fiveam) (:export #:run-tests)) (in-package :binfix/5am) (def-suite binfix-tests) (in-suite binfix-tests) (defmacro B1 (test B-expr &rest rest) (declare (symbol test) (string B-expr)) "Reading and evaluating string B-EXPR in a one-argument TEST" `(,test (eval (read-from...
24,557
Common Lisp
.lisp
585
31.307692
94
0.351328
vcerovski/binfix
5
1
1
GPL-2.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
7336785e7bcc8136fc7cbcb978e705e94fff38dea41376095dc24cbef8500840
15,497
[ -1 ]
15,498
proto.lisp
vcerovski_binfix/proto.lisp
; BINFIX by V.Cerovski 2015,7 (in-package :binfix) (defparameter *binfix* '((|;| infix (progn)) (:== def defmacro) (:= def defun) (:- def defmethod) ( =. infix (setq)) (.= infix (setf)) (-> def-lambda) ($ infix ()) (symb...
2,811
Common Lisp
.lisp
77
29.87013
67
0.505874
vcerovski/binfix
5
1
1
GPL-2.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
fc3afbfc871b2781c9da3125c506acfa3ab1eb79c07393639a3426ad5669262b
15,498
[ -1 ]
15,499
proto1.lisp
vcerovski_binfix/proto1.lisp
; BINFIX by V.Cerovski 2015,7 (in-package :binfix) {defmacro def (what args body) `(,what ,@(if (atom args) `(,args ()) `(,(car args),(cdr args))) ,(binfix body)); def-lambda args body :== `(lambda ,(if (consp args) args `(,args)) ,(binfix body)); let= let lhs body...
1,413
Common Lisp
.lisp
33
35.454545
77
0.54267
vcerovski/binfix
5
1
1
GPL-2.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
d8768e905fbfc663e545eeaf32532dbe5e7e3b9e28071850c503b5976d644076
15,499
[ -1 ]
15,500
binfix.asd
vcerovski_binfix/binfix.asd
; BINFIX by V.Cerovski 2015,9 (defsystem #:binfix :description "BINFIX -- A powerful binary infix syntax for Common LISP." :author "Viktor Cerovski" :licence "GNU GPLv2" :version "0.50" :serial t :components ((:file "package") (:file "proto") (:file "proto1") (:file "binfix...
864
Common Lisp
.asd
26
27.961538
75
0.627545
vcerovski/binfix
5
1
1
GPL-2.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
89ca920a72d50f23fab9837ae0590a876a4212f87886d786429943132af0ced5
15,500
[ -1 ]
15,504
.travis.yml
vcerovski_binfix/.travis.yml
language: lisp sudo: required env: matrix: - LISP=sbcl - LISP=ccl - LISP=abcl matrix: allow_failures: - LISP=ecl install: - curl https://raw.githubusercontent.com/luismbo/cl-travis/master/install.sh | bash - git clone https://github.com/vcerovski/binfix ~/lisp/binfix script: - cl -l ...
408
Common Lisp
.l
17
19.823529
87
0.664083
vcerovski/binfix
5
1
1
GPL-2.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
edf318dfdeade4941ffb221b486fec00c89e653069dbc932a6243a0de81ece0e
15,504
[ -1 ]
15,507
index.html
vcerovski_binfix/doc/index.html
<p><link href="markdown.css" rel="stylesheet" type="text/css"></link></p> <h1>BINFIX</h1> <p>Viktor Cerovski, August 2019.</p> <p><a href="https://travis-ci.org/vcerovski/binfix"><img src="https://travis-ci.org/vcerovski/binfix.png" alt="Build Status" title="" /></a> <a href="http://quickdocs.org/binfix/"><img src="...
72,927
Common Lisp
.l
1,701
39.463845
146
0.590966
vcerovski/binfix
5
1
1
GPL-2.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
73d2cd3aa1588110fd6d7423c71ba3f099417fa0db6bf71eeb2f1807df7e6f2a
15,507
[ -1 ]
15,522
schemish.lisp
j3pic_cl-htmlprag/schemish.lisp
;; Note: Since this was written specifically to port GPL'd HTMLPrag to Common Lisp, it ;; most likely counts as a derivative work of HTMLPrag, and therefore is itself ;; subject to the GPL. ;; 90% of the work of porting HTMLPrag to Common Lisp is done here. (cl:defpackage :schemish (:documentation "A Sc...
15,218
Common Lisp
.lisp
410
31.621951
127
0.626287
j3pic/cl-htmlprag
5
0
1
LGPL-2.1
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
894b6c09744a36449a15a290d35c230f66d5bcce683b2fb39230dd536212e9e0
15,522
[ -1 ]
15,523
htmlprag.lisp
j3pic_cl-htmlprag/htmlprag.lisp
;;; @Package HtmlPrag ;;; @Subtitle Pragmatic Parsing and Emitting of HTML using SXML and SHTML ;;; @HomePage http://www.neilvandyke.org/htmlprag/ ;;; @Author Neil W. Van Dyke ;;; @AuthorEmail neil@@neilvandyke.org ;;; @Version 0.16 ;;; @Date 2005-12-18 ;; $Id: htmlprag.scm,v 1.385 2005/12/...
96,213
Common Lisp
.lisp
2,258
31.492471
89
0.497467
j3pic/cl-htmlprag
5
0
1
LGPL-2.1
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
a5196682383afea1dc62f465585d6deda87b57313121297340f60fc4ec79947d
15,523
[ -1 ]
15,524
read-macros.lisp
j3pic_cl-htmlprag/read-macros.lisp
(cl:defpackage :schemish) (cl:in-package :schemish) (cl:intern "+SCHEME-TRUE+") (cl:intern "+SCHEME-FALSE+") (cl:defpackage :schemish-read-macros (:use :common-lisp) (:export :enable-scheme-read-syntax :disable-scheme-read-syntax)) (cl:in-package :schemish-read-macros) (defvar *readtable-stack* nil) (defun ...
874
Common Lisp
.lisp
27
29.111111
45
0.694048
j3pic/cl-htmlprag
5
0
1
LGPL-2.1
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
c90aae3a70af6ffdbc197ebeddbe7c49afaa91af9cbaec31e8a38cfc52235587
15,524
[ -1 ]
15,525
testeez.lisp
j3pic_cl-htmlprag/testeez.lisp
;;; @Package Testeez ;;; @Subtitle Lightweight Unit Test Mechanism for R5RS Scheme ;;; @HomePage http://www.neilvandyke.org/testeez/ ;;; @Author Neil Van Dyke ;;; @Version 0.5 ;;; @Date 2009-05-28 ;;; @PLaneT neil/testeez:1:3 ;; $Id: testeez.ss,v 1.76 2009/05/29 11:42:28 neilpair Exp $ ...
12,322
Common Lisp
.lisp
370
30.110811
91
0.619803
j3pic/cl-htmlprag
5
0
1
LGPL-2.1
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
dc7ed73353293d0fd45ed34fe074edd94b519ba54b628250ec233fcc504c5f97
15,525
[ -1 ]
15,526
cl-htmlprag.asd
j3pic_cl-htmlprag/cl-htmlprag.asd
(defsystem :cl-htmlprag :author ("Neil van Dyke") :maintainer "Jeremy Phelps" :description "A port of Neil Van Dyke's famous HTMLPrag library to Common Lisp." :version "0.24" :license "LGPL 2.1" :depends-on (:optima :parse-number :alexandria) :components ((:file "read-macros") (:file "testeez" :depen...
449
Common Lisp
.asd
12
34.333333
82
0.684211
j3pic/cl-htmlprag
5
0
1
LGPL-2.1
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
1908cd886d29019b53266ee1be2febed37ea53ebb64dd01d8943c4bafd6f8446
15,526
[ -1 ]
15,547
package.lisp
drea8_cl-refal/package.lisp
(defpackage #:cl-refal (:use #:cl) (:documentation "CL-REFAL a Common Lisp embedding and extension of Valentin Turchin's functional programming language REFAL."))
165
Common Lisp
.lisp
3
53.333333
127
0.777778
drea8/cl-refal
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
b6bf1d2e40100b0abe0747ca0b4d2a5118f9f6ad02a988dfe77b8f245555bf69
15,547
[ -1 ]
15,548
interpret.lisp
drea8_cl-refal/src/interpret.lisp
;; Common Lisp REFAL Interpreter ;; Valentin Turchin was a Russian cyberneticist who ;; wrote a programming language called "REFAL" around 1966, ;; short for Recursive Evaluation of Functions Language, ;; for his research in physics, automata, natural language translation, ;; artificial intelligence, and complexity t...
13,891
Common Lisp
.lisp
318
41.506289
446
0.748549
drea8/cl-refal
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
20cd9082466345c02e914d62615d1f3c06a8a07db13e98a0b7470e009e8a30c0
15,548
[ -1 ]
15,549
patterns.lisp
drea8_cl-refal/src/patterns.lisp
;; Suppose we wanted a MATCH form that worked on patterns like in Rust "let message = match x { 0 | 1 => 0, 2 ..= 9 => 1, _ => 2 };" (defun predicate-match (l r input output) "Comparison predicate forms like '(= 5) or '(> 5)" (let* ((f (first l)) (a (second l))) (if (funcall f input ...
901
Common Lisp
.lisp
34
21.558824
70
0.568075
drea8/cl-refal
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
bc9ec85b2699e8dd470d2ab2f38c4b16533c7a377c0851e047d7f9338e09a98d
15,549
[ -1 ]
15,550
cl-refal.asd
drea8_cl-refal/cl-refal.asd
(asdf:defsystem #:cl-refal :description "REFAL embedded in Common Lisp." :author "Drea <drea8an@yandex.ru>" :license "GNU Affero v.3 with written permission from author" :serial t :depends-on () :components ((:file "package") (:file "src/interpret")))
276
Common Lisp
.asd
8
30.5
65
0.682836
drea8/cl-refal
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
20d660eef18e11b4aebfeed9c8590fadd86316141886c4f12907ca6bf2bbb1e0
15,550
[ -1 ]
15,556
metasystems_and_refal.html
drea8_cl-refal/doc/metasystems_and_refal.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <!--Converted with LaTeX2HTML 98.2 beta6 (August 14th, 1998)original version by: Nikos Drakos, CBLU, University of Leeds* revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan* with significant contributions from: Jens Lippmann, Marek Rouchal, Martin W...
27,495
Common Lisp
.l
326
82.693252
432
0.7527
drea8/cl-refal
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
165da6154ab960c86ebfddf8ed15368d20ce2a29aa71264bcdb2136881557222
15,556
[ -1 ]
15,557
learn-refal.txt
drea8_cl-refal/doc/learn-refal.txt
REFAL Recursive Functions Algorithms Language Refal is a functional programming language oriented towards symbolic computations, including string processing, language translation, artificial intelligence, and compiler research. Refal is one of the oldest functional languages, first conceived of in 1966 and first i...
30,202
Common Lisp
.l
358
81.069832
417
0.756431
drea8/cl-refal
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
0ea5e78ab43ef15fe71017b88a158e06cdedf6abd442039f419dc86137775903
15,557
[ -1 ]
15,558
img7.html
drea8_cl-refal/doc/metasystems_and_refal_files/img7.html
<html> <head><title>404 Not Found</title></head> <body bgcolor="white"> <center><h1>404 Not Found</h1></center> <hr><center>nginx/1.10.3</center> </body> </html>
169
Common Lisp
.l
7
22.142857
42
0.660494
drea8/cl-refal
5
0
0
AGPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
b3368e641fc0f99dc60240101640b95b0ace7d1fd81d5f4cd8f7fe1780a1aedd
15,558
[ -1 ]
15,575
main.lisp
pouar_yadfa/main.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa"; coding: utf-8-unix; -*- (in-package #:yadfa) (defun main () (proclaim '(optimize safety (debug 2))) (when yadfa::*immutable* (map () 'asdf:register-immutable-system (asdf:already-loaded-systems))) (pushnew 'yadfa::find-mod asdf:*system-definition-...
2,009
Common Lisp
.lisp
39
44.692308
127
0.632487
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
8006cb21fd72f81fd4094050cc679098c915b5ab07343c597b3e16e9fac0cc35
15,575
[ -1 ]
15,576
appveyor-build.lisp
pouar_yadfa/appveyor-build.lisp
;; -*- mode: common-lisp; -*- #-quicklisp (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname)))) (when (probe-file quicklisp-init) (load quicklisp-init))) #+(and gmp sbcl) (require 'sb-gmp) #+(and sbcl gmp) (sb-gmp:install-gmp-funs) (ql:upda...
954
Common Lisp
.lisp
28
29.892857
113
0.652268
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
27a176373b0785be3fbb35bc00deb8013b267314b10b059cfc46baad95f41f96
15,576
[ -1 ]
15,577
appveyor-build-docs.lisp
pouar_yadfa/appveyor-build-docs.lisp
;; -*- mode: common-lisp; -*- #-quicklisp (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname)))) (when (probe-file quicklisp-init) (load quicklisp-init))) #+(and gmp sbcl) (require 'sb-gmp) #+(and sbcl gmp) (sb-gmp:install-gmp-funs) (ql:upda...
603
Common Lisp
.lisp
22
24.272727
65
0.664372
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
ae5359d8c97818aefb2e942bc0c3d6204b2536e9fa612e2e342aa6c49284d2e3
15,577
[ -1 ]
15,578
run.lisp
pouar_yadfa/run.lisp
;; -*- mode: common-lisp; -*- #-quicklisp (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname)))) (when (probe-file quicklisp-init) (load quicklisp-init))) #+ecl (declaim (optimize (debug 2) safety)) #+ccl (ccl:set-current-compiler-policy (c...
2,066
Common Lisp
.lisp
40
39.95
115
0.556049
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
bacd82b14cd365f4049eb7fe7fc4d8b6cf207fdfe325b8cf76a68740520e6f6b
15,578
[ -1 ]
15,579
packages.lisp
pouar_yadfa/packages.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "common-lisp-user"; coding: utf-8-unix; -*- (in-package :cl-user) (uiop:define-package :yadfa-util (:use :cl :iterate) (:export #:shl #:shr #:lambda-list #:do-push #:remove-nth #:insert #:insertf #:substitutef #:type-specifier #:coerced-f...
20,652
Common Lisp
.lisp
798
21.146617
230
0.645023
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
7c8bab8510dc3c46f02a76ea7e0233d1e16fb4a587d11d9cb66bf213a554f77f
15,579
[ -1 ]
15,580
build.lisp
pouar_yadfa/build.lisp
;; -*- mode: common-lisp; -*- #+sbcl (declaim (sb-ext:muffle-conditions sb-kernel:redefinition-warning) (optimize sb-c::recognize-self-calls)) #-quicklisp (let ((quicklisp-init (merge-pathnames "quicklisp/setup.lisp" (user-homedir-pathname)))) (when (probe-file quicklis...
2,698
Common Lisp
.lisp
47
46.574468
125
0.589811
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
8df07f45509a3e8a9b189623245ad4a35f2cb6fe93535758b4047c35260d6661
15,580
[ -1 ]
15,581
consumable.lisp
pouar_yadfa/data/items/consumable.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-items"; coding: utf-8-unix; -*- (in-package :yadfa-items) (defclass bottle-of-milk (consumable) () (:default-initargs :name "Bottle of milk" :description "A baby bottle filled with milk. Fills up your health and your bladder." :value 50 :consumable t)...
8,969
Common Lisp
.lisp
159
46.534591
353
0.608562
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
c8150daa825a8e33723d1ad297b744fbc92f97da29a43c7c2f8522378c9896b8
15,581
[ -1 ]
15,582
debug.lisp
pouar_yadfa/data/items/debug.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-items"; coding: utf-8-unix; -*- (in-package :yadfa-items) (defclass test-clothing (clothing) () (:default-initargs :special-actions (list :test (make-action :documentation "test item" ...
524
Common Lisp
.lisp
11
32.090909
101
0.48538
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
b58b4449ed5bef827aeeeba8dffc7865094c6b95d4e10888e780e68dc513d6d7
15,582
[ -1 ]
15,583
diaper.lisp
pouar_yadfa/data/items/diaper.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-items"; coding: utf-8-unix; -*- (in-package :yadfa-items) (defclass cloth-mixin (incontinence-product) () (:default-initargs :sogginess-capacity 1400 :messiness-capacity 1000 :disposable nil :sellable t :wear-wet-text '(1400 "little yellow streams ...
30,868
Common Lisp
.lisp
570
45.735088
293
0.662288
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
1873bf3525d782c8cb0b0141acc45db1faabe22d9d2d8b0acb2a8b300716cbcd
15,583
[ -1 ]
15,584
weapons.lisp
pouar_yadfa/data/items/weapons.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-items"; coding: utf-8-unix; -*- (in-package :yadfa-items) (defclass ammo-box-mixin (item) ((ammo :type symbol :initarg :ammo))) (defmethod use-script ((item ammo-box-mixin) (user base-character) (target base-character)) (f:fmt t (name-of user) " open t...
4,139
Common Lisp
.lisp
105
34.857143
199
0.674037
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
84e9f5aab7123126b46fe852464c31d9ea49a0f39a42611f446d8a040be0c011
15,584
[ -1 ]
15,585
abdl.lisp
pouar_yadfa/data/items/abdl.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-items"; coding: utf-8-unix; -*- (in-package :yadfa-items) (defclass pacifier (headpiece ab-clothing) () (:default-initargs :name "Pacifier" :description "A pacifier you can suck on." :value 250)) (defclass gold-pacifier (headpiece ab-clothing) () (:def...
2,446
Common Lisp
.lisp
55
41.381818
97
0.713509
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
d244c49f5c9cf84edb230bbc4a258f161a51b2ef79227e81c32c8d2d7970fcfe
15,585
[ -1 ]
15,586
clothes.lisp
pouar_yadfa/data/items/clothes.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-items"; coding: utf-8-unix; -*- (in-package :yadfa-items) (eval-when (:compile-toplevel :load-toplevel :execute) (defonesie onesie (ab-clothing) () (:default-initargs :name "Onesie" :description "A onesie" :value 400 :onesie-bulge-text '((...
19,077
Common Lisp
.lisp
382
41.918848
358
0.653167
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
0cbe273853fefdd4864722333f4cba1a65b808bff9cbd4f68e5538db17ecc1ee
15,586
[ -1 ]
15,587
misc.lisp
pouar_yadfa/data/items/misc.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-items"; coding: utf-8-unix; -*- (in-package :yadfa-items) (defclass gold-bar (item) () (:default-initargs :name "Gold Bar" :description "A Gold Bar" :value 50000)) (defclass gem (item) () (:default-initargs :name "Gem" :description "A Valuable Ge...
5,709
Common Lisp
.lisp
123
42.780488
429
0.729914
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
55e6b0b2cdbf638cb81934a47d53145b6703ca1334d5ffc542c5e0a195596083
15,587
[ -1 ]
15,588
armor.lisp
pouar_yadfa/data/items/armor.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-items"; coding: utf-8-unix; -*- (in-package :yadfa-items) (defclass knights-armor (full-outfit) () (:default-initargs :name "Knight's Armor" :plural-name "Knight's Armor" :value 1000 :description "Steel armor that protects you in battle. Pants not inc...
439
Common Lisp
.lisp
10
40.9
130
0.708625
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
30f28a4bfb47e6c63a70d53ab6cbc705545bf8a871ef1e9f1b815e5617ca127f
15,588
[ -1 ]
15,589
abdl.lisp
pouar_yadfa/data/element-types/abdl.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-element-types"; coding: utf-8-unix; -*- (in-package :yadfa-element-types) (define-type abdl () () (:element-name "ABDL"))
181
Common Lisp
.lisp
5
34.4
94
0.659091
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
ec706dbfcc0c42ea60718094b1b1451ff4f9352460e0db389efe9e167633148d
15,589
[ -1 ]
15,590
pokemon.lisp
pouar_yadfa/data/element-types/pokemon.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-element-types"; coding: utf-8-unix; -*- (in-package :yadfa-element-types) (define-type normal () () (:not-very-effective rock steel) (:no-effect ghost) (:element-name "Normal")) (define-type fighting () () (:not-very-effective flying poison bug psychic ...
2,624
Common Lisp
.lisp
93
25.623656
94
0.702489
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
4f52019e4585d60923f2d252d2ece4e91d44dd384ebceebe6b57915831fe0168
15,590
[ -1 ]
15,591
sky.lisp
pouar_yadfa/data/map/sky.lisp
(in-package :yadfa-zones) (ensure-zone (0 0 0 candle-carnival) :name "Candle Carnival Entrance" :description "Welcome to Candle Carnival. An awesome theme park in the sky" :enter-text "Welcome to Candle Carnival. An awesome theme park in the sky" :events '(yadfa-event...
12,292
Common Lisp
.lisp
223
35.318386
383
0.483387
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
5cfca3acf142e626095bdccadbf02edd8fef29be7c50b2d1297b22990542a6ab
15,591
[ -1 ]
15,592
lukurbo.lisp
pouar_yadfa/data/map/lukurbo.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (ensure-zone (0 0 0 lukurbo) :name "Lukubro Street" :description "You see many diapered furries and diapered fursuiters" :enter-text "You're wondering around the street...
498
Common Lisp
.lisp
8
53.125
97
0.655102
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
5dcad655ecf7d0c9fd5600b7444832cdc020b982380dcd962885497580d32314
15,592
[ -1 ]
15,593
rpgmaker-dungeon.lisp
pouar_yadfa/data/map/rpgmaker-dungeon.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (defevent create-rpgmaker-dungeon :lambda (lambda (self) (declare (ignore self)) (let ((width 10) (height 10)) (declare (type fixnum width height)) (labe...
3,222
Common Lisp
.lisp
47
37.531915
108
0.380157
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
96ed3aae3ab3f0feff470c5857bcd23c711380dea13aad8222191ac53b9fd15f
15,593
[ -1 ]
15,594
dirty-chasm.lisp
pouar_yadfa/data/map/dirty-chasm.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones)
114
Common Lisp
.lisp
2
55.5
86
0.657658
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
91dbd4f9ac4cfc1755cc590a18afd95be6a57e6bc537b3082aec3d18c3f15671
15,594
[ -1 ]
15,595
your-ship.lisp
pouar_yadfa/data/map/your-ship.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) #.`(progn ,@(iter (for y from 0 to 2) (iter (for x from (- y) to y) (collect `(ensure-zone (,x ,y 0 your-ship) :name "Emacs" ...
11,940
Common Lisp
.lisp
172
32.813953
172
0.338375
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
f8cef0f03e1539c5ec0dd435b1d5641ba4cc3382f7869a4f88ff9cd92da20a74
15,595
[ -1 ]
15,596
debug-map.lisp
pouar_yadfa/data/map/debug-map.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (ensure-zone (0 0 0 debug-map) :name "zone-0-0-0-debug-map" :description "zone-0-0-0-debug-map" :enter-text "zone-0-0-0-debug-map" :warp-points (list '\1 '...
3,707
Common Lisp
.lisp
59
34.525424
131
0.394189
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
0897b6ff60d2da9ed4048b6008a154d85bc6e6e403c9b5e1d613998a3244805a
15,596
[ -1 ]
15,597
ironside.lisp
pouar_yadfa/data/map/ironside.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (ensure-zone (0 0 0 ironside) :name "Ironside Street" :description "Your typical suburban street. Some furries are driving in cars, some are walking, and some are riding on top of o...
13,289
Common Lisp
.lisp
167
44.269461
524
0.415339
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
f3067482935f909814b436519bf6767b2754437710ef134dd1bab01fce8a521f
15,597
[ -1 ]
15,598
secret-underground.lisp
pouar_yadfa/data/map/secret-underground.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (ensure-zone (0 0 0 secret-underground) :name "Secret Underground" :description "You see several warp pipes in here going to various places" :enter-text "You're wanderi...
4,015
Common Lisp
.lisp
48
42.791667
195
0.391228
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
d41afad1771e5b9a7b0aee5c35877274cc17d26560e0f915dcb29e90947c4370
15,598
[ -1 ]
15,599
pyramid.lisp
pouar_yadfa/data/map/pyramid.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (ensure-zone (0 0 0 yadfa-zones:pyramid) :name "Pyramid Entrance" :description "You're at the pyramid entrance" :must-wear 'pyramid :must-not-wear 'pyramid...
725
Common Lisp
.lisp
17
31.705882
86
0.567797
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
4e2bee3df033705bb309dddf32880e79ac4c727d2f01a148f9940ea89269e16e
15,599
[ -1 ]
15,600
pirates-cove.lisp
pouar_yadfa/data/map/pirates-cove.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (ensure-zone (0 0 0 pirates-cove) :name "Pirate's Cove Entrance" :description "The entrance to Pirate's Cove" :enter-text "You're inside Pirate's Cove" :en...
3,070
Common Lisp
.lisp
50
37.62
122
0.441722
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
5f57015cc01975b81796bd7645b086a9db0f8912c99240ecdfb0d55b19effe01
15,600
[ -1 ]
15,601
peachs-castle-wannabe.lisp
pouar_yadfa/data/map/peachs-castle-wannabe.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (ensure-zone (0 0 0 peachs-castle-wannabe) :name "Castle Entrance" :description "The entrance to some crappy version of Peach's Castle" :enter-text "You're at the castl...
15,732
Common Lisp
.lisp
247
45.8583
464
0.56766
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
b0fe1a36525911e4c344911aa148961b0179f532ee26fc1898b6513f053c037e
15,601
[ -1 ]
15,602
silver-cape.lisp
pouar_yadfa/data/map/silver-cape.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) #.`(progn ,@(iter (for i from 0 to 20) (collect `(ensure-zone (0 ,i 0 silver-cape) :name "Silver Cape Street" :descript...
26,202
Common Lisp
.lisp
225
61.982222
960
0.404898
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
abf1c82bd205cc5cc41fc0587c2931b20fc904bc0b1da2885355545d0968dbe2
15,602
[ -1 ]
15,603
haunted-forest.lisp
pouar_yadfa/data/map/haunted-forest.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (ensure-zone (0 0 0 haunted-forest) :name "Haunted Forest Entrance" :description "You're in a strange forest. Spooky sounds and scary eyes all around." :enter-text "You...
11,188
Common Lisp
.lisp
188
46.712766
124
0.616545
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
3cd6f8c2b26261d901a19045dae9cfb9980ef35fad6a3dbaea7f74676aeffd38
15,603
[ -1 ]
15,604
bandits-domain.lisp
pouar_yadfa/data/map/bandits-domain.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) #.`(progn ,@(iter (for i from 10 to 20) (collect `(ensure-zone (0 ,i 0 bandits-domain) :name "Bandit's Way" :descriptio...
18,794
Common Lisp
.lisp
208
46.466346
317
0.383456
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
e84ff092b564ba702429cfec47725a5358b8046e776fb9d971c0d6f72d8b3530
15,604
[ -1 ]
15,605
home.lisp
pouar_yadfa/data/map/home.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (ensure-zone (0 0 0 home) :name "Bedroom" :description "Your house only has a bedroom and a bathroom. Because Pouar was too lazy to code you a real house." :enter-text ...
2,950
Common Lisp
.lisp
48
37.645833
181
0.468987
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
00c8fde3ff4507141ac0f990d6aaa2c2fc3926cdca1f9ee9506ce69880045ec2
15,605
[ -1 ]
15,606
allies.lisp
pouar_yadfa/data/epilog/allies.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-allies"; coding: utf-8-unix; -*- (in-package :yadfa-allies) (defunassert yadfa-world-commands:disown-adopted-enemies (&optional allies count) (allies (or list type-specifier) count (or null unsigned-byte)) (setf allies (typecase allies ...
2,330
Common Lisp
.lisp
37
36.945946
125
0.426952
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
4b0959f5e49f201896a4cd32b18394b8be6f8ebb14f23ec287f7b0fc7fe56181
15,606
[ -1 ]
15,607
items.lisp
pouar_yadfa/data/epilog/items.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-items"; coding: utf-8-unix; -*- (in-package :yadfa-items) (defmethod use-script ((item enemy-catcher) (user base-character) (target yadfa-enemies:catchable-enemy)) (cond ((>= (list-length (contained-enemies-of item)) (contained-enemies-max-length-of item)) ...
9,857
Common Lisp
.lisp
140
49.3
162
0.519625
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
cfaeb42dcffa3464593471c5eb7323b323d1d96b5f0543625ab041b458bd63ab
15,607
[ -1 ]
15,608
enemies.lisp
pouar_yadfa/data/epilog/enemies.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defmethod update-instance-for-different-class ((previous yadfa-enemies:raptor) (current yadfa-allies:raptor) &rest initargs &key &allow-other-keys) (declare (ignore initargs)) (call-next-method) (...
2,030
Common Lisp
.lisp
35
54.6
183
0.708772
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
f3a20e122ce743de9d982d244264822196d69bc0822ff8d7e443dff95d8f76b5
15,608
[ -1 ]
15,609
blackjack.lisp
pouar_yadfa/data/epilog/blackjack.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-blackjack"; coding: utf-8-unix; -*- (in-package :yadfa-blackjack) (c:define-command-table game-commands) (c:define-command-table playing-commands :inherit-from (game-commands)) (c:define-command-table end-round-commands :inherit-from (game-commands)) (c:define-comm...
27,613
Common Lisp
.lisp
437
44.679634
173
0.506697
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
e18b1014a97200caa145614fc95aa7c564313aa8cbe19fc795acecf19d7325f5
15,609
[ -1 ]
15,610
fursuiters.lisp
pouar_yadfa/data/enemies/fursuiters.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defclass padded-fursuiter-servant (potty-enemy) () (:default-initargs :name "Padded Fursuiter Servant" :description "These are basically generic \"servants\" that you can also use as a plushie. ...
4,384
Common Lisp
.lisp
64
57.828125
463
0.654861
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
6e66fb0e2027a5e0adcaedf10431cb85b004f3f945ab273be5b03f1b57cb571c
15,610
[ -1 ]
15,611
pirates.lisp
pouar_yadfa/data/enemies/pirates.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defclass diaper-pirate (potty-enemy) () (:default-initargs :name "Diaper Pirate" :description "A generic pirate that has forgone toilets and will never try to hold it." :species (a:random-elt...
2,318
Common Lisp
.lisp
44
44.795455
134
0.637643
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
8fd5b151587dce64a958286e95479a153f3882a685e6bf6dac646bd689f14fc3
15,611
[ -1 ]
15,612
eggbots.lisp
pouar_yadfa/data/enemies/eggbots.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defclass egg-pawn (enemy) () (:default-initargs :name "Egg Pawn" :description "One of Eggman's robots" :species "Egg Pawn" :male t :attributes (list :not-ticklish t) :bitcoins-per-le...
400
Common Lisp
.lisp
11
33.272727
88
0.686375
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
72903701fd04f688b04557a3cd8c704dcc325e661f1d01bf8cb1e18f4cc7f6f3
15,612
[ -1 ]
15,613
haunted.lisp
pouar_yadfa/data/enemies/haunted.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defclass ghost (enemy) () (:default-initargs :name "Ghost" :description "Woooo, A Ghost" :species "Ghost" :male t :attributes (list :not-ticklish t) ;; the game can't tell the differ...
3,342
Common Lisp
.lisp
69
37.362319
154
0.585701
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
73bd22af909f53dc9162cca97a8a70719b42c0f3da33c4e2733cdbe6b267b8a4
15,613
[ -1 ]
15,614
pokemon.lisp
pouar_yadfa/data/enemies/pokemon.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defclass magikarp (enemy) () (:default-initargs :name "Magikarp" :description "The world's weakest Pokémon until it evolves, but when it does evolve, HOLY SHIT!!!!!!" :species "Magikarp" ...
780
Common Lisp
.lisp
16
45.5
116
0.697644
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
2b5b2cec39bcbb18c5636c9e17ca55a90a0b927a5cbc35d24e3cfec91fe4ce13
15,614
[ -1 ]
15,615
rpgmaker.lisp
pouar_yadfa/data/enemies/rpgmaker.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defclass diapered-kobold (potty-enemy pantsable-character adoptable-enemy) () (:default-initargs :name "Diapered Kobold" :description "They're apparently from a tribe of kobolds in the area. The...
13,147
Common Lisp
.lisp
218
49.348624
390
0.639078
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
cc11e7500e15096528b5cd60ca63488797977284c115002acfa130827dc9e5c7
15,615
[ -1 ]
15,616
raccoon-bandits.lisp
pouar_yadfa/data/enemies/raccoon-bandits.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defclass diapered-raccoon-bandit (potty-enemy pantsable-character) () (:default-initargs :name "Diapered Raccoon Bandit" :description "The Diapered Raccoon Bandits are a local AB/DL gang here in...
8,160
Common Lisp
.lisp
124
51.056452
468
0.580926
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
2b5fda4026af48298957e2019460a45c0a8a9e2fc08593b8885bc41e326b80aa
15,616
[ -1 ]
15,617
navy.lisp
pouar_yadfa/data/enemies/navy.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defclass navy-officer (potty-enemy pantsable-character) () (:default-initargs :name "Navy Officer" :description "The Navy is mainly made up of aquatic creatures. They're all toilet trained but m...
6,725
Common Lisp
.lisp
117
43.470085
208
0.577482
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
33f4ee2babc2227b20f5145d3243f92dac2d7181716d08f160064d798b8e0e19
15,617
[ -1 ]
15,618
allies.lisp
pouar_yadfa/data/prolog/allies.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-allies"; coding: utf-8-unix; -*- (in-package :yadfa-allies) (defclass adopted-enemy (playable-ally) ())
159
Common Lisp
.lisp
3
52
87
0.685897
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
b341e3c187fe5f1754e19663771bdea3702ae20d3711075638334c158aa8bbbb
15,618
[ -1 ]
15,619
map.lisp
pouar_yadfa/data/prolog/map.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-zones"; coding: utf-8-unix; -*- (in-package :yadfa-zones) (uiop:define-package #:peachs-castle-wannabe (:export #:blank-area #:pokemon-area #:thwomp-area #:race-area #:eggman-area)) (defun can-potty (prop &key wet mess pants-down user) (declare (...
14,766
Common Lisp
.lisp
216
44.578704
304
0.470034
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
2143dd6a11c68b9c55115b674d639fcff6b337d2ad14c93562f38705d11e8e9d
15,619
[ -1 ]
15,620
enemies.lisp
pouar_yadfa/data/prolog/enemies.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-enemies"; coding: utf-8-unix; -*- (in-package :yadfa-enemies) (defmacro make-instances (&rest symbols) `(list ,@(iter (for symbol in symbols) (collect `(make-instance ',symbol))))) (defclass catchable-enemy (enemy) ((catch-chance-rate% :ini...
1,079
Common Lisp
.lisp
19
53.157895
276
0.695283
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
b689037f15cb6013ebcbdd445a71ad4b908520479798f70172b1cd24eeea197c
15,620
[ -1 ]
15,621
lukurbo.lisp
pouar_yadfa/data/events/lukurbo.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-events"; coding: utf-8-unix; -*- (in-package :yadfa-events) (defevent enter-lukurbo-1 :lambda (lambda (self) (declare (ignore self)) (f:fmt t "*You reach a town where you see a bunch of anthros in fursuits*" #\Newline #\Newline ...
3,409
Common Lisp
.lisp
31
48.193548
223
0.315275
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
bde99bdd10b4f7442a436f57b8b8c69c2df35cc7f1414b7e1c66e72d64673e3c
15,621
[ -1 ]
15,622
debug.lisp
pouar_yadfa/data/events/debug.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-events"; coding: utf-8-unix; -*- (in-package :yadfa-events) (defevent test-battle-1 :lambda (lambda (self) (declare (ignore self)) (f:fmt t "Time to battle" #\Newline) (set-new-battle '((enemy)) :conti...
773
Common Lisp
.lisp
22
25.954545
87
0.533955
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
ed039f4ba35a7abba610582a9c2b6e23d2bba2a87e8a83a034c11b8f6ccc7044
15,622
[ -1 ]
15,623
dirty-chasm.lisp
pouar_yadfa/data/events/dirty-chasm.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-events"; coding: utf-8-unix; -*- (in-package :yadfa-events) (defevent pointless-quest-1 :lambda (lambda (self) (declare (ignorable self)) (f:fmt t "The author is running out of ideas, so lets add some filler content" #\Newline #\Newline ...
1,784
Common Lisp
.lisp
10
167.2
840
0.734498
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
87c1b51ffdc4393a4b9b4ee17eb364466ccd1976cb55a52c10929b09ca8bc328
15,623
[ -1 ]
15,624
ironside.lisp
pouar_yadfa/data/events/ironside.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-events"; coding: utf-8-unix; -*- (in-package :yadfa-events) (defevent ironside-university-joke-1 :predicate (lambda (self) (declare (ignore self)) (= (random 3) 0)) :lambda (lambda (self) (declare (ignore self)) ...
3,301
Common Lisp
.lisp
26
111.307692
352
0.679389
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
89dc095f06f3e5f2f9254e541b1a3de1a32f557f25ed59469ede696d571e841e
15,624
[ -1 ]
15,625
secret-underground.lisp
pouar_yadfa/data/events/secret-underground.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-events"; coding: utf-8-unix; -*- (in-package :yadfa-events) (defevent secret-underground-pipe-rpgmaker-dungeon :lambda (lambda (self) (declare (ignore self)) (setf (getf (warp-points-of (get-zone '(0 0 0 yadfa-zones:secret-underground))) '...
4,168
Common Lisp
.lisp
58
60.655172
149
0.639173
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
18bd14b800e00f2e337cb2630f2dbe36141ae28847d2b17b65efddc607b4abf7
15,625
[ -1 ]
15,626
pyramid.lisp
pouar_yadfa/data/events/pyramid.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-events"; coding: utf-8-unix; -*- (in-package :yadfa-events) (defevent infinity-diaper-obtained-1) (defevent pyramid-puzzle-1 :lambda (lambda (self) (declare (ignore self)) (cond ((finished-events 'infinity-diaper-obtained-1) ...
7,004
Common Lisp
.lisp
75
60.533333
516
0.480877
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
941cb6bb234c01cc75bc8ab2f4a6460ce215797c435927b14817f0c2bd5eca06
15,626
[ -1 ]
15,627
pirates-cove.lisp
pouar_yadfa/data/events/pirates-cove.lisp
;;;; -*- mode: Common-Lisp; sly-buffer-package: "yadfa-events"; coding: utf-8-unix; -*- (in-package :yadfa-events) (defevent pirates-cove-1 :lambda (lambda (self) (declare (ignorable self)) (let* ((a (make-instance 'yadfa-enemies:diaper-pirate)) (b (make-instance 'yadfa-enem...
5,957
Common Lisp
.lisp
57
73.526316
360
0.504237
pouar/yadfa
5
1
0
GPL-3.0
9/19/2024, 11:27:22 AM (Europe/Amsterdam)
b6569daed88ec6429bc14730a31b8562f673fc8e3de5007f44c7a17810f32472
15,627
[ -1 ]