├── .gitignore ├── DT.tex ├── Dockerfile ├── Dockerfile.ubuntu ├── ENV ├── ENV_DESKTOP ├── ENV_DMK ├── ENV_DRAFT ├── ENV_KINDLE ├── ENV_PHONE ├── ENV_PRINT ├── ENV_RIDERO ├── ENV_RIDERO_LARGE ├── ENV_TABLET ├── LICENSE ├── Makefile ├── README.md ├── about.tex ├── abstract.tex ├── afterword.tex ├── author.tex ├── avatar.tex ├── ch1-web.tex ├── ch2-spec.tex ├── ch3-exceptions.tex ├── ch4-mutability.tex ├── ch5-config.tex ├── ch6-systems.tex ├── ch7-tests.tex ├── chart-ex-tree.tex ├── chart-sys-1.tex ├── chart-sys-2.tex ├── chart-sys-3.tex ├── charts.tex ├── check-urls.sh ├── exit.tex ├── geom-dmk.tex ├── geom-kindle.tex ├── geom-phone.tex ├── geom-print.tex ├── geom-ridero-large.tex ├── geom-ridero.tex ├── geom-tablet.tex ├── hyphenation.tex ├── ifs.tex ├── install-fonts.sh ├── macro.tex ├── main.tex ├── makeindex ├── .gitignore ├── project.clj └── src │ └── makeindex │ └── core.clj ├── media ├── avatar_cmyk.jpg ├── avatar_rgb.jpg ├── cover_design.indd ├── cover_dmk.indd ├── cover_dmk.pdf ├── cover_habr.indd ├── cover_kindle.indd ├── cover_kindle.jpg ├── cover_phone.indd ├── cover_phone.jpg ├── cover_print.indd ├── cover_print.jpg ├── cover_ridero.indd ├── cover_ridero.pdf ├── cover_ridero_large.indd ├── cover_ridero_large.pdf ├── cover_tablet.indd ├── cover_tablet.jpg ├── dmk_isbn.eps ├── dmk_logo.eps ├── isbn_large.png ├── isbn_normal.png ├── ridero_opening_large.pdf └── ridero_opening_normal.pdf ├── pyg_print ├── pyg_print_style │ └── __init__.py └── setup.py ├── qr-frame.tex ├── title.tex ├── todo.txt └── trash.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/.gitignore -------------------------------------------------------------------------------- /DT.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/DT.tex -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/Dockerfile.ubuntu -------------------------------------------------------------------------------- /ENV: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ENV -------------------------------------------------------------------------------- /ENV_DESKTOP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ENV_DESKTOP -------------------------------------------------------------------------------- /ENV_DMK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ENV_DMK -------------------------------------------------------------------------------- /ENV_DRAFT: -------------------------------------------------------------------------------- 1 | DRAFT=,draft 2 | QR= 3 | -------------------------------------------------------------------------------- /ENV_KINDLE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ENV_KINDLE -------------------------------------------------------------------------------- /ENV_PHONE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ENV_PHONE -------------------------------------------------------------------------------- /ENV_PRINT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ENV_PRINT -------------------------------------------------------------------------------- /ENV_RIDERO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ENV_RIDERO -------------------------------------------------------------------------------- /ENV_RIDERO_LARGE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ENV_RIDERO_LARGE -------------------------------------------------------------------------------- /ENV_TABLET: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ENV_TABLET -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/README.md -------------------------------------------------------------------------------- /about.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/about.tex -------------------------------------------------------------------------------- /abstract.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/abstract.tex -------------------------------------------------------------------------------- /afterword.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/afterword.tex -------------------------------------------------------------------------------- /author.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/author.tex -------------------------------------------------------------------------------- /avatar.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/avatar.tex -------------------------------------------------------------------------------- /ch1-web.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ch1-web.tex -------------------------------------------------------------------------------- /ch2-spec.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ch2-spec.tex -------------------------------------------------------------------------------- /ch3-exceptions.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ch3-exceptions.tex -------------------------------------------------------------------------------- /ch4-mutability.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ch4-mutability.tex -------------------------------------------------------------------------------- /ch5-config.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ch5-config.tex -------------------------------------------------------------------------------- /ch6-systems.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ch6-systems.tex -------------------------------------------------------------------------------- /ch7-tests.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ch7-tests.tex -------------------------------------------------------------------------------- /chart-ex-tree.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/chart-ex-tree.tex -------------------------------------------------------------------------------- /chart-sys-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/chart-sys-1.tex -------------------------------------------------------------------------------- /chart-sys-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/chart-sys-2.tex -------------------------------------------------------------------------------- /chart-sys-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/chart-sys-3.tex -------------------------------------------------------------------------------- /charts.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/charts.tex -------------------------------------------------------------------------------- /check-urls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/check-urls.sh -------------------------------------------------------------------------------- /exit.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/exit.tex -------------------------------------------------------------------------------- /geom-dmk.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/geom-dmk.tex -------------------------------------------------------------------------------- /geom-kindle.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/geom-kindle.tex -------------------------------------------------------------------------------- /geom-phone.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/geom-phone.tex -------------------------------------------------------------------------------- /geom-print.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/geom-print.tex -------------------------------------------------------------------------------- /geom-ridero-large.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/geom-ridero-large.tex -------------------------------------------------------------------------------- /geom-ridero.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/geom-ridero.tex -------------------------------------------------------------------------------- /geom-tablet.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/geom-tablet.tex -------------------------------------------------------------------------------- /hyphenation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/hyphenation.tex -------------------------------------------------------------------------------- /ifs.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/ifs.tex -------------------------------------------------------------------------------- /install-fonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/install-fonts.sh -------------------------------------------------------------------------------- /macro.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/macro.tex -------------------------------------------------------------------------------- /main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/main.tex -------------------------------------------------------------------------------- /makeindex/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/makeindex/.gitignore -------------------------------------------------------------------------------- /makeindex/project.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/makeindex/project.clj -------------------------------------------------------------------------------- /makeindex/src/makeindex/core.clj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/makeindex/src/makeindex/core.clj -------------------------------------------------------------------------------- /media/avatar_cmyk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/avatar_cmyk.jpg -------------------------------------------------------------------------------- /media/avatar_rgb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/avatar_rgb.jpg -------------------------------------------------------------------------------- /media/cover_design.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_design.indd -------------------------------------------------------------------------------- /media/cover_dmk.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_dmk.indd -------------------------------------------------------------------------------- /media/cover_dmk.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_dmk.pdf -------------------------------------------------------------------------------- /media/cover_habr.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_habr.indd -------------------------------------------------------------------------------- /media/cover_kindle.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_kindle.indd -------------------------------------------------------------------------------- /media/cover_kindle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_kindle.jpg -------------------------------------------------------------------------------- /media/cover_phone.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_phone.indd -------------------------------------------------------------------------------- /media/cover_phone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_phone.jpg -------------------------------------------------------------------------------- /media/cover_print.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_print.indd -------------------------------------------------------------------------------- /media/cover_print.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_print.jpg -------------------------------------------------------------------------------- /media/cover_ridero.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_ridero.indd -------------------------------------------------------------------------------- /media/cover_ridero.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_ridero.pdf -------------------------------------------------------------------------------- /media/cover_ridero_large.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_ridero_large.indd -------------------------------------------------------------------------------- /media/cover_ridero_large.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_ridero_large.pdf -------------------------------------------------------------------------------- /media/cover_tablet.indd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_tablet.indd -------------------------------------------------------------------------------- /media/cover_tablet.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/cover_tablet.jpg -------------------------------------------------------------------------------- /media/dmk_isbn.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/dmk_isbn.eps -------------------------------------------------------------------------------- /media/dmk_logo.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/dmk_logo.eps -------------------------------------------------------------------------------- /media/isbn_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/isbn_large.png -------------------------------------------------------------------------------- /media/isbn_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/isbn_normal.png -------------------------------------------------------------------------------- /media/ridero_opening_large.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/ridero_opening_large.pdf -------------------------------------------------------------------------------- /media/ridero_opening_normal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/media/ridero_opening_normal.pdf -------------------------------------------------------------------------------- /pyg_print/pyg_print_style/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/pyg_print/pyg_print_style/__init__.py -------------------------------------------------------------------------------- /pyg_print/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/pyg_print/setup.py -------------------------------------------------------------------------------- /qr-frame.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/qr-frame.tex -------------------------------------------------------------------------------- /title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/title.tex -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/todo.txt -------------------------------------------------------------------------------- /trash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/igrishaev/clj-book/HEAD/trash.txt --------------------------------------------------------------------------------