summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/about/index.md14
-rw-r--r--content/blog/facebook-clegg.md7
-rw-r--r--content/blog/openbsd_partition.md33
-rw-r--r--content/reading/_index.md10
4 files changed, 33 insertions, 31 deletions
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)