├── .bintray.json ├── .gitignore ├── .latexmkrc ├── .travis.yml ├── BytecodeCompilation ├── BytecodeCompilation.pillar └── figures │ ├── BlockScopes.pdf │ ├── BytecodeCompilation.graffle │ ├── CompiledCode.pdf │ ├── MethodScopes.pdf │ └── VariableLookup.pdf ├── KernelConstruction ├── KernelConstruction.pillar └── figures │ ├── MicroKernel.graffle │ └── MicroKernel.pdf ├── Makefile ├── README.md ├── StackManagement ├── StackManagement.pillar └── figures │ ├── ArrayStack.pdf │ ├── ContextStack.graffle │ ├── InitializedSF1.pdf │ ├── InitializedSF2.pdf │ ├── NewStackInterpreterExampleAddto.graffle │ ├── NewStackInterpreterExampleAddto.pdf │ ├── NewStackInterpreterExplanation.graffle │ ├── NewStackInterpreterExplanation.pdf │ ├── OuterContextChain.pdf │ ├── StackPageStack.pdf │ ├── WrappedFrame.pdf │ ├── closure.pdf │ ├── closureContext.pdf │ ├── context1.pdf │ ├── context2.pdf │ ├── contextInterpretation1-v2.pdf │ ├── contextInterpretation1.pdf │ ├── contextInterpretation2.pdf │ ├── linkedListStack.pdf │ ├── notWrappedFrame.pdf │ ├── stack1.pdf │ ├── stack2.pdf │ ├── stackRepresentation2.pdf │ ├── stackpageEx1.graffle │ ├── stackpageEx1.pdf │ ├── stackpageEx2.pdf │ ├── tempAccess1.pdf │ ├── tempAccess2.pdf │ ├── tempVector1.pdf │ └── tempVectorTempAccess.pdf ├── book.pillar ├── figures ├── CreativeCommons-BY-SA.pdf ├── CreativeCommons-BY-SA.png └── CreativeCommons-BY-SA.svg ├── pillar.conf └── support ├── figures └── .keep ├── html ├── css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── highlight-commands.css │ └── square-braket-associates.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ └── glyphicons-halflings-regular.woff ├── highlightjs │ ├── LICENSE │ ├── README.md │ ├── README.ru.md │ ├── classref.txt │ ├── highlight.pack.js │ └── styles │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── brown_paper.css │ │ ├── brown_papersq.png │ │ ├── dark.css │ │ ├── default.css │ │ ├── docco.css │ │ ├── far.css │ │ ├── foundation.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── idea.css │ │ ├── ir_black.css │ │ ├── magula.css │ │ ├── mono-blue.css │ │ ├── monokai.css │ │ ├── monokai_sublime.css │ │ ├── obsidian.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── railscasts.css │ │ ├── rainbow.css │ │ ├── school_book.css │ │ ├── school_book.png │ │ ├── solarized_dark.css │ │ ├── solarized_light.css │ │ ├── sunburst.css │ │ ├── tomorrow-night-blue.css │ │ ├── tomorrow-night-bright.css │ │ ├── tomorrow-night-eighties.css │ │ ├── tomorrow-night.css │ │ ├── tomorrow.css │ │ ├── vs.css │ │ ├── xcode.css │ │ └── zenburn.css └── js │ ├── annotated-paragraphs.js │ ├── bootstrap.min.js │ └── highlight-commands.js ├── latex ├── common.tex ├── lsthttp.sty ├── lstsmalltalk.sty ├── overcolored.sty ├── sbabook │ ├── .gitignore │ ├── .gitrepo │ ├── .latexmkrc │ ├── .travis.yml │ ├── CreativeCommons-BY-SA.pdf │ ├── README.markdown │ ├── TODO.markdown │ ├── gitinfo2.sh │ ├── lstsmalltalk.sty │ ├── pharo-titlepage.sty │ ├── sba-logo.pdf │ ├── sbabook.cls │ ├── sbabook.spiral.tex │ └── sbabook.tex └── spiral.preamble.tex ├── makefiles ├── epub.mk ├── help.mk ├── html.mk ├── pdf.mk ├── pdf.sub.mk └── prepare.mk ├── scripts └── moveFilesToIbook.sh └── templates ├── chapter.latex.mustache ├── contents.opf.mustache ├── html.mustache ├── main.latex.mustache ├── nav.html.mustache ├── nav.ncx.mustache ├── no-sectioning.latex.mustache ├── title_page.html.mustache └── xhtml.mustache /.bintray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/.bintray.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/.gitignore -------------------------------------------------------------------------------- /.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/.latexmkrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/.travis.yml -------------------------------------------------------------------------------- /BytecodeCompilation/BytecodeCompilation.pillar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/BytecodeCompilation/BytecodeCompilation.pillar -------------------------------------------------------------------------------- /BytecodeCompilation/figures/BlockScopes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/BytecodeCompilation/figures/BlockScopes.pdf -------------------------------------------------------------------------------- /BytecodeCompilation/figures/BytecodeCompilation.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/BytecodeCompilation/figures/BytecodeCompilation.graffle -------------------------------------------------------------------------------- /BytecodeCompilation/figures/CompiledCode.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/BytecodeCompilation/figures/CompiledCode.pdf -------------------------------------------------------------------------------- /BytecodeCompilation/figures/MethodScopes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/BytecodeCompilation/figures/MethodScopes.pdf -------------------------------------------------------------------------------- /BytecodeCompilation/figures/VariableLookup.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/BytecodeCompilation/figures/VariableLookup.pdf -------------------------------------------------------------------------------- /KernelConstruction/KernelConstruction.pillar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/KernelConstruction/KernelConstruction.pillar -------------------------------------------------------------------------------- /KernelConstruction/figures/MicroKernel.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/KernelConstruction/figures/MicroKernel.graffle -------------------------------------------------------------------------------- /KernelConstruction/figures/MicroKernel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/KernelConstruction/figures/MicroKernel.pdf -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/README.md -------------------------------------------------------------------------------- /StackManagement/StackManagement.pillar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/StackManagement.pillar -------------------------------------------------------------------------------- /StackManagement/figures/ArrayStack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/ArrayStack.pdf -------------------------------------------------------------------------------- /StackManagement/figures/ContextStack.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/ContextStack.graffle -------------------------------------------------------------------------------- /StackManagement/figures/InitializedSF1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/InitializedSF1.pdf -------------------------------------------------------------------------------- /StackManagement/figures/InitializedSF2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/InitializedSF2.pdf -------------------------------------------------------------------------------- /StackManagement/figures/NewStackInterpreterExampleAddto.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/NewStackInterpreterExampleAddto.graffle -------------------------------------------------------------------------------- /StackManagement/figures/NewStackInterpreterExampleAddto.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/NewStackInterpreterExampleAddto.pdf -------------------------------------------------------------------------------- /StackManagement/figures/NewStackInterpreterExplanation.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/NewStackInterpreterExplanation.graffle -------------------------------------------------------------------------------- /StackManagement/figures/NewStackInterpreterExplanation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/NewStackInterpreterExplanation.pdf -------------------------------------------------------------------------------- /StackManagement/figures/OuterContextChain.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/OuterContextChain.pdf -------------------------------------------------------------------------------- /StackManagement/figures/StackPageStack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/StackPageStack.pdf -------------------------------------------------------------------------------- /StackManagement/figures/WrappedFrame.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/WrappedFrame.pdf -------------------------------------------------------------------------------- /StackManagement/figures/closure.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/closure.pdf -------------------------------------------------------------------------------- /StackManagement/figures/closureContext.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/closureContext.pdf -------------------------------------------------------------------------------- /StackManagement/figures/context1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/context1.pdf -------------------------------------------------------------------------------- /StackManagement/figures/context2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/context2.pdf -------------------------------------------------------------------------------- /StackManagement/figures/contextInterpretation1-v2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/contextInterpretation1-v2.pdf -------------------------------------------------------------------------------- /StackManagement/figures/contextInterpretation1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/contextInterpretation1.pdf -------------------------------------------------------------------------------- /StackManagement/figures/contextInterpretation2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/contextInterpretation2.pdf -------------------------------------------------------------------------------- /StackManagement/figures/linkedListStack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/linkedListStack.pdf -------------------------------------------------------------------------------- /StackManagement/figures/notWrappedFrame.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/notWrappedFrame.pdf -------------------------------------------------------------------------------- /StackManagement/figures/stack1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/stack1.pdf -------------------------------------------------------------------------------- /StackManagement/figures/stack2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/stack2.pdf -------------------------------------------------------------------------------- /StackManagement/figures/stackRepresentation2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/stackRepresentation2.pdf -------------------------------------------------------------------------------- /StackManagement/figures/stackpageEx1.graffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/stackpageEx1.graffle -------------------------------------------------------------------------------- /StackManagement/figures/stackpageEx1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/stackpageEx1.pdf -------------------------------------------------------------------------------- /StackManagement/figures/stackpageEx2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/stackpageEx2.pdf -------------------------------------------------------------------------------- /StackManagement/figures/tempAccess1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/tempAccess1.pdf -------------------------------------------------------------------------------- /StackManagement/figures/tempAccess2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/tempAccess2.pdf -------------------------------------------------------------------------------- /StackManagement/figures/tempVector1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/tempVector1.pdf -------------------------------------------------------------------------------- /StackManagement/figures/tempVectorTempAccess.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/StackManagement/figures/tempVectorTempAccess.pdf -------------------------------------------------------------------------------- /book.pillar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/book.pillar -------------------------------------------------------------------------------- /figures/CreativeCommons-BY-SA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/figures/CreativeCommons-BY-SA.pdf -------------------------------------------------------------------------------- /figures/CreativeCommons-BY-SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/figures/CreativeCommons-BY-SA.png -------------------------------------------------------------------------------- /figures/CreativeCommons-BY-SA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/figures/CreativeCommons-BY-SA.svg -------------------------------------------------------------------------------- /pillar.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/pillar.conf -------------------------------------------------------------------------------- /support/figures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /support/html/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /support/html/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/css/bootstrap.min.css -------------------------------------------------------------------------------- /support/html/css/highlight-commands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/css/highlight-commands.css -------------------------------------------------------------------------------- /support/html/css/square-braket-associates.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/css/square-braket-associates.css -------------------------------------------------------------------------------- /support/html/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /support/html/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /support/html/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /support/html/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /support/html/highlightjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/LICENSE -------------------------------------------------------------------------------- /support/html/highlightjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/README.md -------------------------------------------------------------------------------- /support/html/highlightjs/README.ru.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/README.ru.md -------------------------------------------------------------------------------- /support/html/highlightjs/classref.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/classref.txt -------------------------------------------------------------------------------- /support/html/highlightjs/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/highlight.pack.js -------------------------------------------------------------------------------- /support/html/highlightjs/styles/arta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/arta.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/ascetic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/ascetic.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/brown_paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/brown_paper.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/brown_papersq.png -------------------------------------------------------------------------------- /support/html/highlightjs/styles/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/dark.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/default.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/docco.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/docco.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/far.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/far.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/foundation.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/foundation.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/github.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/googlecode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/googlecode.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/idea.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/ir_black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/ir_black.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/magula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/magula.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/mono-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/mono-blue.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/monokai.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/monokai_sublime.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/monokai_sublime.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/obsidian.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/obsidian.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/pojoaque.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/pojoaque.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/pojoaque.jpg -------------------------------------------------------------------------------- /support/html/highlightjs/styles/railscasts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/railscasts.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/rainbow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/rainbow.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/school_book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/school_book.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/school_book.png -------------------------------------------------------------------------------- /support/html/highlightjs/styles/solarized_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/solarized_dark.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/solarized_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/solarized_light.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/sunburst.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/tomorrow-night-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/tomorrow-night-blue.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/tomorrow-night-bright.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/tomorrow-night-bright.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/tomorrow-night-eighties.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/tomorrow-night-eighties.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/tomorrow-night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/tomorrow-night.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/tomorrow.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/vs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/vs.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/xcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/xcode.css -------------------------------------------------------------------------------- /support/html/highlightjs/styles/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/highlightjs/styles/zenburn.css -------------------------------------------------------------------------------- /support/html/js/annotated-paragraphs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/js/annotated-paragraphs.js -------------------------------------------------------------------------------- /support/html/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/js/bootstrap.min.js -------------------------------------------------------------------------------- /support/html/js/highlight-commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/html/js/highlight-commands.js -------------------------------------------------------------------------------- /support/latex/common.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/common.tex -------------------------------------------------------------------------------- /support/latex/lsthttp.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/lsthttp.sty -------------------------------------------------------------------------------- /support/latex/lstsmalltalk.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/lstsmalltalk.sty -------------------------------------------------------------------------------- /support/latex/overcolored.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/overcolored.sty -------------------------------------------------------------------------------- /support/latex/sbabook/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/.gitignore -------------------------------------------------------------------------------- /support/latex/sbabook/.gitrepo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/.gitrepo -------------------------------------------------------------------------------- /support/latex/sbabook/.latexmkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/.latexmkrc -------------------------------------------------------------------------------- /support/latex/sbabook/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/.travis.yml -------------------------------------------------------------------------------- /support/latex/sbabook/CreativeCommons-BY-SA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/CreativeCommons-BY-SA.pdf -------------------------------------------------------------------------------- /support/latex/sbabook/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/README.markdown -------------------------------------------------------------------------------- /support/latex/sbabook/TODO.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/TODO.markdown -------------------------------------------------------------------------------- /support/latex/sbabook/gitinfo2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/gitinfo2.sh -------------------------------------------------------------------------------- /support/latex/sbabook/lstsmalltalk.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/lstsmalltalk.sty -------------------------------------------------------------------------------- /support/latex/sbabook/pharo-titlepage.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/pharo-titlepage.sty -------------------------------------------------------------------------------- /support/latex/sbabook/sba-logo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/sba-logo.pdf -------------------------------------------------------------------------------- /support/latex/sbabook/sbabook.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/sbabook.cls -------------------------------------------------------------------------------- /support/latex/sbabook/sbabook.spiral.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/sbabook.spiral.tex -------------------------------------------------------------------------------- /support/latex/sbabook/sbabook.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/sbabook/sbabook.tex -------------------------------------------------------------------------------- /support/latex/spiral.preamble.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/latex/spiral.preamble.tex -------------------------------------------------------------------------------- /support/makefiles/epub.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/makefiles/epub.mk -------------------------------------------------------------------------------- /support/makefiles/help.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/makefiles/help.mk -------------------------------------------------------------------------------- /support/makefiles/html.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/makefiles/html.mk -------------------------------------------------------------------------------- /support/makefiles/pdf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/makefiles/pdf.mk -------------------------------------------------------------------------------- /support/makefiles/pdf.sub.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/makefiles/pdf.sub.mk -------------------------------------------------------------------------------- /support/makefiles/prepare.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/makefiles/prepare.mk -------------------------------------------------------------------------------- /support/scripts/moveFilesToIbook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/scripts/moveFilesToIbook.sh -------------------------------------------------------------------------------- /support/templates/chapter.latex.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/templates/chapter.latex.mustache -------------------------------------------------------------------------------- /support/templates/contents.opf.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/templates/contents.opf.mustache -------------------------------------------------------------------------------- /support/templates/html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/templates/html.mustache -------------------------------------------------------------------------------- /support/templates/main.latex.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/templates/main.latex.mustache -------------------------------------------------------------------------------- /support/templates/nav.html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/templates/nav.html.mustache -------------------------------------------------------------------------------- /support/templates/nav.ncx.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/templates/nav.ncx.mustache -------------------------------------------------------------------------------- /support/templates/no-sectioning.latex.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/templates/no-sectioning.latex.mustache -------------------------------------------------------------------------------- /support/templates/title_page.html.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/templates/title_page.html.mustache -------------------------------------------------------------------------------- /support/templates/xhtml.mustache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SquareBracketAssociates/ExploringVMs/HEAD/support/templates/xhtml.mustache --------------------------------------------------------------------------------