From 56514e3cef0b72c73f57ceaceb1de2cd20ec4eb0 Mon Sep 17 00:00:00 2001 From: Andrew Conlin Date: Sun, 12 Mar 2023 18:31:00 +0000 Subject: [PATCH] [12/03/23] added subdomains for blog and til, sorted category links accordingly --- Gemfile | 1 + Gemfile.lock | 3 + _config.yml | 28 +++ _data/nav.yml | 4 +- ...categoryStyle.html => category-style.html} | 0 _layouts/default.html | 2 +- _layouts/post.html | 4 +- _layouts/til-post.html | 24 +++ .../2023-01-14-musings-on-the-cinema.md | 1 - .../2023-03-05-yuri-felsen-on-love.md | 1 - ...2023-03-10-putting-thoughts-into-action.md | 1 - .../2023-03-01-nextcloud-php-errors.md | 1 - _site/2023/01/14/index.html | 117 ++++++++++++ _site/2023/01/index.html | 117 ++++++++++++ _site/2023/03/01/index.html | 117 ++++++++++++ _site/2023/03/05/index.html | 117 ++++++++++++ _site/2023/03/10/index.html | 117 ++++++++++++ _site/2023/03/index.html | 117 ++++++++++++ _site/2023/index.html | 117 ++++++++++++ _site/blog.html | 14 +- .../2023/01/14/musings-on-the-cinema.html | 14 +- .../2023/03/05/yuri-felsen-on-love.html | 12 +- .../03/10/putting-thoughts-into-action.html | 18 +- _site/blog/category/quotes/index.html | 117 ++++++++++++ _site/blog/category/thoughts/index.html | 117 ++++++++++++ _site/blog/category/til/index.html | 117 ++++++++++++ _site/blog/tag/bootstrap/index.html | 117 ++++++++++++ _site/blog/tag/cinema/index.html | 117 ++++++++++++ _site/blog/tag/css/index.html | 117 ++++++++++++ _site/blog/tag/docker-compose/index.html | 117 ++++++++++++ _site/blog/tag/docker/index.html | 117 ++++++++++++ _site/blog/tag/film/index.html | 117 ++++++++++++ _site/blog/tag/html/index.html | 117 ++++++++++++ _site/blog/tag/jekyll/index.html | 117 ++++++++++++ _site/blog/tag/journal/index.html | 117 ++++++++++++ _site/blog/tag/love/index.html | 117 ++++++++++++ _site/blog/tag/nextcloud/index.html | 117 ++++++++++++ _site/blog/tag/php/index.html | 117 ++++++++++++ _site/blog/tag/webdev/index.html | 117 ++++++++++++ _site/blog/tag/yuri-felsen/index.html | 117 ++++++++++++ _site/index.html | 4 +- _site/til.html | 172 ++++++++++++++++++ .../03/01 => }/nextcloud-php-errors.html | 16 +- blog/index.html | 24 +++ index.html | 1 + blog.html => til/index.html | 1 + 46 files changed, 3106 insertions(+), 48 deletions(-) rename _includes/{categoryStyle.html => category-style.html} (100%) create mode 100644 _layouts/til-post.html rename _posts/{ => blog}/2023-01-14-musings-on-the-cinema.md (98%) rename _posts/{ => blog}/2023-03-05-yuri-felsen-on-love.md (99%) rename _posts/{ => blog}/2023-03-10-putting-thoughts-into-action.md (99%) rename _posts/{ => til}/2023-03-01-nextcloud-php-errors.md (99%) create mode 100644 _site/2023/01/14/index.html create mode 100644 _site/2023/01/index.html create mode 100644 _site/2023/03/01/index.html create mode 100644 _site/2023/03/05/index.html create mode 100644 _site/2023/03/10/index.html create mode 100644 _site/2023/03/index.html create mode 100644 _site/2023/index.html rename _site/{thoughts => blog}/2023/01/14/musings-on-the-cinema.html (87%) rename _site/{quotes => blog}/2023/03/05/yuri-felsen-on-love.html (89%) rename _site/{thoughts => blog}/2023/03/10/putting-thoughts-into-action.html (88%) create mode 100644 _site/blog/category/quotes/index.html create mode 100644 _site/blog/category/thoughts/index.html create mode 100644 _site/blog/category/til/index.html create mode 100644 _site/blog/tag/bootstrap/index.html create mode 100644 _site/blog/tag/cinema/index.html create mode 100644 _site/blog/tag/css/index.html create mode 100644 _site/blog/tag/docker-compose/index.html create mode 100644 _site/blog/tag/docker/index.html create mode 100644 _site/blog/tag/film/index.html create mode 100644 _site/blog/tag/html/index.html create mode 100644 _site/blog/tag/jekyll/index.html create mode 100644 _site/blog/tag/journal/index.html create mode 100644 _site/blog/tag/love/index.html create mode 100644 _site/blog/tag/nextcloud/index.html create mode 100644 _site/blog/tag/php/index.html create mode 100644 _site/blog/tag/webdev/index.html create mode 100644 _site/blog/tag/yuri-felsen/index.html create mode 100644 _site/til.html rename _site/til/{2023/03/01 => }/nextcloud-php-errors.html (89%) create mode 100644 blog/index.html rename blog.html => til/index.html (97%) diff --git a/Gemfile b/Gemfile index aea06e6..0a677bf 100644 --- a/Gemfile +++ b/Gemfile @@ -5,3 +5,4 @@ source "https://rubygems.org" # gem "rails" gem "jekyll", "~> 4.3" +gem "jekyll-archives" diff --git a/Gemfile.lock b/Gemfile.lock index 60ce3ec..e564778 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -31,6 +31,8 @@ GEM safe_yaml (~> 1.0) terminal-table (>= 1.8, < 4.0) webrick (~> 1.7) + jekyll-archives (2.2.1) + jekyll (>= 3.6, < 5.0) jekyll-sass-converter (3.0.0) sass-embedded (~> 1.54) jekyll-watch (2.2.1) @@ -67,6 +69,7 @@ PLATFORMS DEPENDENCIES jekyll (~> 4.3) + jekyll-archives BUNDLED WITH 2.4.7 diff --git a/_config.yml b/_config.yml index e69de29..2ee7751 100644 --- a/_config.yml +++ b/_config.yml @@ -0,0 +1,28 @@ +plugins: + - jekyll-archives + +permalink: pretty + +defaults: + # blog + - scope: + path: "_posts/blog" + type: posts + values: + permalink: blog/:year/:month/:day/:title + layout: post + # til + - scope: + path: "_posts/til" + type: posts + values: + permalink: til/:title + category: til + layout: til-post + +jekyll-archives: + enabled: all + layout: default + permalinks: + category: "/blog/category/:name/" + tag: "/blog/tag/:name/" diff --git a/_data/nav.yml b/_data/nav.yml index af9ee76..d655146 100644 --- a/_data/nav.yml +++ b/_data/nav.yml @@ -1,7 +1,7 @@ - name: about - link: /index.html + link: / - name: blog - link: /blog.html + link: /blog - name: photos↗ link: http://andrewconlinphotography.co.uk diff --git a/_includes/categoryStyle.html b/_includes/category-style.html similarity index 100% rename from _includes/categoryStyle.html rename to _includes/category-style.html diff --git a/_layouts/default.html b/_layouts/default.html index d4177a1..03de281 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -11,7 +11,7 @@ - {% include categoryStyle.html%} + {% include category-style.html %} diff --git a/_layouts/post.html b/_layouts/post.html index 78e667d..c02f0dc 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -9,11 +9,11 @@ layout: default

 {{ page.date | date_to_string }}   |    -   {{ categories.first }}  +   {{ categories.first }}     |    {% for tag in tags %} - {{ tag }} + {{ tag }} {% if tag != tags.last %} , {% endif %} diff --git a/_layouts/til-post.html b/_layouts/til-post.html new file mode 100644 index 0000000..e56a7aa --- /dev/null +++ b/_layouts/til-post.html @@ -0,0 +1,24 @@ +--- +layout: default +--- + +{% assign categories = page.categories %} +{% assign category = site.data.categories[categories.first] %} + +{% assign tags = page.tags %} + +

