diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | content/about/index.md | 14 | ||||
-rw-r--r-- | content/blog/facebook-clegg.md | 7 | ||||
-rw-r--r-- | content/blog/openbsd_partition.md | 33 | ||||
-rw-r--r-- | content/reading/_index.md | 10 | ||||
-rw-r--r-- | static/css/style.css | 6 | ||||
-rw-r--r-- | themes/problematic/layouts/_default/single.html | 7 | ||||
-rw-r--r-- | themes/problematic/layouts/partials/reading.html | 3 |
8 files changed, 49 insertions, 32 deletions
@@ -1,3 +1,4 @@ public/ *.mp4 .hugo_build.lock +static/keys diff --git a/content/about/index.md b/content/about/index.md index ff6996c..c5141ce 100644 --- a/content/about/index.md +++ b/content/about/index.md @@ -1,5 +1,5 @@ --- -title: "About This Web Site" +title: "About this site" date: 2021-05-17T19:45:46+01:00 draft: false slug: "about" @@ -7,12 +7,14 @@ slug: "about" Yulqen is a deliberate misspelling of an [Autechre](https://en.wikipedia.org/wiki/Autechre) song I like. -This is a test. It is always a test. - -I was a wedding photographer for a short time. Unfortunately I'm no longer able to evidence this because I accidentally deleted **all** RAW and processed files from that period when I repartitioned an external drive. - -I currently live in [Berwick-upon-Tweed](https://en.wikipedia.org/wiki/Berwick-upon-Tweed). +I currently live in [Berwick-upon-Tweed](https://en.wikipedia.org/wiki/Berwick-upon-Tweed). I enjoy technology, programming, rugby, poetry and books. I am something of a minimalist when it comes to software and do most things in a terminal. This is my umpteenth web site and it will dutifully disappear in time. Or change to a [pandoc](https://pandoc.org)-driven site. I have [three cats that kill](../blog/cats/cat_kills/). + +--- + +[Github](https://github.com/yulqen) + +[GPG](../keys/mrl-gpg.pub) (fingerprint: 19014642A9FCD633B886B8F59C9841C3EF4E0B8E) diff --git a/content/blog/facebook-clegg.md b/content/blog/facebook-clegg.md index c8d3f34..20e41d8 100644 --- a/content/blog/facebook-clegg.md +++ b/content/blog/facebook-clegg.md @@ -3,13 +3,6 @@ title: Nick Clegg is a total trumpet date: 2021-10-31 draft: false --- -<<<<<<< HEAD And so is the other guy, obviously... {{< youtube pDCtkB1IZWk >}} -======= -And so is the other guy... - -{{< youtube pDCtkB1IZWk >}} - ->>>>>>> gutcss diff --git a/content/blog/openbsd_partition.md b/content/blog/openbsd_partition.md index 231ed27..9b0ebcd 100644 --- a/content/blog/openbsd_partition.md +++ b/content/blog/openbsd_partition.md @@ -19,22 +19,21 @@ tags: ['openbsd'] 1. `w` the parition. But notice - it did not create the mount point! I was a bit confused about that. I wanted to create the mount point now! But I couldn't - not even `disklabel` - the `m` option (modify) let me do it, and I'm damn sure the man pages say you can do it that way. 1. By this time, I was resorting to using another *web page* (sorry, OpenBSD man pages): [https://cvs.afresh1.com/~andrew/o/faq/faq14.html](https://cvs.afresh1.com/~andrew/o/faq/faq14.html). After creating the partition, I now had to create a new file system on it. I did that with `# newfs sd2m`. At this point I could happily mount it, and I did: `# mount /dev/sd2m /jails`. THEN, I added it to `/etc/fstab` - For this, I reverted back to the original tutorial to get the correct flags ([https://www.tubsta.com/2020/01/creating-a-chroot-in-openbsd/](https://www.tubsta.com/2020/01/creating-a-chroot-in-openbsd/)), - this is how it looks in `/etc/fstab`: -```console -7da04eb499cd98e3.b none swap sw -7da04eb499cd98e3.a / ffs rw,softdep,noatime 1 1 -7da04eb499cd98e3.l /home ffs rw,softdep,noatime,nodev,nosuid 1 2 -7da04eb499cd98e3.d /tmp ffs rw,softdep,noatime,nodev,nosuid 1 2 -7da04eb499cd98e3.f /usr ffs rw,softdep,noatime,nodev 1 2 -7da04eb499cd98e3.g /usr/X11R6 ffs rw,softdep,noatime,nodev 1 2 -7da04eb499cd98e3.h /usr/local ffs rw,softdep,noatime,wxallowed,nodev 1 2 -7da04eb499cd98e3.k /usr/obj ffs rw,softdep,noatime,nodev,nosuid 1 2 -7da04eb499cd98e3.j /usr/src ffs rw,softdep,noatime,nodev,nosuid 1 2 -7da04eb499cd98e3.e /var ffs rw,softdep,noatime,nodev,nosuid 1 2 -7da04eb499cd98e3.m /jails ffs rw 1 2 -swap /tmp mfs rw,nodev,nosuid,-s=800m 0 0 -swap /home/lemon/.cache mfs rw,nodev,nosuid,-s=3g 0 0 -``` -There is is, near the bottom: `/jails`. - + ```console + 7da04eb499cd98e3.b none swap sw + 7da04eb499cd98e3.a / ffs rw,softdep,noatime 1 1 + 7da04eb499cd98e3.l /home ffs rw,softdep,noatime,nodev,nosuid 1 2 + 7da04eb499cd98e3.d /tmp ffs rw,softdep,noatime,nodev,nosuid 1 2 + 7da04eb499cd98e3.f /usr ffs rw,softdep,noatime,nodev 1 2 + 7da04eb499cd98e3.g /usr/X11R6 ffs rw,softdep,noatime,nodev 1 2 + 7da04eb499cd98e3.h /usr/local ffs rw,softdep,noatime,wxallowed,nodev 1 2 + 7da04eb499cd98e3.k /usr/obj ffs rw,softdep,noatime,nodev,nosuid 1 2 + 7da04eb499cd98e3.j /usr/src ffs rw,softdep,noatime,nodev,nosuid 1 2 + 7da04eb499cd98e3.e /var ffs rw,softdep,noatime,nodev,nosuid 1 2 + 7da04eb499cd98e3.m /jails ffs rw 1 2 + swap /tmp mfs rw,nodev,nosuid,-s=800m 0 0 + swap /home/lemon/.cache mfs rw,nodev,nosuid,-s=3g 0 0 + ``` +1. There it is, near the bottom: `/jails`. 1. I rebooted, and prayed. I've had problems with fstab in the past. But not this time! 1. Everything fired back up and all was well! diff --git a/content/reading/_index.md b/content/reading/_index.md index a34789a..a90126c 100644 --- a/content/reading/_index.md +++ b/content/reading/_index.md @@ -1 +1,9 @@ -Stuff (on the internet, mainly) I am reading and why I am reading it. Could be anything - link sites, GitHub/source code, essays - whatever. +## Reading + +I read a lot on the internet and would like to read more on paper, like the old days. My attention span is too feeble to sit down to read a book at this point, but I'm working on it. + +Poetry is good because it's short and digestible. I don't use social media except Mastadon on occasion. + +### Remind me to read + +- [Original blog post](../blog/remind_me_to_read) diff --git a/static/css/style.css b/static/css/style.css index f25ff39..171a892 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -15,6 +15,10 @@ box-sizing: border-box; } +.content-list { + margin-bottom: 1.2em; +} + nav { margin-bottom: 2em; } @@ -51,7 +55,7 @@ figcaption { /* } */ body { - font-family: 'RobotoSlab-Regular', serif; + font-family: serif, "RobotoSlab-Regular"; font-size: 18px; margin-left: auto; margin-right: auto; diff --git a/themes/problematic/layouts/_default/single.html b/themes/problematic/layouts/_default/single.html index bc7133a..50605d1 100644 --- a/themes/problematic/layouts/_default/single.html +++ b/themes/problematic/layouts/_default/single.html @@ -1,4 +1,11 @@ {{ define "main" }} + +<style type="text/css" media="screen"> + li { + margin-bottom: 1.2em; + } +</style> + <h1 class="title">{{ .Title }}</h1> {{ .Content }} {{ end }} diff --git a/themes/problematic/layouts/partials/reading.html b/themes/problematic/layouts/partials/reading.html index 7ef6dcf..eecb36d 100644 --- a/themes/problematic/layouts/partials/reading.html +++ b/themes/problematic/layouts/partials/reading.html @@ -1,4 +1,7 @@ <h3>Reading by day</h3> + +This is intended to be an ongoing log of longer-form material. Not sure if I will continue to list it by day - that might be over ambitious. + <ul id="reading"> {{ range where site.RegularPages "Section" "reading" }} <li> |