commit f6fab475543c1b7adfc6d6841d67965b3c4cb511
parent 07f927ff3e08e6114b364977fa3897174e1e49fc
Author: Jake Bauer <jbauer@paritybit.ca>
Date: Sat, 11 Jul 2020 13:29:20 -0400
Publish new blog post
Diffstat:
5 files changed, 391 insertions(+), 2 deletions(-)
diff --git a/pages/blog.md b/pages/blog.md
@@ -27,6 +27,7 @@ href="https://social.paritybit.ca/@jbauer">Mastodon</a>.
### 2020
<ul>
+ <li>2020-07-11 <a href="blog/colours-for-gitea-issues">Colours for Gitea Issues</a></li>
<li>2020-07-09 <a href="blog/migrating-my-wiki-off-of-mediawiki">Migrating My Wiki Off of MediaWiki</a></li>
<li>2020-07-08 <a href="blog/my-todo-solution">My TODO Solution</a></li>
<li>2020-07-07 <a href="blog/are-todo-applications-a-waste-of-time">Are TODO Applications a Waste of Time?</a></li>
diff --git a/pages/blog/colours-for-gitea-issues.md b/pages/blog/colours-for-gitea-issues.md
@@ -0,0 +1,74 @@
+## Colours for Gitea Issues
+
+[//]: # "When I used to use Gitea, I created a colourscheme for classifying issues. Even though I'm not using it anymore, I figured others may get some use out of it."
+
+[//]: # "main.min.css"
+
+[//]: #
+
+<div class="byline">
+<b>Written By:</b> Jake Bauer |
+ <b>Posted:</b> 2020-07-11 |
+ <b>Last Updated:</b> 2020-07-11
+</div>
+
+I don't use Gitea anymore, but when I did I created a colourscheme for
+classifying issues. This page used to exist on my Wiki, but since both that and
+Gitea are no longer being used, I figured others using Gitea may get use out of
+this scheme.
+
+<table> <thead>
+<tr> <td>Colour</td> <td>Colour Code</td> <td>Label</td> <td>Description</td> </tr>
+</thead> <tbody>
+<tr> <td style="background-color:#bfd4f2"></td> <td>#bfd4f2</td> <td>Linux</td> <td>"This applies to Linux"</td> </tr>
+<tr> <td style="background-color:#bfd4f2"></td> <td>#bfd4f2</td> <td>Windows</td> <td>"This applies to Windows"</td> </tr>
+<tr> <td style="background-color:#bfd4f2"></td> <td>#bfd4f2</td> <td>MacOS</td> <td>"This applies to MacOS"</td> </tr>
+<tr> <td style="background-color:#bfd4f2"></td> <td>#bfd4f2</td> <td>FreeBSD</td> <td>"This applies to FreeBSD"</td> </tr>
+<tr> <td style="background-color:#bfd4f2"></td> <td>#bfd4f2</td> <td>OpenBSD</td> <td>"This applies to OpenBSD"</td> </tr>
+<tr> <td style="background-color:#bfd4f2"></td> <td>#bfd4f2</td> <td>Other OS</td> <td>"This applies to another OS"</td> </tr>
+<tr> <td style="background-color:#bfd4f2"></td> <td>#bfd4f2</td> <td>Front-end</td> <td>"This is a front-end feature"</td> </tr>
+<tr> <td style="background-color:#bfd4f2"></td> <td>#bfd4f2</td> <td>Back-end</td> <td>"This is a back-end feature"</td> </tr>
+<tr> <td style="background-color:#ee0701"></td> <td>#ee0701</td> <td>Bug</td> <td>"Something is not working"</td> </tr>
+<tr> <td style="background-color:#ee0701"></td> <td>#ee0701</td> <td>Security</td> <td>"A security-related bug"</td> </tr>
+<tr> <td style="background-color:#fef2c0"></td> <td>#fef2c0</td> <td>Mindless</td> <td>"A mindless task (e.g. organization, admin work)"</td> </tr>
+<tr> <td style="background-color:#207de5"></td> <td>#207de5</td> <td>Enhancement</td> <td>"An enhancement to an existing feature"</td> </tr>
+<tr> <td style="background-color:#128a0c"></td> <td>#128a0c</td> <td>Feature</td> <td>"A new feature"</td> </tr>
+<tr> <td style="background-color:#84b6eb"></td> <td>#84b6eb</td> <td>Help Wanted</td> <td>"The person assigned has requested help"</td> </tr>
+<tr> <td style="background-color:#d4c5f9"></td> <td>#d4c5f9</td> <td>Feedback</td> <td>"Feedback is requested on this issue"</td> </tr>
+<tr> <td style="background-color:#fbca04"></td> <td>#fbca04</td> <td>Pending</td> <td>"Progress is pending external factors or issues"</td> </tr>
+<tr> <td style="background-color:#cc317c"></td> <td>#cc317c</td> <td>Question</td> <td>"A question is being asked"</td> </tr>
+<tr> <td style="background-color:#cccccc"></td> <td>#cccccc</td> <td>Duplicate</td> <td>"This is a duplicate"</td> </tr>
+<tr> <td style="background-color:#cccccc"></td> <td>#cccccc</td> <td>Invalid</td> <td>"This is invalid in some way"</td> </tr>
+<tr> <td style="background-color:#cccccc"></td> <td>#cccccc</td> <td>Wontfix</td> <td>"This won't be fixed"</td> </tr>
+</tbody> </table>
+
+Here is the above table in the Gitea labels template format (the content below
+goes into a file in `custom/options/label/`:
+
+```
+#bfd4f2 Linux ; This applies to Linux
+#bfd4f2 Windows ; This applies to Windows
+#bfd4f2 MacOS ; This applies to MacOS
+#bfd4f2 FreeBSD ; This applies to FreeBSD
+#bfd4f2 OpenBSD ; This applies to OpenBSD
+#bfd4f2 OtherOS ; This applies to another OS
+#bfd4f2 Front-end ; This is a front-end feature
+#bfd4f2 Back-end ; This is a back-end feature
+#ee0701 Bug ; Something is not working
+#ee0701 Security ; A security-related bug
+#fef2c0 Mindless ; A mindless task (e.g. organization, admin work)
+#207de5 Enhancement ; An enhancement to an existing feature
+#128a0c Feature ; A new feature
+#84b6eb Help Wanted ; The person assigned has requested help
+#d4c5f9 Feedback ; Feedback is requested on this issue
+#fbca04 Pending ; Progress pending external factors or issues
+#cc317c Question ; A question is being asked
+#cccccc Duplicate ; This is a duplicate
+#cccccc Invalid ; This is invalid in some way
+#cccccc Wontfix ; This won't be fixed
+```
+
+_This is my sixty-sixth post for the
+[#100DaysToOffload](https://social.paritybit.ca/tags/100DaysToOffload)
+challenge. You can learn more about this challenge over at
+[https://100daystooffload.com](https://100daystooffload.com)._
diff --git a/pages/home.md b/pages/home.md
@@ -20,6 +20,8 @@ extent)! Access through `gopher://paritybit.ca` or `gemini://paritybit.ca`.
src="/img/feed-icon.png" width="15" height="15" alt="Click for RSS Feed"/>
</a>
</div>
+2020-07-11 <a class="feed-item" href="blog/colours-for-gitea-issues">Colours for Gitea Issues</a>
+
2020-07-09 <a class="feed-item" href="blog/migrating-my-wiki-off-of-mediawiki">Migrating My Wiki Off of MediaWiki</a>
2020-07-08 <a class="feed-item" href="blog/my-todo-solution">My TODO Solution</a>
@@ -37,8 +39,6 @@ extent)! Access through `gopher://paritybit.ca` or `gemini://paritybit.ca`.
2020-07-02 <a class="feed-item" href="blog/a-month-and-a-half-of-self-hosted-email">A Month-and-a-Half of Self-Hosted Email</a>
2020-06-28 <a class="feed-item" href="blog/how-i-keep-my-home-directory-clean">How I Keep My Home Directory Clean</a>
-
-2020-06-27 <a class="feed-item" href="blog/my-first-ctf">My First CTF</a>
### What is a Parity Bit?
It is a bit (in the 1's and 0's sense) used in checking for errors in digital
diff --git a/public/feeds/sitewide-feed.xml b/public/feeds/sitewide-feed.xml
@@ -7,6 +7,319 @@
<description>The feed that covers all notable additions, updates, announcements,
and other changes for the entire paritybit.ca website.</description>
<item>
+ <title>Colours for Gitea Issues</title>
+ <link>https://www.paritybit.ca/blog/colours-for-gitea-issues</link>
+ <guid>https://www.paritybit.ca/blog/colours-for-gitea-issues</guid>
+ <pubDate>Sat, 11 Jul 2020 13:27:32 -0400</pubDate>
+ <description><![CDATA[<h2 id="colours-for-gitea-issues">Colours for Gitea Issues</h2>
+<div class="byline">
+<p><b>Written By:</b> Jake Bauer | <b>Posted:</b> 2020-07-11 | <b>Last Updated:</b> 2020-07-11</p>
+</div>
+<p>I don’t use Gitea anymore, but when I did I created a colourscheme for classifying issues. This page used to exist on my Wiki, but since both that and Gitea are no longer being used, I figured others using Gitea may get use out of this scheme.</p>
+<table>
+<thead>
+<tr>
+<td>
+Colour
+</td>
+<td>
+Colour Code
+</td>
+<td>
+Label
+</td>
+<td>
+Description
+</td>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td style="background-color:#bfd4f2">
+</td>
+<td>
+#bfd4f2
+</td>
+<td>
+Linux
+</td>
+<td>
+“This applies to Linux”
+</td>
+</tr>
+<tr>
+<td style="background-color:#bfd4f2">
+</td>
+<td>
+#bfd4f2
+</td>
+<td>
+Windows
+</td>
+<td>
+“This applies to Windows”
+</td>
+</tr>
+<tr>
+<td style="background-color:#bfd4f2">
+</td>
+<td>
+#bfd4f2
+</td>
+<td>
+MacOS
+</td>
+<td>
+“This applies to MacOS”
+</td>
+</tr>
+<tr>
+<td style="background-color:#bfd4f2">
+</td>
+<td>
+#bfd4f2
+</td>
+<td>
+FreeBSD
+</td>
+<td>
+“This applies to FreeBSD”
+</td>
+</tr>
+<tr>
+<td style="background-color:#bfd4f2">
+</td>
+<td>
+#bfd4f2
+</td>
+<td>
+OpenBSD
+</td>
+<td>
+“This applies to OpenBSD”
+</td>
+</tr>
+<tr>
+<td style="background-color:#bfd4f2">
+</td>
+<td>
+#bfd4f2
+</td>
+<td>
+Other OS
+</td>
+<td>
+“This applies to another OS”
+</td>
+</tr>
+<tr>
+<td style="background-color:#bfd4f2">
+</td>
+<td>
+#bfd4f2
+</td>
+<td>
+Front-end
+</td>
+<td>
+“This is a front-end feature”
+</td>
+</tr>
+<tr>
+<td style="background-color:#bfd4f2">
+</td>
+<td>
+#bfd4f2
+</td>
+<td>
+Back-end
+</td>
+<td>
+“This is a back-end feature”
+</td>
+</tr>
+<tr>
+<td style="background-color:#ee0701">
+</td>
+<td>
+#ee0701
+</td>
+<td>
+Bug
+</td>
+<td>
+“Something is not working”
+</td>
+</tr>
+<tr>
+<td style="background-color:#ee0701">
+</td>
+<td>
+#ee0701
+</td>
+<td>
+Security
+</td>
+<td>
+“A security-related bug”
+</td>
+</tr>
+<tr>
+<td style="background-color:#fef2c0">
+</td>
+<td>
+#fef2c0
+</td>
+<td>
+Mindless
+</td>
+<td>
+“A mindless task (e.g. organization, admin work)”
+</td>
+</tr>
+<tr>
+<td style="background-color:#207de5">
+</td>
+<td>
+#207de5
+</td>
+<td>
+Enhancement
+</td>
+<td>
+“An enhancement to an existing feature”
+</td>
+</tr>
+<tr>
+<td style="background-color:#128a0c">
+</td>
+<td>
+#128a0c
+</td>
+<td>
+Feature
+</td>
+<td>
+“A new feature”
+</td>
+</tr>
+<tr>
+<td style="background-color:#84b6eb">
+</td>
+<td>
+#84b6eb
+</td>
+<td>
+Help Wanted
+</td>
+<td>
+“The person assigned has requested help”
+</td>
+</tr>
+<tr>
+<td style="background-color:#d4c5f9">
+</td>
+<td>
+#d4c5f9
+</td>
+<td>
+Feedback
+</td>
+<td>
+“Feedback is requested on this issue”
+</td>
+</tr>
+<tr>
+<td style="background-color:#fbca04">
+</td>
+<td>
+#fbca04
+</td>
+<td>
+Pending
+</td>
+<td>
+“Progress is pending external factors or issues”
+</td>
+</tr>
+<tr>
+<td style="background-color:#cc317c">
+</td>
+<td>
+#cc317c
+</td>
+<td>
+Question
+</td>
+<td>
+“A question is being asked”
+</td>
+</tr>
+<tr>
+<td style="background-color:#cccccc">
+</td>
+<td>
+#cccccc
+</td>
+<td>
+Duplicate
+</td>
+<td>
+“This is a duplicate”
+</td>
+</tr>
+<tr>
+<td style="background-color:#cccccc">
+</td>
+<td>
+#cccccc
+</td>
+<td>
+Invalid
+</td>
+<td>
+“This is invalid in some way”
+</td>
+</tr>
+<tr>
+<td style="background-color:#cccccc">
+</td>
+<td>
+#cccccc
+</td>
+<td>
+Wontfix
+</td>
+<td>
+“This won’t be fixed”
+</td>
+</tr>
+</tbody>
+</table>
+<p>Here is the above table in the Gitea labels template format (the content below goes into a file in <code>custom/options/label/</code>:</p>
+<pre><code>#bfd4f2 Linux ; This applies to Linux
+#bfd4f2 Windows ; This applies to Windows
+#bfd4f2 MacOS ; This applies to MacOS
+#bfd4f2 FreeBSD ; This applies to FreeBSD
+#bfd4f2 OpenBSD ; This applies to OpenBSD
+#bfd4f2 OtherOS ; This applies to another OS
+#bfd4f2 Front-end ; This is a front-end feature
+#bfd4f2 Back-end ; This is a back-end feature
+#ee0701 Bug ; Something is not working
+#ee0701 Security ; A security-related bug
+#fef2c0 Mindless ; A mindless task (e.g. organization, admin work)
+#207de5 Enhancement ; An enhancement to an existing feature
+#128a0c Feature ; A new feature
+#84b6eb Help Wanted ; The person assigned has requested help
+#d4c5f9 Feedback ; Feedback is requested on this issue
+#fbca04 Pending ; Progress pending external factors or issues
+#cc317c Question ; A question is being asked
+#cccccc Duplicate ; This is a duplicate
+#cccccc Invalid ; This is invalid in some way
+#cccccc Wontfix ; This won't be fixed</code></pre>
+<p><em>This is my sixty-sixth post for the <a href="https://social.paritybit.ca/tags/100DaysToOffload">#100DaysToOffload</a> challenge. You can learn more about this challenge over at <a href="https://100daystooffload.com">https://100daystooffload.com</a>.</em></p>]]></description>
+ </item>
+<item>
<title>Migrating My Wiki Off of MediaWiki</title>
<link>https://www.paritybit.ca/blog/migrating-my-wiki-off-of-mediawiki</link>
<guid>https://www.paritybit.ca/blog/migrating-my-wiki-off-of-mediawiki</guid>
diff --git a/public/sitemap.xml b/public/sitemap.xml
@@ -3,6 +3,7 @@
<url><loc>https://www.paritybit.ca</loc></url>
<url><loc>https://www.paritybit.ca/home</loc></url>
<url><loc>https://www.paritybit.ca/blog</loc></url>
+ <url><loc>https://www.paritybit.ca/blog/colours-for-gitea-issues</loc></url>
<url><loc>https://www.paritybit.ca/blog/migrating-my-wiki-off-of-mediawiki</loc></url>
<url><loc>https://www.paritybit.ca/blog/my-todo-solution</loc></url>
<url><loc>https://www.paritybit.ca/blog/are-todo-applications-a-waste-of-time</loc></url>