+  {{ page.date | date_to_string }}   |    +   {{ categories.first }}  +    |    + + {% for tag in tags %} + {{ tag }} + {% if tag != tags.last %} + , + {% endif %} + {% endfor %} +

+
+ +{{ content }} diff --git a/_posts/2023-01-14-musings-on-the-cinema.md b/_posts/blog/2023-01-14-musings-on-the-cinema.md similarity index 98% rename from _posts/2023-01-14-musings-on-the-cinema.md rename to _posts/blog/2023-01-14-musings-on-the-cinema.md index 702acb7..ecbd369 100644 --- a/_posts/2023-01-14-musings-on-the-cinema.md +++ b/_posts/blog/2023-01-14-musings-on-the-cinema.md @@ -1,5 +1,4 @@ --- -layout: post title: Musings on the power of cinema categories: - thoughts diff --git a/_posts/2023-03-05-yuri-felsen-on-love.md b/_posts/blog/2023-03-05-yuri-felsen-on-love.md similarity index 99% rename from _posts/2023-03-05-yuri-felsen-on-love.md rename to _posts/blog/2023-03-05-yuri-felsen-on-love.md index 96f4bde..1eec73e 100644 --- a/_posts/2023-03-05-yuri-felsen-on-love.md +++ b/_posts/blog/2023-03-05-yuri-felsen-on-love.md @@ -1,5 +1,4 @@ --- -layout: post title: Yuri Felsen on love categories: - quotes diff --git a/_posts/2023-03-10-putting-thoughts-into-action.md b/_posts/blog/2023-03-10-putting-thoughts-into-action.md similarity index 99% rename from _posts/2023-03-10-putting-thoughts-into-action.md rename to _posts/blog/2023-03-10-putting-thoughts-into-action.md index d153e5a..2eb58cd 100644 --- a/_posts/2023-03-10-putting-thoughts-into-action.md +++ b/_posts/blog/2023-03-10-putting-thoughts-into-action.md @@ -1,5 +1,4 @@ --- -layout: post title: A measure of how easily thoughts can be translated to action categories: - thoughts diff --git a/_posts/2023-03-01-nextcloud-php-errors.md b/_posts/til/2023-03-01-nextcloud-php-errors.md similarity index 99% rename from _posts/2023-03-01-nextcloud-php-errors.md rename to _posts/til/2023-03-01-nextcloud-php-errors.md index ddc3a37..2461de9 100644 --- a/_posts/2023-03-01-nextcloud-php-errors.md +++ b/_posts/til/2023-03-01-nextcloud-php-errors.md @@ -1,5 +1,4 @@ --- -layout: post title: Fixing php errors in a Nextcloud docker-compose configuration categories: - til diff --git a/_site/2023/01/14/index.html b/_site/2023/01/14/index.html new file mode 100644 index 0000000..c50b719 --- /dev/null +++ b/_site/2023/01/14/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
+ + + +

