├── .gitignore ├── Books ├── CommonLispModules │ └── chapter2.lisp ├── Condition-System │ ├── Chapter2-choice.lisp │ ├── Chapter2-condition.lisp │ ├── Chapter2-restarts.lisp │ └── Chapter2.lisp ├── LandOfLisp │ ├── Chapter 10 │ │ ├── evolve.lisp │ │ └── loops-n-format.lisp │ ├── Chapter 11 │ │ └── format.lisp │ ├── Chapter 12 │ │ ├── client.lisp │ │ ├── data.txt │ │ ├── server.lisp │ │ └── streams.lisp │ ├── Chapter 13 │ │ ├── testing-server.lisp │ │ └── web-server.lisp │ ├── Chapter 16 │ │ └── macros.lisp │ ├── Chapter 2 │ │ ├── guess-my-number.fas │ │ ├── guess-my-number.lib │ │ └── guess-my-number.lisp │ ├── Chapter 4 │ │ ├── chapter4.lisp │ │ ├── guess_my_number.fas │ │ ├── guess_my_number.lib │ │ ├── guess_my_number.lisp │ │ ├── increasing-order.lisp │ │ ├── play_land.fas │ │ ├── play_land.lib │ │ └── play_land.lisp │ ├── Chapter 6 │ │ └── chapter6.lisp │ ├── Chapter 7 │ │ ├── lessonSelf.lisp │ │ ├── test.dot │ │ ├── test.dot.png │ │ ├── testfile.txt │ │ ├── uwizard.dot │ │ ├── uwizard.dot.png │ │ ├── wizard-avernture-game.lisp │ │ ├── wizard.dot │ │ └── wizard.dot.png │ ├── Chapter 8 │ │ ├── DotNodes.lisp │ │ ├── chapter8testing.lisp │ │ ├── city │ │ ├── city.png │ │ ├── grand-theft-wumpus.lisp │ │ ├── known-city │ │ └── known-city.png │ └── Chapter 9 │ │ ├── orc-battle.lisp │ │ └── testing.lisp ├── LetOverLambda │ ├── chapter1.lisp │ ├── chapter2-lexical-vs-dynamic.lisp │ ├── chapter2.lisp │ ├── chapter3.lisp │ ├── chapter4.lisp │ ├── chapter5.lisp │ ├── closure-funs-2.lisp │ └── test.lisp ├── Lisp-System-Implementation │ ├── ls9.c │ └── vec-length-test.c ├── OnLisp │ ├── .#chapter1.lisp │ ├── .chapter1.lisp.swp │ ├── chapter1.lisp │ ├── chapter3.lisp │ ├── chapter4.lisp │ ├── chapter5.lisp │ ├── chapter6.lisp │ ├── chapter7.lisp │ └── cool.lisp ├── Paradigms-of-AI │ ├── MY-DB-ALBUM.lisp │ ├── MY-DB-ARTIST.lisp │ ├── MY-DB-RATING.lisp │ ├── MY-DB-RIPPED.lisp │ ├── MY-DB-TITLE.lisp │ ├── bah │ ├── chapter1.lisp │ ├── chapter2.lisp │ ├── chapter3.lisp │ ├── chapter4.lisp │ ├── test.lisp │ └── test.text ├── PracticalCommonLisp │ ├── Chapter1 │ │ ├── CD.fas │ │ ├── CD.lib │ │ ├── CD.lisp │ │ ├── helloworld.fas │ │ ├── helloworld.lib │ │ ├── helloworld.lisp │ │ ├── my-CD.lisp │ │ ├── name.fas │ │ ├── name.lib │ │ ├── name.lisp │ │ ├── test.lisp │ │ └── tester.lisp │ ├── chapter10.lisp │ ├── chapter11.lisp │ ├── chapter5.lisp │ ├── chapter7.lisp │ ├── chapter8.lisp │ └── chapter9.lisp ├── README.org ├── SICP │ └── Videos │ │ ├── .#2b.lisp │ │ └── 2a.lisp ├── The-Art-Of-The-Meta-Object-Protocol │ ├── chapter-1.lisp │ ├── closette.asd │ └── environment.lisp ├── commonlisp-recipies │ └── chapter2 │ │ └── queue.lisp └── commonlisp-the-language │ └── chapter19-Structures.lisp ├── CL ├── functions.lisp ├── macros.lisp └── stdlib │ ├── lazy-cons.lisp │ ├── lazy.lisp │ ├── list.lisp │ ├── package.lisp │ ├── ref.lisp │ ├── string.lisp │ ├── struct.lisp │ ├── tuple.lisp │ └── vector.lisp ├── Class ├── AI │ ├── Haskell-391-Solution │ ├── homework5.lisp │ ├── images │ │ ├── 1b-plot.png │ │ ├── 1c-1.png │ │ ├── 1c-2.png │ │ ├── 1c-3.png │ │ ├── 1c-4.png │ │ ├── binomial-plot.png │ │ ├── p-2-c1.png │ │ ├── p-2-c2.png │ │ ├── p-2-c3.png │ │ ├── p-2-c4.png │ │ ├── p-2-c5.png │ │ ├── p-2-d1.png │ │ ├── p-2-d2.png │ │ ├── p-2-d3.png │ │ ├── p-2-d4.png │ │ ├── p-2-d5.png │ │ ├── p-2-h1.png │ │ ├── p-2-h2.png │ │ ├── p-2-h3.png │ │ ├── p-2-h4.png │ │ └── p-2-h5.png │ └── write-up.org ├── Cryptology │ ├── inverse.lisp │ ├── primitive-roots.lisp │ └── string-add.lisp ├── OS │ ├── final.lisp │ ├── functions.lisp │ ├── macros.lisp │ ├── run.html │ ├── run.org │ └── run.txt ├── README.org ├── complex │ └── first.lisp ├── networking.lisp ├── number-theory │ ├── mods.lisp │ └── points-on-eliptic-curve-mod7.lisp ├── physics │ └── error-progoation.lisp ├── probability.lisp └── probability │ ├── HW4.lisp │ ├── HW7.lisp │ ├── HW8.lisp │ └── fun.lisp ├── Clojure └── misc-scripts │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── doc │ └── intro.md │ ├── index.html │ ├── project.clj │ ├── src │ ├── The-joy-of-Clojure │ │ ├── chapter1.clj │ │ ├── chapter2.clj │ │ ├── chapter3.clj │ │ ├── chapter5.clj │ │ ├── chapter6.clj │ │ ├── chapter7.clj │ │ ├── chapter8.clj │ │ └── chapter9.clj │ ├── compilers │ │ ├── *scract* │ │ ├── fun.txt │ │ ├── interpreter_def_method.clj │ │ ├── interpreter_type.clj │ │ ├── interpter.clj │ │ ├── interpter_spec.clj │ │ ├── parser.clj │ │ └── test.txt │ └── misc_scripts │ │ ├── brute_force_script.clj │ │ ├── complex.clj │ │ ├── core.clj │ │ ├── fun │ │ └── norvig-tl │ │ │ ├── big.txt │ │ │ └── spelling.clj │ │ ├── functions.clj │ │ ├── macros.clj │ │ ├── pattern_matching.clj │ │ ├── play │ │ ├── category.clj │ │ ├── defn.clj │ │ ├── list.clj │ │ ├── refs.clj │ │ ├── test.clj │ │ ├── type-test.clj │ │ └── zippers-test.clj │ │ ├── sort.clj │ │ └── tree.clj │ └── test │ └── misc-scripts │ └── core_test.clj ├── MDL └── first.mud ├── Project-Euler └── 566.lisp ├── README.org ├── SBCL ├── assem.lisp └── ultimate.lisp ├── algorithms.lisp ├── book-adaptations └── Purely-Functional │ ├── chapter-3 │ ├── binomial-heap.lisp │ ├── leftist-heap.lisp │ ├── red-black-clos.lisp │ └── red-black.lisp │ ├── chapter2.lisp │ └── chapter3.lisp ├── cl-user.lisp ├── data-structures ├── arrow.lisp ├── custom-finger-tree.lisp ├── finger-trees.lisp ├── functor-applicative-monad.lisp ├── graph.lisp ├── history │ ├── graph.lisp │ └── lazy-cons.lisp ├── not-important │ ├── clos-dequeue.lisp │ └── lol-queue.lisp ├── pure-dequeue.lisp ├── pure-lazy-queue.lisp ├── pure-queue.lisp ├── reader.lisp ├── state.lisp ├── tests │ ├── dequeue-vs-finger.lisp │ ├── graph-test.lisp │ └── state-test.lisp ├── tree-pure.lisp ├── tree.lisp └── utils │ └── lazy-cons.lisp ├── declerationfun.lisp ├── do-syntax.lisp ├── encoding ├── mendler.lisp └── scott.lisp ├── first-class-modules.lisp ├── from-c-to-lisp.lisp ├── interesting-problems.lisp ├── irc.lisp ├── mcclim ├── sheet.lisp ├── task.lisp └── tutorial.lisp ├── misc.asd ├── my-CD.lisp ├── netfarm.lisp ├── numberConverter.lisp ├── nyxt ├── auto-config.3.lisp ├── auto-config.lisp └── init.lisp ├── pattern-matching.lisp ├── projects └── haskell-yaml-generator │ ├── README.org │ ├── gui │ └── draw.lisp │ ├── src │ ├── config.lisp │ ├── main.lisp │ └── stack-yaml.lisp │ └── yaml-generator.asd ├── racket ├── continuations.rkt ├── fun.rkt ├── lambda-calc.rkt └── macros.rkt ├── resource.lisp ├── scheme ├── .dir-locals.el ├── macro.scm ├── quote.scm └── software-design-for-flexibilty │ ├── scm-run.scm │ ├── src │ ├── 2-arity.scm │ ├── 2-domain-specific-language.scm │ ├── 2-library.scm │ └── 2-regex.scm │ └── test │ ├── 2-library.scm │ └── 2-regex.scm ├── scripts.asd ├── scripts.lisp ├── scripts ├── akochan.lisp ├── cache-fstar-source.lisp ├── chinese-anki-import │ ├── README.org │ ├── data │ │ └── Tao Te Ching 老子道德經.epub │ ├── frequency-csv.asd │ ├── src │ │ ├── convert.lisp │ │ ├── format-changer.lisp │ │ └── tokenizer.lisp │ └── test │ │ ├── input.txt │ │ ├── output.txt │ │ └── the-dao.txt ├── first │ ├── scripts.lisp │ └── test.lisp ├── mahjong.lisp ├── run │ └── ako-run.lisp ├── running.lisp ├── slex-choice.lisp └── slex-choice │ ├── src │ ├── bi-table.lisp │ ├── entity.lisp │ ├── queries.lisp │ ├── race-role-map.lisp │ ├── rules.lisp │ └── trait-table.lisp │ └── test │ ├── entity.lisp │ ├── race-role.lisp │ ├── run-tests.lisp │ ├── testpkg.lisp │ └── trait-table.lisp ├── sort.lisp ├── testing-setf.lisp ├── testing.lisp ├── threadstest.lisp └── type-theory.lisp /.gitignore: -------------------------------------------------------------------------------- 1 | *.fasl 2 | *.*~ 3 | \#*# 4 | .[#]*[#] -------------------------------------------------------------------------------- /Books/CommonLispModules/chapter2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/CommonLispModules/chapter2.lisp -------------------------------------------------------------------------------- /Books/Condition-System/Chapter2-choice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Condition-System/Chapter2-choice.lisp -------------------------------------------------------------------------------- /Books/Condition-System/Chapter2-condition.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Condition-System/Chapter2-condition.lisp -------------------------------------------------------------------------------- /Books/Condition-System/Chapter2-restarts.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Condition-System/Chapter2-restarts.lisp -------------------------------------------------------------------------------- /Books/Condition-System/Chapter2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Condition-System/Chapter2.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 10/evolve.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 10/evolve.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 10/loops-n-format.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 10/loops-n-format.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 11/format.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 11/format.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 12/client.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 12/client.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 12/data.txt: -------------------------------------------------------------------------------- 1 | 2 | "my data " -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 12/server.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 12/server.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 12/streams.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 12/streams.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 13/testing-server.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 13/testing-server.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 13/web-server.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 13/web-server.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 16/macros.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 16/macros.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 2/guess-my-number.fas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 2/guess-my-number.fas -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 2/guess-my-number.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 2/guess-my-number.lib -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 2/guess-my-number.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 2/guess-my-number.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 4/chapter4.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 4/chapter4.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 4/guess_my_number.fas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 4/guess_my_number.fas -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 4/guess_my_number.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 4/guess_my_number.lib -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 4/guess_my_number.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 4/guess_my_number.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 4/increasing-order.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 4/increasing-order.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 4/play_land.fas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 4/play_land.fas -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 4/play_land.lib: -------------------------------------------------------------------------------- 1 | #0Y_ #0Y |CHARSET|::|UTF-8| 2 | -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 4/play_land.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 4/play_land.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 6/chapter6.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 6/chapter6.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 7/lessonSelf.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 7/lessonSelf.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 7/test.dot: -------------------------------------------------------------------------------- 1 | digraph { 2 | a ->b; 3 | } -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 7/test.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 7/test.dot.png -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 7/testfile.txt: -------------------------------------------------------------------------------- 1 | Hello File! 2 | ] {} -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 7/uwizard.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 7/uwizard.dot -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 7/uwizard.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 7/uwizard.dot.png -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 7/wizard-avernture-game.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 7/wizard-avernture-game.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 7/wizard.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 7/wizard.dot -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 7/wizard.dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 7/wizard.dot.png -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 8/DotNodes.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 8/DotNodes.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 8/chapter8testing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 8/chapter8testing.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 8/city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 8/city -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 8/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 8/city.png -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 8/grand-theft-wumpus.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 8/grand-theft-wumpus.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 8/known-city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 8/known-city -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 8/known-city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 8/known-city.png -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 9/orc-battle.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 9/orc-battle.lisp -------------------------------------------------------------------------------- /Books/LandOfLisp/Chapter 9/testing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LandOfLisp/Chapter 9/testing.lisp -------------------------------------------------------------------------------- /Books/LetOverLambda/chapter1.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LetOverLambda/chapter1.lisp -------------------------------------------------------------------------------- /Books/LetOverLambda/chapter2-lexical-vs-dynamic.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LetOverLambda/chapter2-lexical-vs-dynamic.lisp -------------------------------------------------------------------------------- /Books/LetOverLambda/chapter2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LetOverLambda/chapter2.lisp -------------------------------------------------------------------------------- /Books/LetOverLambda/chapter3.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LetOverLambda/chapter3.lisp -------------------------------------------------------------------------------- /Books/LetOverLambda/chapter4.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LetOverLambda/chapter4.lisp -------------------------------------------------------------------------------- /Books/LetOverLambda/chapter5.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LetOverLambda/chapter5.lisp -------------------------------------------------------------------------------- /Books/LetOverLambda/closure-funs-2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/LetOverLambda/closure-funs-2.lisp -------------------------------------------------------------------------------- /Books/LetOverLambda/test.lisp: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Books/Lisp-System-Implementation/ls9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Lisp-System-Implementation/ls9.c -------------------------------------------------------------------------------- /Books/Lisp-System-Implementation/vec-length-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Lisp-System-Implementation/vec-length-test.c -------------------------------------------------------------------------------- /Books/OnLisp/.#chapter1.lisp: -------------------------------------------------------------------------------- 1 | cross@katyusha.STUDENT.cwru.edu.9568:1454692844 -------------------------------------------------------------------------------- /Books/OnLisp/.chapter1.lisp.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/OnLisp/.chapter1.lisp.swp -------------------------------------------------------------------------------- /Books/OnLisp/chapter1.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/OnLisp/chapter1.lisp -------------------------------------------------------------------------------- /Books/OnLisp/chapter3.lisp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Books/OnLisp/chapter4.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/OnLisp/chapter4.lisp -------------------------------------------------------------------------------- /Books/OnLisp/chapter5.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/OnLisp/chapter5.lisp -------------------------------------------------------------------------------- /Books/OnLisp/chapter6.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/OnLisp/chapter6.lisp -------------------------------------------------------------------------------- /Books/OnLisp/chapter7.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/OnLisp/chapter7.lisp -------------------------------------------------------------------------------- /Books/OnLisp/cool.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/OnLisp/cool.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/MY-DB-ALBUM.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/MY-DB-ALBUM.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/MY-DB-ARTIST.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/MY-DB-ARTIST.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/MY-DB-RATING.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/MY-DB-RATING.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/MY-DB-RIPPED.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/MY-DB-RIPPED.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/MY-DB-TITLE.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/MY-DB-TITLE.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/bah: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/bah -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/chapter1.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/chapter1.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/chapter2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/chapter2.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/chapter3.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/chapter3.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/chapter4.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/chapter4.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/Paradigms-of-AI/test.lisp -------------------------------------------------------------------------------- /Books/Paradigms-of-AI/test.text: -------------------------------------------------------------------------------- 1 | 2 | (HELLO THERE) GOODBYE -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/CD.fas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/CD.fas -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/CD.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/CD.lib -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/CD.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/CD.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/helloworld.fas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/helloworld.fas -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/helloworld.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/helloworld.lib -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/helloworld.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/helloworld.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/my-CD.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/my-CD.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/name.fas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/name.fas -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/name.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/name.lib -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/name.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/name.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/Chapter1/test.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/Chapter1/tester.lisp: -------------------------------------------------------------------------------- 1 | (in-package "YOUR-PACKAGE") 2 | (defparameter *hash-table* '#.*my-db-album*) 3 | -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/chapter10.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/chapter10.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/chapter11.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/chapter11.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/chapter5.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/chapter5.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/chapter7.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/chapter7.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/chapter8.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/chapter8.lisp -------------------------------------------------------------------------------- /Books/PracticalCommonLisp/chapter9.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/PracticalCommonLisp/chapter9.lisp -------------------------------------------------------------------------------- /Books/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/README.org -------------------------------------------------------------------------------- /Books/SICP/Videos/.#2b.lisp: -------------------------------------------------------------------------------- 1 | loli@Katyusha.31593:1475424727 -------------------------------------------------------------------------------- /Books/SICP/Videos/2a.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/SICP/Videos/2a.lisp -------------------------------------------------------------------------------- /Books/The-Art-Of-The-Meta-Object-Protocol/chapter-1.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/The-Art-Of-The-Meta-Object-Protocol/chapter-1.lisp -------------------------------------------------------------------------------- /Books/The-Art-Of-The-Meta-Object-Protocol/closette.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/The-Art-Of-The-Meta-Object-Protocol/closette.asd -------------------------------------------------------------------------------- /Books/The-Art-Of-The-Meta-Object-Protocol/environment.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/The-Art-Of-The-Meta-Object-Protocol/environment.lisp -------------------------------------------------------------------------------- /Books/commonlisp-recipies/chapter2/queue.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/commonlisp-recipies/chapter2/queue.lisp -------------------------------------------------------------------------------- /Books/commonlisp-the-language/chapter19-Structures.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Books/commonlisp-the-language/chapter19-Structures.lisp -------------------------------------------------------------------------------- /CL/functions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/functions.lisp -------------------------------------------------------------------------------- /CL/macros.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/macros.lisp -------------------------------------------------------------------------------- /CL/stdlib/lazy-cons.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/stdlib/lazy-cons.lisp -------------------------------------------------------------------------------- /CL/stdlib/lazy.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/stdlib/lazy.lisp -------------------------------------------------------------------------------- /CL/stdlib/list.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/stdlib/list.lisp -------------------------------------------------------------------------------- /CL/stdlib/package.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/stdlib/package.lisp -------------------------------------------------------------------------------- /CL/stdlib/ref.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/stdlib/ref.lisp -------------------------------------------------------------------------------- /CL/stdlib/string.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/stdlib/string.lisp -------------------------------------------------------------------------------- /CL/stdlib/struct.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/stdlib/struct.lisp -------------------------------------------------------------------------------- /CL/stdlib/tuple.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/stdlib/tuple.lisp -------------------------------------------------------------------------------- /CL/stdlib/vector.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/CL/stdlib/vector.lisp -------------------------------------------------------------------------------- /Class/AI/Haskell-391-Solution: -------------------------------------------------------------------------------- 1 | /home/loli/Documents/Workspace/Haskell/Class/391/Haskell-391-Solution -------------------------------------------------------------------------------- /Class/AI/homework5.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/homework5.lisp -------------------------------------------------------------------------------- /Class/AI/images/1b-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/1b-plot.png -------------------------------------------------------------------------------- /Class/AI/images/1c-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/1c-1.png -------------------------------------------------------------------------------- /Class/AI/images/1c-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/1c-2.png -------------------------------------------------------------------------------- /Class/AI/images/1c-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/1c-3.png -------------------------------------------------------------------------------- /Class/AI/images/1c-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/1c-4.png -------------------------------------------------------------------------------- /Class/AI/images/binomial-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/binomial-plot.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-c1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-c1.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-c2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-c2.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-c3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-c3.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-c4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-c4.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-c5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-c5.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-d1.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-d2.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-d3.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-d4.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-d5.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-h1.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-h2.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-h3.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-h4.png -------------------------------------------------------------------------------- /Class/AI/images/p-2-h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/images/p-2-h5.png -------------------------------------------------------------------------------- /Class/AI/write-up.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/AI/write-up.org -------------------------------------------------------------------------------- /Class/Cryptology/inverse.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/Cryptology/inverse.lisp -------------------------------------------------------------------------------- /Class/Cryptology/primitive-roots.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/Cryptology/primitive-roots.lisp -------------------------------------------------------------------------------- /Class/Cryptology/string-add.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/Cryptology/string-add.lisp -------------------------------------------------------------------------------- /Class/OS/final.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/OS/final.lisp -------------------------------------------------------------------------------- /Class/OS/functions.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/OS/functions.lisp -------------------------------------------------------------------------------- /Class/OS/macros.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/OS/macros.lisp -------------------------------------------------------------------------------- /Class/OS/run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/OS/run.html -------------------------------------------------------------------------------- /Class/OS/run.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/OS/run.org -------------------------------------------------------------------------------- /Class/OS/run.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/OS/run.txt -------------------------------------------------------------------------------- /Class/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/README.org -------------------------------------------------------------------------------- /Class/complex/first.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/complex/first.lisp -------------------------------------------------------------------------------- /Class/networking.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/networking.lisp -------------------------------------------------------------------------------- /Class/number-theory/mods.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/number-theory/mods.lisp -------------------------------------------------------------------------------- /Class/number-theory/points-on-eliptic-curve-mod7.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/number-theory/points-on-eliptic-curve-mod7.lisp -------------------------------------------------------------------------------- /Class/physics/error-progoation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/physics/error-progoation.lisp -------------------------------------------------------------------------------- /Class/probability.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/probability.lisp -------------------------------------------------------------------------------- /Class/probability/HW4.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/probability/HW4.lisp -------------------------------------------------------------------------------- /Class/probability/HW7.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/probability/HW7.lisp -------------------------------------------------------------------------------- /Class/probability/HW8.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/probability/HW8.lisp -------------------------------------------------------------------------------- /Class/probability/fun.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Class/probability/fun.lisp -------------------------------------------------------------------------------- /Clojure/misc-scripts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/.gitignore -------------------------------------------------------------------------------- /Clojure/misc-scripts/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/CHANGELOG.md -------------------------------------------------------------------------------- /Clojure/misc-scripts/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/LICENSE -------------------------------------------------------------------------------- /Clojure/misc-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/README.md -------------------------------------------------------------------------------- /Clojure/misc-scripts/doc/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/doc/intro.md -------------------------------------------------------------------------------- /Clojure/misc-scripts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/index.html -------------------------------------------------------------------------------- /Clojure/misc-scripts/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/project.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/The-joy-of-Clojure/chapter1.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/The-joy-of-Clojure/chapter1.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/The-joy-of-Clojure/chapter2.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/The-joy-of-Clojure/chapter2.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/The-joy-of-Clojure/chapter3.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/The-joy-of-Clojure/chapter3.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/The-joy-of-Clojure/chapter5.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/The-joy-of-Clojure/chapter5.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/The-joy-of-Clojure/chapter6.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/The-joy-of-Clojure/chapter6.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/The-joy-of-Clojure/chapter7.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/The-joy-of-Clojure/chapter7.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/The-joy-of-Clojure/chapter8.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/The-joy-of-Clojure/chapter8.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/The-joy-of-Clojure/chapter9.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/The-joy-of-Clojure/chapter9.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/compilers/*scract*: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/compilers/*scract* -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/compilers/fun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/compilers/fun.txt -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/compilers/interpreter_def_method.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/compilers/interpreter_def_method.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/compilers/interpreter_type.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/compilers/interpreter_type.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/compilers/interpter.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/compilers/interpter.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/compilers/interpter_spec.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/compilers/interpter_spec.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/compilers/parser.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/compilers/parser.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/compilers/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/compilers/test.txt -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/brute_force_script.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/brute_force_script.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/complex.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/complex.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/core.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/fun/norvig-tl/big.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/fun/norvig-tl/big.txt -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/fun/norvig-tl/spelling.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/fun/norvig-tl/spelling.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/functions.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/functions.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/macros.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/macros.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/pattern_matching.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/pattern_matching.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/play/category.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/play/category.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/play/defn.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/play/defn.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/play/list.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/play/list.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/play/refs.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/play/refs.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/play/test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/play/test.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/play/type-test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/play/type-test.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/play/zippers-test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/play/zippers-test.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/sort.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/sort.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/src/misc_scripts/tree.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/src/misc_scripts/tree.clj -------------------------------------------------------------------------------- /Clojure/misc-scripts/test/misc-scripts/core_test.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Clojure/misc-scripts/test/misc-scripts/core_test.clj -------------------------------------------------------------------------------- /MDL/first.mud: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/MDL/first.mud -------------------------------------------------------------------------------- /Project-Euler/566.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/Project-Euler/566.lisp -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/README.org -------------------------------------------------------------------------------- /SBCL/assem.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/SBCL/assem.lisp -------------------------------------------------------------------------------- /SBCL/ultimate.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/SBCL/ultimate.lisp -------------------------------------------------------------------------------- /algorithms.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/algorithms.lisp -------------------------------------------------------------------------------- /book-adaptations/Purely-Functional/chapter-3/binomial-heap.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/book-adaptations/Purely-Functional/chapter-3/binomial-heap.lisp -------------------------------------------------------------------------------- /book-adaptations/Purely-Functional/chapter-3/leftist-heap.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/book-adaptations/Purely-Functional/chapter-3/leftist-heap.lisp -------------------------------------------------------------------------------- /book-adaptations/Purely-Functional/chapter-3/red-black-clos.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/book-adaptations/Purely-Functional/chapter-3/red-black-clos.lisp -------------------------------------------------------------------------------- /book-adaptations/Purely-Functional/chapter-3/red-black.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/book-adaptations/Purely-Functional/chapter-3/red-black.lisp -------------------------------------------------------------------------------- /book-adaptations/Purely-Functional/chapter2.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/book-adaptations/Purely-Functional/chapter2.lisp -------------------------------------------------------------------------------- /book-adaptations/Purely-Functional/chapter3.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/book-adaptations/Purely-Functional/chapter3.lisp -------------------------------------------------------------------------------- /cl-user.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/cl-user.lisp -------------------------------------------------------------------------------- /data-structures/arrow.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/arrow.lisp -------------------------------------------------------------------------------- /data-structures/custom-finger-tree.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/custom-finger-tree.lisp -------------------------------------------------------------------------------- /data-structures/finger-trees.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/finger-trees.lisp -------------------------------------------------------------------------------- /data-structures/functor-applicative-monad.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/functor-applicative-monad.lisp -------------------------------------------------------------------------------- /data-structures/graph.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/graph.lisp -------------------------------------------------------------------------------- /data-structures/history/graph.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/history/graph.lisp -------------------------------------------------------------------------------- /data-structures/history/lazy-cons.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/history/lazy-cons.lisp -------------------------------------------------------------------------------- /data-structures/not-important/clos-dequeue.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/not-important/clos-dequeue.lisp -------------------------------------------------------------------------------- /data-structures/not-important/lol-queue.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/not-important/lol-queue.lisp -------------------------------------------------------------------------------- /data-structures/pure-dequeue.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/pure-dequeue.lisp -------------------------------------------------------------------------------- /data-structures/pure-lazy-queue.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/pure-lazy-queue.lisp -------------------------------------------------------------------------------- /data-structures/pure-queue.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/pure-queue.lisp -------------------------------------------------------------------------------- /data-structures/reader.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/reader.lisp -------------------------------------------------------------------------------- /data-structures/state.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/state.lisp -------------------------------------------------------------------------------- /data-structures/tests/dequeue-vs-finger.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/tests/dequeue-vs-finger.lisp -------------------------------------------------------------------------------- /data-structures/tests/graph-test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/tests/graph-test.lisp -------------------------------------------------------------------------------- /data-structures/tests/state-test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/tests/state-test.lisp -------------------------------------------------------------------------------- /data-structures/tree-pure.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/tree-pure.lisp -------------------------------------------------------------------------------- /data-structures/tree.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/tree.lisp -------------------------------------------------------------------------------- /data-structures/utils/lazy-cons.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/data-structures/utils/lazy-cons.lisp -------------------------------------------------------------------------------- /declerationfun.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/declerationfun.lisp -------------------------------------------------------------------------------- /do-syntax.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/do-syntax.lisp -------------------------------------------------------------------------------- /encoding/mendler.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/encoding/mendler.lisp -------------------------------------------------------------------------------- /encoding/scott.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/encoding/scott.lisp -------------------------------------------------------------------------------- /first-class-modules.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/first-class-modules.lisp -------------------------------------------------------------------------------- /from-c-to-lisp.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/from-c-to-lisp.lisp -------------------------------------------------------------------------------- /interesting-problems.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/interesting-problems.lisp -------------------------------------------------------------------------------- /irc.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/irc.lisp -------------------------------------------------------------------------------- /mcclim/sheet.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/mcclim/sheet.lisp -------------------------------------------------------------------------------- /mcclim/task.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/mcclim/task.lisp -------------------------------------------------------------------------------- /mcclim/tutorial.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/mcclim/tutorial.lisp -------------------------------------------------------------------------------- /misc.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/misc.asd -------------------------------------------------------------------------------- /my-CD.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/my-CD.lisp -------------------------------------------------------------------------------- /netfarm.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/netfarm.lisp -------------------------------------------------------------------------------- /numberConverter.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/numberConverter.lisp -------------------------------------------------------------------------------- /nyxt/auto-config.3.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/nyxt/auto-config.3.lisp -------------------------------------------------------------------------------- /nyxt/auto-config.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/nyxt/auto-config.lisp -------------------------------------------------------------------------------- /nyxt/init.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/nyxt/init.lisp -------------------------------------------------------------------------------- /pattern-matching.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/pattern-matching.lisp -------------------------------------------------------------------------------- /projects/haskell-yaml-generator/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/projects/haskell-yaml-generator/README.org -------------------------------------------------------------------------------- /projects/haskell-yaml-generator/gui/draw.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/projects/haskell-yaml-generator/gui/draw.lisp -------------------------------------------------------------------------------- /projects/haskell-yaml-generator/src/config.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/projects/haskell-yaml-generator/src/config.lisp -------------------------------------------------------------------------------- /projects/haskell-yaml-generator/src/main.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/projects/haskell-yaml-generator/src/main.lisp -------------------------------------------------------------------------------- /projects/haskell-yaml-generator/src/stack-yaml.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/projects/haskell-yaml-generator/src/stack-yaml.lisp -------------------------------------------------------------------------------- /projects/haskell-yaml-generator/yaml-generator.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/projects/haskell-yaml-generator/yaml-generator.asd -------------------------------------------------------------------------------- /racket/continuations.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/racket/continuations.rkt -------------------------------------------------------------------------------- /racket/fun.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/racket/fun.rkt -------------------------------------------------------------------------------- /racket/lambda-calc.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/racket/lambda-calc.rkt -------------------------------------------------------------------------------- /racket/macros.rkt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/racket/macros.rkt -------------------------------------------------------------------------------- /resource.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/resource.lisp -------------------------------------------------------------------------------- /scheme/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/.dir-locals.el -------------------------------------------------------------------------------- /scheme/macro.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/macro.scm -------------------------------------------------------------------------------- /scheme/quote.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/quote.scm -------------------------------------------------------------------------------- /scheme/software-design-for-flexibilty/scm-run.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/software-design-for-flexibilty/scm-run.scm -------------------------------------------------------------------------------- /scheme/software-design-for-flexibilty/src/2-arity.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/software-design-for-flexibilty/src/2-arity.scm -------------------------------------------------------------------------------- /scheme/software-design-for-flexibilty/src/2-domain-specific-language.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/software-design-for-flexibilty/src/2-domain-specific-language.scm -------------------------------------------------------------------------------- /scheme/software-design-for-flexibilty/src/2-library.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/software-design-for-flexibilty/src/2-library.scm -------------------------------------------------------------------------------- /scheme/software-design-for-flexibilty/src/2-regex.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/software-design-for-flexibilty/src/2-regex.scm -------------------------------------------------------------------------------- /scheme/software-design-for-flexibilty/test/2-library.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/software-design-for-flexibilty/test/2-library.scm -------------------------------------------------------------------------------- /scheme/software-design-for-flexibilty/test/2-regex.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scheme/software-design-for-flexibilty/test/2-regex.scm -------------------------------------------------------------------------------- /scripts.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts.asd -------------------------------------------------------------------------------- /scripts.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts.lisp -------------------------------------------------------------------------------- /scripts/akochan.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/akochan.lisp -------------------------------------------------------------------------------- /scripts/cache-fstar-source.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/cache-fstar-source.lisp -------------------------------------------------------------------------------- /scripts/chinese-anki-import/README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/chinese-anki-import/README.org -------------------------------------------------------------------------------- /scripts/chinese-anki-import/data/Tao Te Ching 老子道德經.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/chinese-anki-import/data/Tao Te Ching 老子道德經.epub -------------------------------------------------------------------------------- /scripts/chinese-anki-import/frequency-csv.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/chinese-anki-import/frequency-csv.asd -------------------------------------------------------------------------------- /scripts/chinese-anki-import/src/convert.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/chinese-anki-import/src/convert.lisp -------------------------------------------------------------------------------- /scripts/chinese-anki-import/src/format-changer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/chinese-anki-import/src/format-changer.lisp -------------------------------------------------------------------------------- /scripts/chinese-anki-import/src/tokenizer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/chinese-anki-import/src/tokenizer.lisp -------------------------------------------------------------------------------- /scripts/chinese-anki-import/test/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/chinese-anki-import/test/input.txt -------------------------------------------------------------------------------- /scripts/chinese-anki-import/test/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/chinese-anki-import/test/output.txt -------------------------------------------------------------------------------- /scripts/chinese-anki-import/test/the-dao.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/chinese-anki-import/test/the-dao.txt -------------------------------------------------------------------------------- /scripts/first/scripts.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/first/scripts.lisp -------------------------------------------------------------------------------- /scripts/first/test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/first/test.lisp -------------------------------------------------------------------------------- /scripts/mahjong.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/mahjong.lisp -------------------------------------------------------------------------------- /scripts/run/ako-run.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/run/ako-run.lisp -------------------------------------------------------------------------------- /scripts/running.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/running.lisp -------------------------------------------------------------------------------- /scripts/slex-choice.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/src/bi-table.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/src/bi-table.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/src/entity.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/src/entity.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/src/queries.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/src/queries.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/src/race-role-map.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/src/race-role-map.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/src/rules.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/src/rules.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/src/trait-table.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/src/trait-table.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/test/entity.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/test/entity.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/test/race-role.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/test/race-role.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/test/run-tests.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/test/run-tests.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/test/testpkg.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/test/testpkg.lisp -------------------------------------------------------------------------------- /scripts/slex-choice/test/trait-table.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/scripts/slex-choice/test/trait-table.lisp -------------------------------------------------------------------------------- /sort.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/sort.lisp -------------------------------------------------------------------------------- /testing-setf.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/testing-setf.lisp -------------------------------------------------------------------------------- /testing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/testing.lisp -------------------------------------------------------------------------------- /threadstest.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/threadstest.lisp -------------------------------------------------------------------------------- /type-theory.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mariari/Misc-Lisp-Scripts/HEAD/type-theory.lisp --------------------------------------------------------------------------------