Add post descriptions

This commit is contained in:
Elnu 2022-06-10 20:01:42 -07:00
parent d6c06437c4
commit e9f04e2856
4 changed files with 4 additions and 0 deletions

View file

@ -3,6 +3,7 @@ title: "Automatically Update Matomo Excluded IPs"
date: 2022-02-28T14:54:56-08:00 date: 2022-02-28T14:54:56-08:00
tags: tags:
- programming - programming
description: "Going into Matomo to manually update excluded IPs to prevent your own visits from being counted is a pain. Learn how to write a command that updates them so you dont have to!"
--- ---
> :warning: Edited from [my forum posts on Matomo forums](https://forum.matomo.org/t/cant-find-global-website-settings-global-excluded-ips-etc-in-database-nor-configuration-files/44888) > :warning: Edited from [my forum posts on Matomo forums](https://forum.matomo.org/t/cant-find-global-website-settings-global-excluded-ips-etc-in-database-nor-configuration-files/44888)

View file

@ -3,6 +3,7 @@ title: "Cleaning Up HTML with Tidy"
date: 2022-01-24T13:04:45-08:00 date: 2022-01-24T13:04:45-08:00
tags: tags:
- programming - programming
description: "Static site generators such as Hugo create incredibly messy HTML output. Luckily, HTML tidy can make your ugly markup pristine, even removing comments! Lets learn how to use tidy and configure it to your needs."
--- ---
One issue with using static site generators that use templates like [Hugo](https://gohugo.io) is that their generated HTML files are often incredibly messy, with bad indentation, tons of unneeded whitespace, and overall unconcise formatting. While it *is* technically possible to fix this in your templates, it takes a lot of effort, makes your templates less readable, and frankly is a waste of time. One issue with using static site generators that use templates like [Hugo](https://gohugo.io) is that their generated HTML files are often incredibly messy, with bad indentation, tons of unneeded whitespace, and overall unconcise formatting. While it *is* technically possible to fix this in your templates, it takes a lot of effort, makes your templates less readable, and frankly is a waste of time.

View file

@ -4,6 +4,7 @@ date: 2022-01-27T20:55:43-08:00
tags: tags:
- japanese - japanese
- ff - ff
description: "An analysis of the Japanese opening text of Final Fantasy (1987) for the Famicom."
--- ---
> **Disclaimer:** There may be mistakes in the Japanese content in this post, I am not an expert. This is simply some of my personal notes that I am making public as a blog post. Use this as reference with caution. > **Disclaimer:** There may be mistakes in the Japanese content in this post, I am not an expert. This is simply some of my personal notes that I am making public as a blog post. Use this as reference with caution.

View file

@ -4,6 +4,7 @@ date: 2022-01-23T14:47:56-08:00
tags: tags:
- japanese - japanese
- programming - programming
description: "The Markdown spec doesnt include support for furigana, more commonly known as ruby text, which can be troublesome if you want to write content in Japanese. In this tutorial, learn how to add furigana support to Hugo using regular expressions!"
--- ---
> TL;DR: [Here](#creating-the-regular-expression) > TL;DR: [Here](#creating-the-regular-expression)