+ + ac + +

+
+
+
+ +
+

+ about +

+
+ +
+

+ blog +

+
+ +
+

+ photos↗ +

+
+ +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+
+ +
+
+
+

+ +

+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_site/2023/01/index.html b/_site/2023/01/index.html new file mode 100644 index 0000000..b258779 --- /dev/null +++ b/_site/2023/01/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
+ + + +

+ + ac + +

+
+
+
+ +
+

+ about +

+
+ +
+

+ blog +

+
+ +
+

+ photos↗ +

+
+ +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+
+ +
+
+
+

+ +

+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_site/2023/03/01/index.html b/_site/2023/03/01/index.html new file mode 100644 index 0000000..3d52eac --- /dev/null +++ b/_site/2023/03/01/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
+ + + +

+ + ac + +

+
+
+
+ +
+

+ about +

+
+ +
+

+ blog +

+
+ +
+

+ photos↗ +

+
+ +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+
+ +
+
+
+

+ +

+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_site/2023/03/05/index.html b/_site/2023/03/05/index.html new file mode 100644 index 0000000..53bdee9 --- /dev/null +++ b/_site/2023/03/05/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
+ + + +

+ + ac + +

+
+
+
+ +
+

+ about +

+
+ +
+

+ blog +

+
+ +
+

