summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author53hornet <atc@53hor.net>2021-12-22 20:56:32 -0500
committer53hornet <atc@53hor.net>2021-12-22 20:56:32 -0500
commitc4132486acea24c75e6ed0e74eb329d879990c17 (patch)
tree937aa318e30965c1c1e18ded9ceca4651faf6d87
parentc2e4e4f87fe9a7c2bbce31ac670aaa43c1ae0022 (diff)
download53hor-c4132486acea24c75e6ed0e74eb329d879990c17.tar.xz
53hor-c4132486acea24c75e6ed0e74eb329d879990c17.zip
feat: licenses in footer, footnotes on rescue
-rw-r--r--includes/foot.php11
-rw-r--r--includes/style.css1
-rw-r--r--pages/hireme.php3
-rw-r--r--pages/info.php17
-rw-r--r--posts/2021-12-15-rescuing-freebsd-the-unix-way.php10
5 files changed, 25 insertions, 17 deletions
diff --git a/includes/foot.php b/includes/foot.php
index 750a22a..d3754d6 100644
--- a/includes/foot.php
+++ b/includes/foot.php
@@ -2,8 +2,17 @@
<hr />
<footer>
- If you like my work then <a href="/donate">you may donate here</a>.
+ <p>
+ Content licensed under the <a target="_blank" href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
+ Source code licensed under the <a target="_blank" href="https://opensource.org/licenses/BSD-3-Clause"> BSD 3-Clause license</a>, unless otherwise stated.
+ </p>
+
+ <p>
+ If you like my work then <a href="/donate">you may donate here</a>.
+ </p>
+
</footer>
+
</body>
</html>
diff --git a/includes/style.css b/includes/style.css
index 3213b99..c8d9a33 100644
--- a/includes/style.css
+++ b/includes/style.css
@@ -196,5 +196,6 @@ th {
}
footer {
+ font-size: 0.75em;
text-align: center;
}
diff --git a/pages/hireme.php b/pages/hireme.php
index 5073d56..02a0f45 100644
--- a/pages/hireme.php
+++ b/pages/hireme.php
@@ -39,3 +39,6 @@ include('./assets/cv.html');
<p>
<img src="https://nextcloud.53hor.net/index.php/s/zL2AJHwtCWLX2Eq/preview" />
</p>
+
+<?php
+exit();
diff --git a/pages/info.php b/pages/info.php
index d3a1b4c..6f5b10e 100644
--- a/pages/info.php
+++ b/pages/info.php
@@ -38,9 +38,7 @@
</p>
<p>
- I prefer not to go back and edit old posts. So when you're reading
- something from 2 years ago, that was my opinion 2 years ago. Times
- change and so can I, so please try to keep that in mind.
+ When you're reading something from 2 years ago, that was my opinion 2 years ago. Times change and so can I, so please try to keep that in mind. I normally don't go back and edit old posts, but prefer to make new ones. For small updates or changes, I will add footnotes at the bottom of existing posts.
</p>
<p>
@@ -68,18 +66,7 @@
JavaScript on my site.
</p>
-<h2>License</h2>
-
-<p>
- Content on this site is licensed under the
- <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
-</p>
-
-<p>
- Source code on this site, unless otherwise stated, is licensed under the
- <a href="https://opensource.org/licenses/BSD-3-Clause">
- BSD 3-Clause license</a>.
-</p>
+<h2>Nerd Badges</h2>
<img src="https://nextcloud.53hor.net/index.php/s/G3QG8FNb8aDmzcc/preview" />
diff --git a/posts/2021-12-15-rescuing-freebsd-the-unix-way.php b/posts/2021-12-15-rescuing-freebsd-the-unix-way.php
index 1b54d63..cec623d 100644
--- a/posts/2021-12-15-rescuing-freebsd-the-unix-way.php
+++ b/posts/2021-12-15-rescuing-freebsd-the-unix-way.php
@@ -60,7 +60,7 @@
</pre>
<p>
- It took literally half the day. Poor little dual-core i5. It was already well on its way to completing when I realized I could have done this on my 8-core/16-thread server. "Oh, so you're reckless <em>and</em> stupid." Don't worry, I redeem myself later. Now I can actually install the new kernel and reboot into it. This is required before installing the world (userland).
+ It took literally half the day. Poor little dual-core i5. It was already well on its way to completing when I realized I could have done this on my 8-core/16-thread server<sup><a href="#1">[1]</a></sup>. "Oh, so you're reckless <em>and</em> stupid." Don't worry, I redeem myself later. Now I can actually install the new kernel and reboot into it. This is required before installing the world (userland).
</p>
<pre>
@@ -167,3 +167,11 @@
<p>
Redemption. I went from attempting to customize my kernel to annihilating <code>/usr</code> to restoring my entire system by building from FreeBSD's source tree via <code>git(1)</code> and <code>make(1)</code>. And I got a free upgrade out of it! Moving forward, I'm running slightly frequent automatic full-system snapshots. It should make it a lot easier to rescue accidental deletions of system files. I'm also going to take the time to learn more about the rescue disk process using the FreeBSD installer image. All told, not too bad for a disaster-turned-learning-experience.
</p>
+
+<hr>
+
+<ol>
+ <li id="1">
+ I actually did move my FreeBSD source to my server to let it pull changes and do automatic builds. Turns out it can chunk out the whole world and kernel in about TODO:
+ </li>
+</ol>