From 9c0eba37512d80955afe3e4dbe687718f38de5ef Mon Sep 17 00:00:00 2001 From: Shane Jaroch Date: Thu, 2 May 2024 14:13:06 -0400 Subject: [PATCH] add makefile, update body odor, add shaving/scifi --- ...body-odor-how-to-naturally-smell-fresh.rst | 1 + content/posts/2024/05/shaving-tips.rst | 66 +++++++++++++++++++ content/posts/2024/05/three-sci-fi-books.rst | 25 +++++++ content/posts/Makefile | 9 +++ 4 files changed, 101 insertions(+) create mode 100644 content/posts/2024/05/shaving-tips.rst create mode 100644 content/posts/2024/05/three-sci-fi-books.rst create mode 100644 content/posts/Makefile diff --git a/content/posts/2023/06/body-odor-how-to-naturally-smell-fresh.rst b/content/posts/2023/06/body-odor-how-to-naturally-smell-fresh.rst index 7188087..a88e816 100644 --- a/content/posts/2023/06/body-odor-how-to-naturally-smell-fresh.rst +++ b/content/posts/2023/06/body-odor-how-to-naturally-smell-fresh.rst @@ -19,6 +19,7 @@ But you can skip a day or two here and there with some of these tricks. And maybe you'll fool everyone, including yourself, and avoid that smell, that icky, sticky feeling from head to toe. + Tips #### diff --git a/content/posts/2024/05/shaving-tips.rst b/content/posts/2024/05/shaving-tips.rst new file mode 100644 index 0000000..01bab46 --- /dev/null +++ b/content/posts/2024/05/shaving-tips.rst @@ -0,0 +1,66 @@ +************************************************************ + Shaving Tips +************************************************************ + +:date: 2024-05-02 +:modified: 2024-05-02 +:status: published +:tags: bathroom, beauty +:category: household +:slug: shaving-tips +:authors: Shane Jaroch +:summary: Shaving tips for avoiding razor burn. + + +Aloe +#### + +Applying an aloe gel-based lotion prior to shaving dramatically reduces the +rate of chaffing and facial dandruff. + +It greatly reduces redness and irritation after an electric or manual razor. + +It forms a protective layer, locking skin in and keeping the metal blades out. + + + +Quality Electric Razor (Or clippers) +#################################### + +I often use clippers (going for a 5 o'clock shadow, or recently shaved look). + +If you use a manual razor, consider trying a few premium models of electric +razors. +They provide a convenient experience, are often water-friendly, and can do +a similar job in less time. + +They can also be used to touch up around the neck and result in less irritation +than manual razor blades. + + + +Shower +###### + +It helps to shower before and after. If you don't have time, you can always +use a warm compress to soften your facial hairs. + +A similar practice can be applied to the legs, softer hairs are easier to cut. + + + +Horse hair brush (for dry shavers) +################################## + +Used for cleaning your hands, arms, shoulders, face, and neck of stray hairs. + + + +Stay on top of shaving, but don't overdo it +########################################### + +Depending on your job, you may have to shave more often than others. But it is +better to limit it to 3 or 4 times per week. + +Conversely, you don't want to go more than five or six days, because then you +get into clipper territory (razor blades are less effective on long hair). diff --git a/content/posts/2024/05/three-sci-fi-books.rst b/content/posts/2024/05/three-sci-fi-books.rst new file mode 100644 index 0000000..e61104d --- /dev/null +++ b/content/posts/2024/05/three-sci-fi-books.rst @@ -0,0 +1,25 @@ +************************************************************ + Shaving Tips +************************************************************ + +:date: 2024-05-02 +:modified: 2024-05-02 +:status: published +:tags: culture, books, literature +:category: philosophy +:slug: three-sci-fi-books +:authors: Shane Jaroch +:summary: Three worthwhile science fiction novels. + + +Ender's Game +############ + +**TODO:** this. + + + +Metamorphosis of Prime Intellect +################################ + +**TODO:** this. diff --git a/content/posts/Makefile b/content/posts/Makefile new file mode 100644 index 0000000..7a5cb3c --- /dev/null +++ b/content/posts/Makefile @@ -0,0 +1,9 @@ +SHELL=/bin/bash + +.PHONY: list +list: + @echo "Listing out existing tags..." + grep -rh --exclude=Makefile ":tags:" | awk -F":tags:" '{print $$2}' | xargs -I % echo % | tr -s ', ' '\n' | sort | uniq + @echo + @echo "Listing out existing categories..." + grep -rh --exclude=Makefile ":category:" | awk -F":category:" '{print $$2}' | xargs -I % echo % | tr -s ', ' '\n' | sort | uniq