├── .gitignore ├── Caddyfile ├── Dockerfile ├── LICENSE ├── README.md ├── bonus ├── anapana.feature ├── breath-counting.feature ├── metta.feature ├── noting.feature ├── paracosm-immersion.feature ├── quantum-pause.feature ├── social-noting.feature ├── tapering-upward.feature └── void.feature ├── ebook.md ├── gruvbox.css ├── index.md ├── intro.md ├── meditation ├── anapana.md ├── metta.md ├── noting.md ├── quantum-pause.md ├── social │ ├── breath-counting.md │ └── noting.md └── void.md ├── pagesize.tex ├── skills ├── paracosm-immersion.md └── tapering-upward.md ├── templates ├── index.html └── page.html ├── terms.md ├── title.txt ├── when-then-zen.epub ├── when-then-zen.mobi └── when-then-zen.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | text.tex 2 | -------------------------------------------------------------------------------- /Caddyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/Caddyfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/README.md -------------------------------------------------------------------------------- /bonus/anapana.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/bonus/anapana.feature -------------------------------------------------------------------------------- /bonus/breath-counting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/bonus/breath-counting.feature -------------------------------------------------------------------------------- /bonus/metta.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/bonus/metta.feature -------------------------------------------------------------------------------- /bonus/noting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/bonus/noting.feature -------------------------------------------------------------------------------- /bonus/paracosm-immersion.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/bonus/paracosm-immersion.feature -------------------------------------------------------------------------------- /bonus/quantum-pause.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/bonus/quantum-pause.feature -------------------------------------------------------------------------------- /bonus/social-noting.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/bonus/social-noting.feature -------------------------------------------------------------------------------- /bonus/tapering-upward.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/bonus/tapering-upward.feature -------------------------------------------------------------------------------- /bonus/void.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/bonus/void.feature -------------------------------------------------------------------------------- /ebook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/ebook.md -------------------------------------------------------------------------------- /gruvbox.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/gruvbox.css -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/index.md -------------------------------------------------------------------------------- /intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/intro.md -------------------------------------------------------------------------------- /meditation/anapana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/meditation/anapana.md -------------------------------------------------------------------------------- /meditation/metta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/meditation/metta.md -------------------------------------------------------------------------------- /meditation/noting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/meditation/noting.md -------------------------------------------------------------------------------- /meditation/quantum-pause.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/meditation/quantum-pause.md -------------------------------------------------------------------------------- /meditation/social/breath-counting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/meditation/social/breath-counting.md -------------------------------------------------------------------------------- /meditation/social/noting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/meditation/social/noting.md -------------------------------------------------------------------------------- /meditation/void.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/meditation/void.md -------------------------------------------------------------------------------- /pagesize.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/pagesize.tex -------------------------------------------------------------------------------- /skills/paracosm-immersion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/skills/paracosm-immersion.md -------------------------------------------------------------------------------- /skills/tapering-upward.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/skills/tapering-upward.md -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/templates/page.html -------------------------------------------------------------------------------- /terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/terms.md -------------------------------------------------------------------------------- /title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/title.txt -------------------------------------------------------------------------------- /when-then-zen.epub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/when-then-zen.epub -------------------------------------------------------------------------------- /when-then-zen.mobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/when-then-zen.mobi -------------------------------------------------------------------------------- /when-then-zen.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xe/when-then-zen/HEAD/when-then-zen.pdf --------------------------------------------------------------------------------