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 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
19,665 | DefFunc.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/CommonLisp/Samples/DefFunc.lisp | (defun square (x)
"Calculates the square of the single-float x."
(declare (single-float x) (optimize (speed 3) (debug 0) (safety 1)))
(the single-float (* x x)))
| 172 | Common Lisp | .lisp | 4 | 39.5 | 71 | 0.654762 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 21a482a74e4ed338f93ef156da3e1f4f009e12f8461212657b8cd29b883e8977 | 19,665 | [
-1
] |
19,667 | AvailableShells.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/CommonLisp/Samples/AvailableShells.lisp | (defun available-shells (&optional (file #p"/etc/shells"))
(list-matching-lines
file
(lambda (line)
(and (plusp (length line))
(char= (char line 0) #\/)
(pathname
(string-right-trim '(#\space #\tab) line))))))
| 254 | Common Lisp | .lisp | 8 | 25.25 | 58 | 0.565041 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 8c548cfc42a94d215157687700b6dc3f6a35b1fe82c88951c7cdd562e436ce36 | 19,667 | [
-1
] |
19,668 | LexicalHelloWorld.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/CommonLisp/Samples/LexicalHelloWorld.lisp | (defvar *stashed*) ;; will hold a function
(tagbody
(setf *stashed* (lambda () (go some-label)))
(go end-label) ;; skip the (print "Hello")
some-label
(print "Hello")
end-label)
-> NIL
| 210 | Common Lisp | .lisp | 8 | 22.125 | 48 | 0.606965 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 4a949e2c4673ae355acd35ff65d1b0fefe7a9d1ece0905eb52f03905feaee094 | 19,668 | [
-1
] |
19,675 | UNTIL.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/CommonLisp/Samples/UNTIL.lisp | ;; expansion of UNTIL makes liberal use of DO
(defmacro until (expression &body body)
`(do () (,expression) ,@body))
;; macrolet establishes lexical operator binding for DO
(macrolet ((do (...) ... something else ...))
(until (= (random 10) 0) (write-line "Hello")))
| 278 | Common Lisp | .lisp | 6 | 43.5 | 56 | 0.660517 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 593787a33d5cab9a90fb4133c9f0ba862a329155d1bc61c0e0908e9b6ed681bd | 19,675 | [
-1
] |
19,677 | BirthdayParadox_V1.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/CommonLisp/Samples/BirthdayParadox_V1.lisp | (defconstant +year-size+ 365)
(defun birthday-paradox (probability number-of-people)
(let ((new-probability (* (/ (- +year-size+ number-of-people)
+year-size+)
probability)))
(if (< new-probability 0.5)
(1+ number-of-people)
(birthday-par... | 367 | Common Lisp | .lisp | 8 | 34.625 | 67 | 0.564246 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 42cf95d3d9d1ec30b59e2593713e3416bc2b76b21f154c70d2c544323e72edb5 | 19,677 | [
-1
] |
19,686 | makefile.mk | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/makefile.mk | # Start of script
# The Makefile for this project
# Rename the secondary copying license
# Since I don't know how to just rename a file, I will copy it and delete the original, that is as close as I can get with GNU Make right now
copy /COPYINGL to /COPYING
rm -f /COPYINGL
echo "COPYING license file has been corrected.... | 586 | Common Lisp | .l | 13 | 44.076923 | 141 | 0.760908 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | de9a8fa1daea17459f42137b346a6f0d3d82aa0ed189397102f782fb05133253 | 19,686 | [
-1
] |
19,687 | DRM-free_label.en.svg | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/DRM-free_label.en.svg | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://so... | 5,829 | Common Lisp | .l | 93 | 54.516129 | 637 | 0.628248 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | d069a70daea0493e6fb5c6eea896aa27f8bd1fec033885fc9997e323af621f5b | 19,687 | [
-1
] |
19,689 | AUTOMATE2001.yml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/AUTOMATE2001.yml | # A set of tasks for the Automate2001 bot to perform here
automate2001_tasks:
isAlldone: "False"
-
Automate-All-ContributorSrc:
-
Automate-Pull-Requests-archival
isAdone: "False"
Automate-Index-file
isBdone: "False"
Automate-Issue-archival
isCdone: "False"
-
Automate-RepoData:
-
Automate-RepoData-Description
isDDone:... | 569 | Common Lisp | .l | 26 | 20.769231 | 59 | 0.827778 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | e817fbb3381ec151e0880a501c7388ac68734decd917887a956bea92f0f75343 | 19,689 | [
-1
] |
19,690 | SNU_Blue_and_gold_Legacy_Icon_SVG.svg | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/SNU_Blue_and_gold_Legacy_Icon_SVG.svg | <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
width="256.0px"
height="256.0px"
viewBox="0 0 256.0 256.0"
version="1.1"
id="SVGRoot"
sodipodi:docname="SNU_Blue_and_gold_Legacy_Icon_SVG.svg"
xml:space="preserve"
inkscape:vers... | 6,438 | Common Lisp | .l | 112 | 54.473214 | 117 | 0.899289 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 792cfeeff2f73e84614ea95b1ac2679e3dabfcc177fdef7ef6ab5c03b27b8ff6 | 19,690 | [
-1
] |
19,692 | pull_request_template.md | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/pull_request_template.md |
***
# Creating a pull request
Thank you for taking the time to create a pull request in this repository! Please fill out this form before submitting your PR.
**Note:** you can change the language of the formatting if needed, but it must be valid syntax. Supported languages include: ASCIIDoc, Org mode, Markdown, Wik... | 3,520 | Common Lisp | .l | 63 | 54.269841 | 292 | 0.756946 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 25fd83710acdcab70ea9637b9447462404362a916d227742a372a8c48927e690 | 19,692 | [
-1
] |
19,695 | 404.html | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/404.html | <HR>
<img src="/404.jpeg" alt="404 error on 404 image file for 404 page, 404" width="300" height="200">
<H1>404</H1>
<H2><a href="https://en.wikipedia.org/wiki/HTTP_404">File not found</a></H2>
<HR>
<p><a href="https://github.com/seanpm2001/404Day">Celebrate 404 day</a></p>
<p>The file could not be found, is damaged, o... | 528 | Common Lisp | .l | 8 | 65 | 247 | 0.721154 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | a486034aeabf2cb3669a6420ef52bb2ad4774cf26d34758bc213e220b8e54953 | 19,695 | [
-1
] |
19,702 | issue-template_V1.yml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V1.yml | name: General issue
description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project
body:
- type: markdown
attributes:
value: |
Unknown
- type: checkboxes
attributes:
label: Prerequisites
description: |
To rule out invalid issues, confirm... | 6,192 | Common Lisp | .l | 184 | 25.967391 | 182 | 0.649925 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | b8574efa5dab06fbd178fa9fe18c8fcfbce742690ad351f9bffe91774dbd2b68 | 19,702 | [
-1
] |
19,703 | issue-template_V3.yml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V3.yml | name: General issue
description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project
body:
- type: markdown
attributes:
value: |
Unknown
- type: checkboxes
attributes:
label: Prerequisites
description: |
To rule out invalid issues, confirm... | 6,291 | Common Lisp | .l | 188 | 25.75 | 182 | 0.646353 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 5dcfb7a296faa7f64ebc327ce9e0e5967be18d43e452ada90e302c70523b2886 | 19,703 | [
-1
] |
19,704 | issue-template_V5.yml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V5.yml | name: General issue
description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project
body:
- type: markdown
attributes:
value: |
Unknown
- type: checkboxes
attributes:
label: Prerequisites
description: |
To rule out invalid issues, confirm... | 6,229 | Common Lisp | .l | 188 | 25.414894 | 182 | 0.644872 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 83810c059c59d965a58f7bed3240eb7814bebf45bd0257915904a8f3d91a5289 | 19,704 | [
-1
] |
19,705 | issue-template_V4.yml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V4.yml | name: General issue
description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project
body:
- type: markdown
attributes:
value: |
Unknown
- type: checkboxes
attributes:
label: Prerequisites
description: |
To rule out invalid issues, confirm... | 6,292 | Common Lisp | .l | 188 | 25.75 | 182 | 0.646247 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 30166d4ad7b5dc576431ef8156e7810eed77b0df3d3bd97d1b231e65e6da7339 | 19,705 | [
-1
] |
19,706 | issue-template_V6.yml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V6.yml | name: General issue
description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project
body:
- type: markdown
attributes:
value: |
Unknown
- type: checkboxes
attributes:
label: Prerequisites
description: |
To rule out invalid issues, confirm... | 6,230 | Common Lisp | .l | 188 | 25.414894 | 182 | 0.644765 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 71eecf8725aeb73ed3a44b6e0a025c7631731e045ad7ed625fb36431b1346aed | 19,706 | [
-1
] |
19,707 | issue-template_V2.yml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/OldVersions/ISSUE_TEMPLATE/ISSUE-TEMPLATE/1/1-100/issue-template_V2.yml | name: General issue
description: Report a bug or other issue/Opening an issue in this SNU Programming Tools IDE project
body:
- type: markdown
attributes:
value: |
Unknown
- type: checkboxes
attributes:
label: Prerequisites
description: |
To rule out invalid issues, confirm... | 6,154 | Common Lisp | .l | 182 | 26.10989 | 182 | 0.649992 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 401619180ca30f87877b9dd8296f0c7a7412f7bb5d5446eae8c03daccb0137dc | 19,707 | [
-1
] |
19,708 | V1_config.yml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/OldVersions/ISSUE_TEMPLATE/CONFIG/YML/V1_config.yml | blank_issues_enabled: false
contact_links:
- name: I want to help develop
url: https://github.com/seanpm2001/Teams/discussions/
about: Thank you for your interest in this project! Please consider joining a team to start developing with me
- name: I want to help translate
url: https://github.com/seanpm20... | 654 | Common Lisp | .l | 12 | 51.75 | 124 | 0.764431 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 24cb72c2757a113ed7d4f1f68501cdb21e6c41184d6805f82d757b2aa5998228 | 19,708 | [
-1
] |
19,712 | .FUNDING.yml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/.github/.FUNDING.yml | # These are supported funding model platforms
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
patreon: seanpm2001 # Creator page
patreon: seanpm2001_software # Main page
# Replace with a single Patreon username
open_collective: # Replace with a single Open Collective username
ko... | 780 | Common Lisp | .l | 13 | 58.769231 | 91 | 0.794503 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | ebd6c96af3773ed36844e5889bdac36ac43026a72b8cc7e2f2a61de993cba630 | 19,712 | [
-1
] |
19,716 | GitHub_Default_IssueLabels.yaml | seanpm2001_SNU_2D_ProgrammingTools_IDE_CommonLisp/.github/Issues/GitHub_Default_IssueLabels.yaml | # Default GitHub issue data file (YAML)
issuelabel_1: color1: "#ffffff" title1: "wontfix" description1: "This will not be worked on"
issueLabel_2: color2: "#d876e3" title2: "question" description2: "Further information is requested"
issueLabel_3: color3: "#e4e669" title3: "invalid" description3: "This doesn't seem righ... | 1,150 | Common Lisp | .l | 14 | 81.142857 | 114 | 0.769366 | seanpm2001/SNU_2D_ProgrammingTools_IDE_CommonLisp | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | ac2c04c28bbae9721ee7e24122a01c42700ce541351277bb52dae214359629b5 | 19,716 | [
-1
] |
19,786 | PROJECT_LANG_1.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/PROJECT_LANG_1.lisp | ; Start of script
; Project language file 1
; For: /SNU/2D/ProgrammingTools/IDE/Lisp/
; About:
; I decided to make Lisp the main project language file for this project (SNU / 2D / Programming Tools / IDE / Lisp) as this is a Lisp IDE, and it needs its main language to be represented here.
(print "Project language fil... | 792 | Common Lisp | .lisp | 14 | 55.285714 | 202 | 0.74031 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | ef0030393b888264438f30221c2db2849a625e6415a4a4d7d0440defe81a3cae | 19,786 | [
-1
] |
19,792 | LISPFactorialLoop.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISPFactorialLoop.lisp | ; Start of script
(defun factorial (n)
(loop for i from 1 to n
for fac = 1 then (* fac i)
finally (return fac)))
; End of script
| 150 | Common Lisp | .lisp | 6 | 20.5 | 35 | 0.597222 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 63f2f85f7761a9332ff45112b9abeafde8322d655426bf87713c8dc67f8ca13a | 19,792 | [
-1
] |
19,793 | LispLambda.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LispLambda.lisp | # Start of script
(lambda (arg) (+ arg 1))
((lambda (arg) (+ arg 1)) 5)
(defun foo (a b c d) (+ a b c d))
(setf (fdefinition 'f) #'(lambda (a) (block f b...)))
# End of script
| 178 | Common Lisp | .lisp | 6 | 28.333333 | 53 | 0.563953 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 0c8f92f624fe4bf5ab697b950b2e42a02380c2866c3b6a9b487903803f2ad542 | 19,793 | [
-1
] |
19,794 | LispList.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LispList.lisp | # Start of script
(list 1 2 (quote foo))
(list 1 2 (list 3 4))
# End of script
| 80 | Common Lisp | .lisp | 4 | 18.75 | 22 | 0.657895 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | ad6c682db31a97abb2374399863e2c93225157921e1f9336e5ab43cc083c4980 | 19,794 | [
-1
] |
19,795 | LISPFactorial1_V1.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISPFactorial1_V1.lisp | ; Start of script
(defun factorial (n)
(if (= n 0) 1
(* n (factorial (- n 1)))))
; End of script
| 100 | Common Lisp | .lisp | 5 | 18.4 | 29 | 0.589474 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | f9b062a935044e79de4b5ab360ea9648db6d7d2cf490b294c621977cfa9ef10b | 19,795 | [
-1
] |
19,796 | LISP_Foobar_V1.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISP_Foobar_V1.lisp | ; Start of script
(setf foo (list 'a 'b 'c))
(setf bar (cons 'x (cdr foo)))
; End of script
| 92 | Common Lisp | .lisp | 4 | 22 | 30 | 0.636364 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | bbf4d4be0af89de53c140ebe07b38429d83b264605c16242c11cd1f76a7aed5c | 19,796 | [
-1
] |
19,797 | LISPFactorial2.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISPFactorial2.lisp | ; Start of script
(defun factorial (n &optional (acc 1))
(if (= n 0) acc
(factorial (- n 1) (* acc n))))
; End of script
| 131 | Common Lisp | .lisp | 5 | 23.2 | 38 | 0.579365 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 82e971ddac07c97f688b211897debdb561e9ed3ab83afee58762b3b04087a959 | 19,797 | [
-1
] |
19,798 | LISP_lisp.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISP_lisp.lisp | ; Start of script
(list 1 2 'a 3)
;Output: (1 2 a 3)
(list 1 '(2 3) 4)
;Output: (1 (2 3) 4)
; End of script
| 113 | Common Lisp | .lisp | 6 | 17 | 21 | 0.566038 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | db3dde57b69423b03928020a23514a15d43db90f0e22e04fe145ecc22ef4c13f | 19,798 | [
-1
] |
19,800 | LISP_Append.lisp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISP_Append.lisp | ; Start of script
(append '(1 2) '(3 4))
;Output: (1 2 3 4)
(append '(1 2 3) '() '(a) '(5 6))
;Output: (1 2 3 a 5 6)
; End of script
| 138 | Common Lisp | .lisp | 6 | 21.166667 | 34 | 0.519084 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 2e9a870b86eab257f933a80381ad24f7c5f902fcdefb3486e39aebde43de067e | 19,800 | [
-1
] |
19,849 | !LISP_HOME.html | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/!LISP_HOME.html | <!-- End of script !-->
<HTML>
<HEAD>
<link rel="icon" href="SNUCFaviconTemplate.ico" type="image/x-icon"/>
<!--<link rel="stylesheet" type="text/css" href="PROGCSS_V1.css">!-->
<TITLE>LISP programming language home - SNU Programming</TITLE>
</HEAD>
<BODY BGCOLOR="BEIGE">
</HEAD>
<script>
// No JavaScript data availabl... | 7,206 | Common Lisp | .l | 245 | 27.493878 | 357 | 0.691379 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 995fa5c780ef24950007747a5d452bf0a9225dd8b6af49c9110da1fcdfb4c885 | 19,849 | [
-1
] |
19,858 | LispOperators.lsp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LispOperators.lsp | # Start of script
(+ 1 2 3 4)
(incf x)
(if nil
(list 1 2 "foo")
(list 3 4 "bar"))
(or (and "zero" nil "never") "James" 'task 'time)
# End of script
| 162 | Common Lisp | .l | 8 | 17.5 | 49 | 0.558442 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 86a33dede57260fa967ffbbd9bb1d4c0f56c2aaa4d1d2c086ca736ca451a8a29 | 19,858 | [
-1
] |
19,859 | LISP_Construct_V1.lsp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISP_Construct_V1.lsp | ; Start of script
(cons 1 '(2 3))
;Output: (1 2 3)
(cons '(1 2) '(3 4))
;Output: ((1 2) 3 4)
; End of script
| 114 | Common Lisp | .l | 6 | 17.166667 | 21 | 0.542056 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 54eb7177a81a86e7fcd04dcb25daa7f0ae5c6f9b3a57c5aff5370fd4dc3957d7 | 19,859 | [
-1
] |
19,863 | LISP_ListReversal.lsp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISP_ListReversal.lsp | ; Start of script
(defun -reverse (list)
(let ((return-value '()))
(dolist (e list) (push e return-value))
return-value))
; End of script
| 148 | Common Lisp | .l | 6 | 22 | 43 | 0.647887 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | c39da0d736e2dade42a9b68f731238259bde9f89e926d1d139671a7e37cdd99b | 19,863 | [
-1
] |
19,866 | LISP_Mapcar_V1.lsp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISP_Mapcar_V1.lsp | ; Start of script
(mapcar #'+ '(1 2 3 4 5) '(10 20 30 40 50))
; End of script
| 78 | Common Lisp | .l | 3 | 25 | 43 | 0.6 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 59bbc4baf14e351e823cd5ea6c61729c423720c3d5e07d8834854d8ce4a1110c | 19,866 | [
-1
] |
19,870 | LISP_ShouldBeConstant.lsp | seanpm2001_SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor-/Lisp (LISt Processor)/Samples/LISP_ShouldBeConstant.lsp | ; Start of script
(defun should-be-constant ()
'(one two three))
(let ((stuff (should-be-constant)))
(setf (third stuff) 'bizarre)) ; bad!
(should-be-constant) ; returns (one two bizarre)
; End of script
| 214 | Common Lisp | .l | 7 | 28.714286 | 50 | 0.682927 | seanpm2001/SNU_2D_ProgrammingTools_IDE_Lisp_-LISt_Processor- | 2 | 2 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 60686ba1c194520b2cbd300aaa44fe59a8e0ae9e80a780d90c35b3df48960129 | 19,870 | [
-1
] |
19,909 | rest-service.lisp | marcmos_lispcap/rest-service.lisp | (in-package :lispcap)
(defun rest-service-start (table port)
(hunchentoot:define-easy-handler (hosts-handler :uri "/hosts") ()
(setf (hunchentoot:content-type*) "text/plain")
(print-host-table table))
(defvar *hunchentoot-acceptor* (make-instance 'hunchentoot:easy-acceptor :port port))
(hunchentoot:start... | 420 | Common Lisp | .lisp | 9 | 43.666667 | 87 | 0.745721 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 7edfeabfd96c35610611a916bd359fbba1b1da408299b70bfdc1e15ac7b74911 | 19,909 | [
-1
] |
19,910 | lispcap.lisp | marcmos_lispcap/lispcap.lisp | (in-package :lispcap)
(defparameter *query-src-mac* #X001122334455)
(defparameter *query-src-ip* 3232235521)
(defvar *host-table* (make-hash-table))
(defun sniff (iface handler host-table timeout)
(plokami:with-pcap-interface (pcap iface :timeout 0)
(plokami:set-filter pcap "arp")
(loop
(plokami:cap... | 1,184 | Common Lisp | .lisp | 27 | 38.555556 | 73 | 0.689565 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 4bee837891bcc8658feb9aceadaf010aa85f3005c9e372eebc340a2d136dc780 | 19,910 | [
-1
] |
19,911 | format-address.lisp | marcmos_lispcap/format-address.lisp | (in-package :lispcap)
(defun format-mac (mac)
(apply #'format nil "~2,'0X:~2,'0X:~2,'0X:~2,'0X:~2,'0X:~2,'0X"
(nreverse (loop repeat 6
for x = mac then (truncate x 256)
collect (nth-value 1 (truncate x 256))))))
(defun format-ip (ip)
(apply #'format nil "~D.~D.~D.~D"
... | 467 | Common Lisp | .lisp | 11 | 32.545455 | 65 | 0.522026 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 3f1a9ad87c57abac0a24f07c4391a0160d50d0886c1a0b7b43ad294bd05fc7e8 | 19,911 | [
-1
] |
19,912 | arp.lisp | marcmos_lispcap/arp.lisp | (in-package :lispcap)
(defconstant +arp-htype-ethernet+ 1)
(defconstant +arp-ptype-ip+ #X800)
(defconstant +arp-plen-ip+ 4)
(defconstant +arp-oper-request+ 1)
(defconstant +arp-oper-response+ 2)
(define-binary-class arp ()
((htype :binary-type u16 :initarg :htype)
(ptype :binary-type u16 :initarg :ptype)
(hle... | 1,850 | Common Lisp | .lisp | 43 | 29.674419 | 65 | 0.516362 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | c0799517f965316453509e0661aa1f83476b04c93d212bf9a19c9106d7b94633 | 19,912 | [
-1
] |
19,913 | ethernet.lisp | marcmos_lispcap/ethernet.lisp | (in-package :lispcap)
(define-unsigned maclen 6)
(defconstant +ethernet-payload-min-length+ 46)
(define-binary-class ethernet-header ()
((mac-dst :binary-type maclen :initarg :mac-dst)
(mac-src :binary-type maclen :initarg :mac-src)
(type :binary-type u16 :initarg :type)))
(defun make-ethernet-header (mac-ds... | 1,305 | Common Lisp | .lisp | 29 | 33.655172 | 65 | 0.590873 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | e0fcce722c53c6fb91997338b5fff453a944a898b6502ca6e347db32454bef3a | 19,913 | [
-1
] |
19,914 | arp-inject.lisp | marcmos_lispcap/arp-inject.lisp | (in-package :lispcap)
(defconstant +arp-ethertype+ #X0806)
(defconstant +arp-mac-broadcast+ #XFFFFFFFFFFFF)
(defun make-arp-frame (ether-mac-dst ether-mac-src
arp-opcode arp-mac-src arp-ip-src arp-mac-dst arp-ip-dst)
(make-ethernet-frame ether-mac-dst ether-mac-src +arp-ethertype+
... | 846 | Common Lisp | .lisp | 15 | 47.066667 | 80 | 0.653753 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 35a5f5e8ebf78895b8e7e423d8b9ecbd70326482cdd7d36285f0e8ac92e88f43 | 19,914 | [
-1
] |
19,915 | arp-capture.lisp | marcmos_lispcap/arp-capture.lisp | (in-package :lispcap)
(defclass capture-metadata ()
((sec :initarg :sec)
(usec :initarg :usec)
(caplen :initarg :caplen)
(len :initarg :len)))
(defclass arp-capture ()
((ethernet-header :initarg :ethernet-header)
(arp-header :initarg :arp-header)
(capture-metadata :initarg :capture-metadata)))
(de... | 1,039 | Common Lisp | .lisp | 22 | 29.636364 | 71 | 0.495069 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 7573a75457494418784423137f054caaf837602de998930d80e65305f85d1e8d | 19,915 | [
-1
] |
19,916 | query.lisp | marcmos_lispcap/query.lisp | (in-package :lispcap)
;; TODO: Consider using other protocols to query host availability (e.g. MLD).
(defun prepare-unicast-query (host)
(make-arp-unicast-query *query-src-mac*
*query-src-ip*
(host-mac host)
(host-ip host)))
(defun query-... | 501 | Common Lisp | .lisp | 10 | 40.5 | 78 | 0.609407 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | ae51fd36407c296c193b414a5b4c96a39bf9b508fcaea1bfc85d1ebd31fb9747 | 19,916 | [
-1
] |
19,917 | host-table.lisp | marcmos_lispcap/host-table.lisp | (in-package :lispcap)
(defclass host ()
((mac :accessor host-mac
:initarg :mac)
(ip :accessor host-ip
:initarg :ip)
(last-activity :accessor host-last-activity
:initarg :last-activity)))
(defun update-host-activity (table mac &key (ip nil))
(setf (gethash mac table)
... | 1,226 | Common Lisp | .lisp | 33 | 25.151515 | 74 | 0.515559 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 1fbc7b7d32437a9f6bd68c3da900ca17eb5060c6546a31c89098bc01bbe64cee | 19,917 | [
-1
] |
19,918 | lispcap.asd | marcmos_lispcap/lispcap.asd | (asdf:defsystem #:lispcap
:depends-on (#:binary-types
#:flexi-streams
#:plokami
#:hunchentoot)
:components ((:file "package")
(:file "format-address")
(:file "ethernet")
(:file "arp")
(:file "arp-capture")
... | 491 | Common Lisp | .asd | 15 | 19.466667 | 39 | 0.42437 | marcmos/lispcap | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 86e259d97db2aad9882f7bc824d4a8b48773edd6da571fd66717cd0a58adf6c9 | 19,918 | [
-1
] |
19,943 | staple.ext.lisp | meawplex-plus_lispmath/staple.ext.lisp | (setq *print-case* :downcase)
(defmethod staple:template ((system (eql (asdf:find-system :lispmath))))
(asdf:system-relative-pathname system #p"template.ctml"))
(defclass my-page (staple:simple-page) ())
(defmethod staple:filename ((page my-page))
(make-pathname :name "defindexes" :type "html"))
(defmethod staple:p... | 597 | Common Lisp | .lisp | 11 | 51.909091 | 84 | 0.728669 | meawplex-plus/lispmath | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 5ad4a1498599d41f66cf9923df53b07fc2e40060069297152f173444fe033040 | 19,943 | [
-1
] |
19,944 | package.lisp | meawplex-plus_lispmath/package.lisp | (in-package #:cl-user)
(defpackage #:lispmath
(:nicknames "*No nicknames*")
(:documentation "Handy math tools for Common Lisp.")
(:use #:cl)
(:export
#:sin-degrees
#:cos-degrees
#:tan-degrees
#:cotan-degrees
#:cosec-degrees
#:sec-degrees
#:sec
#:cotan
#:cosec
#:hypot
#:fib
#:... | 764 | Common Lisp | .lisp | 45 | 13.133333 | 54 | 0.608939 | meawplex-plus/lispmath | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 95351ce9b94f6f538ec73468200eafb6994b1dd1ad995e551f5ee12397b31e4d | 19,944 | [
-1
] |
19,945 | functions-and-predicates.lisp | meawplex-plus_lispmath/functions-and-predicates.lisp | (in-package #:lispmath)
;define our create-p macro and source-p function
(defun source-p (func)
"Return source code for predicate defining function.
Expects quote function name as an argument."
(let ((funcname (intern (concatenate 'string (symbol-name `,func) "P"))))
`(defun ,funcname (args)
(loop for ... | 2,800 | Common Lisp | .lisp | 72 | 33.555556 | 90 | 0.617853 | meawplex-plus/lispmath | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | e87335333b23a05c25d6061eb1ab05a7220e9c5fed6bb35f8f62f3a0c2c03cd6 | 19,945 | [
-1
] |
19,946 | circular.lisp | meawplex-plus_lispmath/circular.lisp | (in-package #:lispmath)
;; Some useful constants, no earmuffs so they are more like pi
(defconstant tau (+ pi pi) "Going back to tau/pi. The literal name.")
(defconstant 2pi tau "Another way to represent tau. In fact, tau is more often used than pi!")
(defconstant 2π tau "And this too, but instead with th... | 1,659 | Common Lisp | .lisp | 39 | 38.179487 | 100 | 0.645951 | meawplex-plus/lispmath | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | e35162cd6f390f1e49406c63384102ea0604a88a5f27971a846d6a214846c1b8 | 19,946 | [
-1
] |
19,947 | trig.lisp | meawplex-plus_lispmath/trig.lisp | (in-package #:lispmath)
;; Earmuffs omitted to match other constants. Some useful identities.
(defconstant +sin-degrees-identity+ 90 "For sine this time")
(defconstant +cos-degrees-identity+ 360 "Cosine identity in degrees")
(defconstant +tan-degrees-identity+ 45 "Tangent too")
(defconstant +sec-degrees-identity+ 0 "S... | 1,909 | Common Lisp | .lisp | 35 | 52.485714 | 90 | 0.732583 | meawplex-plus/lispmath | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 0f050a50a3442543633cbdeae1e7157b972646cb8708aba7376d631292dd6c72 | 19,947 | [
-1
] |
19,948 | lispmath.asd | meawplex-plus_lispmath/lispmath.asd | (asdf:defsystem #:lispmath
:version "1.2.0"
:description "The handy dandy math pack"
:author "mohindertalafuse (Mo Talafuse) and stalafuse (Scott Talafuse) and ksaj (Karsten Johansson)"
:homepage "https://mohindertalafuse.github.io"
:bug-tracker "https://github.com/mohindertalafuse/lispmath/issues"
... | 537 | Common Lisp | .asd | 12 | 39.166667 | 104 | 0.689524 | meawplex-plus/lispmath | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | ce339e2ff581ffa5a7b3c31c8e89a625150f7b434710fe85e93a03419558cbf5 | 19,948 | [
-1
] |
19,952 | template.ctml | meawplex-plus_lispmath/template.ctml | <!DOCTYPE html>
<html lang="en" lquery="(attr :lang language)">
<head>
<meta charset="utf-8" />
<title>lispmath v1.0.0 documentation</title>
<style lquery='(text (read-file (asdf:system-relative-pathname :staple "default/default.css")))'></style>
</head>
<body>
<article class="project">
<hea... | 6,912 | Common Lisp | .l | 144 | 32.979167 | 200 | 0.481235 | meawplex-plus/lispmath | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | bcc388ee6096adeaab770813dc009c60efc31f3e44cfe5c1daa84ad36e6f7f4b | 19,952 | [
-1
] |
19,970 | axes.lisp | grapesmoker_cl-plot/src/axes.lisp | (in-package :plot)
(defparameter *default-padding* 10)
(defclass axis (line)
;; we'll go ahead and inherit any line-related properties from
;; the line class itself
;; min and max values being plotted on the axis
((min-value :accessor axis-min-value
:initarg :min)
(max-value :accessor axis-max-value... | 13,922 | Common Lisp | .lisp | 328 | 34.295732 | 88 | 0.605399 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 2b5542eba4aaf7abc5081a2ce8133fd85a7858b99ce7601420055f2bb3fc08dd | 19,970 | [
-1
] |
19,971 | line.lisp | grapesmoker_cl-plot/src/line.lisp | (in-package :plot)
(defclass line (plot-object)
((start-x :accessor line-start-x
:initarg :start-x
:initform nil)
(start-y :accessor line-start-y
:initarg :start-y
:initform nil)
(end-x :accessor line-end-x
:initarg :end-x
:initform nil)
(end-y :accessor line-end-y
... | 2,688 | Common Lisp | .lisp | 71 | 31.28169 | 91 | 0.60743 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 0b6184bd972da36d5586d3a446c3edecca982b0d970b8ad2c5ab92d762af6b82 | 19,971 | [
-1
] |
19,972 | image.lisp | grapesmoker_cl-plot/src/image.lisp | (in-package :plot)
;; some defaults
(defparameter *default-im-width* 640)
(defparameter *default-im-height* 480)
(defparameter *default-axes-width* 600)
(defparameter *default-axes-height* 440)
(defparameter *default-x-offset* 20)
(defparameter *default-y-offset* 20)
(defparameter *default-line-color* '(0 0 0))
(d... | 1,459 | Common Lisp | .lisp | 36 | 35.694444 | 68 | 0.691384 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 1c39074997f1944ec30e3d4d8a396042a3f35d01266bee27a40c845b0efc5f2a | 19,972 | [
-1
] |
19,973 | options.lisp | grapesmoker_cl-plot/src/options.lisp | (in-package :plot)
;; a parameter to hold all of our options and the means for setting
;; them. it will actually hold a list of conses whose car is the
;; option and whose cdr is a function for setting those options
(defparameter *plot-options* '())
(defmacro define-option (option-name option-handler)
"This macro ... | 1,246 | Common Lisp | .lisp | 30 | 36.7 | 75 | 0.671358 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | bfbd7f0e10c845cc2d3374566a548132f9866391687e58e90b45baad0387468b | 19,973 | [
-1
] |
19,974 | plots.lisp | grapesmoker_cl-plot/src/plots.lisp | (in-package :plot)
(defclass plot (plot-object)
;; a plot owns the axes that belong to it and the labels; its
;; bounding box is the right size to contain all of it
((title :accessor plot-title
:initarg :title
:initform nil)
(x-label :accessor plot-x-label
:initarg :x-label
... | 815 | Common Lisp | .lisp | 24 | 27.125 | 67 | 0.628644 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | b9397342d591bb54911167286b6a6bd61e15405bb9aaa6f54c63814673d70905 | 19,974 | [
-1
] |
19,975 | ticks.lisp | grapesmoker_cl-plot/src/ticks.lisp | (in-package :plot)
(defclass tick (line)
;; a tick is just a subclass of line, but it also knows where on the
;; axis it lives. this is a data coordinate
((axis-coord :accessor tick-axis-coord
:initarg :axis-coord
:initform nil)
;; is it a label?
(label :accessor tick-label
... | 776 | Common Lisp | .lisp | 21 | 31.190476 | 70 | 0.659574 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | c85ce1a921a3cfd4a13610ab2db5271b22c050492d65c1f07c9ed7ef9e3e7d39 | 19,975 | [
-1
] |
19,976 | plot-objects.lisp | grapesmoker_cl-plot/src/plot-objects.lisp | (in-package :plot)
(defclass plot-object ()
;; every plot object should know who its parent is so we can
;; navigate up and down the hierarchy in any direction
((parent :accessor plot-object-parent
:initarg :parent
:initform nil)
;; every object that we plot needs to have a bounding box
... | 832 | Common Lisp | .lisp | 19 | 39.263158 | 86 | 0.70581 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 207341aa50af52aa07490ce4620583d9b8c92fb19a2ca136359402fa81d215c3 | 19,976 | [
-1
] |
19,977 | point.lisp | grapesmoker_cl-plot/src/point.lisp | (in-package :plot)
(defparameter *default-point-color* '(0 0 1))
(defparameter *default-point-weight* 2.5)
(defclass point (plot-object)
;; a point is just a plot object with x and y coordinates, plus some
;; style information
((x :accessor point-x
:initarg :x
:initform nil)
(y :accessor point-y
... | 1,686 | Common Lisp | .lisp | 48 | 28.104167 | 70 | 0.595471 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 492def5e49c0dc979e8e962f0ae76b73e19ad8530522fe02c598e60f9b44e851 | 19,977 | [
-1
] |
19,978 | data-object.lisp | grapesmoker_cl-plot/src/data-object.lisp | (in-package :plot)
;; a class that holds the actual data that gets plotted
(defclass data-object (plot-object)
((x-data :accessor data-obj-x-data
:initarg :x-data
:initform nil)
(y-data :accessor data-obj-y-data
:initarg :y-data
:initform nil)
(style :accessor data... | 777 | Common Lisp | .lisp | 22 | 27.181818 | 76 | 0.62367 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | b4bb74e8c20f11e0e15c8eeb6c1d87e18b0234a50e6677fe4a6f2b8834c21f18 | 19,978 | [
-1
] |
19,979 | plot-image.lisp | grapesmoker_cl-plot/src/plot-image.lisp | (in-package :plot)
;; some defaults
(defparameter *default-im-width* 640)
(defparameter *default-im-height* 480)
(defparameter *default-axes-width* 600)
(defparameter *default-axes-height* 440)
(defparameter *default-x-offset* 20)
(defparameter *default-y-offset* 20)
(defparameter *default-line-color* '(0 0 0))
(d... | 3,273 | Common Lisp | .lisp | 80 | 30.025 | 81 | 0.569453 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | b65404457b07a995f0d587ea60c20f79a25f95d8fcfcb743ab569b25163fc76f | 19,979 | [
-1
] |
19,980 | plot-functions.lisp | grapesmoker_cl-plot/src/plot-functions.lisp | (in-package :plot)
(defun plot (x y filename &key (style :point) (color *default-point-color*) (thickness *default-point-weight*)
(output-type :png) (im-height *default-im-height*) (im-width *default-im-width*))
"The main interface to the plotter."
;; we'll want to handle multiple cases... | 3,488 | Common Lisp | .lisp | 77 | 29.61039 | 110 | 0.477673 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 52f6070f2bfb4327d9dbed03c7cacb47b047f62932efb36ffdaa2d1c48d1a689 | 19,980 | [
-1
] |
19,981 | basic-tests.lisp | grapesmoker_cl-plot/tests/basic-tests.lisp | (in-package :plot)
(defun basic-test (filename)
(let* ((surface (create-image-surface :argb32 640 480))
(context (create-context surface))
(axis (make-instance 'axis
:thickness 5.0
:start-x 25
:start-y 25
:end-x 25
:end-y 275
:color '(0 0 0))))
(unwind-pr... | 5,469 | Common Lisp | .lisp | 120 | 29.316667 | 152 | 0.478277 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | d32ad9a2a7dc5b71c59faa2b16f3ae65a8a24eb072b7b10c087a38aff3c997db | 19,981 | [
-1
] |
19,982 | cl-plot.asd | grapesmoker_cl-plot/cl-plot.asd | (eval-when (:compile-toplevel :load-toplevel :execute)
(ql:quickload :cl-cairo2))
(defpackage :cl-plot
(:nicknames :plot)
(:use :cl :cairo)
(:documentation "Plotting routines based on cl-cairo2"))
(defsystem "cl-plot"
:name "cl-plot"
:description "A plotting library in Lisp written using cl-cairo2."
:... | 900 | Common Lisp | .asd | 32 | 21.875 | 68 | 0.581692 | grapesmoker/cl-plot | 2 | 2 | 0 | GPL-2.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | d89b72bf672462be9c89e63e5e97f600b241ea2b27bda8ddd62fe02ea5314bb5 | 19,982 | [
-1
] |
20,011 | GeneR.lisp | TheLostLambda_Lisp-Land/GeneR.lisp | (defun G0 (celli var)
(let ((Gval (parse-gene (nth 0 (fetch-value :DNA celli *cells*))))
(Chlorop nil))
(cond ((btwn Gval 0 9)
(setf Chlorop 1))
((btwn Gval 10 19)
(setf Chlorop 2))
((btwn Gval 20 29)
(setf Chlorop 3))
(t
(setf Chl... | 1,951 | Common Lisp | .lisp | 60 | 22.566667 | 94 | 0.483751 | TheLostLambda/Lisp-Land | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 28f384b39a8c11872e3bef7166181c1524562257d7333b56e1eaa4fba1843f70 | 20,011 | [
-1
] |
20,012 | LL.lisp | TheLostLambda_Lisp-Land/LL.lisp | ;;Stage 1: Implement Characteristics of Life (2 weeks) : DONE
;;Stage 1.5: Add complementary functions (2 weeks) : DONE
;;Stage 2: Add in realism and research (6+ weeks) : IN PROGRESS
;;Stage 3: Beautify and refine code (TBD) : TODO
;;;; Current Task: Do TODO's
(ql:quickload 'lispbuilder-sdl)
(ql:quickload 'lispbuild... | 14,698 | Common Lisp | .lisp | 280 | 45.728571 | 191 | 0.598126 | TheLostLambda/Lisp-Land | 2 | 0 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 67f5a1da74336f3381aa5e093e245adaaeec4f786b7c623a8a637a75c15b458f | 20,012 | [
-1
] |
20,031 | nburst.lsp | asrin475_Lisp-Tamimi/nburst.lsp | (defun c:nb ( / *error* idx sel )
(defun *error* ( msg )
(LM:endundo (LM:acdoc))
(if (not (wcmatch (strcase msg t) "*break,*cancel*,*exit*"))
(princ (strcat "\nError: " msg))
)
(princ)
)
(LM:startundo (LM:acdoc))
(if
(setq sel
(LM:ssg... | 6,099 | Common Lisp | .l | 169 | 23.254438 | 126 | 0.446859 | asrin475/Lisp-Tamimi | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | f3cff8af3e5402543c076ac92a6f8cdd54e19b27cf11c8c681fcb12d49b5908e | 20,031 | [
-1
] |
20,032 | rt.lsp | asrin475_Lisp-Tamimi/rt.lsp | ;by Mohamedh Asrin 2018
(vl-load-com)
(defun c:yt()
(defun replaceText(text / toFind toReplace vlText)
(setq toFind "X =")
(setq vlText (vlax-ename->vla-object text)
vlTextString (vla-get-TextString vlText))
(setq index (vl-string-search toFind vlTextString))
;(print (itoa index))
(if (/= nil index)
... | 1,668 | Common Lisp | .l | 60 | 23.933333 | 83 | 0.556325 | asrin475/Lisp-Tamimi | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | bbffb1adb2478f7aa01c267d7741cd0b2d2be39189c61969821674701119af04 | 20,032 | [
-1
] |
20,033 | MyLsp2.lsp | asrin475_Lisp-Tamimi/MyLsp2.lsp | ; ***************************************************
; MyLisp.lsp is a collection of tools that make autocad ease and it is created and maintained by Mohamedh Asrin
; © All Right Reserved 2017 01 18 12:16 AM
;
;
;
(setq MYVER "v1.3 alpha 15 - bumble bee")
#| ; ***************************************************
;... | 90,938 | Common Lisp | .l | 2,705 | 26.708318 | 422 | 0.512186 | asrin475/Lisp-Tamimi | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 196598e8f63b1acda537b737d7a6f32d3337315923752442e4a146ce9cf4f443 | 20,033 | [
-1
] |
20,051 | sample_3.lisp | smaster0517_Tiny-Lisp/Lisp Codes/sample_3.lisp | (let((len 1))
(reduce
(lambda (x y)
(setq len (+ len 1))
)
'(csce 4430 is easy using lisp)
) | 122 | Common Lisp | .lisp | 7 | 12.285714 | 36 | 0.474138 | smaster0517/Tiny-Lisp | 2 | 1 | 1 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | f048a46c1d9458af6214bfe5cee7a8b52424b801f11adc9a7ce8eab8b2b96798 | 20,051 | [
-1
] |
20,052 | sample_7.lisp | smaster0517_Tiny-Lisp/Lisp Codes/sample_7.lisp | (defun funcc (mylist)
(cond
((null mylist) mylist)
((and (eq (car mylist) (cadr mylist)) (eq (car mylist) (caddr mylist))) (funcc (cdr mylist)))
((eq (car mylist) (cadr mylist)) (cons (car mylist) (funcc (cddr mylist))))
(T (funcc (cdr mylist)))
)
)
(funcc '(a b a a a c c)) | 286 | Common Lisp | .lisp | 9 | 29.666667 | 95 | 0.618705 | smaster0517/Tiny-Lisp | 2 | 1 | 1 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | a63000e2136b34f162db630ac28b443b2dd9e29fa62d217d3a91ddb5ca62f0ee | 20,052 | [
-1
] |
20,053 | sample_8.lisp | smaster0517_Tiny-Lisp/Lisp Codes/sample_8.lisp | (defun funcd (mylist mycount)
(cond
((null mylist) mylist)
((null (cdr mylist)) (list (list (+ mycount 1) (car mylist))))
((eq (car mylist) (cadr mylist)) (funcd (cdr mylist) (+ mycount 1)))
(T (cons (list (+ mycount 1) (car mylist)) (funcd (cdr mylist) 0)))
)
)
(funcd '(a b a a a c c) 0) | 306 | Common Lisp | .lisp | 9 | 31.333333 | 70 | 0.597315 | smaster0517/Tiny-Lisp | 2 | 1 | 1 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | aefc1cdf0cf19a54f372d704ab04d4b27a0911f0b6fe50928607e6124669c15c | 20,053 | [
-1
] |
20,054 | sample_4.lisp | smaster0517_Tiny-Lisp/Lisp Codes/sample_4.lisp | (reduce (lambda (x y)(cond ((atom x) (list y x)) (t (cons y x)))) '(e s c t n u)) | 81 | Common Lisp | .lisp | 1 | 81 | 81 | 0.518519 | smaster0517/Tiny-Lisp | 2 | 1 | 1 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | babee9aa18e270f12812a337d4dde35d49e64cd5431cf44d4fd0888547cf4d03 | 20,054 | [
-1
] |
20,055 | sample_5.lisp | smaster0517_Tiny-Lisp/Lisp Codes/sample_5.lisp | (defun funca (mylist)
(cond
((null mylist) mylist)
((eq (car mylist) (cadr mylist)) (funca (cdr mylist)))
(T (cons (car mylist) (funca (cdr mylist))))
)
)
(funca '(a b a a a c c)) | 188 | Common Lisp | .lisp | 8 | 21.5 | 56 | 0.61326 | smaster0517/Tiny-Lisp | 2 | 1 | 1 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 1db35924b81ac1c5c952959ff727841cd86f63ca988604189c16e908e93e9ea8 | 20,055 | [
-1
] |
20,056 | sample_6.lisp | smaster0517_Tiny-Lisp/Lisp Codes/sample_6.lisp | (defun funcb (mylist)
(cond
((null mylist) mylist)
((and (eq (car mylist) (cadr mylist)) (eq (car mylist) (caddr mylist))) (funcb (cdr mylist)))
((eq (car mylist) (cadr mylist)) (funcb (cddr mylist)))
(T (cons (car mylist) (funcb (cdr mylist))))
)
)
(funcb '(a b a a a c c))
| 286 | Common Lisp | .lisp | 9 | 29.555556 | 95 | 0.620939 | smaster0517/Tiny-Lisp | 2 | 1 | 1 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 44eda335e16ac5d76e9e6374a2bdcef35208e24cef051226b813b753379bbf6f | 20,056 | [
-1
] |
20,080 | PROJECT_LANG_1.lisp | seanpm2001_Learn-LISP/PROJECT_LANG_1.lisp | ; Start of script
; Project language file 1
; For: seanpm2001/Learn-Lisp
; About:
; I decided to make Lisp the main project language file for this project (Seanpm2001/Learn-Lisp) as Lisp is the language this project is dedicated to, because this project is about learning the Lisp programming language. It only makes se... | 1,075 | Common Lisp | .lisp | 14 | 75.5 | 356 | 0.783349 | seanpm2001/Learn-LISP | 2 | 1 | 0 | GPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 70e33172a778d8620aef87c831eee692deafd1d0a60da84737eafbbd393a0451 | 20,080 | [
-1
] |
20,139 | package.lisp | lhope_cl-czmq/src/package.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 5,282 | Common Lisp | .lisp | 230 | 19.230435 | 86 | 0.662363 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 1a13c3aba6fe044ef08901936aad97b3f2e1a3e08527bf4843d2ad94b8cd964d | 20,139 | [
-1
] |
20,140 | zpollset.lisp | lhope_cl-czmq/src/zpollset.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 3,512 | Common Lisp | .lisp | 78 | 41.948718 | 76 | 0.7315 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 6c0720ca990365741e1dc13c4dbb35a8cfc183826b7c717c0eedd533a5d4309e | 20,140 | [
-1
] |
20,141 | zsys.lisp | lhope_cl-czmq/src/zsys.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 2,490 | Common Lisp | .lisp | 56 | 42.107143 | 74 | 0.742374 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 5b7ff0836e49049e8ca56040daa7735f9eaf73d3c3b779de5a5ebd66ad796a54 | 20,141 | [
-1
] |
20,142 | zstr.lisp | lhope_cl-czmq/src/zstr.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 2,995 | Common Lisp | .lisp | 74 | 36.810811 | 78 | 0.668501 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 8ffeb59056c43ff59cf8f40b86c0435bf3be72efb249e92b74f33ce7fd7ade09 | 20,142 | [
-1
] |
20,143 | zbeacon.lisp | lhope_cl-czmq/src/zbeacon.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 5,951 | Common Lisp | .lisp | 146 | 36.869863 | 115 | 0.693253 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | c462927f5ec4be925ded009e029003ac76373e55fb911063df10b3e44c2b0f4b | 20,143 | [
-1
] |
20,144 | zsockopt.lisp | lhope_cl-czmq/src/zsockopt.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 6,649 | Common Lisp | .lisp | 193 | 31.709845 | 78 | 0.711291 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 0f9f81c917dd3178e619e74730607c95989047b8dbd1e39d17344d3791a8b879 | 20,144 | [
-1
] |
20,145 | zhash.lisp | lhope_cl-czmq/src/zhash.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 12,452 | Common Lisp | .lisp | 299 | 38.020067 | 83 | 0.598544 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | d5531a702edef01b6874e3feae7480584be1b36c7ff28289ee7d3e0c99cb7f09 | 20,145 | [
-1
] |
20,146 | czmq.lisp | lhope_cl-czmq/src/czmq.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 1,123 | Common Lisp | .lisp | 27 | 40.111111 | 71 | 0.768103 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 6e9b3b52f67d8ecb570ca09fbf6f369779a0ba79c8f9b65e016b642dac85a6a7 | 20,146 | [
-1
] |
20,147 | ffi-utils.lisp | lhope_cl-czmq/src/ffi-utils.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 3,774 | Common Lisp | .lisp | 87 | 39.873563 | 115 | 0.675279 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 6e50ca550f38f04d10f9891d449f4f7a6c3965127bd7dad4b60bc7b7aa0eaeda | 20,147 | [
-1
] |
20,148 | zloop.lisp | lhope_cl-czmq/src/zloop.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 14,562 | Common Lisp | .lisp | 362 | 35.707182 | 102 | 0.632477 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 7053ed34ffd35b1f32095dcb078266befb6fb0f348e7eca42f42e1ae1eb2e98d | 20,148 | [
-1
] |
20,149 | zlist.lisp | lhope_cl-czmq/src/zlist.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 9,117 | Common Lisp | .lisp | 230 | 35.704348 | 78 | 0.568694 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | da6c19172612d6bf0865d2f2f31b345e9b7fa0f1ed04f6a581cc07818409b308 | 20,149 | [
-1
] |
20,150 | zctx.lisp | lhope_cl-czmq/src/zctx.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 2,782 | Common Lisp | .lisp | 75 | 33.84 | 71 | 0.683135 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | b3002c395a09fdd666a0296040af3b71aff74df25be0d90a72fd2d73a6d51736 | 20,150 | [
-1
] |
20,151 | zframe.lisp | lhope_cl-czmq/src/zframe.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 6,780 | Common Lisp | .lisp | 173 | 35.624277 | 98 | 0.666971 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 86ea20ced6f5149a6cdb0be76509baba9697db71809014fa1242c5befc4f9080 | 20,151 | [
-1
] |
20,152 | grovel.lisp | lhope_cl-czmq/src/grovel.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 2,954 | Common Lisp | .lisp | 76 | 30.381579 | 71 | 0.566051 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | e1ad0cd92a2744267aff0a5b8e278ff4da30b5474f666401b2d860232444922c | 20,152 | [
-1
] |
20,153 | ffi.lisp | lhope_cl-czmq/src/ffi.lisp | ;;; This file was automatically generated by SWIG (http://www.swig.org).
;;; Version 2.0.10
;;;
;;; Do not make changes to this file unless you know what you are doing--modify
;;; the SWIG interface file instead.
;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in th... | 18,125 | Common Lisp | .lisp | 539 | 31.09462 | 95 | 0.720281 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | ca090f16d2d0000ae44b801f6c449f6f0bbd35b0e2287e025b767dd02cfd09a2 | 20,153 | [
-1
] |
20,154 | zsocket.lisp | lhope_cl-czmq/src/zsocket.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 4,366 | Common Lisp | .lisp | 96 | 42.510417 | 127 | 0.694464 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 9a413cc02c888976779a553290b8b979e3961602dceba56924b2905bd7aa7928 | 20,154 | [
-1
] |
20,155 | zmsg.lisp | lhope_cl-czmq/src/zmsg.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 9,299 | Common Lisp | .lisp | 245 | 33.795918 | 104 | 0.639352 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 763b86c54ce77ddc54e3fe5e69d24d2e3ca1752fa5a46857fe5e8b1c109911ae | 20,155 | [
-1
] |
20,156 | zthread.lisp | lhope_cl-czmq/src/zthread.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 6,050 | Common Lisp | .lisp | 125 | 45.64 | 80 | 0.684469 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 501c0aa5f8459167544d81c8aef2a4a132f8b6807807fe19262f11ae0b3cb0a2 | 20,156 | [
-1
] |
20,157 | zclock.lisp | lhope_cl-czmq/src/zclock.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 3,137 | Common Lisp | .lisp | 78 | 37.769231 | 81 | 0.661301 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 29b4a8ee8a3ca29254d161d230cc1530d6f2cd91c890983075eac8a5c3844ffb | 20,157 | [
-1
] |
20,158 | test.lisp | lhope_cl-czmq/tests/test.lisp | ;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This library is free softwar... | 1,123 | Common Lisp | .lisp | 32 | 34 | 71 | 0.755515 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 9bad31022853036d45f112545a3a52ecbe185606a0e56220b11773e4b574925d | 20,158 | [
-1
] |
20,159 | cl-czmq.asd | lhope_cl-czmq/cl-czmq.asd | ;;;; -*- Mode: LISP -*-
;; Copyright (c) 2013, Lucas Hope <lucas.r.hope@gmail.com>.
;; Copyright other contributors as noted in the AUTHORS file.
;;
;; This file is part of cl-czmq - a re-binding of the C binding for
;; the zmq transport layer (czmq).
;;
;; This file is licensed under the terms of the LLGPL.
;;
;; This... | 1,874 | Common Lisp | .asd | 50 | 32.42 | 82 | 0.644896 | lhope/cl-czmq | 2 | 3 | 0 | LGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 1f755e026bb6c83eef0cf717c8b44f8298b4418f35e094c195a41d6dd6d5cdbc | 20,159 | [
-1
] |
20,197 | binary-sbcl.lisp | alessiostalla_portofino-cli-lisp/src/binary-sbcl.lisp | (when cl+ssl::*ssl-global-context*
(cl+ssl:ssl-ctx-free cl+ssl::*ssl-global-context*)
(setf cl+ssl::*ssl-global-context* nil))
(map nil #'cffi:close-foreign-library (cffi:list-foreign-libraries))
| 201 | Common Lisp | .lisp | 4 | 48 | 68 | 0.72449 | alessiostalla/portofino-cli-lisp | 2 | 0 | 1 | AGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | b2d9e89b84ab8e6d1e6983117423c1d26b7ed5d7f49f237b80485d77d300ed2b | 20,197 | [
-1
] |
20,198 | portofino.lisp | alessiostalla_portofino-cli-lisp/src/portofino.lisp | (in-package :portofino)
(defun latest-portofino-version ()
(let* ((drakma:*text-content-types* '(("application" . "json")))
(resp (drakma:http-request "http://search.maven.org/solrsearch/select"
:parameters '(("q" . "g:com.manydesigns AND a:portofino")
("start" . "0")
("rows" . "1"))))... | 9,155 | Common Lisp | .lisp | 179 | 45.458101 | 135 | 0.670691 | alessiostalla/portofino-cli-lisp | 2 | 0 | 1 | AGPL-3.0 | 9/19/2024, 11:28:00 AM (Europe/Amsterdam) | 63f7b740e3ae5784d3562b4b0f59ea563758d2fe6269f20dd9f066ebc1ec585a | 20,198 | [
-1
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.