diff --git a/_includes/nav.html b/_includes/nav.html index 38ab90a..bd0b040 100644 --- a/_includes/nav.html +++ b/_includes/nav.html @@ -1,5 +1,5 @@

- ac + ac

diff --git a/_includes/style.html b/_includes/style.html deleted file mode 100644 index 94d86d2..0000000 --- a/_includes/style.html +++ /dev/null @@ -1,14 +0,0 @@ - \ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html index ac36d3f..41ef008 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -10,12 +10,11 @@ - {% include style.html a=page.categories.first %}
- {% include nav.html a=page.categories.first %} + {% include nav.html %}

{{ page.title }} diff --git a/_site/assets/css/default.css b/_site/assets/css/default.css index bc9a454..1347370 100644 --- a/_site/assets/css/default.css +++ b/_site/assets/css/default.css @@ -19,23 +19,23 @@ hr.menu { } a { - color: white; + color: #ebdbb2; } body { - background-color: black; - color: white; + background-color: #282828; + color: #ebdbb2; font-family: "Rubik"; min-height: 100vh; } code { - color: white; + color: #ebdbb2; } pre { - color: white; - background-color: #171717; + color: #ebdbb2; + background-color: #504945; padding: 10px 10px 10px 10px; border-radius: 10px; white-space: pre-wrap; @@ -67,7 +67,6 @@ img.letterboxd { } ::selection { - background-color: white; - color: black; + background-color: #ebdbb2; + color: #282828; } - diff --git a/_site/blog/2023/03/10/putting-thoughts-into-action/index.html b/_site/blog/2023/03/10/putting-thoughts-into-action/index.html index 439c049..41236bb 100644 --- a/_site/blog/2023/03/10/putting-thoughts-into-action/index.html +++ b/_site/blog/2023/03/10/putting-thoughts-into-action/index.html @@ -10,26 +10,12 @@ -

- ac + ac

diff --git a/_site/blog/index.html b/_site/blog/index.html index dec8e4c..04c4edb 100644 --- a/_site/blog/index.html +++ b/_site/blog/index.html @@ -10,26 +10,12 @@ -

- ac + ac

diff --git a/_site/feed.xml b/_site/feed.xml index 7f9f37e..bbdefcb 100644 --- a/_site/feed.xml +++ b/_site/feed.xml @@ -1,4 +1,4 @@ -Jekyll2023-08-06T18:20:12+01:00http://localhost:4000/feed.xmlAndrew ConlinRunning a Python script periodically in a Docker container using cron2023-04-19T00:00:00+01:002023-04-19T00:00:00+01:00http://localhost:4000/til/running-python-in-cron-in-dockerRecently, my partner gave a great idea for utilising my old Kindle: generate a “newspaper” each morning from a bunch of RSS feeds, and email it to the Kindle using “Send-to-Kindle” feature (a blog post about this project is in the works).

+Jekyll2023-08-06T18:28:13+01:00http://localhost:4000/feed.xmlAndrew ConlinRunning a Python script periodically in a Docker container using cron2023-04-19T00:00:00+01:002023-04-19T00:00:00+01:00http://localhost:4000/til/running-python-in-cron-in-dockerRecently, my partner gave a great idea for utilising my old Kindle: generate a “newspaper” each morning from a bunch of RSS feeds, and email it to the Kindle using “Send-to-Kindle” feature (a blog post about this project is in the works).

I loved this idea, and thought it would be no problem to get a Python script up and running periodically on my Raspberry Pi home server using cron. However, I ran into various issues along the way (some of which were not so easy to resolve), so I’m collating all the configuration changes I made in the hopes that it will be useful to someone one day. You can find the full repo for this project here, and I have also included my Dockerfile, docker-compose.yml and crontab at the end of this TIL.

diff --git a/_site/index.html b/_site/index.html index 1bb9f30..9e3c1ce 100644 --- a/_site/index.html +++ b/_site/index.html @@ -10,26 +10,12 @@ -

- ac + ac

diff --git a/_site/til/index.html b/_site/til/index.html index 976e2d8..11b7ba9 100644 --- a/_site/til/index.html +++ b/_site/til/index.html @@ -10,26 +10,12 @@ -

- ac + ac

diff --git a/_site/til/nextcloud-php-errors/index.html b/_site/til/nextcloud-php-errors/index.html index d11a2f1..5a8312c 100644 --- a/_site/til/nextcloud-php-errors/index.html +++ b/_site/til/nextcloud-php-errors/index.html @@ -10,26 +10,12 @@ -

- ac + ac

diff --git a/_site/til/running-python-in-cron-in-docker/index.html b/_site/til/running-python-in-cron-in-docker/index.html index 7d6063a..3af4983 100644 --- a/_site/til/running-python-in-cron-in-docker/index.html +++ b/_site/til/running-python-in-cron-in-docker/index.html @@ -10,26 +10,12 @@ -

- ac + ac

diff --git a/assets/css/default.css b/assets/css/default.css index bc9a454..1347370 100644 --- a/assets/css/default.css +++ b/assets/css/default.css @@ -19,23 +19,23 @@ hr.menu { } a { - color: white; + color: #ebdbb2; } body { - background-color: black; - color: white; + background-color: #282828; + color: #ebdbb2; font-family: "Rubik"; min-height: 100vh; } code { - color: white; + color: #ebdbb2; } pre { - color: white; - background-color: #171717; + color: #ebdbb2; + background-color: #504945; padding: 10px 10px 10px 10px; border-radius: 10px; white-space: pre-wrap; @@ -67,7 +67,6 @@ img.letterboxd { } ::selection { - background-color: white; - color: black; + background-color: #ebdbb2; + color: #282828; } -