kaka.farm

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 76c7adc104745fc8a48f1c102a79fbeb5c8d94d0
parent 65f9ac9c9936884168bae42b87d8ba69875e14dd
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Fri, 15 Jun 2018 23:58:37 +0300

Add log files

Diffstat:
MMakefile | 12+++++++++++-
MPipfile | 1+
MPipfile.lock | 9++++++++-
Rcontent/log/2018-06-14-meditation.md -> content/pages/log/2018-06-14-meditation.md | 0
Acontent/pages/log/2018-06-15-convict-conditioning.md | 7+++++++
Acontent/pages/log/2018-06-15-meditation.md | 19+++++++++++++++++++
Mpelican_base_configuration.py | 7+++++++
7 files changed, 53 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -28,6 +28,16 @@ gitlab: .PHONY: dev dev: pipenv run pelican \ + --ignore-cache \ + --verbose \ + -s pelican_development_configuration.py \ + ; \ + pipenv run pelican \ --autoreload \ --ignore-cache \ - -s pelican_development_configuration.py + --verbose \ + -s pelican_development_configuration.py \ + & \ + cd output \ + ; \ + python3 -m http.server --bind localhost 8000 diff --git a/Pipfile b/Pipfile @@ -6,3 +6,4 @@ name = "pypi" [packages] pelican = "*" markdown = "*" +markdown-checklist = "*" diff --git a/Pipfile.lock b/Pipfile.lock @@ -1,7 +1,7 @@ { "_meta": { "hash": { - "sha256": "d30e6a06b30166aac76cf51736272fde5241a3a140767919814d6c1409c431e5" + "sha256": "7e34ed2b56de2d1a80c9744f963c3204f8064a36e6ee0fd9467b13dd287d7e11" }, "pipfile-spec": 6, "requires": {}, @@ -49,6 +49,13 @@ "index": "pypi", "version": "==2.6.11" }, + "markdown-checklist": { + "hashes": [ + "sha256:f65dd8f18a2e3588f70ce3f2532f8df54c074b4715dfe1d40461123f7d879c70" + ], + "index": "pypi", + "version": "==0.4.1" + }, "markupsafe": { "hashes": [ "sha256:a6be69091dac236ea9c6bc7d012beab42010fa914c459791d627dad4910eb665" diff --git a/content/log/2018-06-14-meditation.md b/content/pages/log/2018-06-14-meditation.md diff --git a/content/pages/log/2018-06-15-convict-conditioning.md b/content/pages/log/2018-06-15-convict-conditioning.md @@ -0,0 +1,7 @@ +title: convict conditioning - 2018-06-15 +tags: conditioning, log +status: hidden + +- 10 wall pushups +- 3 +- few seconds stretches +- 10 wall pushups +- 3 diff --git a/content/pages/log/2018-06-15-meditation.md b/content/pages/log/2018-06-15-meditation.md @@ -0,0 +1,19 @@ +title: meditation log +tags: meditation, log +date: 2018-06-15 + +- Goals for the session: + - Session length: 20 min + - Interval bell: 5 min + - Exercise: Counting 10 breaths + +- Results: + - Start: 20:03:36Z + - Session length: 20 min + - Problems: + - Argument with a friend: + - Memories of the argument. + - Esprit de l'escalier. + - Imagined followup conversation. + - Feelings of anger, frustration at being misunderstood. + - Recording ideas for https://pypi.org/project/meditate/ diff --git a/pelican_base_configuration.py b/pelican_base_configuration.py @@ -1,3 +1,10 @@ TIMEZONE = "UTC" PATH = "content/" SITENAME = "Kaka Farm" + +MARKDOWN = { + "extension_configs": { + "markdown_checklist.extension": {}, + }, + "output_format": "html5", +}