├── .gitignore ├── 01-lesson.lisp ├── Lisp-NYC-2018-02v1.pdf ├── README.md ├── cell-types.lisp ├── cells-manifesto.txt ├── cells-store.lisp ├── cells-test.asd ├── cells-test ├── .gitignore ├── boiler-examples.lisp ├── build-sys.lisp ├── cells-test.lpr ├── deep-cells.lisp ├── df-interference.lisp ├── echo-setf.lisp ├── hello-world-q.lisp ├── hello-world.lisp ├── internal-combustion.lisp ├── lazy-propagation.lisp ├── output-setf.lisp ├── output-timing.lisp ├── person.lisp ├── synapse-testing.lisp ├── test-cycle.lisp ├── test-cyclicity.lisp ├── test-ephemeral.lisp ├── test-family.lisp ├── test-kid-slotting.lisp ├── test-lazy.lisp ├── test-synapse.lisp └── test.lisp ├── cells.asd ├── cells.lisp ├── cells.lpr ├── constructors.lisp ├── defmodel.lisp ├── defpackage.lisp ├── doc └── talks │ ├── .DS_Store │ ├── Cells-ILC2003.pdf │ └── lisp-nyc-201802 │ ├── .DS_Store │ └── Sutherland │ ├── .DS_Store │ ├── 15036306-MIT.pdf │ ├── Ivan_Sutherland.png │ ├── computer-Sketchpad.2016-12-14-15-59-03.jpg │ ├── hqdefault.jpg │ └── sketchpad.pdf ├── family-values.lisp ├── family.lisp ├── fm-utilities.lisp ├── initialize.lisp ├── integrity.lisp ├── link.lisp ├── md-slot-value.lisp ├── md-utilities.lisp ├── model-object.lisp ├── propagate.lisp ├── slot-utilities.lisp ├── synapse-types.lisp ├── synapse.lisp ├── test-cc.lisp ├── test-cycle.lisp ├── test-ephemeral.lisp ├── test-propagation.lisp ├── test-synapse.lisp ├── test.lisp ├── trc-eko.lisp ├── triple-cells ├── .DS_Store ├── 3c-integrity.lisp ├── ag-utilities.lisp ├── api.lisp ├── core.lisp ├── dataflow.lisp ├── defpackage.lisp ├── hello-world.lisp ├── namespace.lisp ├── observer.lisp ├── read-me.lisp ├── triple-cells.asd └── triple-cells.lpr └── variables.lisp /.gitignore: -------------------------------------------------------------------------------- 1 | *.fasl 2 | ignore/ 3 | test/uncurrent/ -------------------------------------------------------------------------------- /01-lesson.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/01-lesson.lisp -------------------------------------------------------------------------------- /Lisp-NYC-2018-02v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/Lisp-NYC-2018-02v1.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/README.md -------------------------------------------------------------------------------- /cell-types.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cell-types.lisp -------------------------------------------------------------------------------- /cells-manifesto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-manifesto.txt -------------------------------------------------------------------------------- /cells-store.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-store.lisp -------------------------------------------------------------------------------- /cells-test.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test.asd -------------------------------------------------------------------------------- /cells-test/.gitignore: -------------------------------------------------------------------------------- 1 | uncurrent/ -------------------------------------------------------------------------------- /cells-test/boiler-examples.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/boiler-examples.lisp -------------------------------------------------------------------------------- /cells-test/build-sys.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/build-sys.lisp -------------------------------------------------------------------------------- /cells-test/cells-test.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/cells-test.lpr -------------------------------------------------------------------------------- /cells-test/deep-cells.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/deep-cells.lisp -------------------------------------------------------------------------------- /cells-test/df-interference.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/df-interference.lisp -------------------------------------------------------------------------------- /cells-test/echo-setf.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/echo-setf.lisp -------------------------------------------------------------------------------- /cells-test/hello-world-q.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/hello-world-q.lisp -------------------------------------------------------------------------------- /cells-test/hello-world.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/hello-world.lisp -------------------------------------------------------------------------------- /cells-test/internal-combustion.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/internal-combustion.lisp -------------------------------------------------------------------------------- /cells-test/lazy-propagation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/lazy-propagation.lisp -------------------------------------------------------------------------------- /cells-test/output-setf.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/output-setf.lisp -------------------------------------------------------------------------------- /cells-test/output-timing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/output-timing.lisp -------------------------------------------------------------------------------- /cells-test/person.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/person.lisp -------------------------------------------------------------------------------- /cells-test/synapse-testing.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/synapse-testing.lisp -------------------------------------------------------------------------------- /cells-test/test-cycle.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/test-cycle.lisp -------------------------------------------------------------------------------- /cells-test/test-cyclicity.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/test-cyclicity.lisp -------------------------------------------------------------------------------- /cells-test/test-ephemeral.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/test-ephemeral.lisp -------------------------------------------------------------------------------- /cells-test/test-family.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/test-family.lisp -------------------------------------------------------------------------------- /cells-test/test-kid-slotting.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/test-kid-slotting.lisp -------------------------------------------------------------------------------- /cells-test/test-lazy.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/test-lazy.lisp -------------------------------------------------------------------------------- /cells-test/test-synapse.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/test-synapse.lisp -------------------------------------------------------------------------------- /cells-test/test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells-test/test.lisp -------------------------------------------------------------------------------- /cells.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells.asd -------------------------------------------------------------------------------- /cells.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells.lisp -------------------------------------------------------------------------------- /cells.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/cells.lpr -------------------------------------------------------------------------------- /constructors.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/constructors.lisp -------------------------------------------------------------------------------- /defmodel.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/defmodel.lisp -------------------------------------------------------------------------------- /defpackage.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/defpackage.lisp -------------------------------------------------------------------------------- /doc/talks/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/doc/talks/.DS_Store -------------------------------------------------------------------------------- /doc/talks/Cells-ILC2003.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/doc/talks/Cells-ILC2003.pdf -------------------------------------------------------------------------------- /doc/talks/lisp-nyc-201802/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/doc/talks/lisp-nyc-201802/.DS_Store -------------------------------------------------------------------------------- /doc/talks/lisp-nyc-201802/Sutherland/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/doc/talks/lisp-nyc-201802/Sutherland/.DS_Store -------------------------------------------------------------------------------- /doc/talks/lisp-nyc-201802/Sutherland/15036306-MIT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/doc/talks/lisp-nyc-201802/Sutherland/15036306-MIT.pdf -------------------------------------------------------------------------------- /doc/talks/lisp-nyc-201802/Sutherland/Ivan_Sutherland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/doc/talks/lisp-nyc-201802/Sutherland/Ivan_Sutherland.png -------------------------------------------------------------------------------- /doc/talks/lisp-nyc-201802/Sutherland/computer-Sketchpad.2016-12-14-15-59-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/doc/talks/lisp-nyc-201802/Sutherland/computer-Sketchpad.2016-12-14-15-59-03.jpg -------------------------------------------------------------------------------- /doc/talks/lisp-nyc-201802/Sutherland/hqdefault.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/doc/talks/lisp-nyc-201802/Sutherland/hqdefault.jpg -------------------------------------------------------------------------------- /doc/talks/lisp-nyc-201802/Sutherland/sketchpad.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/doc/talks/lisp-nyc-201802/Sutherland/sketchpad.pdf -------------------------------------------------------------------------------- /family-values.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/family-values.lisp -------------------------------------------------------------------------------- /family.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/family.lisp -------------------------------------------------------------------------------- /fm-utilities.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/fm-utilities.lisp -------------------------------------------------------------------------------- /initialize.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/initialize.lisp -------------------------------------------------------------------------------- /integrity.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/integrity.lisp -------------------------------------------------------------------------------- /link.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/link.lisp -------------------------------------------------------------------------------- /md-slot-value.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/md-slot-value.lisp -------------------------------------------------------------------------------- /md-utilities.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/md-utilities.lisp -------------------------------------------------------------------------------- /model-object.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/model-object.lisp -------------------------------------------------------------------------------- /propagate.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/propagate.lisp -------------------------------------------------------------------------------- /slot-utilities.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/slot-utilities.lisp -------------------------------------------------------------------------------- /synapse-types.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/synapse-types.lisp -------------------------------------------------------------------------------- /synapse.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/synapse.lisp -------------------------------------------------------------------------------- /test-cc.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/test-cc.lisp -------------------------------------------------------------------------------- /test-cycle.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/test-cycle.lisp -------------------------------------------------------------------------------- /test-ephemeral.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/test-ephemeral.lisp -------------------------------------------------------------------------------- /test-propagation.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/test-propagation.lisp -------------------------------------------------------------------------------- /test-synapse.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/test-synapse.lisp -------------------------------------------------------------------------------- /test.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/test.lisp -------------------------------------------------------------------------------- /trc-eko.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/trc-eko.lisp -------------------------------------------------------------------------------- /triple-cells/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/.DS_Store -------------------------------------------------------------------------------- /triple-cells/3c-integrity.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/3c-integrity.lisp -------------------------------------------------------------------------------- /triple-cells/ag-utilities.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/ag-utilities.lisp -------------------------------------------------------------------------------- /triple-cells/api.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/api.lisp -------------------------------------------------------------------------------- /triple-cells/core.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/core.lisp -------------------------------------------------------------------------------- /triple-cells/dataflow.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/dataflow.lisp -------------------------------------------------------------------------------- /triple-cells/defpackage.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/defpackage.lisp -------------------------------------------------------------------------------- /triple-cells/hello-world.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/hello-world.lisp -------------------------------------------------------------------------------- /triple-cells/namespace.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/namespace.lisp -------------------------------------------------------------------------------- /triple-cells/observer.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/observer.lisp -------------------------------------------------------------------------------- /triple-cells/read-me.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/read-me.lisp -------------------------------------------------------------------------------- /triple-cells/triple-cells.asd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/triple-cells.asd -------------------------------------------------------------------------------- /triple-cells/triple-cells.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/triple-cells/triple-cells.lpr -------------------------------------------------------------------------------- /variables.lisp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kennytilton/cells/HEAD/variables.lisp --------------------------------------------------------------------------------