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
30,172
grovel.lisp
ivankocienski_xpng/src/grovel.lisp
(flag "-I/opt/local/include") (include "png.h") (in-package #:xpng) (constant (+png-color-mask-palette+ "PNG_COLOR_MASK_PALETTE")) (constant (+png-color-mask-color+ "PNG_COLOR_MASK_COLOR")) (constant (+png-color-mask-alpha+ "PNG_COLOR_MASK_ALPHA")) (constant (+png-color-type-palette+ "PNG_COLOR_TYPE_PALETTE")...
1,318
Common Lisp
.lisp
25
51.36
74
0.711838
ivankocienski/xpng
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
7cbc5d2ac1da841ae4d08df0504569bc91876034d6657dec99cefe28e64f821d
30,172
[ -1 ]
30,173
ffi.lisp
ivankocienski_xpng/src/ffi.lisp
(in-package :xpng) (define-foreign-library libpng ;; (:unix (:or "libpng12.0.dylib" "libpng12.dylib" "libpng12.so.0")) (t (:default "libpng16"))) (use-foreign-library libpng) (defconstant +png-libpng-ver-string+ (symbol-name '|1.6.16|)) ;;; Foreign function definitio...
5,121
Common Lisp
.lisp
146
27.239726
93
0.592796
ivankocienski/xpng
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
d172e13f4fb35f6aa25b760d8a6876161e9d1aef09e26727c2c8e0fa82a7990f
30,173
[ -1 ]
30,174
common.lisp
ivankocienski_xpng/src/common.lisp
(in-package #:xpng) (defmacro with-png-struct ((var) &body body) "allocate space for PNG data structure" (let ((pointer (gensym "POINTER"))) `(let ((,var (png-create-read-struct +png-libpng-ver-string+ (null-pointer) (callback error-fn) (callback warn-fn))) (*buffer* (make-shareabl...
1,993
Common Lisp
.lisp
44
37.363636
78
0.613419
ivankocienski/xpng
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
b2169347e5743ec690bd54fd48b93cf2c22b71319543fb9d4b556d71bf333cf9
30,174
[ -1 ]
30,175
compat.lisp
ivankocienski_xpng/src/compat.lisp
(in-package #:xpng) #-(or lispworks allegro) (defun make-shareable-byte-vector (size &optional (byte-size 8)) (make-array size :element-type (list 'unsigned-byte byte-size))) (defmacro with-pointer-to-vector-data ((ptr-var vector) &body body) "Bind PTR-VAR to a foreign pointer to the data in VECTOR." (let ((ve...
905
Common Lisp
.lisp
22
33.727273
81
0.618881
ivankocienski/xpng
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
214961724c6f62b1c05930aaf55bfdc33e2b333c06968dd2cb975c4958712fa2
30,175
[ -1 ]
30,176
xpng-test.asd
ivankocienski_xpng/xpng-test.asd
;;;; -*- Mode: Lisp; -*- (asdf:defsystem :xpng-test :components ((:file "test/test")) :depends-on (#:xpng :lisp-unit))
125
Common Lisp
.asd
4
28.75
35
0.605042
ivankocienski/xpng
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
d38e98b71bed052bdaa9e407fcb6fa02f8f4e5ca33b795d2080597833d73bc9a
30,176
[ -1 ]
30,177
xpng.asd
ivankocienski_xpng/xpng.asd
;;;; -*- Mode: Lisp; -*- (in-package #:cl-user) (eval-when (:load-toplevel :execute) (asdf:operate 'asdf:load-op '#:cffi-grovel)) (asdf:defsystem #:xpng :description "Read PNG (Portable Network Graphics) files." :depends-on (#:cffi) :serial T :components ((:file "src/package") (cffi-grovel:grovel-f...
801
Common Lisp
.asd
25
27.52
60
0.623377
ivankocienski/xpng
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
9ee70f8b8b1fca2fb85bb48cc9b652882bea70f89426063029912f31ffb4ecdb
30,177
[ -1 ]
30,190
index.html
ivankocienski_xpng/doc/index.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <HTML> <HEAD> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE>CL-PNG</TITLE> <style type="text/css"> body { } hr { color: #000; background-color: #000; height: 1px; } div.narrow { max-...
28,833
Common Lisp
.l
445
63.029213
5,828
0.684918
ivankocienski/xpng
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
74ab71d2ee611d730016fdcaa3331b37a27da2c63aa9837e370ce33502e368ad
30,190
[ -1 ]
30,205
flexichain-package.lisp
hpan-open_flexichain-mirror/flexichain-package.lisp
;;; Flexichain ;;; Package definition ;;; ;;; Copyright (C) 2003-2004 Robert Strandh (strandh@labri.fr) ;;; Copyright (C) 2003-2004 Matthieu Villeneuve (matthieu.villeneuve@free.fr) ;;; ;;; THIS LIBRARY IS FREE software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser General Public ;;;...
1,896
Common Lisp
.lisp
40
41.25
78
0.666487
hpan-open/flexichain-mirror
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
77d4083b6cd91ef9f170337fcd4a2c78d7f7350bfa67b73ae62047b71e2e3876
30,205
[ 274747 ]
30,206
flexichain.lisp
hpan-open_flexichain-mirror/flexichain.lisp
;;; Flexichain ;;; Flexichain data structure definition ;;; ;;; Copyright (C) 2003-2004 Robert Strandh (strandh@labri.fr) ;;; Copyright (C) 2003-2004 Matthieu Villeneuve (matthieu.villeneuve@free.fr) ;;; ;;; This library is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser ...
24,554
Common Lisp
.lisp
500
40.666
90
0.635553
hpan-open/flexichain-mirror
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
90ee65cf0230505ba1d862bcce607c78c975a996f27d847231fa58ef8d35f622
30,206
[ 269124 ]
30,209
flexicursor.lisp
hpan-open_flexichain-mirror/flexicursor.lisp
;;; Flexichain ;;; Flexicursor data structure definition ;;; ;;; Copyright (C) 2003-2004 Robert Strandh (strandh@labri.fr) ;;; Copyright (C) 2003-2004 Matthieu Villeneuve (matthieu.villeneuve@free.fr) ;;; ;;; This library is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser...
9,817
Common Lisp
.lisp
207
40.521739
86
0.668409
hpan-open/flexichain-mirror
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
399445eb22891f7ada07c8fe83b7d17c5e428c94deb9ce28bf93b1a37df7c609
30,209
[ 413774 ]
30,210
flexichain-doc.asd
hpan-open_flexichain-mirror/flexichain-doc.asd
;;; flexichain-doc ;;; ASDF system definition ;;; ;;; Copyright (C) 2003-2004 Robert Strandh (strandh@labri.fr) ;;; Copyright (C) 2003-2004 Matthieu Villeneuve (matthieu.villeneuve@free.fr) ;;; Copyright (C) 2008 Cyrus Harmon (ch-lisp@bobobeach.com) ;;; ;;; This library is free software; you can redistribute it...
1,791
Common Lisp
.asd
37
42.783784
78
0.673516
hpan-open/flexichain-mirror
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
f24fe6bfb37c7576583f3f45ed50ad227225d2f7d62213cf6bfc8e41779aab13
30,210
[ 201840 ]
30,211
flexichain.asd
hpan-open_flexichain-mirror/flexichain.asd
;;; Flexichain ;;; ASDF system definition ;;; ;;; Copyright (C) 2003-2004 Robert Strandh (strandh@labri.fr) ;;; Copyright (C) 2003-2004 Matthieu Villeneuve (matthieu.villeneuve@free.fr) ;;; ;;; This library is free software; you can redistribute it and/or ;;; modify it under the terms of the GNU Lesser General Public...
1,676
Common Lisp
.asd
33
46.30303
82
0.695917
hpan-open/flexichain-mirror
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
4e88be2e1559020a63993aae712f6396e00af544aeb7a5c6d9051f826e757d46
30,211
[ 98005 ]
30,220
Makefile
hpan-open_flexichain-mirror/Doc/Makefile
NAME=flexichain TEXFILES=$(NAME).tex $(shell ./tex-dependencies $(NAME).tex) PSTEX_T=$(shell ./strip-dependence inputfig $(TEXFILES)) VERBATIM=$(shell ./strip-dependence verbatimtabinput $(TEXFILES)) PSTEX=$(subst .pstex_t,.pstex,$(PSTEX_T)) all : $(NAME).ps $(NAME).pdf %.pstex: %.fig fig2dev -Lpstex -m 0.75 $< $@...
766
Common Lisp
.l
25
28.76
69
0.639726
hpan-open/flexichain-mirror
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
ace5898e66ec26e77db0acdf525f3095f6e4ca944c8ed04e51d19efc2278d8da
30,220
[ -1 ]
30,222
flexichain.tex
hpan-open_flexichain-mirror/Doc/flexichain.tex
\documentclass[11pt]{article} \usepackage[T1]{fontenc} \usepackage{alltt} \usepackage{moreverb} \usepackage{epsfig} \usepackage{makeidx} \usepackage{changebar} \setlength{\parskip}{0.3cm} \setlength{\parindent}{0cm} \def\inputfig#1{\input #1} \def\inputtex#1{\input #1} \input spec-macros.tex \makeindex \begin{docum...
29,428
Common Lisp
.l
537
53.333333
77
0.790607
hpan-open/flexichain-mirror
0
0
0
LGPL-2.1
9/19/2024, 11:38:46 AM (Europe/Amsterdam)
910e725cdca18db4eb76f8a479e5ecbfa438ed75e366f774b5a9fd57a5e89f36
30,222
[ -1 ]
30,237
spider.lisp
hutenajey_shareLisp/spider.lisp
(ql:quickload :drakma) (ql:quickload :cl-ppcre) (ql:quickload :closure-html) (ql:quickload :cxml-stp) (defun sliver (page) (handler-case (drakma:http-request page :connection-timeout 5) (condition nil))) (defun picklinks (content) (let ((result (list "result"))) (when (not (null content)) (stp:do-re...
1,868
Common Lisp
.lisp
58
27.431034
75
0.618009
hutenajey/shareLisp
0
0
0
GPL-2.0
9/19/2024, 11:38:54 AM (Europe/Amsterdam)
f799f98e4098ab5e6097689f997bf9abfcaddc7bd9096c9af2bb510a61aa71e6
30,237
[ -1 ]
30,254
projeto.lisp
Drowze_lisp-phonelist/projeto.lisp
(defun incluir (agenda lista) (cond ((equal agenda 'nil) (reverse (cons lista agenda)) );caso agenda esteja vazia ((equal (car(car agenda)) (car lista)) (cond ((comp_num (cdr(car agenda)) (cdr lista)) agenda );caso comparar numero retornar true retorna a agenda ('t (cons (concatenate 'c...
2,744
Common Lisp
.lisp
88
27.931818
120
0.657078
Drowze/lisp-phonelist
0
0
0
GPL-2.0
9/19/2024, 11:39:03 AM (Europe/Amsterdam)
b13668924053e6be1f1d98217d5d8d015055c3fed623bf2acbdd801fc72ccc4b
30,254
[ -1 ]
30,271
package.lisp
humbhenri_pb/package.lisp
;;;; package.lisp (defpackage #:pb (:use #:cl) (:export :progress-bar :pb-inc :pb-finish))
97
Common Lisp
.lisp
4
21.75
45
0.637363
humbhenri/pb
0
0
0
GPL-2.0
9/19/2024, 11:39:03 AM (Europe/Amsterdam)
1e19172358fae04e0640218cf79356e867d43c1bc5cd0ae77a905ed58bd0ab0a
30,271
[ -1 ]
30,272
pb.lisp
humbhenri_pb/pb.lisp
;;;; pb.lisp (in-package #:pb) (defclass progress-bar () ((count :initarg :count :initform 1 :reader pb-count) (total :initarg :total :initform (error "Must inform a total value") :reader pb-total) (width :initarg :width :initform 10 :reader width))) (defmethod pb-inc ((pb...
753
Common Lisp
.lisp
28
22.5
67
0.590846
humbhenri/pb
0
0
0
GPL-2.0
9/19/2024, 11:39:03 AM (Europe/Amsterdam)
72f72d85766f72bf31582e486ba54bc4ec4cce57f075ccf6426201e1749fd282
30,272
[ -1 ]
30,273
pb.asd
humbhenri_pb/pb.asd
;;;; pb.asd (asdf:defsystem #:pb :description "Simple command line progress bar" :author "Humberto Henrique <humbhenri.name@gmail.com>" :license "GPL" :serial t :components ((:file "package") (:file "pb")))
234
Common Lisp
.asd
8
24.875
56
0.651786
humbhenri/pb
0
0
0
GPL-2.0
9/19/2024, 11:39:03 AM (Europe/Amsterdam)
480d8725bc44014848c729bde668d46e304d8a33f5945ea7cb3dc243f9d758d1
30,273
[ -1 ]
30,291
dns_with_openvpn.lisp
Michael-S_dns_for_openvpn/dns_with_openvpn.lisp
; Copyright 2015 Mike Swierczek ; This program is free software: you can redistribute it and/or modify ; it under the terms of the GNU General Public License as published by ; the Free Software Foundation, either version 3 of the License, or ; (at your option) any later version. ; This program is distributed i...
5,963
Common Lisp
.lisp
128
39.757813
116
0.652974
Michael-S/dns_for_openvpn
0
1
0
GPL-3.0
9/19/2024, 11:39:03 AM (Europe/Amsterdam)
6f7f2f6b1492c47eb1545ab4d5438ab01d1d5a74fa64b4aebb50fc1268656550
30,291
[ -1 ]
30,309
factorial.lsp
tusharwalzade216_lisp/factorial.lsp
(defun factorial (n) (if (= n 0) 1 (* n (factorial (- n 1))) ) ) (loop for i from 0 to 16 do (format t "~D! = ~D~%" i (factorial i)) ) ;;; ~D corresponds to printing an integer, and ~% is end-of-line.
221
Common Lisp
.l
7
27.714286
66
0.54717
tusharwalzade216/lisp
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
9eb0476d273660f11c11fe68ed3a45330e84857dc2ac7c26544124db8bdda0fb
30,309
[ -1 ]
30,310
sum.lsp
tusharwalzade216_lisp/sum.lsp
(loop for n from 1 to 1000 when (or (eq (mod n 5) 0) (eq (mod n 3) 0)) (sum n)))
105
Common Lisp
.l
5
15.2
32
0.45
tusharwalzade216/lisp
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
0553b9abb37b229695848a7113ff415237e3326badf7edd5df42db4b19fd73bd
30,310
[ -1 ]
30,311
multiplication_table.lsp
tusharwalzade216_lisp/multiplication_table.lsp
(defun mult_table(a) (dotimes (n 11) (print n) (prin1(* n a))))
66
Common Lisp
.l
3
20.333333
27
0.603175
tusharwalzade216/lisp
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
71ba2bacf10684dfb2be692aa65bf1ef970849927a2f1a50c7db245ba0ad85d1
30,311
[ -1 ]
30,312
is_prime.lsp
tusharwalzade216_lisp/is_prime.lsp
(defun is-prime (n &optional (d (- n 1))) (or (= d 1) (and (/= (rem n d) 0) (is-prime n (- d 1))))) #| (def is-prime (x) (if (is x 2) t (or (< x 2) (is (mod x 2) 0)) nil (check-prime x))) (def check-prime (x) (with (return t i 3 limi...
468
Common Lisp
.l
18
18.222222
62
0.395089
tusharwalzade216/lisp
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
436263eda915d84771d380b27118ecda8807b156ec625d9b2043fdb7da61110e
30,312
[ -1 ]
30,331
ch1.lisp
whitelilis_eopl-questions/ch1.lisp
;;; 1.7 The error message from nth-element is uninformative. Rewrite nth-element so that it produces a more informative error message, such as "a b c does not have 8 elements" (defun report-error (msg) (format t "~a" msg)) (defun nth-element (lst n) (defun nth-helper (_lst _n _lst_raw _n_raw) (if (null _lst) ...
1,454
Common Lisp
.lisp
24
54.541667
234
0.668076
whitelilis/eopl-questions
0
0
0
LGPL-3.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
030283a172f203150a8e8a680007643dc4e10e2c4a2a0593866b4734c08835c1
30,331
[ -1 ]
30,348
generic-data-structures.asdf
Lifelovinglight_generic-data-structures/generic-data-structures.asdf
(defsystem "generic-data-structures" :description "A library containing generic data structures." :version "0.1.0" :author "Victor Fors <krakow89@gmail.com>" :licence "GPL3" :
186
Common Lisp
.asd
6
28.333333
62
0.738889
Lifelovinglight/generic-data-structures
0
0
0
GPL-3.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
3520c93acc64038fbd8c2ddbc22381ea9db461a9c91494a7f4d1c712c15a374e
30,348
[ -1 ]
30,349
quad-tree.cl
Lifelovinglight_generic-data-structures/quad-tree.cl
;;;; Copyright 2015 Victor Fors <krakow89@gmail.com> ;;;; This program is free software: you can redistribute it and/or modify ;;;; it under the terms of the GNU General Public License as published by ;;;; the Free Software Foundation, either version 3 of the License, or ;;;; (at your option) any later version. ;;;; ...
5,401
Common Lisp
.cl
163
25.944785
74
0.568721
Lifelovinglight/generic-data-structures
0
0
0
GPL-3.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
fd4fd6a8da23ee4acec777d8b42f6f958e842f5c58c4ba598a2d8f61e11cdb5e
30,349
[ -1 ]
30,350
fixnum-math.cl
Lifelovinglight_generic-data-structures/fixnum-math.cl
(defpackage :fixnum-math (:use :common-lisp) (:export :pow :sub :add :sum :mul :inc :dec) (:documentation "A collection of fixed-arity fixnum-only math functions for use in certain highly optimized data structures.")) (in-package :fixnum-math) (declaim (optimize (compilation-sp...
1,524
Common Lisp
.cl
65
20.030769
129
0.604716
Lifelovinglight/generic-data-structures
0
0
0
GPL-3.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
5697d46c5251c6dd440b18b0bf6b8509d1323f98a34a3828f6ce2fe0a0feb436
30,350
[ -1 ]
30,351
simple-xml.cl
Lifelovinglight_generic-data-structures/simple-xml.cl
(defpackage :simple-xml (:use :common-lisp) (:export :parse-xml :tokenize-xml)) (in-package :simple-xml) (locally (declaim (optimize (speed 3) (space 2) (safety 2) (debug 1) (compilation-speed 0))) (declaim (ftype (function (list list) list) parse-xml)) (defun...
6,250
Common Lisp
.cl
160
34.15625
88
0.641513
Lifelovinglight/generic-data-structures
0
0
0
GPL-3.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
2c6f3716ff1672bae30bbd843194b3c374e1baa2f98df8f27fa3acb5c5716988
30,351
[ -1 ]
30,352
circular-buffer.cl
Lifelovinglight_generic-data-structures/circular-buffer.cl
(defpackage :circular-buffer (:use :common-lisp) (:export :circular-buffer :make-circular-buffer :circular-buffer-push :circular-buffer-pop :circular-buffer-resize) (:documentation "A module implementing a circular buffer.")) (in-package :circular-buffer) (defclass circular-buffer () ((circula...
2,560
Common Lisp
.cl
57
40.614035
85
0.715261
Lifelovinglight/generic-data-structures
0
0
0
GPL-3.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
dd3fc7aa8b7b8ae6c6148172b946b82bf1c41e7975fb620938d4266502d9e6aa
30,352
[ -1 ]
30,353
queue.cl
Lifelovinglight_generic-data-structures/queue.cl
(defpackage :queue (:use :common-lisp) (:export :queue :queue-data :queue-rear :enqueue :dequeue) (:documentation "A queue implementation.")) (in-package :queue) (defclass queue () ((queue-data :initform nil :initarg :data :accessor queue-data :type list :documentation "The...
1,004
Common Lisp
.cl
33
26.818182
66
0.692946
Lifelovinglight/generic-data-structures
0
0
0
GPL-3.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
78ab0570c41ac0ba5013e993e41b3a061fac1f3080815e753791ec24416e75a1
30,353
[ -1 ]
30,374
package.lisp
leongithub_work-utils/package.lisp
;;;; package.lisp (defpackage #:work-utils (:use #:cl #:com.gigamonkeys.pathnames) (:shadow :walk-directory) (:export :compute-all :compute-sub-max-min :add-comment-for-strxml :remove-comment-for-strxml :find-out-lack-strings :copy-string-from-res1-to-res2 :delete-unuse-resource :find...
340
Common Lisp
.lisp
12
24.333333
41
0.699387
leongithub/work-utils
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
7e8dbb7adb11cdd5fa6556f56996d311539599139e4f9dff6e561b04b2421749
30,374
[ -1 ]
30,375
find-out-lack-strings.lisp
leongithub_work-utils/find-out-lack-strings.lisp
;;;; 由于说高通原生对小语种支持缺失,如:values/strings.xml 有 <string name="a">a</string>,而values-fi/strings.xml 没有此字段。 ;;;; 此代码寻找出缺失的字符串 (in-package #:work-utils) (defparameter *base-strings* "values") (defparameter *compare-strings-list* (list "values-ca" "values-ca-rES" "values-cs" "values-cs-rCZ" "values-da" "values-da-rDK" "val...
3,680
Common Lisp
.lisp
79
40.696203
661
0.654131
leongithub/work-utils
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
8ff8602ef2dc79070ad742869bd8c0a75a8409fde9c4119e2a71c56e2af72c4c
30,375
[ -1 ]
30,376
delete-unuse-resource.lisp
leongithub_work-utils/delete-unuse-resource.lisp
;;;; 最近对项目中的无用资源(主要图片和xml文件)进行清理 ;;;; 用法: ;;;; (delete-unuse-resource "path-to-project") ;;;; (delete-unuse-resource "path-to-project" '(other-path-to-search)) (in-package #:work-utils) (defun delete-unuse-resource (project-pathname &optional search-project-lst) "删除 Android 项目中的无用资源" (pushnew project-pathname sea...
2,565
Common Lisp
.lisp
53
33.867925
88
0.559673
leongithub/work-utils
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
25d4478f5922640d6c36caa5e9219f3ac46d0d629ca470885c870b3da0eb424f
30,376
[ -1 ]
30,377
work-utils.lisp
leongithub_work-utils/work-utils.lisp
;;;; work-utils.lisp (in-package #:work-utils) ;;; "work-utils" goes here. Hacks and glory await! (defconstant +buffer-size+ 8192) (defun read-file (filespec) "Helper function to read from file into a buffer of character, which is returned." (with-open-file (in filespec :direction :input :if-doe...
1,988
Common Lisp
.lisp
46
36.782609
86
0.670043
leongithub/work-utils
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
7c2cf05631664621c0b017e4f7720fc9d816c1d224ffb455f9fd67b901be6076
30,377
[ -1 ]
30,378
copy-string-from-res1-to-res2.lisp
leongithub_work-utils/copy-string-from-res1-to-res2.lisp
;; 由于其他应用中有字段:<string name="test">test</string> ;; 我想移到我的应用,但是res目录下的values*目录好多,所以此程式诞生 ;; (copy-string-from-res1-to-res2 "path/res/" "path/res/" "name") (in-package #:work-utils) (defun copy-string-from-res1-to-res2 (dir-res1 dir-res2 names &optional deletep) (let ((name-regex (create-scanner names))) (walk-...
2,266
Common Lisp
.lisp
67
26.880597
80
0.593292
leongithub/work-utils
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
71510f617034bc6da2abfd9841e9c4d258d1e06e63098137a146fc988d11d121
30,378
[ -1 ]
30,379
find-out-new-strings.lisp
leongithub_work-utils/find-out-new-strings.lisp
;;;; 要求找出现在的工程与原生工程之间,新增加的字符串 ;;; 把原生文件中的字符串加载到 hash-table 中,然后循环目前工程中的文件, ;;; 找出新增的(目前只比较 name 是否相同) (in-package #:work-utils) (defun find-out-new-strings (old-res new-res values-lst out-dir) "old-res,旧的工程 res 目录。new-res,新的工程 res 目录。values-lst,values-* 目录列表。out-dir,结果输出目录" (dolist (dir-values values-lst 'done) ...
2,791
Common Lisp
.lisp
73
29.739726
83
0.649372
leongithub/work-utils
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
2fde2b4a6611c9b7234dd1fd7fcb5bf064d18194e41dc018ab29348268422311
30,379
[ -1 ]
30,380
add-comment-to-duplicate-strings.lisp
leongithub_work-utils/add-comment-to-duplicate-strings.lisp
;;;; 用来批量替换文件中的字符串 ;; 应用场景:在看Android源码的时候,发现values-*/strings.xml有很多 ;; <string name="account_phone" product="tablet">Tablet-only, unsynced</string> ;; <string name="account_phone" product="default">Phone-only, unsynced</string> ;; ;; <string name="fail_reason_too_many_vcard" product="nosdcard">Too many vCard files are...
4,690
Common Lisp
.lisp
123
28.065041
113
0.641006
leongithub/work-utils
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
05474a1846f1b4562cde7898fbb12b92cc1b2907981e65ad34e3aa7e7d979761
30,380
[ -1 ]
30,381
compute-number.lisp
leongithub_work-utils/compute-number.lisp
;;;; 需求: ;;;; 由于公司网页表格里有很多这样的数据:1+2+3+2+4 ;;;; 最后要求去掉最大最小,然后算平均值,最后两个平均值按照a*8+b*2计算得除结果。 ;;;; 应该有的计算器会支持,但还是练习下cl吧:) ;;;; 解决大概步骤: ;;;; 1.先把1+2+3去掉+("123"),然后转换成list(#\1 #\2 #\3),再转换成数字列表(1 2 3) ;;;; 2.套用a*8+b*2计算 (in-package #:work-utils) ;; 现在出现打分数据较少,就不减去最高最低的值了 (defun compute-all () (read-data-for-compute t)) ...
1,732
Common Lisp
.lisp
52
24.211538
63
0.614938
leongithub/work-utils
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
87196c289c9ee0bf91c01030886a011703f922b3732945a75a03771397bf75c8
30,381
[ -1 ]
30,382
work-utils.asd
leongithub_work-utils/work-utils.asd
;;;; work-utils.asd (asdf:defsystem #:work-utils :description "Describe work-utils here" :author "Your Name <your.name@example.com>" :license "Specify license here" :depends-on (#:cl-ppcre #:com.gigamonkeys.pathnames) :serial t :components ((:file "package") (:file "work-utils") (:fi...
618
Common Lisp
.asd
17
32.294118
69
0.66778
leongithub/work-utils
0
0
0
GPL-2.0
9/19/2024, 11:39:15 AM (Europe/Amsterdam)
2ba91b16ddcc39d3f83dd22d286fcde8510725d4e903123b482508e7c319f7b6
30,382
[ -1 ]
30,407
parse-uri.lisp
firaja_lisp-uri-parser/parse-uri.lisp
;;;; Bertoldi David 735213 ;;;; Garasi Gabriele Francesco 735964 ;;;; ----- LISP URI PARSER ----- ;;; A Common Lisp Library that builds structures ;;; that rappresents URI from strings ;;; The library accepts 6 types of URI ;;; if any part of the syntax results wrong ;;; it will be generated an error message ;; st...
14,178
Common Lisp
.lisp
330
30.145455
77
0.474549
firaja/lisp-uri-parser
0
0
0
GPL-2.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
dac10090a3c0e550007e3215c5716ac2790d8f207e621e6f7e667081073dbf85
30,407
[ -1 ]
30,424
model.lisp
johncorn271828_X_Orrery/model.lisp
#| This is the top-level file for the state logic, ie non-IO code. |# ;;;Physics and astronomy code ;;All these two lines do is suppress meaningless compiler warnings. (defgeneric objects (m)) ;Geodesic following code wants to be able to see a list of massive objects. (defgeneric player (s)) (defgeneric v (p)) ;To a...
8,667
Common Lisp
.lisp
224
29.910714
113
0.571683
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
5bdc76998a2c7a03e66ece06e64b53b83ab9aa924a3e616ae25f303605694415
30,424
[ -1 ]
30,425
audio.lisp
johncorn271828_X_Orrery/audio.lisp
#| This file contains code to spawn threads for audio events, including music. Not tested on windows. |# ;;See the cl-openal github for info about how this works. (defun wav-thread (file-name &optional (x 0.0) (y 0.0) (z 0.0)) (let ((data nil) (format nil) (stereop nil) (bytes-per-sample) (size nil) (frequency ...
2,194
Common Lisp
.lisp
61
29.229508
117
0.613787
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
e0b0566b0227298bb3b83d90b539dc97ddc6fd4e89b7cfd9fb44fa07815b57a8
30,425
[ -1 ]
30,426
displaylistpopulator.lisp
johncorn271828_X_Orrery/displaylistpopulator.lisp
#| Using GL's display lists allows better performance. |# (defgeneric populate-display-lists (w)) (defmethod populate-display-lists ((w X_Orrery-gui)) (let ((sphere-ring-count 100)) ;;generate display lists. ;;currently starfield sun, 8 planets, 2 satellites, player (setf (draw-list w) (gl:gen-list...
9,624
Common Lisp
.lisp
223
37.426009
88
0.63412
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
c5f067d7bf57d200cecb8a440036922fbfe1f1e9344616400135d6874e51e666
30,426
[ -1 ]
30,427
mathphysics.lisp
johncorn271828_X_Orrery/mathphysics.lisp
#| This has some useful math and physics code I wrote for simulating the solar system and changing reference frames. |# ;;;Vector math ;;Rotate the space components of the 4-vector 4vect around the axis specified by the 4-vector n by angle theta. ;;See http://inside.mines.edu/fs_home/gmurray/ArbitraryAxisRotation/ (de...
5,192
Common Lisp
.lisp
116
38.586207
112
0.559827
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
9a6119d94f490f7856002bbbba04f89af3148cb42c6196497675f735d20b7c96
30,427
[ -1 ]
30,428
hud.lisp
johncorn271828_X_Orrery/hud.lisp
#| For drawing a heads-up display. |# (defun princ-to-screen (thing x y) (gl:color 1 1 1) (let* ((str (princ-to-string thing))) (loop for i from 0 to (- (length str) 1) do (gl:window-pos (+ x (* i 9)) y 0) (glut:bitmap-character glut:+bitmap-9-by-15+ (char-code (aref str i)))))) (defgeneric draw-hud (w))...
2,708
Common Lisp
.lisp
79
27.949367
93
0.5659
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
0c1fa9f673dc944f669c754deadf3ed36329dffca361ff829df5aaf34e52684f
30,428
[ -1 ]
30,429
renderer.lisp
johncorn271828_X_Orrery/renderer.lisp
#| This file contains the code that draws objects, mostly by calling GL display lists and textures as specified in displaylistpopulator.lisp and textureloader.lisp. Todo: Refactor huge cond black into a single statement with a display-attribute-wrapper object for each renderable (or something like that). |# ;;;Render...
9,114
Common Lisp
.lisp
215
34.874419
95
0.579321
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
9ba4c362526dd91d2a3808dbc69652e79e609ba9e829be6e840f16be0eb5ee43
30,429
[ -1 ]
30,430
setup.lisp
johncorn271828_X_Orrery/setup.lisp
(defpackage #:ql-setup (:use #:cl) (:export #:*quicklisp-home* #:qmerge #:qenough)) (in-package #:ql-setup) (unless *load-truename* (error "This file must be LOADed to set up quicklisp.")) (defvar *quicklisp-home* (make-pathname :name nil :type nil :defaults *load-truen...
5,054
Common Lisp
.lisp
117
33.675214
80
0.606424
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
e203985f574ac2c660686fdd6ab8a58ab19f01437782315e48fe93586411c283
30,430
[ 447781, 456618 ]
30,431
view.lisp
johncorn271828_X_Orrery/view.lisp
#| This is the top level output-handling file. Given the state of the opengl-cl documentation, it is difficult to better explain what some of this code does without lots more research (to be completed). |# ;;;Audio commented out until cross-platform testing. (load "audio.lisp") ;;;This is the gui class and the displa...
4,110
Common Lisp
.lisp
96
39.28125
112
0.691401
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
b492887dd9c00a2d86577710f336279506a8db57a06444ba57410bd91eb2ba16
30,431
[ -1 ]
30,432
utilities.lisp
johncorn271828_X_Orrery/utilities.lisp
#| This file has a few general-use functions. |# ;;for purposes of immutability, this function produces a copy of an object with optional changed slots. ;;see http://stackoverflow.com/questions/11067899/is-there-a-generic-method-for-cloning-clos-objects (defgeneric copy-instance (object &rest initargs &key &allow-othe...
1,258
Common Lisp
.lisp
33
34.484848
103
0.696473
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
7a553ee617d6aba77eabecf073ed3969735a9b8249c4d040b008ad50494c6516
30,432
[ -1 ]
30,433
textureloader.lisp
johncorn271828_X_Orrery/textureloader.lisp
#| Without calling image processing libraries, you can read .rgb files into OpenGL's texture memory. |# (defgeneric load-textures (w)) (defmethod load-textures ((w X_Orrery-gui)) ;;tell gl to start a list of N textures (setf (textures w) (gl:gen-textures 30)) (let ((texture-file-stream) (texture-file-data))...
7,266
Common Lisp
.lisp
115
57.913043
116
0.71622
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
2d4c7b18f46f5abd225da95e81064f1cb6c321667608341e597e94493c2a819c
30,433
[ -1 ]
30,435
meshloader.lisp
johncorn271828_X_Orrery/meshloader.lisp
#| This file loads meshes from .obj files for populating the gl display lists. |# ;;this class keeps track of the vector, texture, normal indices of a polygon face as in a .obj file (defclass face-indexer () ((vertex-indices :accessor vertex-indices :initform (make-array 0 :fill-pointer 0 :adjustable t)) (textur...
3,019
Common Lisp
.lisp
59
45.745763
104
0.684727
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
edc88339a06cf597f2d0ad2fa2fbd469ef9428a65b413024338304e7dd66d5f0
30,435
[ -1 ]
30,436
controller.lisp
johncorn271828_X_Orrery/controller.lisp
#| This file handles keyboard and mouse inputs using glut. To allow more nuanced controls, some state logic is passed from one instance of a controller object to the next. I'm not sure whether these variables should be part of the model object. |# ;;;Controller object for maintaining duration of key presses, mouse pos...
6,538
Common Lisp
.lisp
135
44.42963
107
0.664842
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
bf1cb0a1a909488b2537b6b923d7d6b8dfec144df22999665eafa3396c997817
30,436
[ -1 ]
30,437
astrometry.lisp
johncorn271828_X_Orrery/astrometry.lisp
#| Some useful solar system measurements. |# ;;;Approximate constants for solar system astrometry. Units are kilograms, light-seconds for lengths, seconds for time. (defconstant sun-mass 1.989e30) (defconstant sun-radius 2.321) (defconstant mercury-mass 3.285e23) (defconstant mercury-radius 0.008138) (defconstant merc...
2,233
Common Lisp
.lisp
54
40.333333
119
0.825069
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
e9e7e319f5e27907887447af51bdb4c71187f3cddf4506e6493692f239f9a755
30,437
[ -1 ]
30,438
X_Orrery.lisp
johncorn271828_X_Orrery/X_Orrery.lisp
#| This is the main file for the X_Orrery prototype, a solar system simulator and planetarium application. This is basically my playground from teaching myself OpenGL. I have attempted to design this with the most vanilla possible main loop, and being purely functional when the libraries let me. Also, not being too ...
3,681
Common Lisp
.lisp
89
39.089888
94
0.748244
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
fe91d6282b2756747ea1bbc69e36cb2870065cf7fcef8ece030cdae20d27dc88
30,438
[ -1 ]
30,439
impl-util.lisp
johncorn271828_X_Orrery/quicklisp/impl-util.lisp
;;;; impl-util.lisp (in-package #:ql-impl-util) (definterface call-with-quiet-compilation (fun) (:documentation "Call FUN with warnings, style-warnings, and other verbose messages suppressed.") (:implementation t (let ((*load-verbose* nil) (*compile-verbose* nil) (*load-print* nil) ...
11,147
Common Lisp
.lisp
285
33.214035
80
0.677777
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
f5b5cd56a588431d6ad4568555e11866e0a17fe7fd007a33295fe9bbdf9c5f1f
30,439
[ -1 ]
30,440
package.lisp
johncorn271828_X_Orrery/quicklisp/package.lisp
;;;; package.lisp (defpackage #:ql-util (:documentation "Utility functions used in various places.") (:use #:cl) (:export #:write-line-to-file #:without-prompting #:press-enter-to-continue #:replace-file #:copy-file #:delete-file-if-exists #:en...
9,088
Common Lisp
.lisp
318
19.58805
71
0.551634
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
36e044603fd74b8f2537cf10fb37cff6b1d08c37774fd13ace0dc2f8a16aea2f
30,440
[ 266698 ]
30,441
http.lisp
johncorn271828_X_Orrery/quicklisp/http.lisp
;;; ;;; A simple HTTP client ;;; (in-package #:ql-http) ;;; Octet data (deftype octet () '(unsigned-byte 8)) (defun make-octet-vector (size) (make-array size :element-type 'octet :initial-element 0)) (defun octet-vector (&rest octets) (make-array (length octets) :element-type 'octet ...
26,922
Common Lisp
.lisp
736
26.244565
80
0.540691
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
1640b9a9ee90de627cb5c158d260001e4c1e2a6f416f925f0d5ff90d43ab4118
30,441
[ 322153 ]
30,442
setup.lisp
johncorn271828_X_Orrery/quicklisp/setup.lisp
(in-package #:quicklisp) (defun show-wrapped-list (words &key (indent 4) (margin 60)) (let ((*print-right-margin* margin) (*print-pretty* t) (*print-escape* nil) (prefix (make-string indent :initial-element #\Space))) (pprint-logical-block (nil words :per-line-prefix prefix) (pprint-fill ...
9,973
Common Lisp
.lisp
228
32.548246
79
0.575776
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
45b796a52c53a0795a287c4b00b98829201d5d5069e3e414a6b7c1b8b6cba3d9
30,442
[ 344998 ]
30,444
utils.lisp
johncorn271828_X_Orrery/quicklisp/utils.lisp
;;;; utils.lisp (in-package #:ql-util) (defun write-line-to-file (string file) (with-open-file (stream file :direction :output :if-exists :supersede) (write-line string stream))) (defvar *do-not-prompt* nil "When *DO-NOT-PROMPT* is true, PRESS-ENTER-TO-CONT...
4,061
Common Lisp
.lisp
108
28.564815
76
0.572771
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
36f80b773bd0162b978aa9a9b67ff19133fc75db4553357f9db55eccde189143
30,444
[ 306785, 348595 ]
30,446
dist.lisp
johncorn271828_X_Orrery/quicklisp/dist.lisp
;;;; dist.lisp (in-package #:ql-dist) ;;; Generic functions (defgeneric dist (object) (:documentation "Return the dist of OBJECT.")) (defgeneric available-versions (object) (:documentation "Return a list of version information for OBJECT.")) (defgeneric system-index-url (object) (:documentation "Re...
38,116
Common Lisp
.lisp
975
31.792821
118
0.649149
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
17ba2b6a39ee22400de92f38e329cde2452618261656c8d0b5a4e595809f11b8
30,446
[ -1 ]
30,448
bundle-template.lisp
johncorn271828_X_Orrery/quicklisp/bundle-template.lisp
(cl:in-package #:cl-user) (eval-when (:compile-toplevel :load-toplevel :execute) (require "asdf") (unless (find-package '#:asdf) (error "ASDF could not be required"))) (let ((indicator '#:ql-bundle-v1) (searcher-name '#:ql-bundle-searcher) (base (make-pathname :name nil :type nil ...
6,220
Common Lisp
.lisp
135
29.696296
80
0.496542
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
7e3ed1c351403ea480a3bea4637a0ee4b24c9db8ada39b8393e251bb1946cd11
30,448
[ 150924 ]
30,449
client.lisp
johncorn271828_X_Orrery/quicklisp/client.lisp
;;;; client.lisp (in-package #:quicklisp-client) (defvar *quickload-verbose* nil "When NIL, show terse output when quickloading a system. Otherwise, show normal compile and load output.") (defvar *quickload-prompt* nil "When NIL, quickload systems without prompting for enter to continue, otherwise proceed di...
5,006
Common Lisp
.lisp
114
35.157895
84
0.619487
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
6cabecd91e7fc16aed2126f4140c6fb5c6f7760b96f56c483f22916da1dfde8c
30,449
[ 37957, 143155 ]
30,450
impl.lisp
johncorn271828_X_Orrery/quicklisp/impl.lisp
(in-package #:ql-impl) (eval-when (:compile-toplevel :load-toplevel :execute) (defun error-unimplemented (&rest args) (declare (ignore args)) (error "Not implemented"))) (defvar *interfaces* (make-hash-table) "A table of defined interfaces and their documentation.") (defun show-interfaces () "Display i...
9,763
Common Lisp
.lisp
258
27.748062
78
0.566899
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
d43b62abd3820074d35bbaadd9e1c5f7a1c98f5b54e06df7754cc972876c4764
30,450
[ -1 ]
30,454
bundle.lisp
johncorn271828_X_Orrery/quicklisp/bundle.lisp
;;;; bundle.lisp (in-package #:ql-bundle) ;;; Bundling is taking a set of Quicklisp-provided systems and ;;; creating a directory structure and metadata in which those systems ;;; can be loaded without involving Quicklisp. ;;; ;;; This works only for systems that are directly provided by ;;; Quicklisp. It can't reach...
7,945
Common Lisp
.lisp
193
34.42487
81
0.667747
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
7ca125013ecf78505ad458ccc6f828b0246f5a428560968c8960974aeb6c2df8
30,454
[ 93519 ]
30,456
misc.lisp
johncorn271828_X_Orrery/quicklisp/misc.lisp
;;;; misc.lisp (in-package #:quicklisp-client) ;;; ;;; This stuff will probably end up somewhere else. ;;; (defun use-only-quicklisp-systems () (asdf:initialize-source-registry '(:source-registry :ignore-inherited-configuration)) (asdf:map-systems 'asdf:clear-system) t) (defun who-depends-on (system-name) ...
536
Common Lisp
.lisp
15
32.533333
74
0.723404
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
6b3456e20dcecfbfee65bed705146dfa4101d283758ff7ad6d5c6168540babf7
30,456
[ 365225, 380702 ]
30,457
network.lisp
johncorn271828_X_Orrery/quicklisp/network.lisp
;;; ;;; Low-level networking implementations ;;; (in-package #:ql-network) (definterface host-address (host) (:implementation t host) (:implementation sbcl (ql-sbcl:host-ent-address (ql-sbcl:get-host-by-name host)))) (definterface open-connection (host port) (:documentation "Open and return a network c...
5,625
Common Lisp
.lisp
129
29.612403
75
0.544278
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
357328ba3c3daa11d6163e12f3c3e1c9167e7ccd887f1068e70771be5a2b0362
30,457
[ 173134, 399982 ]
30,458
local-projects.lisp
johncorn271828_X_Orrery/quicklisp/local-projects.lisp
;;;; local-projects.lisp ;;; ;;; Local project support. ;;; ;;; Local projects can be placed in <quicklisp>/local-projects/. New ;;; entries in that directory are automatically scanned for system ;;; files for use with QL:QUICKLOAD. ;;; ;;; This works by keeping a cache of system file pathnames in ;;; <quicklisp>/loca...
4,975
Common Lisp
.lisp
110
38.809091
73
0.673124
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
5e37b414d94cb8c4ffc0f33c7b386119bfbac0d735bcbd0ea8f701ed5ab3076c
30,458
[ 461280 ]
30,460
parse-number.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/parse-number-1.4/parse-number.lisp
;;;; -*- Mode: Lisp -*- ;;;; Defines functions to parse any number type, without using the reader ;;;; ;;;; Author: Matthew Danish -- mrd.debian.org ;;;; ;;;; Copyright 2002 Matthew Danish. ;;;; All rights reserved. ;;;; ;;;; Redistribution and use in source and binary forms, with or without ;;;; modification, are perm...
12,822
Common Lisp
.lisp
325
31.704615
191
0.596474
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
d50f3dde8c9c80c7d1ff878c0cf32aebc966f6368a361235c979037246d62a6e
30,460
[ 146226 ]
30,461
release.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/trivial-features-20150923-git/release.lisp
#!/usr/bin/env clisp ;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- (defpackage :release-script (:use #:cl #:regexp)) (in-package :release-script) ;;;; Configuration ------------------------------------------------------------ (defparameter *project-name* "trivial-features") (defparameter *asdf-file* (format nil "~A...
9,676
Common Lisp
.lisp
209
37.516746
83
0.57408
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
dfee06e578a57c09cc593a623e931251e48e0376951468923090ed79294dad01
30,461
[ 238487, 257480 ]
30,470
tf-ecl.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/trivial-features-20150923-git/src/tf-ecl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-ecl.lisp --- ECL implementation of trivial-features. ;;; ;;; Copyright (C) 2007-2009, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentatio...
2,185
Common Lisp
.lisp
47
42.659574
74
0.69061
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
1d63b75df82f02dceb3fc504ca35e8e0e3551df82deea683ec0672a6844913ad
30,470
[ 318414 ]
30,473
tf-clisp.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/trivial-features-20150923-git/src/tf-clisp.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tf-clisp.lisp --- CLISP trivial-features implementation. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;...
2,610
Common Lisp
.lisp
62
34.870968
74
0.615839
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
4667934e2c0d0afd03e317b7d909accb71ba7ca534ea5fff2ee6c323ced7cd60
30,473
[ 415066 ]
30,477
package.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/trivial-features-20150923-git/tests/package.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; package.lisp --- TRIVIAL-FEATURES-TESTS package definition. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation...
1,448
Common Lisp
.lisp
32
43.3125
70
0.736917
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
98c50963c7b619a6206d6992f0cd52e00df4771b17bef537cb952b8fd0572523
30,477
[ 408313, 477316 ]
30,478
tests.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/trivial-features-20150923-git/tests/tests.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; tests.lisp --- trivial-features tests. ;;; ;;; Copyright (C) 2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the "Soft...
3,881
Common Lisp
.lisp
112
29.535714
77
0.634231
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
944cada3ff229d815c79c5be7924812a6e33f190bd78b5f3f8c12db399724dba
30,478
[ 30508, 332799 ]
30,480
package.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/grovel/package.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; package.lisp --- Groveler DEFPACKAGE. ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the "Software"), to deal in the Software without ;;; restriction, including witho...
1,520
Common Lisp
.lisp
38
38.052632
70
0.732613
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
91e4672c2de74b3f8979110c711e5ae1744d623483348f81011faba0cca998ff
30,480
[ 146293 ]
30,481
asdf.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/grovel/asdf.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; asdf.lisp --- ASDF components for cffi-grovel. ;;; ;;; Copyright (C) 2005-2006, Dan Knap <dankna@accela.net> ;;; Copyright (C) 2005-2006, Emily Backes <lucca@accela.net> ;;; Copyright (C) 2007, Stelian Ionescu <sionescu@cddr.org> ;;; Copyright (C) 2007, Luis Olivei...
7,356
Common Lisp
.lisp
146
44.171233
88
0.680301
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
76e4704841d30ea64abb154ac67259c27d9b69e4dbcbe7c71225603c722198c3
30,481
[ 489772 ]
30,490
package.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/package.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; package.lisp --- Package definition for CFFI. ;;; ;;; Copyright (C) 2005-2006, James Bielman <jamesjb@jamesjb.com> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the...
4,795
Common Lisp
.lisp
157
25.611465
70
0.678124
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
4aa93329b1b5599b0c35d97b659d732db6da3c8c49d5ce85d5438a9fe596e27d
30,490
[ 367877 ]
30,492
types.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/types.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; types.lisp --- User-defined CFFI types. ;;; ;;; Copyright (C) 2005-2006, James Bielman <jamesjb@jamesjb.com> ;;; Copyright (C) 2005-2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a...
43,021
Common Lisp
.lisp
893
40.920493
93
0.649873
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
c0ac4e371ac873e229c5763f98edad892bcd27151b3c555305c30a98fe9101c5
30,492
[ 77112 ]
30,495
enum.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/enum.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; enum.lisp --- Defining foreign constants as Lisp keywords. ;;; ;;; Copyright (C) 2005-2006, James Bielman <jamesjb@jamesjb.com> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;...
10,791
Common Lisp
.lisp
231
40.683983
77
0.677208
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
ae509ac1b412a8692c5d513dd87229d3e47a458ce0e565ebd051529605fee18b
30,495
[ 429628 ]
30,496
strings.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/strings.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; strings.lisp --- Operations on foreign strings. ;;; ;;; Copyright (C) 2005-2006, James Bielman <jamesjb@jamesjb.com> ;;; Copyright (C) 2005-2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obt...
13,271
Common Lisp
.lisp
276
40.09058
81
0.625713
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
5cdfe7a13ea3e8886b992a38c92d3408eabceb04431403450a0456af85caea2a
30,496
[ 371185, 445060 ]
30,497
utils.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/utils.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; utils.lisp --- Various utilities. ;;; ;;; Copyright (C) 2005-2008, Luis Oliveira <loliveira(@)common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the "So...
3,914
Common Lisp
.lisp
77
41.805195
79
0.609922
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
32aeea86179937d693df57f60609f6de7359ec1c168c2f791154bd174aacbb75
30,497
[ 294180, 355619 ]
30,499
cffi-openmcl.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/cffi-openmcl.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; cffi-openmcl.lisp --- CFFI-SYS implementation for OpenMCL. ;;; ;;; Copyright (C) 2005-2006, James Bielman <jamesjb@jamesjb.com> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;...
10,662
Common Lisp
.lisp
269
35.211896
90
0.675589
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
6e55e786276d0fbabc999bf7807321f76a8cf38d3daa65ecda724010770061f6
30,499
[ 29660, 381656 ]
30,500
early-types.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/early-types.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; early-types.lisp --- Low-level foreign type operations. ;;; ;;; Copyright (C) 2005-2006, James Bielman <jamesjb@jamesjb.com> ;;; Copyright (C) 2005-2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person...
23,445
Common Lisp
.lisp
516
41.552326
108
0.716483
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
18378e9f89e36d20b834ea83661acfed7177ed7ecd3985305ea6dc3a969598e9
30,500
[ 382006 ]
30,504
functions.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/functions.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; functions.lisp --- High-level interface to foreign functions. ;;; ;;; Copyright (C) 2005-2006, James Bielman <jamesjb@jamesjb.com> ;;; Copyright (C) 2005-2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any ...
18,653
Common Lisp
.lisp
396
37.808081
173
0.624403
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
ee07bf6232f51a47e6e760d1324a15b727fd90781857683da758c09b3929eb4e
30,504
[ 407440 ]
30,505
libraries.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/libraries.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; libraries.lisp --- Finding and loading foreign libraries. ;;; ;;; Copyright (C) 2005-2006, James Bielman <jamesjb@jamesjb.com> ;;; Copyright (C) 2006-2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any pers...
18,386
Common Lisp
.lisp
402
38.303483
79
0.65085
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
09ce0e6a9ebf0b5759140053be4d9e37c8628be89559eb429eb0b7229fe0301e
30,505
[ 53333 ]
30,506
cffi-allegro.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/cffi-allegro.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; cffi-allegro.lisp --- CFFI-SYS implementation for Allegro CL. ;;; ;;; Copyright (C) 2005-2009, Luis Oliveira <loliveira(@)common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated docu...
16,242
Common Lisp
.lisp
389
36.210797
80
0.658669
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
e64e1a22541a58e6dca707da6ae0ecc482cf801916b92e5bb33b24909b6bf270
30,506
[ 282195 ]
30,508
structures.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/src/structures.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; structures.lisp --- Methods for translating foreign structures. ;;; ;;; Copyright (C) 2011, Liam M. Healy <lhealy@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentatio...
6,978
Common Lisp
.lisp
129
47.116279
328
0.67364
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
9e6ec89519b37c6720bee5b963a5985c1f7a27587db8c1c29d0320a06ad1be1e
30,508
[ 209912, 339716 ]
30,509
fsbv.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/tests/fsbv.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; fsbv.lisp --- Tests of foreign structure by value calls. ;;; ;;; Copyright (C) 2011, Liam M. Healy ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the "Software"), to ...
2,793
Common Lisp
.lisp
81
32.17284
70
0.706909
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
95c40aeafc1d92739e27b649044c57af8fd084f2d36ddc92e9f7dd7d980722df
30,509
[ 180184 ]
30,510
package.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/tests/package.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; package.lisp --- CFFI-TESTS package definition. ;;; ;;; Copyright (C) 2005-2006, James Bielman <jamesjb@jamesjb.com> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (t...
1,441
Common Lisp
.lisp
30
46.833333
70
0.737402
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
74766e403945b4bb8d5f299f409d9674de85e55611c78166ea83498e1e6c1047
30,510
[ 236263 ]
30,511
defcfun.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/tests/defcfun.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; defcfun.lisp --- Tests function definition and calling. ;;; ;;; Copyright (C) 2005-2007, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentatio...
19,360
Common Lisp
.lisp
428
40.929907
87
0.683565
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
daae6634a3e483bb834a682a6f5d9b23dd3316a974b06350f7813075be836ef3
30,511
[ 467317 ]
30,515
enum.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/tests/enum.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; enum.lisp --- Tests on C enums. ;;; ;;; Copyright (C) 2005-2006, Luis Oliveira <loliveira(@)common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the "Soft...
3,406
Common Lisp
.lisp
112
27.098214
73
0.690476
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
2a9db3d22d9bac27ee15cafcdac24f2180bde8e46f818fc633f02939689bf5ca
30,515
[ 389394 ]
30,518
bindings.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/tests/bindings.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; libtest.lisp --- Setup CFFI bindings for libtest. ;;; ;;; Copyright (C) 2005-2007, Luis Oliveira <loliveira(@)common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;...
5,039
Common Lisp
.lisp
118
38.779661
74
0.690942
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
643ca9a9588af26cfe0e6bb4a8be9a14689bdb0ac1989b1dbfa3d35dd1b436ee
30,518
[ 311354 ]
30,519
misc-types.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/tests/misc-types.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; misc-types.lisp --- Various tests on the type system. ;;; ;;; Copyright (C) 2005-2006, Luis Oliveira <loliveira(@)common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentatio...
8,802
Common Lisp
.lisp
239
32.828452
77
0.669998
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
fefa907ac0ed527e2aa1bccbef4871e7e251f787c0a5eb6e48ee1b1e43067751
30,519
[ 238425, 268175 ]
30,520
grovel.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/tests/grovel.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; grovel.lisp --- CFFI-Grovel tests. ;;; ;;; Copyright (C) 2014, Luis Oliveira <loliveira@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the "Software...
3,687
Common Lisp
.lisp
71
42.140845
114
0.606312
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
3b958f7cf8b788a046efa8bb440ca1abf84b9ed42d4aff2ac345724768159e7e
30,520
[ 46884 ]
30,525
cstruct.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/libffi/cstruct.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; cstruct.lisp --- Hook to defcstruct ;;; ;;; Copyright (C) 2009, 2010, 2011 Liam Healy <lhealy@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; files (the "So...
3,068
Common Lisp
.lisp
70
35.285714
80
0.619238
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
21411743ca866bc2ed0cc4d802f2dc62feb6e9c91c2adedd2fc105059f9d1d1a
30,525
[ 166903 ]
30,526
built-in-types.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/libffi/built-in-types.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; built-in-types.lisp -- Define libffi-type-pointers for built-in types and typedefs ;;; ;;; Copyright (C) 2011 Liam M. Healy <lhealy@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and assoc...
2,364
Common Lisp
.lisp
51
44.333333
86
0.731686
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
681d9e0266f75ebd076102754b09cde639ed4fc4ffe8f4e82b48d3893d9982ed
30,526
[ 26919 ]
30,527
libffi-unix.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/libffi/libffi-unix.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; libffi-unix.lisp -- libffi CFFI-Grovel definitions for unix systems. ;;; ;;; Copyright (C) 2009, 2010, 2011 Liam M. Healy <lhealy@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associa...
3,310
Common Lisp
.lisp
85
37.552941
78
0.706413
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
25721cb422a8e7369f5248b9a7364a9447df84c06bfaa871aa5c616a1e738a62
30,527
[ 405666 ]
30,528
functions.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/libffi/functions.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; functions.lisp -- Calling foreign functions ;;; ;;; Copyright (C) 2009, 2010, 2011 Liam M. Healy <lhealy@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated documentation ;;; fil...
5,276
Common Lisp
.lisp
105
42.961905
140
0.673964
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
e51ec5ab3df5c453dd8a64a6d32694a9cffbec31d28f7e2ad37c34d5965f701e
30,528
[ 41750 ]
30,529
cif.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/libffi/cif.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; cif.lisp --- Structure and function call function in libffi ;;; ;;; Copyright (C) 2009, 2010, 2011 Liam Healy <lhealy@common-lisp.net> ;;; ;;; Permission is hereby granted, free of charge, to any person ;;; obtaining a copy of this software and associated document...
1,838
Common Lisp
.lisp
48
36.541667
72
0.733184
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
88010d06663f2c038cd1bfd31a206b31a2f3dcfef760dd7b46c71e7e1bf250e3
30,529
[ 399635 ]
30,530
libffi-win32.lisp
johncorn271828_X_Orrery/dists/quicklisp/software/cffi_0.16.1/libffi/libffi-win32.lisp
;;;; -*- Mode: lisp; indent-tabs-mode: nil -*- ;;; ;;; libffi-win32.lisp -- libffi CFFI-Grovel definitions for Windows. ;;; Note that despite the name, this includes 64 bit Windows as well as 32 bit. ;;; ;;; Copyright (C) 2009, 2010, 2011, 2012, 2015 Liam M. Healy <lhealy@common-lisp.net> ;;; ;;; Permission is hereby ...
2,828
Common Lisp
.lisp
68
40.191176
86
0.712623
johncorn271828/X_Orrery
0
0
0
GPL-3.0
9/19/2024, 11:39:23 AM (Europe/Amsterdam)
accdf47333304f476c7101c170b12bea1f6a7e6247f21003d64a5bbc02384e61
30,530
[ 391010 ]