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
40,168
q19.lisp
goroda_advent_of_code_2020/q19.lisp
(in-package :q19) (defun parse-rules (rules) (cond ((cl-ppcre:all-matches "[a-z]" rules) (list (aref rules 1))) ((find "|" rules :test #'string=) (let* ((options (cl-ppcre:split "[|]" rules))) (mapcar #'(lambda (opts) (map 'list #'parse-integer ...
3,717
Common Lisp
.lisp
84
33.77381
109
0.54169
goroda/advent_of_code_2020
0
0
0
GPL-3.0
9/19/2024, 11:47:51 AM (Europe/Amsterdam)
cf4a6c0e24d8a42c5ea15273e92cf1a6ff13fe353ac172dc83b9765fbc7c8322
40,168
[ -1 ]
40,169
q7.lisp
goroda_advent_of_code_2020/q7.lisp
(in-package :q7) (defun parse-rule (line) (let* ((words (cl-ppcre:split " " line)) (name (concatenate 'string (first words) (second words))) (rest (cadr (cl-ppcre:split " contain " line))) (split (cl-ppcre:split ", " rest)) (out (list name))) (unless (string= "no other bags." ...
3,275
Common Lisp
.lisp
75
31.88
72
0.5279
goroda/advent_of_code_2020
0
0
0
GPL-3.0
9/19/2024, 11:47:51 AM (Europe/Amsterdam)
e99cc35e3a0ed4c7beb0ba270f226265a38e95707e51fb4f77c412a2c8c4f180
40,169
[ -1 ]
40,170
q17.lisp
goroda_advent_of_code_2020/q17.lisp
(in-package :q17) (defun read-file-as-lines-p1 (filename &key) "Read file into a list of lines." (with-open-file (in (advent_of_code_2020:get-file-pathname filename)) (loop for line = (read-line in nil nil) for ii from 0 while line append (loop for jj from 0 to (1- (length line)) ...
8,082
Common Lisp
.lisp
155
30.36129
100
0.392008
goroda/advent_of_code_2020
0
0
0
GPL-3.0
9/19/2024, 11:47:51 AM (Europe/Amsterdam)
04b4425826631e7155e693234f8221301963b328bd9126abb8a4d1b08039822e
40,170
[ -1 ]
40,171
q18.lisp
goroda_advent_of_code_2020/q18.lisp
(in-package :q18) (defun evaluate-expression (line start) (loop with op = #'+ with val = 0 for ii from start to (1- (length line)) ;; do (format t "ii = ~A val = ~A start = ~A thing = ~A ~%" ii val start (aref line ii)) do (cond ((string= "(" (aref line ii)) (multiple-value-bind (v ne...
4,345
Common Lisp
.lisp
107
30.420561
117
0.482096
goroda/advent_of_code_2020
0
0
0
GPL-3.0
9/19/2024, 11:47:51 AM (Europe/Amsterdam)
ed9b1bd9f5e9429b964635c16bde9bfc605ef928954741dc15d163dab2354d0d
40,171
[ -1 ]
40,172
q4.lisp
goroda_advent_of_code_2020/q4.lisp
(in-package :q4) (defstruct password byr iyr eyr hgt hcl ecl pid cid) (defun verify-password (pass) (if (or (null (password-byr pass)) (null (password-iyr pass)) (null (password-eyr pass)) (null (password-hgt pass)) (null (password-hcl pass)) (null (password-ecl ...
4,592
Common Lisp
.lisp
111
28.900901
90
0.483893
goroda/advent_of_code_2020
0
0
0
GPL-3.0
9/19/2024, 11:47:51 AM (Europe/Amsterdam)
6f3d6ee009dbb82b592a413bad8cfdbe0ef51dab87021aad0e75b15a86309509
40,172
[ -1 ]
40,173
q6.lisp
goroda_advent_of_code_2020/q6.lisp
(in-package :q6) (defun read-file-as-lines-p1 (filename &key) "Read file into a list of lines." (with-open-file (in (advent_of_code_2020:get-file-pathname filename)) (loop with num-valid = 0 and group = (list) for line = (read-line in nil nil) while line if (string= "" l...
2,357
Common Lisp
.lisp
64
27.890625
72
0.546369
goroda/advent_of_code_2020
0
0
0
GPL-3.0
9/19/2024, 11:47:51 AM (Europe/Amsterdam)
874ebdfb60601bc570d6ddc24510ffa3a51e6cc0a9b7e49fde5574b2747d573c
40,173
[ -1 ]
40,174
q1.lisp
goroda_advent_of_code_2020/q1.lisp
(in-package :q1) (defun read-file-as-lines (filename) "Read file into a list of lines." (with-open-file (in (advent_of_code_2020:get-file-pathname filename)) (loop for line = (read-line in nil nil) while line collect (parse-number:parse-number line)))) (defun get-answer (&key (filename "p1...
715
Common Lisp
.lisp
15
35.4
84
0.545845
goroda/advent_of_code_2020
0
0
0
GPL-3.0
9/19/2024, 11:47:51 AM (Europe/Amsterdam)
056687667c7ab8067797f22165b6c46cf1471456c779cdb9f458b2de4e2075d7
40,174
[ -1 ]
40,175
advent_of_code_2020.lisp
goroda_advent_of_code_2020/advent_of_code_2020.lisp
;;;; advent_of_code_2020.lisp (in-package #:advent_of_code_2020) (defparameter *project-dir* (asdf:system-source-directory :advent_of_code_2020)) (defun get-file-pathname (problem-name) (merge-pathnames *project-dir* (make-pathname :name (format nil "data/~A" problem-n...
385
Common Lisp
.lisp
7
40.285714
80
0.564171
goroda/advent_of_code_2020
0
0
0
GPL-3.0
9/19/2024, 11:47:51 AM (Europe/Amsterdam)
fa320d15ea00d29dc6a5094ad9fdc63f28efe6278f3372e682df44dca4f60cf7
40,175
[ -1 ]
40,176
advent_of_code_2020.asd
goroda_advent_of_code_2020/advent_of_code_2020.asd
;;;; advent_of_code_2020.asd (asdf:defsystem #:advent_of_code_2020 :description "My advent of code 2020" :author "Alex Gorodetsky alex@alexgorodetsky.com" :license "GPL" :version "0.0.1" :serial t :depends-on (#:alexandria #:cl-ppcre #:parse-number #:uiop) ...
940
Common Lisp
.asd
32
17.0625
51
0.38699
goroda/advent_of_code_2020
0
0
0
GPL-3.0
9/19/2024, 11:47:51 AM (Europe/Amsterdam)
8104805d1bbc086e4b3cd6a78b5993d61b61be5605588bf655de64744a07b106
40,176
[ -1 ]
40,213
sparql-cluster-transforms.cl
mdebellis_CODO-Lisp/sparql-cluster-transforms.cl
; to transform data from geographic cluster strings ; this function is typically run last although it should be ; independent of the others (in-package :db.agraph.user) (defun codo-cluster-transforms () (print "Entering Cluster transforms") (sparql:run-sparql "DELETE { ?p codo:clusterString ?cs.} IN...
3,455
Common Lisp
.cl
91
34.758242
115
0.717223
mdebellis/CODO-Lisp
0
0
0
GPL-3.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
e833edcd1f3d876976bec6ea1d3b0919602fed5aeb9c44cbb145bbcca0a6a1ee
40,213
[ -1 ]
40,214
sparql-transforms.cl
mdebellis_CODO-Lisp/sparql-transforms.cl
#| Before running the following functions, make sure you follow the setup instructions in the document "Running Lisp to Access Allegrograph.pdf" Make sure that the CODO knowledge graph is open and that the codo package is registered: (open-triple-store "CODORealData" :triple-store-class 'remote-triple-st...
44,460
Common Lisp
.cl
679
60.97349
221
0.679817
mdebellis/CODO-Lisp
0
0
0
GPL-3.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
63b8d7f5a709cf6ae1e4d62d6725a11596d8a09d3fcf7af280c0eaba67c597d4
40,214
[ -1 ]
40,215
city-and-admission-transforms.cl
mdebellis_CODO-Lisp/city-and-admission-transforms.cl
;File to deal with City strings and admission dates (in-package :db.agraph.user) (defun codo-city-transforms () (print "Entering City transforms") (sparql:run-sparql "DELETE {?p codo:cityString ?cstring.} INSERT {?p codo:isCurrentResidentOf codo:Bangalore-Urban; codo:isPermanentResidentOf codo:...
4,648
Common Lisp
.cl
87
47.609195
150
0.690271
mdebellis/CODO-Lisp
0
0
0
GPL-3.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
9739469e9c86e0f0baa411f3513649c5c90e4d4782ebc54024f683b1e1f9c601
40,215
[ -1 ]
40,216
sparql-regex-transforms.cl
mdebellis_CODO-Lisp/sparql-regex-transforms.cl
;All functions assume that the codo triplestore is open and bound to *db* ;Also, there must be a Text Index set up with the Object being the value ;of the codo:statePatientID property. This enables fast lookups for patients based on their hasID ;Note: when compiling this file or individual functions you will get war...
23,467
Common Lisp
.cl
493
38.914807
156
0.637275
mdebellis/CODO-Lisp
0
0
0
GPL-3.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
27ed1a2bcf4ea67b6b64884080c8d04a02c7825589cecfd420d00f7bc5823b33
40,216
[ -1 ]
40,222
CODO Vocabulary SPARQL Queries.txt
mdebellis_CODO-Lisp/CODO Vocabulary SPARQL Queries.txt
#SPARQL queries for the CODO ontology #These are all just queries and will not change the #knowledge graph. See the Lisp files #for the SPARQL queries that transform the data #These are generic queries that are independent of any data set #All queries should begin with the following namespaces: PREFIX owl: <http...
9,837
Common Lisp
.l
278
31.960432
90
0.723007
mdebellis/CODO-Lisp
0
0
0
GPL-3.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
fa824986bd81918f80d69685f8958ed479757c0920ab940e1b68dbed30ce3733
40,222
[ -1 ]
40,223
SWRL to SPARQL Rules.txt
mdebellis_CODO-Lisp/SWRL to SPARQL Rules.txt
#This file has SWRL rules that were rewritten in SPARQL because Allegro doesn't support SWRL #Mild and Very Mild Diagnosis: #covid19:hasSymptom(?p, covid19:URTI) ^ covid19:hasSymptom(?p, covid19:Fever) ^ covid19:hasDiagnosis(?p, ?d) -> covid19:MildAndVeryMildCovid19(?d) #Moderate: #covid19:hasSymptom(?p, covid19:...
1,601
Common Lisp
.l
36
41.444444
147
0.738372
mdebellis/CODO-Lisp
0
0
0
GPL-3.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
cae00df51b14afdab54fa4f5e8258729e8725a4c0222d85b003241c2701abe6b
40,223
[ -1 ]
40,238
level.lisp
foggynight_tomb/src/level.lisp
(in-package #:tomb) (defstruct level "Level structure representing a level in a world. Levels contain a grid of tiles which compose the space contained within the level, and a list of entities which occupy tiles in the level." tiles entities) (defun read-level-from-file (filename) "Make a level using the con...
1,956
Common Lisp
.lisp
42
42.5
80
0.695378
foggynight/tomb
0
0
0
GPL-2.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
233980a0f12e2e2fba8fb434c9ba2970364cdfb33b0f591a1ec88b6f184c519a
40,238
[ -1 ]
40,239
main.lisp
foggynight_tomb/src/main.lisp
(in-package #:tomb) (defun main () (let* ((world (generate-world '("res/test-0.lvl" "res/test-1.lvl"))) (player (make-player :y 1 :x 1)) (level (move-to-first-level world player))) (add-entity (make-instance 'entity :pos '(3 . 5) :symbol #\Z) level) (crt:wi...
2,703
Common Lisp
.lisp
54
28.277778
90
0.409366
foggynight/tomb
0
0
0
GPL-2.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
e91d5c683b1b29a2333e21fa04090b5c88763bafc82b69909bbce30cd44a545e
40,239
[ -1 ]
40,240
screen.lisp
foggynight_tomb/src/screen.lisp
(in-package #:tomb) (defun draw-player-stats (stat-win player) "Draw the player stats in the stat window." (crt:clear stat-win) (dolist (stat (entity-stats player)) (dolist (string (list (symbol-name (stat-name stat)) ":" (write-to-string (stat-current stat...
1,819
Common Lisp
.lisp
39
38.641026
79
0.631134
foggynight/tomb
0
0
0
GPL-2.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
7be429cca6f6c10739470ffb3725b1b41ac1d0b103d254cc27b3233be3c2d516
40,240
[ -1 ]
40,241
entity.lisp
foggynight_tomb/src/entity.lisp
(in-package #:tomb) (defparameter *entity-max-level* 99 "Maximum level an entity can attain.") (defparameter *entity-level-experience-alist* (let ((experience 0)) (loop for level from 0 to *entity-max-level* do (setq experience (+ experience level)) collect (cons level experience))) "Ali...
3,834
Common Lisp
.lisp
100
32.27
80
0.662097
foggynight/tomb
0
0
0
GPL-2.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
ac0c040f09360dd6613eafa36aaf5b631180471dd8b3c08b44eed17c33078ea6
40,241
[ -1 ]
40,242
world.lisp
foggynight_tomb/src/world.lisp
(in-package #:tomb) (defstruct world "World structure representing a game world divided into levels. Worlds contain a list of levels, as well the index of the level currently containing the player." levels current-level-index) (defun generate-world (filenames) "Generate a world containing levels which are ea...
2,309
Common Lisp
.lisp
50
42.3
80
0.73944
foggynight/tomb
0
0
0
GPL-2.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
914bc8ba455262880e5f4b4d4e3a3f8f269885ab590df01d10338798fe9f5768
40,242
[ -1 ]
40,243
stat.lisp
foggynight_tomb/src/stat.lisp
;;;; Stat Data Structure ;; ;; Stats are represented using lists containing the following members: ;; - NAME: Atomic symbol - Name of the stat ;; - BASE: Integer - Base level of the stat ;; - CURRENT: Integer - Level to be used in calculations involving the stat ;; ;; Lists are used instead of objects to allow stats to...
1,411
Common Lisp
.lisp
37
34.810811
79
0.700586
foggynight/tomb
0
0
0
GPL-2.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
7aef2cf5f9cea03d41be09f495264ec4ca50f1df8cec9d4c9a5c6911f97c23f9
40,243
[ -1 ]
40,244
tile.lisp
foggynight_tomb/src/tile.lisp
(in-package #:tomb) (defparameter *tile-symbol-type-alist* '((#\. . floor) (#\% . stairs) (#\space . void) (#\# . wall)) "Alist of tile symbol and type pairs.") (defstruct tile "Tile structure representing a tile in a world; tiles are a single cell of space in a world, and are the smalle...
2,434
Common Lisp
.lisp
52
40.711538
79
0.674958
foggynight/tomb
0
0
0
GPL-2.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
467211f3e26a4bca94c570c755a3dc79bc6cbf3ef2e5ef4de957c40bb2eeadfa
40,244
[ -1 ]
40,245
tomb.asd
foggynight_tomb/tomb.asd
(asdf:defsystem #:tomb :author "Robert Coffey" :license "GPLv2" :version "0.1.0" :build-operation "asdf:program-op" :build-pathname "../tomb" :depends-on (#:croatoan) :entry-point "tomb:main" :pathname "src/" :serial t :components ((:file "package") (:file "stat") (:...
494
Common Lisp
.asd
18
19.166667
36
0.504255
foggynight/tomb
0
0
0
GPL-2.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
fb201dee484f435a12d029b12d9e69500c02717a0abaabc4087bfaee00541e87
40,245
[ -1 ]
40,254
test-0.lvl
foggynight_tomb/res/test-0.lvl
############ ############ #..........# #..........# #.%........#####..........# #.........................# #..........#####..........# #..........# #..........# ############ ############
196
Common Lisp
.l
7
27
27
0
foggynight/tomb
0
0
0
GPL-2.0
9/19/2024, 11:47:59 AM (Europe/Amsterdam)
e3cccff2f2b74196308f65b6cb5d3667e730094de8710d1f2eac87deff2df154
40,254
[ -1 ]
40,269
heap.lisp
toma63_heap-cl/heap.lisp
(defclass heap () ((store :initform (make-array 1000 :adjustable T :fill-pointer 0) :accessor store) (comparison :initform #'> :initarg :comparison :accessor comparison)) (:documentation "a class representation of the heap data structure")) (defgeneric shove (obj value) (:documentation "a...
3,048
Common Lisp
.lisp
66
40.530303
86
0.68691
toma63/heap-cl
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
7c1baf3a4a877a80d72cc0a454c4463784207db4d6457c881a26d9c403a80d78
40,269
[ -1 ]
40,286
levenschtein.lisp
toma63_levenschtein/levenschtein.lisp
(load "../heap-cl/heap.lisp") (defclass partial () ((moves :initform '() :accessor moves :initarg :moves) (cost :initform 0 :accessor cost :initarg :cost) (txt-pos :initform 0 :accessor txt-pos :initarg :txt-pos) (max-txt :initform 0 :accessor max-txt :initarg :max-txt) (pat-pos :initform 0 :acce...
15,392
Common Lisp
.lisp
340
39.920588
118
0.666511
toma63/levenschtein
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
f21ef170ada3ae2481910f1878f14c75a914079c87364a92b86b770e26046d7b
40,286
[ -1 ]
40,303
package.lisp
hu-dwim_hu_dwim_reader/test/package.lisp
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package :hu.dwim.def) (def package :hu.dwim.reader.test (:use :hu.dwim.common :hu.dwim.def :hu.dwim.stefil :hu.dwim.util) (:readtable-setup (hu.dwim.util:enable-stan...
345
Common Lisp
.lisp
12
25.25
69
0.640483
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
9d59701d23bce9145c21cc4ffd5a487e314ef78c042087a952a20619a8200a91
40,303
[ -1 ]
40,304
suite.lisp
hu-dwim_hu_dwim_reader/test/suite.lisp
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package :hu.dwim.reader.test) (def suite* (test :in root-suite))
192
Common Lisp
.lisp
7
26.142857
44
0.644809
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
6f058f9bd2eca18071ce66e9e17d7c7909b67763533ba18bed01f8e176873180
40,304
[ -1 ]
40,305
syntax-sugar.lisp
hu-dwim_hu_dwim_reader/integration/syntax-sugar.lisp
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package "COM.INFORMATIMAGO.COMMON-LISP.SOURCE-TEXT") (defclass source-boolean (source-object) ((value :accessor source-boolean-value :initarg :value))) (export 'source-boole...
1,396
Common Lisp
.lisp
30
33.433333
110
0.554739
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
635d91a9efad1728d7ecc2b9e9bbc5580191872652b842b341df19adcba547d9
40,305
[ -1 ]
40,306
sbcl+swank.lisp
hu-dwim_hu_dwim_reader/integration/sbcl+swank.lisp
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package "COM.INFORMATIMAGO.COMMON-LISP.SOURCE-TEXT") (defun enable-shebang-syntax (&optional (readtable source-text:*source-readtable*)) (reader:set-dispatch-macro-character #\# #\! ...
558
Common Lisp
.lisp
12
31.833333
83
0.498162
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
36d50ad7140f09426c604b2d261e26f0a8da15b91e37df91a9b30755727095c8
40,306
[ -1 ]
40,307
walker.lisp
hu-dwim_hu_dwim_reader/integration/walker.lisp
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package "COM.INFORMATIMAGO.COMMON-LISP.SOURCE-TEXT") (eval-when (:compile-toplevel :load-toplevel :execute) (import '(metabang-bind:bind hu.dwim.def:def hu.dwim.def:ge...
9,339
Common Lisp
.lisp
174
42.551724
154
0.615182
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
bdbb6cd0d12a33be69b73a70dcd3d7de0161a1c0bea0c6f82c8b3f59a0b4196d
40,307
[ -1 ]
40,308
sbcl.lisp
hu-dwim_hu_dwim_reader/integration/sbcl.lisp
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package "COM.INFORMATIMAGO.COMMON-LISP.SOURCE-TEXT") (eval-when (:compile-toplevel :load-toplevel :execute) (defun if-symbol-exists (package name) "Can be used to conditionalize at read-t...
2,009
Common Lisp
.lisp
37
45.243243
125
0.609558
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
8a20af46b4beece2d1c330071a6397a669c6a6d2f5970f2b69f16ab51a4eb65e
40,308
[ -1 ]
40,309
package.lisp
hu-dwim_hu_dwim_reader/documentation/package.lisp
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package :hu.dwim.def) (def package :hu.dwim.reader.documentation (:use :hu.dwim.asdf :hu.dwim.common :hu.dwim.def :hu.dwim.defclass-star :hu.dwim.presentation ...
451
Common Lisp
.lisp
15
25.466667
77
0.642857
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
7748cff618fc67d92227034bae70b92a152182031e1dbaeb4651302a7e24add3
40,309
[ -1 ]
40,310
reader.lisp
hu-dwim_hu_dwim_reader/documentation/reader.lisp
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (in-package :hu.dwim.reader.documentation) (def project :hu.dwim.reader) (def book user-guide (:title "User guide") (chapter (:title "Introduction") (paragraph () "TODO")) (chapter (...
550
Common Lisp
.lisp
20
23.95
59
0.637571
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
2fa5772ad340260e58194fc9a6595255a5fa67e03a46e2247abbb9e7c19747fe
40,310
[ -1 ]
40,311
source-form.lisp
hu-dwim_hu_dwim_reader/source/source-form.lisp
;;;;************************************************************************** ;;;;FILE: source-form.lisp ;;;;LANGUAGE: Common-Lisp ;;;;SYSTEM: Common-Lisp ;;;;USER-INTERFACE: NONE ;;;;DESCRIPTION ;;;; ;;;; This package exports functions to parse and manipulate ;;;; Common ...
48,803
Common Lisp
.lisp
1,031
40.042677
116
0.609713
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
bddd226ada7c0ef64aa657d25a879e52228f98c4dbe974a395345469b0d5f956
40,311
[ -1 ]
40,312
reader.lisp
hu-dwim_hu_dwim_reader/source/reader.lisp
;;;;************************************************************************** ;;;;FILE: reader.lisp ;;;;LANGUAGE: Common-Lisp ;;;;SYSTEM: Common-Lisp ;;;;USER-INTERFACE: NONE ;;;;DESCRIPTION ;;;; ;;;; Implements the Common Lisp Reader. ;;;; ;;;; We implement a Common Lisp ...
87,948
Common Lisp
.lisp
1,901
35.534982
96
0.534209
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
2d8ca5867480a08d589bf8ebaba42f83109cf98895afa75ab7b1a72dde78c562
40,312
[ -1 ]
40,313
source-text.lisp
hu-dwim_hu_dwim_reader/source/source-text.lisp
;;;;************************************************************************** ;;;;FILE: source-text.lisp ;;;;LANGUAGE: Common-Lisp ;;;;SYSTEM: Common-Lisp ;;;;USER-INTERFACE: NONE ;;;;DESCRIPTION ;;;; ;;;; This package exports functions to read and manipulate ;;;; Common L...
50,962
Common Lisp
.lisp
1,120
36.867857
146
0.580068
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
61bc3d7d8a7651eb86489c98a7a7cc2c7ccd8f3ebcd5d87b9a6cc201f3ba6f17
40,313
[ -1 ]
40,314
hu.dwim.reader+hu.dwim.syntax-sugar.asd
hu-dwim_hu_dwim_reader/hu.dwim.reader+hu.dwim.syntax-sugar.asd
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (defsystem :hu.dwim.reader+hu.dwim.syntax-sugar :defsystem-depends-on (:hu.dwim.asdf) :class "hu.dwim.asdf:hu.dwim.system" :depends-on (:hu.dwim.reader :hu.dwim.syntax-sugar) ...
412
Common Lisp
.asd
12
30
55
0.634085
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
f0da470075bbfbb820600ff70238fa463076616322d8e75db1a390fec33dcd30
40,314
[ -1 ]
40,315
hu.dwim.reader+swank.asd
hu-dwim_hu_dwim_reader/hu.dwim.reader+swank.asd
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (defsystem :hu.dwim.reader+swank :defsystem-depends-on (:hu.dwim.asdf) :class "hu.dwim.asdf:hu.dwim.system" :description "Loads code that can deal with SBCL's #! syntax. Requires Swank to reus...
507
Common Lisp
.asd
13
34.769231
108
0.655172
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
efe36c9fe76c5ebc9291beee4656894c37605fd81e2212c69cbaf1600e2b4141
40,315
[ -1 ]
40,316
hu.dwim.reader.test.asd
hu-dwim_hu_dwim_reader/hu.dwim.reader.test.asd
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (defsystem :hu.dwim.reader.test :defsystem-depends-on (:hu.dwim.asdf) :class "hu.dwim.asdf:hu.dwim.test-system" :depends-on (:hu.dwim.reader :hu.dwim.stefil+hu.dwim.def+swank ...
499
Common Lisp
.asd
14
28.642857
72
0.572314
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
d65abc901bdc1dbc93786b7074dabba03e7e18e514195b099c75940b3cabfc8b
40,316
[ -1 ]
40,317
hu.dwim.reader+hu.dwim.walker.asd
hu-dwim_hu_dwim_reader/hu.dwim.reader+hu.dwim.walker.asd
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (defsystem :hu.dwim.reader+hu.dwim.walker :defsystem-depends-on (:hu.dwim.asdf) :class "hu.dwim.asdf:hu.dwim.system" :depends-on (:hu.dwim.def+contextl :hu.dwim.reader ...
431
Common Lisp
.asd
13
27.923077
49
0.611511
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
bcddd8c7b689f52f966c2d518a959388ea516f7dc8c1806949ea4dc5e3970781
40,317
[ -1 ]
40,318
hu.dwim.reader.documentation.asd
hu-dwim_hu_dwim_reader/hu.dwim.reader.documentation.asd
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (defsystem :hu.dwim.reader.documentation :defsystem-depends-on (:hu.dwim.asdf) :class "hu.dwim.asdf:hu.dwim.documentation-system" :depends-on (:hu.dwim.reader.test :hu.dwim.pres...
491
Common Lisp
.asd
13
31.461538
69
0.610063
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
8c47a27f9d56c236e95e47fab8eb6003dc56047623b9f4aee860139ab7965a9a
40,318
[ -1 ]
40,319
hu.dwim.reader.asd
hu-dwim_hu_dwim_reader/hu.dwim.reader.asd
;;; -*- mode: Lisp; Syntax: Common-Lisp; -*- ;;; ;;; Copyright (c) 2009 by the authors. ;;; ;;; See LICENCE for details. (defsystem :hu.dwim.reader :defsystem-depends-on (:hu.dwim.asdf) :class "hu.dwim.asdf:hu.dwim.system" :description "Whitespace preserving Common Lisp reader." :components ((:module "source" ...
664
Common Lisp
.asd
16
32.375
75
0.556414
hu-dwim/hu.dwim.reader
0
0
0
GPL-2.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
83d335892cab126ad08a78e73afd235dc5e4078676d71c8728e55b8b2d4447a0
40,319
[ -1 ]
40,350
LM_Copy2DrawingsV1-3_KGedition.lsp
AndreyAdamenko_ACADbreakDrawingByLayouts/LM_Copy2DrawingsV1-3_KGedition.lsp
;;-----------------------=={ Copy to Drawings }==-----------------------;; ;; ;; ;; This program enables the user to copy a selection of objects to a ;; ;; selected set of drawings, without opening the drawings in the ;; ;; AutoCAD Edit...
21,646
Common Lisp
.l
655
24.838168
110
0.429207
AndreyAdamenko/ACADbreakDrawingByLayouts
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
f3661a8b8e4e1af41bad037eb15505d2da700d0e0f08f9bdc441f810f5c1e8d4
40,350
[ -1 ]
40,351
LM_ViewportOutline.lsp
AndreyAdamenko_ACADbreakDrawingByLayouts/LM_ViewportOutline.lsp
;;-----------------------=={ Viewport Outline }==-----------------------;; ;; ;; ;; This program allows the user to automatically generate a polyline ;; ;; in modelspace representing the outline of a selected paperspace ;; ;; viewport. ...
16,241
Common Lisp
.l
368
34.453804
132
0.388635
AndreyAdamenko/ACADbreakDrawingByLayouts
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
f81050ef8a3492275e64078bbc97928e94b0937fda81e66106d47ee072d491b0
40,351
[ -1 ]
40,352
LM_BrowseForFolderV1-3.lsp
AndreyAdamenko_ACADbreakDrawingByLayouts/LM_BrowseForFolderV1-3.lsp
;; Browse for Folder - Lee Mac ;; Displays a dialog prompting the user to select a folder. ;; msg - [str] message to display at top of dialog ;; dir - [str] [optional] root directory (or nil) ;; bit - [int] bit-coded flag specifying dialog display settings ;; Returns: [str] Selected folder filepath, else nil. ...
1,427
Common Lisp
.l
33
29.787879
126
0.508973
AndreyAdamenko/ACADbreakDrawingByLayouts
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
355065a9026f8ceaa36f18e5c56319ccc409afddfcc87e4f00b59bec0c196674
40,352
[ -1 ]
40,353
LM_BurstUpgradedV1-7.lsp
AndreyAdamenko_ACADbreakDrawingByLayouts/LM_BurstUpgradedV1-7.lsp
;;------------------------=={ Burst Upgraded }==------------------------;; ;; ;; ;; This program operates in much the same way as the familiar ;; ;; Express Tools' Burst command, however invisible block attributes ;; ;; are not disp...
14,210
Common Lisp
.l
310
33.054839
142
0.370368
AndreyAdamenko/ACADbreakDrawingByLayouts
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
cd6ee0d74431a1c5c895faa6a44d02f344af59430d842145c29f57c6d82253ab
40,353
[ 39064 ]
40,354
FieldsToText.lsp
AndreyAdamenko_ACADbreakDrawingByLayouts/FieldsToText.lsp
(defun C:CFT ()(ConvField->Text t)) (defun C:CFTAll ()(ConvField->Text nil)) (defun C:CFTSEL( / *error* Doc ss CountField) (vl-load-com) (defun *error* (msg)(princ msg)(vla-endundomark doc)(princ)) (setq Doc (vla-get-activedocument (vlax-get-acad-object))) (vla-startundomark Doc) (if (setq ss (ssget ...
5,923
Common Lisp
.l
180
25.733333
113
0.575087
AndreyAdamenko/ACADbreakDrawingByLayouts
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
464f360fa88714c33e17c3d80ad2c2e3c7f122e0c6ac500071cf3a6ff2147c42
40,354
[ -1 ]
40,355
PlineExtrim.lsp
AndreyAdamenko_ACADbreakDrawingByLayouts/PlineExtrim.lsp
(defun C:OCDD ( / en ss lst ssall bbox) (vl-load-com) (if (and (setq sset (ssget "x" '((0 . "*POLYLINE") (8 . "VPOutline")))) (setq en (ssname sset 0)) ) (progn (setq bbox (ACET-GEOM-SS-EXTENTS sset T)) (setq bbox (mapcar '(lambda(x)(trans x 0 1)) bbox)) (setq lst (ACET-GEOM-OBJECT-POINT-LIST e...
923
Common Lisp
.l
36
21.222222
72
0.585034
AndreyAdamenko/ACADbreakDrawingByLayouts
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
158a002a041dc358b641cba2ef37dd4293471ff6fbf55ce4a18e4c7eed690c96
40,355
[ -1 ]
40,356
LM_DrawOrderV1-2.lsp
AndreyAdamenko_ACADbreakDrawingByLayouts/LM_DrawOrderV1-2.lsp
;; Move to Top - Lee Mac ;; Moves a set of objects to the top of the draw order. ;; obs - [lst/sel] Selection set or list of objects with same owner ;; Returns: T if successful, else nil (defun LM:movetotop ( obs / tab ) (if (and (or (= 'list (type obs)) (setq obs (LM:ss->vla obs))) (setq tab...
4,486
Common Lisp
.l
114
33.640351
106
0.626386
AndreyAdamenko/ACADbreakDrawingByLayouts
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
1ce303c4b53ce87a4ba92021cab9c4aad030eecf92d186a7666b51b167867007
40,356
[ 449806 ]
40,357
KG_LayoutsToDwgs.lsp
AndreyAdamenko_ACADbreakDrawingByLayouts/KG_LayoutsToDwgs.lsp
; BreakDrawingByLayouts (defun KG:BreakDwg ( / *error* DelAllLayouts CopyModelToDwg SaveToNewDwg BindAndExplodeXrefs TextToForward GetNamingType osmodeOld dwgResultFolder layDwgWasCreated layDwgName dwgLayExists vpCurI vpSs curVP modelSs namingType oldEcho ) (vl-load-com) (setq oldEcho (getvar "CMDECHO")) ...
5,233
Common Lisp
.l
170
23.758824
235
0.586581
AndreyAdamenko/ACADbreakDrawingByLayouts
0
0
0
GPL-3.0
9/19/2024, 11:48:07 AM (Europe/Amsterdam)
fee9482433551a04450690e34d810ee86a5097759548884caa7b75ff6325a510
40,357
[ -1 ]
40,380
00-prelude.lisp
vlad-km_mLisa/00-prelude.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; Modification for JSCL under Electron platform ;;; Copyright (C) 2021 Vladimir K. Mezentsev (@vlad-km) (eval-when (:compile-toplevel :load-toplevel :execute) (unless (find-package :lilu) (make-package :lilu :use (list 'cl))) (unless (find-package :lisa) (make-packag...
2,586
Common Lisp
.lisp
73
26.739726
60
0.535572
vlad-km/mLisa
0
0
4
GPL-3.0
9/19/2024, 11:48:23 AM (Europe/Amsterdam)
99a6ac68e49e42e5d0298e99b80a388819f6957472e27dfbb222e8f1de3c813a
40,380
[ -1 ]
40,381
05-rete.lisp
vlad-km_mLisa/05-rete.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of LISA, the Lisp-based Intelligent Software ;;; Agents platform. ;;; Copyright (C) 2000 David E. Young (de.young@computer.org) ;;; Modification for JSCL under Electron platform ;;; Copyright (C) 2021 Vladimir K. Mezentsev (@vlad-km) ;;; $Id: node-tests.lisp...
46,563
Common Lisp
.lisp
1,008
37.878968
113
0.644121
vlad-km/mLisa
0
0
4
GPL-3.0
9/19/2024, 11:48:23 AM (Europe/Amsterdam)
7fe25bc5075547be5006d046828ff4675be22ce7ed044d536492a9a2cfa023ed
40,381
[ -1 ]
40,382
01-utils.lisp
vlad-km_mLisa/01-utils.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of LISA, the Lisp-based Intelligent Software ;;; Agents platform. ;;; Copyright (C) 2000 David E. Young (de.young@computer.org) ;;; File: compose.lisp ;;; Description: Utilities used to compose anonymous functions. ;;; Modification for JSCL under Electron plat...
7,386
Common Lisp
.lisp
189
32.518519
94
0.6036
vlad-km/mLisa
0
0
4
GPL-3.0
9/19/2024, 11:48:23 AM (Europe/Amsterdam)
97dbe6978b5f9424428eff799bf30d0f2fabdc5f1645651a43ef23b2c7517acc
40,382
[ -1 ]
40,383
03-reflect.lisp
vlad-km_mLisa/03-reflect.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of LISA, the Lisp-based Intelligent Software ;;; Agents platform. ;;; Copyright (C) 2000 David E. Young (de.young@computer.org) ;;; File: reflect.lisp ;;; Description: Wrapper functions that provide the MOP functionality needed ;;; by LISA, hiding implementati...
3,294
Common Lisp
.lisp
70
40.857143
131
0.664686
vlad-km/mLisa
0
0
4
GPL-3.0
9/19/2024, 11:48:23 AM (Europe/Amsterdam)
ca04fb2ed2a6ea4a55274584e588ce790a50a2e94c33a307ef6b3ec0c7230013
40,383
[ -1 ]
40,384
04-core.lisp
vlad-km_mLisa/04-core.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of LISA, the Lisp-based Intelligent Software ;;; Agents platform. ;;; Copyright (C) 2000 David E. Young (de.young@computer.org) ;;; Modification for JSCL under Electron platform ;;; Copyright (C) 2021 Vladimir K. Mezentsev (@vlad-km) (defvar *active-rule* nil...
92,309
Common Lisp
.lisp
2,159
35.471051
109
0.638039
vlad-km/mLisa
0
0
4
GPL-3.0
9/19/2024, 11:48:23 AM (Europe/Amsterdam)
90c466bf0ca11409253788d4cab80be611643910746a052c52d9ffce89111680
40,384
[ -1 ]
40,385
06-config.lisp
vlad-km_mLisa/06-config.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of LISA, the Lisp-based Intelligent Software ;;; Agents platform. ;;; Copyright (C) 2000 David E. Young (de.young@computer.org) ;;; File: config.lisp ;;; Description: User-customisable configuration settings for LISA. It is ;;; expected that developers will edi...
2,287
Common Lisp
.lisp
53
38.320755
76
0.675506
vlad-km/mLisa
0
0
4
GPL-3.0
9/19/2024, 11:48:23 AM (Europe/Amsterdam)
289992ba85f16512813235d096d05d68982a4e58f22ae874fd1d2c8c8a578905
40,385
[ -1 ]
40,386
02-belief.lisp
vlad-km_mLisa/02-belief.lisp
;;; -*- mode:lisp; coding:utf-8 -*- ;;; This file is part of LISA, the Lisp-based Intelligent Software ;;; Agents platform. ;;; Copyright (C) 2000 David E. Young (de.young@computer.org) ;;; Modification for JSCL under Electron platform ;;; Copyright (C) 2021 Vladimir K. Mezentsev (@vlad-km) ;;; File: belief.lisp ;;;...
3,559
Common Lisp
.lisp
92
34.076087
103
0.655804
vlad-km/mLisa
0
0
4
GPL-3.0
9/19/2024, 11:48:23 AM (Europe/Amsterdam)
f40317b1802fd9a1cc0e9e0b946d4edf251468bd57fc819acfcea63db7ba9004
40,386
[ -1 ]
40,409
tutorial.lisp
L0ren2_lisp_tut/tutorial.lisp
; Du kommst einfach nicht dahinter, wie LISP funktioniert aber du interessierst dich aus irgendeinem Grund dafür? ; Hier gibts einige kleine Goodies, die dich in die Lage versetzen, lisp besser zu lernen. Unten gibt es ein paar gute Lernquellen. ; Die restliche Datei ist einfach dazu da, Anfängern ein bisschen unter di...
17,023
Common Lisp
.lisp
309
52.724919
177
0.746043
L0ren2/lisp_tut
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
1e29ee64fd0e6bad8f510cb195e4aa2ce0f1bf8b0da32961a172174aa003f27e
40,409
[ -1 ]
40,426
operators.lisp
retq_SimpleSyntaxLISP/src/operators.lisp
(in-package :cl-syntax) (eval-when (:compile-toplevel :load-toplevel :execute) (defun package-syntax-name (package) (intern *standard-package-syntax-name* package))) (defun get-options (name) "Get the options list for name, if it is available." (get (cond ((typep name 'syntax) nil) ((and (typep name 'packa...
2,027
Common Lisp
.lisp
51
33
76
0.640934
retq/SimpleSyntaxLISP
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
83b0aadfab45d0ba0fca6c44759a8267dbd9235205d0d899dd9d0dab2efe1e5b
40,426
[ 372042 ]
40,427
types.lisp
retq_SimpleSyntaxLISP/src/types.lisp
(in-package :cl-syntax) (deftype syntax () 'readtable) (deftype syntax-designator () '(or syntax package-designator named-readtable-designator))
163
Common Lisp
.lisp
6
23.166667
35
0.716129
retq/SimpleSyntaxLISP
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
e647931c4c599f037758f874a4dbb80bfbf7cb11e23cc714b008ccdd14d9f3ac
40,427
[ 326264 ]
40,428
packages.lisp
retq_SimpleSyntaxLISP/src/packages.lisp
(in-package :cl-user) (defpackage :cl-syntax (:nicknames :syntax) (:use :cl :named-readtables) (:import-from :trivial-types #:package-designator #:proper-list) (:export #:syntax #:syntax-designator #:defsyntax #:define-package-syntax #...
359
Common Lisp
.lisp
13
19.230769
36
0.556522
retq/SimpleSyntaxLISP
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
b49e8f0b7b1eaab1d6320f5d16827a8c224230f9420b3b01d8f1503fecff8786
40,428
[ 287578 ]
40,429
markup.lisp
retq_SimpleSyntaxLISP/contrib/markup.lisp
(in-package :cl-user) (syntax:define-package-syntax :cl-markup (:merge :standard) (:dispatch-macro-char #\# #\M #'cl-markup::markup-reader))
146
Common Lisp
.lisp
4
34.25
60
0.702128
retq/SimpleSyntaxLISP
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
50a87b940a9d6172b556fc176f73b3613005064c1f321b6bede277531e9525e0
40,429
[ 251989 ]
40,430
anonfun.lisp
retq_SimpleSyntaxLISP/contrib/anonfun.lisp
(in-package :cl-user) (syntax:define-package-syntax :cl-anonfun (:merge :standard) (:dispatch-macro-char #\# #\% #'cl-anonfun::fn-reader))
144
Common Lisp
.lisp
4
33.75
57
0.690647
retq/SimpleSyntaxLISP
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
a71682de02174f190a7ed8a2fb55dbef2c04428bb7c890a6e2d443aa2b58fbac
40,430
[ 325252 ]
40,431
fare-quasiquote.lisp
retq_SimpleSyntaxLISP/contrib/fare-quasiquote.lisp
(in-package :fare-quasiquote) (syntax:defsyntax fare-quasiquote-mixin (:macro-char #\` #'read-read-time-backquote) (:macro-char #\, #'read-comma) (:macro-char #\# :dispatch) (:dispatch-macro-char #\# #\( #'read-hash-paren)) (syntax:define-package-syntax :fare-quasiquote (:fuze :standard fare-quasiquote-mi...
326
Common Lisp
.lisp
8
38
51
0.702532
retq/SimpleSyntaxLISP
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
89da490752b44a35ba5cae0fcf81548e784eb49db9e1e58f1639188765e7b22a
40,431
[ 337887 ]
40,432
clsql.lisp
retq_SimpleSyntaxLISP/contrib/clsql.lisp
(in-package :cl-user) (syntax:define-package-syntax :clsql (:merge :standard) (:macro-char #\[ #'clsql-sys::sql-reader-open) (:macro-char #\] (cl:get-macro-character #\))))
180
Common Lisp
.lisp
5
33.6
49
0.666667
retq/SimpleSyntaxLISP
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
d35c0a5dbc54fde05b5fb58a5b5bfcf2be711af5dfb617a98fd984b0925ce75a
40,432
[ 206179 ]
40,433
interpol.lisp
retq_SimpleSyntaxLISP/contrib/interpol.lisp
(in-package :cl-user) (syntax:define-package-syntax :cl-interpol (:merge :standard) (:dispatch-macro-char #\# #\? #'cl-interpol::interpol-reader))
152
Common Lisp
.lisp
4
35.75
64
0.707483
retq/SimpleSyntaxLISP
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
07a3dd2952663b1c439fc676b15e7e96605d48ba968f44b01344000abecc463b
40,433
[ 215646 ]
40,457
ast.lisp
psteeve_tsinco/src/ast.lisp
(in-package :tsinco.ast) (defgeneric get-compiler-options (script-reference-host)) (defgeneric get-source-file (script-reference-host file-name)) (defgeneric get-source-file-by-path (script-reference-host path)) (defgeneric get-current-directory (script-reference-host)) (defgeneric get-root-file-names (program) (:d...
1,819
Common Lisp
.lisp
33
39.636364
92
0.597973
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
2c113e22e955de3add5f20be2ac11465c650eb9ed6b4ba72cbece135a388847a
40,457
[ -1 ]
40,458
keywords-type-node.lisp
psteeve_tsinco/src/keywords-type-node/keywords-type-node.lisp
(in-package :tsinco.keywords-type-node) (defmacro define-keyword-type-node (types) `(progn ,@(mapcar #'(lambda (x) `(defclass ,x (keyword-type-node) ((kind :initarg :kind :initform ,(st-utils:as-keyword x) :read...
902
Common Lisp
.lisp
22
19.545455
63
0.396571
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
c1588c809d99b7c9ffb91e5a55a63061b4e1a551da879cbac23a34fac4f2cf69
40,458
[ -1 ]
40,459
example.lisp
psteeve_tsinco/src/examples/example.lisp
(defvar *source-file* '(:source-file :pos 0 :end 21 :statements ((:expression-statement :pos 0 :end 21 :expression (:call-expression :pos 0 :end 20 :expression (:property-access-expression ...
1,325
Common Lisp
.lisp
35
14.971429
56
0.30155
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
3efe34a2aa3d3383c8e69af208f200f50567c45adbcf465d9d8d7c4af7b96d8c
40,459
[ -1 ]
40,460
ts-parser-example.lisp
psteeve_tsinco/src/examples/ts-parser-example.lisp
(defvar *type-alias-declaration* '(:pos 14 :end 100 :modifiers (:node-array :pos 129 :end 130 :node-list ...
3,678
Common Lisp
.lisp
56
15.375
126
0.17943
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
376dad862880631d126dc687fe0cd9e01ff8409538df019bac197e252ebce4ff
40,460
[ -1 ]
40,461
cons-form.lisp
psteeve_tsinco/src/utils/cons-form.lisp
(defpackage :tsinco.utils (:use :common-lisp) (:export :cons-form-p)) (in-package :tsinco.utils) (defun cons-form-p (form &optional (test #'keywordp)) (and (consp form) (let ((car-of-form (car form))) (or (funcall test car-of-form) (and (cons-form-p car-of-form))))))
308
Common Lisp
.lisp
10
25.8
53
0.611486
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
6bca9ff3422be4b02ec6f2a629518165191fee8c354546cbd63740b80544f622
40,461
[ -1 ]
40,462
parse-simple-sexp.lisp
psteeve_tsinco/src/utils/parse-simple-sexp.lisp
(in-package :tsinco.utils) (defun make-instance-for (object-name value) (apply #'make-instance object-name value)) (defun parse-simple-sexp (sexp) "Parse an expression of the form (:tag :prop 1 :prop2 2 :prop3 3) to produce an object of type tag example: (parse-simple-sexp '(:identifier :pos 20 :end 34 :escaped-t...
607
Common Lisp
.lisp
12
48.083333
81
0.728499
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
4c3b518d7b52419c735bffbcc95e85d952457fe77d8c4d891baa1317bcc6c2c5
40,462
[ -1 ]
40,463
text-range.lisp
psteeve_tsinco/src/nodes-elements/text-range.lisp
(in-package :text-range) (defclass text-range () ((pos :initarg :pos :initform 0 :reader pos) (end :initarg :end :initform 0 :reader end)))
162
Common Lisp
.lisp
6
22.333333
46
0.625806
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
63297472319960925826b65d570b4eb97c9ca8dbf2c7805eeb9823c7ea9da427
40,463
[ -1 ]
40,464
variable-declaration.lisp
psteeve_tsinco/src/nodes-elements/variable-declaration.lisp
(defclass variable-declaration (named-declaration) ((kind :initarg :kind :initform :variable-declaration :reader kind) (parent :initarg :parent :initform (error "Must supply value for parent") :reader parent) (name :initarg :name :initform (error "Must supply a value for name") :reader name) (initializer :in...
541
Common Lisp
.lisp
7
73.857143
116
0.754682
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
288041322a48f070abd35ecc326e68d777afa724ad24f1704a20c6ac073f11e7
40,464
[ -1 ]
40,465
export-declaration.lisp
psteeve_tsinco/src/nodes-elements/export-declaration.lisp
(defclass export-declaration (declaration-statement) ((kind :initarg :kind :initform :export-declaration :reader kind) (parent :initarg :parent :initform (error "Must supply a value for \"parent\"") :reader parent) (import-clause :initarg :import-clause ...
440
Common Lisp
.lisp
11
30.818182
65
0.631702
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
192444b7830919f03fa0386fbeefb072cc91bca84eb1d19c74f968c01cd9d299
40,465
[ -1 ]
40,466
clauses.lisp
psteeve_tsinco/src/nodes-elements/clauses.lisp
(in-package :tsinco.node-elements) (defclass cach-clause (node) ((kind :initarg :kind :initform :cach-clause :reader kind) (parent :initarg :parent :initform (error "Must supply a value for parent.") :reader parent) (variable-declaration :initarg :variable-declaration :reader variable-declaration) (a-block...
1,696
Common Lisp
.lisp
40
34.1
101
0.630527
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
24a1d2e4b373681cbdac836c9b4de4455b2600bd4c1e80604b16f7c9618aed1d
40,466
[ -1 ]
40,467
named-imports.lisp
psteeve_tsinco/src/nodes-elements/named-imports.lisp
(defclass named-imports (node) ((kind :initarg :kind :initform :named-imports :reader kind) (parent :initarg :parent :reader parent) (elements :initarg :elements :initform (error "Must supply a value for \"elements\""))))
272
Common Lisp
.lisp
8
26.75
72
0.617424
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
d272f853a4db9bae25df611e18d1990182577d1950561a10b92359337b33f243
40,467
[ -1 ]
40,468
void-expression.lisp
psteeve_tsinco/src/nodes-elements/void-expression.lisp
(defclass void-expression (unary-expression) ((kind :initarg :kind :initform :void-expression :reader kind) (expression :initarg :expression :initform (error "Must supply a value for expression.") :reader expression)))
224
Common Lisp
.lisp
3
72
113
0.764706
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
2bc56eb4ea80d0b928e5431b9d9d0c939e881f410698c2087f822f3dc9df4f83
40,468
[ -1 ]
40,469
switch-statement.lisp
psteeve_tsinco/src/nodes-elements/switch-statement.lisp
(in-package :tsinco.node-elements) (defclass switch-statement (statement) ((kind :initarg :kind :initform :switch-statement :reader kind) (expression :initarg :expression :initform (error "Must provide a value for \"expression\"") :reader expression) (case-block :initarg :case-block :initform (error "Must prov...
458
Common Lisp
.lisp
6
73.333333
115
0.758315
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
4fda6dd8995cff9c9ade41c5f74bfc40f1e535f8eb9a8c9822304cfd20827d43
40,469
[ -1 ]
40,470
class-declaration.lisp
psteeve_tsinco/src/nodes-elements/class-declaration.lisp
(in-package :tsinco.node-elements) (defclass class-declaration (class-like-declaration-base declaration-statement) ((kind :initarg :kind :initform :class-declaration :reader kind) (name :initarg :name :reader name))) (defmethod initialize-instance :after ((object class-declaration) &ke...
564
Common Lisp
.lisp
12
42
79
0.721818
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
704c8445176599b169ea5f4f8a7a701aab0093f6a3be4eaa2f6f2ec3a271d7d6
40,470
[ -1 ]
40,471
token.lisp
psteeve_tsinco/src/nodes-elements/token.lisp
(defpackage :tsinco.ast (:use :common-lisp)) (in-package :tsinco.ast) (define-token-class (open-brace-token close-brace-token open-paren-token close-paren-token open-bracket-token close-bracket-token dot-token dot-dot-dot-token semicolon-token comma-token les...
2,108
Common Lisp
.lisp
81
18.320988
56
0.647553
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
368e01be5bd37d60b2b06976663449d997ba68fe73139b0ce0fec06dce3f4a7e
40,471
[ -1 ]
40,472
binary-expression.lisp
psteeve_tsinco/src/nodes-elements/binary-expression.lisp
(defclass binary-expression (expression a-declaration) ((kind :initarg :kind :initform :binary-expression :reader kind) (left :initarg :left :initform (error "Must supply a value for left") :reader left) (operator-token :initarg :operator-token :initform (error "Must suppla a value for \"ope...
768
Common Lisp
.lisp
12
57.583333
92
0.704244
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
63e93e0f9c84b40ba1dad68ef3c984d1bd871e510e36afd08825757437a3e3bf
40,472
[ -1 ]
40,473
for-of-statement.lisp
psteeve_tsinco/src/nodes-elements/for-of-statement.lisp
(defclass for-of-statement (iteration-statement) ((kind :initarg :kind :initform :for-of-statement :reader kind) (await-modifier :initarg await-modifier :reader await-modifier) (initializer :initarg :for-initializer :initform (error "Must supply a value for initializer.") :reader initializer) (expression :in...
415
Common Lisp
.lisp
5
79.8
119
0.768293
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
a64fd2631f798f8958566e1d62daa5f289c37c604d5cdcd8b9438d0ebd147ac7
40,473
[ -1 ]
40,474
import-clause.lisp
psteeve_tsinco/src/nodes-elements/import-clause.lisp
(defclass import-clause (named-declaration) ((kind :initarg :kind :initform :import-clause :reader kind) (parent :initarg :parent :reader parent) (name :initarg :name :reader name) (is-type-only :initarg :is-type-only :reader is-type-only) (named-bindings :initarg :na...
557
Common Lisp
.lisp
14
33.214286
71
0.671587
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
95b0dc740d2d1efd393a036a8c32249f1d599d4c93a781f6d5d364bc170a07fc
40,474
[ -1 ]
40,475
object-binding-pattern.lisp
psteeve_tsinco/src/nodes-elements/object-binding-pattern.lisp
(defclass object-binding-pattern (node) ((kind :initarg :kind :initform :object-binding-pattern :reader kind) (parent :initarg :parent :initform (error "Must supply a value form parent.") :reader parent) (elements :initarg :elements :initform (error "Must supply a value form elements.") :reader elements)))
316
Common Lisp
.lisp
4
76
106
0.746795
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
812ed87faddb1dd302522fe9b669a64f48b15e33d6d7b89c7406296c01f646dd
40,475
[ -1 ]
40,476
property-assignment.lisp
psteeve_tsinco/src/nodes-elements/property-assignment.lisp
(defclass property-assignment (object-literal-element) ((parent :initarg :parent :reader parent) (kind :initarg :property-assignment :reader kind) (name :initarg :name :reader name) (question-token-? :initarg :question-token-? :reader question-token-?) (initializer :initarg :initializer :reader initialize...
538
Common Lisp
.lisp
10
50.3
73
0.751423
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
b31c6877f5a38bd534b5bf4ef8dff6bcffdba397c8ecab306e7bd6efd2632c34
40,476
[ -1 ]
40,477
import-declaration.lisp
psteeve_tsinco/src/nodes-elements/import-declaration.lisp
(defclass import-declaration (statement) ((kind :initarg :kind :initform :import-declaration :reader kind) (import-clause :initarg :import-clause :reader import-clause) (module-specifier :initarg :module-specifier :initform (error "Must supply a value for...
665
Common Lisp
.lisp
13
42.692308
85
0.678955
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
f31e5ef6428c1350f65ba029f28d34928b6f949b5a7c00c2afe933270afed4b0
40,477
[ -1 ]
40,478
interface-declaration.lisp
psteeve_tsinco/src/nodes-elements/interface-declaration.lisp
(defclass interface-declaration (declaration-statement) ((kind :initarg :kind :initform :interface-declaration :reader kind) (name :initarg :name :initform (error "Must supply a value for \"name\"") :reader name) (type-parameters :initarg :type-parameters ...
569
Common Lisp
.lisp
14
31.428571
67
0.627027
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
a7abbefec63c776c4c9ed4c6cff425b3b626e59bc2dfe4938c1de61727836d7f
40,478
[ -1 ]
40,479
variable-statement.lisp
psteeve_tsinco/src/nodes-elements/variable-statement.lisp
(defclass variable-statement (statement) ((kind :initarg :kind :initform :variable-statement :reader kind) (declaration-list :initarg :declatarion-list :initform (error "Must supply value for declaration-list.") :reader declaration-list)))
287
Common Lisp
.lisp
5
47
80
0.666667
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
ff050c6fa9d0c08046c685b11a1a48fa4c343350f2d550c1ba7f969694f70053
40,479
[ -1 ]
40,480
enum-member.lisp
psteeve_tsinco/src/nodes-elements/enum-member.lisp
(defclass enum-member (named-declaration) ((kind :initarg :kind :initform :enum-member :reader kind) (name :initarg :name :initform (error "Must supply a value for \"name\"") :reader name) (initializer :initarg :initializer :reader initializer)))
255
Common Lisp
.lisp
4
60.75
90
0.733068
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
299f4300967de6f4b5d8b0560edd8857e4bba13c9c1dec0dc1bc5b4e48c41d3e
40,480
[ -1 ]
40,481
object-literal-expression-base.lisp
psteeve_tsinco/src/nodes-elements/object-literal-expression-base.lisp
(defclass object-literal-expression-base (object-literal-element primary-expression named-declaration) ((properties :initarg :properties :initform (error "Must supply a value for \"properties\"") :reader properties))) (defmethod initialize-instance :after ((object object-literal-express...
434
Common Lisp
.lisp
7
55.428571
102
0.730047
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
36e0b8cdfff08dc79fbc7ebdcba73c7c01fb95d6d7bbaaa3098063ecfb0e00bb
40,481
[ -1 ]
40,482
binding-element.lisp
psteeve_tsinco/src/nodes-elements/binding-element.lisp
(defclass binding-element (named-declaration) ((kind :initarg :kind :initform :binding-element :reader kind) (parent :initarg :parent :initform (error "Must supply a value for parent.") :reader parent) property-name dotdot-token (name :initarg :name :initform (error "Must supply a value for name") :reader...
344
Common Lisp
.lisp
7
45.714286
95
0.738872
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
cefbbca77327cea976472c111b2b73fac5c717563eddf01dcdecfd956817264e
40,482
[ -1 ]
40,483
iteration-statement.lisp
psteeve_tsinco/src/nodes-elements/iteration-statement.lisp
(defclass iteration-statement (statement) ((statement :initarg :statement :initform (error "Must supply a value for statement.") :reader statement)))
153
Common Lisp
.lisp
2
74
109
0.773333
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
c4dc260144e0b595d279dc0395832ddf1ed4923e97b452404c7c3f8349aafb3b
40,483
[ -1 ]
40,484
syntaxkind.lisp
psteeve_tsinco/src/nodes-elements/syntaxkind.lisp
(defpackage :esinco.syntaxkind (:use :common-lisp) (:export :unknown :end-of-file-token :single-line-comment-trivia :multi-line-comment-trivia :new-line-trivia :whitespace-trivia :shebang-trivia :conflict-marker-trivia ;; Literals :numeric-literal :big-int-literal :string-litera...
7,718
Common Lisp
.lisp
354
17.782486
129
0.726122
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
1f906883a4993c31f44a69b7e72992f8d40c339779e8820cc3ad99133dc2cd5e
40,484
[ -1 ]
40,485
export-specifier.lisp
psteeve_tsinco/src/nodes-elements/export-specifier.lisp
(defclass export-speficier (named-declaration) ((kind :initarg :kind :initform :export-specifier :reader kind) (parent :initarg :parent :initform (error "Must supply a value for \"parent\"") :reader parent) (property-name :initarg :property-name :reader ...
451
Common Lisp
.lisp
12
29.25
65
0.616438
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
e0c55a4ceb2caedf17fca3318538d41f4c43b810a07437ffce8e562a00efbe02
40,485
[ -1 ]
40,486
type-alias-declaration.lisp
psteeve_tsinco/src/nodes-elements/type-alias-declaration.lisp
(defclass type-alias-declaration (declaration-statement) ((kind :initarg :kind :initform :type-alias-declaration :reader kind) (name :initarg :name :initform (error "Must supply a value for \"name\"") :reader name) type-parameters (alias-type :initarg :type ...
410
Common Lisp
.lisp
11
29.272727
67
0.619048
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
d6433333e067c52a7375773b37e503cded8177f72eb268fcaaab4a3ff5ea0679
40,486
[ -1 ]
40,487
if-statement.lisp
psteeve_tsinco/src/nodes-elements/if-statement.lisp
(defclass if-statement (statement) ((kind :initarg :kind :initform :if-statement :reader kind) (expression :initarg :expression :initform (error "Must supply value for expression") :reader expression) (then-statement :initarg :then-statement :initform (error "Must supply value for then-statement") :reader then-...
401
Common Lisp
.lisp
5
77
124
0.767677
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
eae345757d0dea6ca811754f2e380e19fa18a80358649999702bb8590de85673
40,487
[ -1 ]
40,488
module-declaration.lisp
psteeve_tsinco/src/nodes-elements/module-declaration.lisp
(defclass module-declaration (declaration-statement) ((kind :initarg :kind :initform :module-declaration :reader kind) (name :initarg :name :initform (error "Must supply a value for \"name\"") :reader name) (body :initarg :body :reader body))) (defmethod initialize-...
530
Common Lisp
.lisp
13
34.846154
72
0.658915
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
65db1aa69f30913b44c5a2e06c35ad278fd77a36163c78b0afc7ec86f6da4a08
40,488
[ -1 ]
40,489
class-like-declaration-base.lisp
psteeve_tsinco/src/nodes-elements/class-like-declaration-base.lisp
(defclass class-like-declaration-base (named-declaration) ((kind :initarg :kind :initform :class-like-declaration-base :reader kind) (name :initarg :name :reader name) (type-parameters :initarg :type-parameters :reader type-parameters) (heritage-clauses :initarg...
515
Common Lisp
.lisp
13
30.461538
67
0.629482
psteeve/tsinco
0
0
0
GPL-3.0
9/19/2024, 11:48:31 AM (Europe/Amsterdam)
b72c6b4cd83001dcc599d5b85cb4d1d7bfc4f6d5ac480f86e616f74404da30ce
40,489
[ -1 ]