+ photos↗ +

+
+ +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+
+ +
+
+
+

+ +

+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_site/2023/03/10/index.html b/_site/2023/03/10/index.html new file mode 100644 index 0000000..8104a01 --- /dev/null +++ b/_site/2023/03/10/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
+ + + +

+ + ac + +

+
+
+
+ +
+

+ about +

+
+ +
+

+ blog +

+
+ +
+

+ photos↗ +

+
+ +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+
+ +
+
+
+

+ +

+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_site/2023/03/index.html b/_site/2023/03/index.html new file mode 100644 index 0000000..7856b36 --- /dev/null +++ b/_site/2023/03/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
+ + + +

+ + ac + +

+
+
+
+ +
+

+ about +

+
+ +
+

+ blog +

+
+ +
+

+ photos↗ +

+
+ +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+
+ +
+
+
+

+ +

+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_site/2023/index.html b/_site/2023/index.html new file mode 100644 index 0000000..6156b94 --- /dev/null +++ b/_site/2023/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
+ + + +

+ + ac + +

+
+
+
+ +
+

+ about +

+
+ +
+

+ blog +

+
+ +
+

+ photos↗ +

+
+ +
+

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+

+
+ +
+
+
+

+ +

+ +
+
+
+
+ + + + \ No newline at end of file diff --git a/_site/blog.html b/_site/blog.html index f02a60b..2e6a1af 100644 --- a/_site/blog.html +++ b/_site/blog.html @@ -6,7 +6,7 @@ - + andrew conlin @@ -46,13 +46,13 @@ @@ -112,7 +112,7 @@
  • -

    A measure of how easily thoughts can be translated to action

    +

    A measure of how easily thoughts can be translated to action

     10 Mar 2023   |      thoughts  @@ -125,7 +125,7 @@
  • -

    Yuri Felsen on love

    +

    Yuri Felsen on love

     05 Mar 2023   |      quotes  @@ -138,7 +138,7 @@
  • -

    Fixing php errors in a Nextcloud docker-compose configuration

    +

    Fixing php errors in a Nextcloud docker-compose configuration

     01 Mar 2023   |      til  @@ -151,7 +151,7 @@
  • -

    Musings on the power of cinema

    +

    Musings on the power of cinema

     14 Jan 2023   |      thoughts  diff --git a/_site/thoughts/2023/01/14/musings-on-the-cinema.html b/_site/blog/2023/01/14/musings-on-the-cinema.html similarity index 87% rename from _site/thoughts/2023/01/14/musings-on-the-cinema.html rename to _site/blog/2023/01/14/musings-on-the-cinema.html index d4ddc8a..16fdf34 100644 --- a/_site/thoughts/2023/01/14/musings-on-the-cinema.html +++ b/_site/blog/2023/01/14/musings-on-the-cinema.html @@ -6,7 +6,7 @@ - + andrew conlin @@ -46,13 +46,13 @@ @@ -113,21 +113,21 @@

     14 Jan 2023   |    -   thoughts  +   thoughts     |    - journal + journal , - cinema + cinema , - film + film

    diff --git a/_site/quotes/2023/03/05/yuri-felsen-on-love.html b/_site/blog/2023/03/05/yuri-felsen-on-love.html similarity index 89% rename from _site/quotes/2023/03/05/yuri-felsen-on-love.html rename to _site/blog/2023/03/05/yuri-felsen-on-love.html index 1d686bf..86aa18e 100644 --- a/_site/quotes/2023/03/05/yuri-felsen-on-love.html +++ b/_site/blog/2023/03/05/yuri-felsen-on-love.html @@ -6,7 +6,7 @@ - + andrew conlin @@ -46,13 +46,13 @@ @@ -113,16 +113,16 @@

     05 Mar 2023   |    -   quotes  +   quotes     |    - yuri felsen + yuri felsen , - love + love

    diff --git a/_site/thoughts/2023/03/10/putting-thoughts-into-action.html b/_site/blog/2023/03/10/putting-thoughts-into-action.html similarity index 88% rename from _site/thoughts/2023/03/10/putting-thoughts-into-action.html rename to _site/blog/2023/03/10/putting-thoughts-into-action.html index ad80cf6..6126c7b 100644 --- a/_site/thoughts/2023/03/10/putting-thoughts-into-action.html +++ b/_site/blog/2023/03/10/putting-thoughts-into-action.html @@ -6,7 +6,7 @@ - + andrew conlin @@ -46,13 +46,13 @@ @@ -113,31 +113,31 @@

     10 Mar 2023   |    -   thoughts  +   thoughts     |    - html + html , - css + css , - bootstrap + bootstrap , - jekyll + jekyll , - webdev + webdev

    diff --git a/_site/blog/category/quotes/index.html b/_site/blog/category/quotes/index.html new file mode 100644 index 0000000..e37091f --- /dev/null +++ b/_site/blog/category/quotes/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + quotes +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/category/thoughts/index.html b/_site/blog/category/thoughts/index.html new file mode 100644 index 0000000..6d232bd --- /dev/null +++ b/_site/blog/category/thoughts/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + thoughts +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/category/til/index.html b/_site/blog/category/til/index.html new file mode 100644 index 0000000..2ce4173 --- /dev/null +++ b/_site/blog/category/til/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + til +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/bootstrap/index.html b/_site/blog/tag/bootstrap/index.html new file mode 100644 index 0000000..2407a8e --- /dev/null +++ b/_site/blog/tag/bootstrap/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + bootstrap +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/cinema/index.html b/_site/blog/tag/cinema/index.html new file mode 100644 index 0000000..7da99ae --- /dev/null +++ b/_site/blog/tag/cinema/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + cinema +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/css/index.html b/_site/blog/tag/css/index.html new file mode 100644 index 0000000..6ce64e9 --- /dev/null +++ b/_site/blog/tag/css/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + css +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/docker-compose/index.html b/_site/blog/tag/docker-compose/index.html new file mode 100644 index 0000000..6cc7021 --- /dev/null +++ b/_site/blog/tag/docker-compose/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + docker-compose +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/docker/index.html b/_site/blog/tag/docker/index.html new file mode 100644 index 0000000..160a51a --- /dev/null +++ b/_site/blog/tag/docker/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + docker +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/film/index.html b/_site/blog/tag/film/index.html new file mode 100644 index 0000000..20a4aa0 --- /dev/null +++ b/_site/blog/tag/film/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + film +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/html/index.html b/_site/blog/tag/html/index.html new file mode 100644 index 0000000..8476663 --- /dev/null +++ b/_site/blog/tag/html/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + html +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/jekyll/index.html b/_site/blog/tag/jekyll/index.html new file mode 100644 index 0000000..9c67cd7 --- /dev/null +++ b/_site/blog/tag/jekyll/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + jekyll +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/journal/index.html b/_site/blog/tag/journal/index.html new file mode 100644 index 0000000..35f741b --- /dev/null +++ b/_site/blog/tag/journal/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + journal +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/love/index.html b/_site/blog/tag/love/index.html new file mode 100644 index 0000000..ca2b691 --- /dev/null +++ b/_site/blog/tag/love/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + love +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/nextcloud/index.html b/_site/blog/tag/nextcloud/index.html new file mode 100644 index 0000000..b22df4f --- /dev/null +++ b/_site/blog/tag/nextcloud/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + nextcloud +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/php/index.html b/_site/blog/tag/php/index.html new file mode 100644 index 0000000..0c70c83 --- /dev/null +++ b/_site/blog/tag/php/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + php +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/webdev/index.html b/_site/blog/tag/webdev/index.html new file mode 100644 index 0000000..8d5d5a4 --- /dev/null +++ b/_site/blog/tag/webdev/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + webdev +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/blog/tag/yuri-felsen/index.html b/_site/blog/tag/yuri-felsen/index.html new file mode 100644 index 0000000..fb2f314 --- /dev/null +++ b/_site/blog/tag/yuri-felsen/index.html @@ -0,0 +1,117 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + yuri felsen +

    + +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/index.html b/_site/index.html index 94bbda1..abe6528 100644 --- a/_site/index.html +++ b/_site/index.html @@ -46,13 +46,13 @@ diff --git a/_site/til.html b/_site/til.html new file mode 100644 index 0000000..71dbee3 --- /dev/null +++ b/_site/til.html @@ -0,0 +1,172 @@ + + + + + + + + + + andrew conlin + + + + + + + +
    + + + +

    + + ac + +

    +
    +
    +
    + +
    +

    + about +

    +
    + +
    +

    + blog +

    +
    + +
    +

    + photos↗ +

    +
    + +
    +

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +

    +
    + +
    +
    +
    +

    + latest posts +

    +
    +
      + + + +
    • +

      A measure of how easily thoughts can be translated to action

      +
      +  10 Mar 2023   |    +   thoughts  +
      + Recently, I’ve been using multiple different languages and frameworks (both at work and personally) and I’ve been thinking about why I prefer some over others. Ultimately, I think it comes... +
      +
      +
    • + + + +
    • +

      Yuri Felsen on love

      +
      +  05 Mar 2023   |    +   quotes  +
      + “Like everyone, I have my own, maybe obsessive futile, maybe in some way authentic, vision: all of a sudden, I will imagine the entire homogenous world as it is revealed... +
      +
      +
    • + + + +
    • +

      Fixing php errors in a Nextcloud docker-compose configuration

      +
      +  01 Mar 2023   |    +   til  +
      + I was trying to rescan the files in my Nextcloud server (running on Raspberry Pi 4 with DietPi), and kept running into some weird php errors. First error - “could... +
      +
      +
    • + + + +
    • +

      Musings on the power of cinema

      +
      +  14 Jan 2023   |    +   thoughts  +
      + I’ve realised that going to the cinema makes me sad; a quiet, contemplative melancholy. Ennui. No matter the film, something about the cinema experience is meditative for me. I always... +
      +
      +
    • + +
    +
    +
    +
    +
    + + + + \ No newline at end of file diff --git a/_site/til/2023/03/01/nextcloud-php-errors.html b/_site/til/nextcloud-php-errors.html similarity index 89% rename from _site/til/2023/03/01/nextcloud-php-errors.html rename to _site/til/nextcloud-php-errors.html index b2d7754..4d1a093 100644 --- a/_site/til/2023/03/01/nextcloud-php-errors.html +++ b/_site/til/nextcloud-php-errors.html @@ -6,7 +6,7 @@ - + andrew conlin @@ -46,13 +46,13 @@ @@ -113,26 +113,26 @@

     01 Mar 2023   |    -   til  +   til     |    - php + php , - nextcloud + nextcloud , - docker + docker , - docker-compose + docker-compose

    diff --git a/blog/index.html b/blog/index.html new file mode 100644 index 0000000..8a62e81 --- /dev/null +++ b/blog/index.html @@ -0,0 +1,24 @@ +--- +layout: default +title: latest posts +permalink: /blog +--- + + +
    +
      + {% for post in site.posts %} + {% assign categories = post.categories %} + {% assign category = site.data.categories[categories.first] %} +
    • +

      {{ post.title }}

      +
      +  {{ post.date | date_to_string }}   |    +   {{ categories.first }}  +
      + {{ post.content | strip_html | truncatewords: 30 }} +
      +
      +
    • + {% endfor %} +
    \ No newline at end of file diff --git a/index.html b/index.html index a37ad39..a0a75aa 100644 --- a/index.html +++ b/index.html @@ -1,6 +1,7 @@ --- layout: default title: about me +permalink: / ---
    diff --git a/blog.html b/til/index.html similarity index 97% rename from blog.html rename to til/index.html index bfa0031..097def7 100644 --- a/blog.html +++ b/til/index.html @@ -1,6 +1,7 @@ --- layout: default title: latest posts +permalink: /til ---