-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add makefile, update body odor, add shaving/scifi
- Loading branch information
Showing
4 changed files
with
101 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 off 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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |