├── .gitignore ├── Makefile ├── README.md ├── html ├── a-few-format-recipes.html ├── beyond-exception-handling-conditions-and-restarts.html ├── beyond-lists-other-uses-for-cons-cells.html ├── blurbs.html ├── collections.html ├── conclusion-whats-next.html ├── cover.jpg ├── figures │ ├── account-hierarchy.png │ ├── after-append.png │ ├── alist-abc-123.png │ ├── copy-list-list-or-tree.png │ ├── copy-tree-list-or-tree.png │ ├── list-1-2-3.png │ ├── list-or-tree.png │ ├── mixed-list.png │ ├── one-cons-cell.png │ ├── plist-abc-123.png │ └── restart-call-stack.png ├── files-and-file-io.html ├── functions.html ├── index.html ├── introduction-why-lisp.html ├── jolt_logo16_sm.png ├── lather-rinse-repeat-a-tour-of-the-repl.html ├── letter-to-reader.html ├── loop-for-black-belts.html ├── macros-defining-your-own.html ├── macros-standard-control-constructs.html ├── numbers-characters-and-strings.html ├── object-reorientation-classes.html ├── object-reorientation-generic-functions.html ├── practical-a-portable-pathname-library.html ├── practical-a-shoutcast-server.html ├── practical-a-simple-database.html ├── practical-a-spam-filter.html ├── practical-an-html-generation-library-the-compiler.html ├── practical-an-html-generation-library-the-interpreter.html ├── practical-an-id3-parser.html ├── practical-an-mp3-browser.html ├── practical-an-mp3-database.html ├── practical-building-a-unit-test-framework.html ├── practical-parsing-binary-files.html ├── practical-web-programming-with-allegroserve.html ├── programming-in-the-large-packages-and-symbols.html ├── screenshots │ ├── hello-world.jpg │ ├── new-sample.jpg │ ├── random-number.jpg │ ├── set-cookie.jpg │ ├── show-cookies-no-cookies.jpg │ ├── show-cookies-one-cookie.jpg │ ├── show-query-params-1a.jpg │ ├── show-query-params-2.jpg │ └── simple-form.jpg ├── small-cover.png ├── style.css ├── syntax-and-semantics.html ├── the-special-operators.html ├── they-called-it-lisp-for-a-reason-list-processing.html └── variables.html └── original_html ├── a-few-format-recipes.html ├── beyond-exception-handling-conditions-and-restarts.html ├── beyond-lists-other-uses-for-cons-cells.html ├── blurbs.html ├── collections.html ├── conclusion-whats-next.html ├── figures ├── account-hierarchy.png ├── after-append.png ├── alist-abc-123.png ├── copy-list-list-or-tree.png ├── copy-tree-list-or-tree.png ├── list-1-2-3.png ├── list-or-tree.png ├── mixed-list.png ├── one-cons-cell.png ├── plist-abc-123.png └── restart-call-stack.png ├── files-and-file-io.html ├── functions.html ├── index.html ├── introduction-why-lisp.html ├── jolt_logo16_sm.gif ├── lather-rinse-repeat-a-tour-of-the-repl.html ├── letter-to-reader.html ├── loop-for-black-belts.html ├── macros-defining-your-own.html ├── macros-standard-control-constructs.html ├── numbers-characters-and-strings.html ├── object-reorientation-classes.html ├── object-reorientation-generic-functions.html ├── practical-a-portable-pathname-library.html ├── practical-a-shoutcast-server.html ├── practical-a-simple-database.html ├── practical-a-spam-filter.html ├── practical-an-html-generation-library-the-compiler.html ├── practical-an-html-generation-library-the-interpreter.html ├── practical-an-id3-parser.html ├── practical-an-mp3-browser.html ├── practical-an-mp3-database.html ├── practical-building-a-unit-test-framework.html ├── practical-parsing-binary-files.html ├── practical-web-programming-with-allegroserve.html ├── programming-in-the-large-packages-and-symbols.html ├── screenshots ├── hello-world.jpg ├── new-sample.jpg ├── random-number.jpg ├── set-cookie.jpg ├── show-cookies-no-cookies.jpg ├── show-cookies-one-cookie.jpg ├── show-query-params-1a.jpg ├── show-query-params-2.jpg └── simple-form.jpg ├── small-cover.gif ├── style.css ├── syntax-and-semantics.html ├── the-special-operators.html ├── they-called-it-lisp-for-a-reason-list-processing.html └── variables.html /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/README.md -------------------------------------------------------------------------------- /html/a-few-format-recipes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/a-few-format-recipes.html -------------------------------------------------------------------------------- /html/beyond-exception-handling-conditions-and-restarts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/beyond-exception-handling-conditions-and-restarts.html -------------------------------------------------------------------------------- /html/beyond-lists-other-uses-for-cons-cells.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/beyond-lists-other-uses-for-cons-cells.html -------------------------------------------------------------------------------- /html/blurbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/blurbs.html -------------------------------------------------------------------------------- /html/collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/collections.html -------------------------------------------------------------------------------- /html/conclusion-whats-next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/conclusion-whats-next.html -------------------------------------------------------------------------------- /html/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/cover.jpg -------------------------------------------------------------------------------- /html/figures/account-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/account-hierarchy.png -------------------------------------------------------------------------------- /html/figures/after-append.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/after-append.png -------------------------------------------------------------------------------- /html/figures/alist-abc-123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/alist-abc-123.png -------------------------------------------------------------------------------- /html/figures/copy-list-list-or-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/copy-list-list-or-tree.png -------------------------------------------------------------------------------- /html/figures/copy-tree-list-or-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/copy-tree-list-or-tree.png -------------------------------------------------------------------------------- /html/figures/list-1-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/list-1-2-3.png -------------------------------------------------------------------------------- /html/figures/list-or-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/list-or-tree.png -------------------------------------------------------------------------------- /html/figures/mixed-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/mixed-list.png -------------------------------------------------------------------------------- /html/figures/one-cons-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/one-cons-cell.png -------------------------------------------------------------------------------- /html/figures/plist-abc-123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/plist-abc-123.png -------------------------------------------------------------------------------- /html/figures/restart-call-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/figures/restart-call-stack.png -------------------------------------------------------------------------------- /html/files-and-file-io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/files-and-file-io.html -------------------------------------------------------------------------------- /html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/functions.html -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/index.html -------------------------------------------------------------------------------- /html/introduction-why-lisp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/introduction-why-lisp.html -------------------------------------------------------------------------------- /html/jolt_logo16_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/jolt_logo16_sm.png -------------------------------------------------------------------------------- /html/lather-rinse-repeat-a-tour-of-the-repl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/lather-rinse-repeat-a-tour-of-the-repl.html -------------------------------------------------------------------------------- /html/letter-to-reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/letter-to-reader.html -------------------------------------------------------------------------------- /html/loop-for-black-belts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/loop-for-black-belts.html -------------------------------------------------------------------------------- /html/macros-defining-your-own.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/macros-defining-your-own.html -------------------------------------------------------------------------------- /html/macros-standard-control-constructs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/macros-standard-control-constructs.html -------------------------------------------------------------------------------- /html/numbers-characters-and-strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/numbers-characters-and-strings.html -------------------------------------------------------------------------------- /html/object-reorientation-classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/object-reorientation-classes.html -------------------------------------------------------------------------------- /html/object-reorientation-generic-functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/object-reorientation-generic-functions.html -------------------------------------------------------------------------------- /html/practical-a-portable-pathname-library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-a-portable-pathname-library.html -------------------------------------------------------------------------------- /html/practical-a-shoutcast-server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-a-shoutcast-server.html -------------------------------------------------------------------------------- /html/practical-a-simple-database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-a-simple-database.html -------------------------------------------------------------------------------- /html/practical-a-spam-filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-a-spam-filter.html -------------------------------------------------------------------------------- /html/practical-an-html-generation-library-the-compiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-an-html-generation-library-the-compiler.html -------------------------------------------------------------------------------- /html/practical-an-html-generation-library-the-interpreter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-an-html-generation-library-the-interpreter.html -------------------------------------------------------------------------------- /html/practical-an-id3-parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-an-id3-parser.html -------------------------------------------------------------------------------- /html/practical-an-mp3-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-an-mp3-browser.html -------------------------------------------------------------------------------- /html/practical-an-mp3-database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-an-mp3-database.html -------------------------------------------------------------------------------- /html/practical-building-a-unit-test-framework.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-building-a-unit-test-framework.html -------------------------------------------------------------------------------- /html/practical-parsing-binary-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-parsing-binary-files.html -------------------------------------------------------------------------------- /html/practical-web-programming-with-allegroserve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/practical-web-programming-with-allegroserve.html -------------------------------------------------------------------------------- /html/programming-in-the-large-packages-and-symbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/programming-in-the-large-packages-and-symbols.html -------------------------------------------------------------------------------- /html/screenshots/hello-world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/screenshots/hello-world.jpg -------------------------------------------------------------------------------- /html/screenshots/new-sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/screenshots/new-sample.jpg -------------------------------------------------------------------------------- /html/screenshots/random-number.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/screenshots/random-number.jpg -------------------------------------------------------------------------------- /html/screenshots/set-cookie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/screenshots/set-cookie.jpg -------------------------------------------------------------------------------- /html/screenshots/show-cookies-no-cookies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/screenshots/show-cookies-no-cookies.jpg -------------------------------------------------------------------------------- /html/screenshots/show-cookies-one-cookie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/screenshots/show-cookies-one-cookie.jpg -------------------------------------------------------------------------------- /html/screenshots/show-query-params-1a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/screenshots/show-query-params-1a.jpg -------------------------------------------------------------------------------- /html/screenshots/show-query-params-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/screenshots/show-query-params-2.jpg -------------------------------------------------------------------------------- /html/screenshots/simple-form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/screenshots/simple-form.jpg -------------------------------------------------------------------------------- /html/small-cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/small-cover.png -------------------------------------------------------------------------------- /html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/style.css -------------------------------------------------------------------------------- /html/syntax-and-semantics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/syntax-and-semantics.html -------------------------------------------------------------------------------- /html/the-special-operators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/the-special-operators.html -------------------------------------------------------------------------------- /html/they-called-it-lisp-for-a-reason-list-processing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/they-called-it-lisp-for-a-reason-list-processing.html -------------------------------------------------------------------------------- /html/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/html/variables.html -------------------------------------------------------------------------------- /original_html/a-few-format-recipes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/a-few-format-recipes.html -------------------------------------------------------------------------------- /original_html/beyond-exception-handling-conditions-and-restarts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/beyond-exception-handling-conditions-and-restarts.html -------------------------------------------------------------------------------- /original_html/beyond-lists-other-uses-for-cons-cells.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/beyond-lists-other-uses-for-cons-cells.html -------------------------------------------------------------------------------- /original_html/blurbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/blurbs.html -------------------------------------------------------------------------------- /original_html/collections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/collections.html -------------------------------------------------------------------------------- /original_html/conclusion-whats-next.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/conclusion-whats-next.html -------------------------------------------------------------------------------- /original_html/figures/account-hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/account-hierarchy.png -------------------------------------------------------------------------------- /original_html/figures/after-append.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/after-append.png -------------------------------------------------------------------------------- /original_html/figures/alist-abc-123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/alist-abc-123.png -------------------------------------------------------------------------------- /original_html/figures/copy-list-list-or-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/copy-list-list-or-tree.png -------------------------------------------------------------------------------- /original_html/figures/copy-tree-list-or-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/copy-tree-list-or-tree.png -------------------------------------------------------------------------------- /original_html/figures/list-1-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/list-1-2-3.png -------------------------------------------------------------------------------- /original_html/figures/list-or-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/list-or-tree.png -------------------------------------------------------------------------------- /original_html/figures/mixed-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/mixed-list.png -------------------------------------------------------------------------------- /original_html/figures/one-cons-cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/one-cons-cell.png -------------------------------------------------------------------------------- /original_html/figures/plist-abc-123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/plist-abc-123.png -------------------------------------------------------------------------------- /original_html/figures/restart-call-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/figures/restart-call-stack.png -------------------------------------------------------------------------------- /original_html/files-and-file-io.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/files-and-file-io.html -------------------------------------------------------------------------------- /original_html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/functions.html -------------------------------------------------------------------------------- /original_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/index.html -------------------------------------------------------------------------------- /original_html/introduction-why-lisp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/introduction-why-lisp.html -------------------------------------------------------------------------------- /original_html/jolt_logo16_sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/jolt_logo16_sm.gif -------------------------------------------------------------------------------- /original_html/lather-rinse-repeat-a-tour-of-the-repl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/lather-rinse-repeat-a-tour-of-the-repl.html -------------------------------------------------------------------------------- /original_html/letter-to-reader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/letter-to-reader.html -------------------------------------------------------------------------------- /original_html/loop-for-black-belts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/loop-for-black-belts.html -------------------------------------------------------------------------------- /original_html/macros-defining-your-own.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/macros-defining-your-own.html -------------------------------------------------------------------------------- /original_html/macros-standard-control-constructs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/macros-standard-control-constructs.html -------------------------------------------------------------------------------- /original_html/numbers-characters-and-strings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/numbers-characters-and-strings.html -------------------------------------------------------------------------------- /original_html/object-reorientation-classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/object-reorientation-classes.html -------------------------------------------------------------------------------- /original_html/object-reorientation-generic-functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/object-reorientation-generic-functions.html -------------------------------------------------------------------------------- /original_html/practical-a-portable-pathname-library.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-a-portable-pathname-library.html -------------------------------------------------------------------------------- /original_html/practical-a-shoutcast-server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-a-shoutcast-server.html -------------------------------------------------------------------------------- /original_html/practical-a-simple-database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-a-simple-database.html -------------------------------------------------------------------------------- /original_html/practical-a-spam-filter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-a-spam-filter.html -------------------------------------------------------------------------------- /original_html/practical-an-html-generation-library-the-compiler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-an-html-generation-library-the-compiler.html -------------------------------------------------------------------------------- /original_html/practical-an-html-generation-library-the-interpreter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-an-html-generation-library-the-interpreter.html -------------------------------------------------------------------------------- /original_html/practical-an-id3-parser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-an-id3-parser.html -------------------------------------------------------------------------------- /original_html/practical-an-mp3-browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-an-mp3-browser.html -------------------------------------------------------------------------------- /original_html/practical-an-mp3-database.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-an-mp3-database.html -------------------------------------------------------------------------------- /original_html/practical-building-a-unit-test-framework.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-building-a-unit-test-framework.html -------------------------------------------------------------------------------- /original_html/practical-parsing-binary-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-parsing-binary-files.html -------------------------------------------------------------------------------- /original_html/practical-web-programming-with-allegroserve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/practical-web-programming-with-allegroserve.html -------------------------------------------------------------------------------- /original_html/programming-in-the-large-packages-and-symbols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/programming-in-the-large-packages-and-symbols.html -------------------------------------------------------------------------------- /original_html/screenshots/hello-world.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/screenshots/hello-world.jpg -------------------------------------------------------------------------------- /original_html/screenshots/new-sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/screenshots/new-sample.jpg -------------------------------------------------------------------------------- /original_html/screenshots/random-number.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/screenshots/random-number.jpg -------------------------------------------------------------------------------- /original_html/screenshots/set-cookie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/screenshots/set-cookie.jpg -------------------------------------------------------------------------------- /original_html/screenshots/show-cookies-no-cookies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/screenshots/show-cookies-no-cookies.jpg -------------------------------------------------------------------------------- /original_html/screenshots/show-cookies-one-cookie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/screenshots/show-cookies-one-cookie.jpg -------------------------------------------------------------------------------- /original_html/screenshots/show-query-params-1a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/screenshots/show-query-params-1a.jpg -------------------------------------------------------------------------------- /original_html/screenshots/show-query-params-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/screenshots/show-query-params-2.jpg -------------------------------------------------------------------------------- /original_html/screenshots/simple-form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/screenshots/simple-form.jpg -------------------------------------------------------------------------------- /original_html/small-cover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/small-cover.gif -------------------------------------------------------------------------------- /original_html/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/style.css -------------------------------------------------------------------------------- /original_html/syntax-and-semantics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/syntax-and-semantics.html -------------------------------------------------------------------------------- /original_html/the-special-operators.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/the-special-operators.html -------------------------------------------------------------------------------- /original_html/they-called-it-lisp-for-a-reason-list-processing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/they-called-it-lisp-for-a-reason-list-processing.html -------------------------------------------------------------------------------- /original_html/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akosma/PracticalCommonLisp_ePub/HEAD/original_html/variables.html --------------------------------------------------------------------------------