org-based setup

This commit is contained in:
Jacob Janzen 2024-04-12 15:24:36 -05:00
parent 0a2350c75e
commit 5b537ba863
25 changed files with 137 additions and 487 deletions

View file

@ -1,11 +1,13 @@
image: alpine/edge image: archlinux
oauth: pages.sr.ht/PAGES:RW
packages: packages:
- hut - emacs
sources:
- https://git.sr.ht/~jjanzen/dotfiles
tasks: tasks:
- build: |
emacs --batch --script ~/website/publish.el
- package: | - package: |
cd website cd ~/public_html/
tar -cvz . > ../site.tar.gz tar -cvz . > ../site.tar.gz
- upload: | - upload: |
hut pages publish -d jjanzen.ca site.tar.gz hut pages publish -d jjanzen.ca site.tar.gz
hut pages publish -d www.jjanzen.ca site.tar.gz

View file

@ -1,55 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>About Me</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="./index.html">Home</a>
<a href="./projects.html">Projects</a>
<a href="./tea.html">Tea Tasting Notes</a>
<a href="./rants.html">Rants</a>
<a href="./about.html">About Me</a>
</div>
<div class="body">
<h1>About Me</h1>
<p>
Hi, I'm Jacob. I'm a current undergraduate computer science student at
the University of Manitoba and infrastructure developer at the National
Microbiology Lab. I'm planning on continuing on to do a master's degree
at the U of M as well.
</p>
<p>
My big interests outside of computers these days are tea and fountain
pens. I also am really into literature, but haven't been able to find
the time to read all that much as of late.
</p>
<p>
In terms of computers, the hardware I'm most interested in is older
video game consoles (which I want to eventually start some projects
with) and microcontrollers. I like being able to fully understand how
the hardware works which becomes a challenge for more complicated
devices.
</p>
<p>
In a similar vein, I like being able to understand the software that I
use which is why I like using free (as in freedom) software. Emacs is my
text editor of choice although I also use (neo)vim on remote machines
(and at work due to some incompatibilities with the available version of
Emacs and my configuration). My language of choice for personal projects
is C. I enjoy the limited number of keywords in the language as it
allows me to keep the full language inside of my head and allow me to
focus on writing the algorithms, although Python is nice for rapid
prototyping. Go is a nice middle-ground that I choose sometimes when I
want faster code than Python or a stronger typing system. Another
language that I enjoy is Rust, although I don't find myself writing it
very often.
</p>
</div>
</body>
</html>

9
about.org Normal file
View file

@ -0,0 +1,9 @@
#+title: About Me
Hi, I'm Jacob. I'm a current undergraduate computer science student at the University of Manitoba and infrastructure developer at the National Microbiology Lab. I'm planning on continuing on to do a master's degree at the U of M as well.
My big interests outside of computers these days are tea and fountain pens. I also am really into literature, but haven't been able to find the time to read all that much as of late.
In terms of computers, the hardware I'm most interested in is older video game consoles (which I want to eventually start some projects with) and microcontrollers. I like being able to fully understand how the hardware works which becomes a challenge for more complicated devices.
In a similar vein, I like being able to understand the software that I use which is why I like using free (as in freedom) software. Emacs is my text editor of choice although I also use (neo)vim on remote machines (and at work due to some incompatibilities with the available version of Emacs and my configuration). My language of choice for personal projects is C. I enjoy the limited number of keywords in the language as it allows me to keep the full language inside of my head and allow me to focus on writing the algorithms, although Python is nice for rapid prototyping. Go is a nice middle-ground that I choose sometimes when I want faster code than Python or a stronger typing system. Another language that I enjoy is Rust, although I don't find myself writing it very often.

View file

@ -36,20 +36,20 @@ a:hover {
text-decoration: underline; text-decoration: underline;
} }
.header { .topnav {
color: #fff8ea; color: #fff8ea;
background-color: #594545; background-color: #594545;
margin-top: 10px; margin-top: 10px;
padding: 5px 5px 5px 5px; padding: 5px 5px 5px 5px;
} }
.header a { .topnav a {
color: #fff8ea; color: #fff8ea;
padding: 10px 10px; padding: 10px 10px;
} }
@media screen and (max-width: 600px) { @media screen and (max-width: 700px) {
.header a { .topnav a {
float: none; float: none;
display: block; display: block;
text-align: left; text-align: left;

View file

@ -1,37 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jacob janzen's website</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="./index.html">Home</a>
<a href="./projects.html">Projects</a>
<a href="./tea.html">Tea Tasting Notes</a>
<a href="./rants.html">Rants</a>
<a href="./about.html">About Me</a>
</div>
<div class="body">
<h1>Jacob Janzen's Website</h1>
<p>
This website is designed to be as minimal as possible. It's written in
HTML and CSS while avoiding JavaScript as much as humanly possible.
There are no frameworks and no bloat. It's currently hosted on sourcehut
pages, but I intend to eventually move it over to a self-hosted server
when I get the hardware (this is years away).
</p>
<p>
Find me on
<a href="https://git.sr.ht/~jjanzen/" target="_blank">sourcehut</a> and
<a href="https://www.linkedin.com/in/jacob--janzen/" target="_blank"
>LinkedIn</a
>.
</p>
</div>
</body>
</html>

5
index.org Normal file
View file

@ -0,0 +1,5 @@
#+title: Jacob Janzen's Website
This website is designed to be as minimal as possible. It's written in HTML and CSS while avoiding JavaScript as much as humanly possible. There are no frameworks and no bloat. It's currently hosted on sourcehut pages, but I intend to eventually move it over to a self-hosted server when I get the hardware (this is years away).
Find me on [[https://git.sr.ht/~jjanzen/][sourcehut]] and [[https://www.linkedin.com/in/jacob--jjanzen/][LinkedIn]].

View file

@ -1,55 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Projects</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="./index.html">Home</a>
<a href="./projects.html">Projects</a>
<a href="./tea.html">Tea Tasting Notes</a>
<a href="./rants.html">Rants</a>
<a href="./about.html">About Me</a>
</div>
<div class="body">
<h1>Projects</h1>
<h2>In Progress</h2>
<ul>
<li>
<a href="https://git.sr.ht/~jjanzen/urlg" target="_blank">urlg</a>: an
old-style roguelike written in C with ncurses. Progress is slow as I
only work on this one when I'm feeling really inspired.
</li>
</ul>
<h2>Finished</h2>
<ul>
<li>
<a href="https://github.com/codyauch/IPN-Project" target="_blank"
>IPN Project</a
>: implementing an interplanetary network simulation using ns-3.
</li>
<li>
<a href="https://jacobjanzen.itch.io/space-cowboy" target="_blank"
>Space Cowboy</a
>: a simple platforming game with some "interesting" physics written
for the 2022 University of Manitoba Computer Science Student
Association Game Jam.
</li>
<li>
<a
href="https://git.sr.ht/~jjanzen/writhing-mass-of-flesh"
target="_blank"
>Writhing Mass of Flesh</a
>: a program that procedurally generates mildly disturbing looking
GIFs. Winner of the best code category for the University of Manitoba
DevClub's 2022 generative art challenge.
</li>
</ul>
</div>
</body>
</html>

9
projects.org Normal file
View file

@ -0,0 +1,9 @@
#+title: Projects
* In progress
- [[https://git.sr.ht/~jjanzen/urlg][urlg]]: an old-style rogue-like written in C with =ncurses=. Progress is slow as I only work on this one when I'm feeling really inspired.
* Completed
- [[https://github.com/codyauch/IPN-Project][IPN Project]]: implementing an interplanetary network simulations using NS-3.
- [[https://jacobjanzen.itch.io/space-cowboy][Space Cowboy]]: a simple platforming game with some "interesting" (read bad, but fun) physics written for the 2022 University of Manitoba Computer Science Student Association Game Jam.
- [[https://git.sr.ht/~jjanzen/writhing-mass-of-flesh][Writing Mass of Flesh]]: a program that procedurally generates mildly disturbing looking GIFs. Winner of the best code category for the University of Manitoba DevClub's 2022 generative art challenge.

36
publish.el Normal file
View file

@ -0,0 +1,36 @@
(require 'org)
(require 'ox-html)
(setq org-publish-project-alist
'(
("org-notes"
:base-directory "~/website/"
:base-extension "org"
:publishing-directory "~/public_html/"
:recursive t
:publishing-function org-html-publish-to-html
:with-toc nil
:headline-levels 4
:section-numbers nil
:html-head "<link rel='stylesheet' href='/css/stylesheet.css' type='text/css'/>"
:html-preamble "<div class='topnav'><a href='/index.html'>Home</a><a href='/projects.html'>Projects</a><a href='/tea.html'>Tea Tasting Notes</a><a href='/rants.html'>Rants</a><a href='/config.html'>Dotfiles</a><a href='/about.html'>About Me</a></div>"
:html-postamble nil
:auto-sitemap t
:sitemap-filename "sitemap.org"
:sitemap-title "Sitemap")
("org-static"
:base-directory "~/website/"
:base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf"
:publishing-directory "~/public_html"
:recursive t
:publishing-function org-publish-attachment)
("org-config"
:base-directory "~/dotfiles/.doom.d/"
:base-extension "org"
:html-head "<link rel='stylesheet' href='/css/stylesheet.css' type='text/css'/>"
:html-preamble "<div class='topnav'><a href='/index.html'>Home</a><a href='/projects.html'>Projects</a><a href='/tea.html'>Tea Tasting Notes</a><a href='/rants.html'>Rants</a><a href='/config.html'>Dotfiles</a><a href='/about.html'>About Me</a></div>"
:publishing-directory "~/public_html"
:publishing-function org-html-publish-to-html
:headline-levels 4
:auto-preamble t)
("org" :components ("org-notes" "org-static" "org-config"))))
(org-publish-all t)

View file

@ -1,34 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Rants</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="./index.html">Home</a>
<a href="./projects.html">Projects</a>
<a href="./tea.html">Tea Tasting Notes</a>
<a href="./rants.html">Rants</a>
<a href="./about.html">About Me</a>
</div>
<div class="body">
<h1>Rants</h1>
<p>
This page is where I post rants about various miscellaneous topics—my
blog I suppose.
</p>
<ul>
<li>
<a href="./rants/TheAsadas.html"
>Talking About The Asadas (2020) <strong>**spoilers**</strong></a
>
</li>
</ul>
</div>
</body>
</html>

5
rants.org Normal file
View file

@ -0,0 +1,5 @@
#+title: Rants
This page is where I post rants about various miscellaneous topics. I suppose it is my blog.
- [[file:rants/TheAsadas.org][Talking About The Asadas (2020)]] ***spoilers***

View file

@ -1,87 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Talking About The Asadas (2020)</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="../index.html">Home</a>
<a href="../projects.html">Projects</a>
<a href="../tea.html">Tea Tasting Notes</a>
<a href="../rants.html">Rants</a>
<a href="../about.html">About Me</a>
</div>
<div class="body">
<h1>Talking About The Asadas (2020)</h1>
<p>
I finally got around to rewatching this movie last night after watching
it on a plane one time. It really stuck with me because of a scene near
the end that made me cry. I usually don't really talk about movies all
that much but I felt the need to discuss this one.
</p>
<p>
On rewatch, the film did not hold up as well as I remembered. I still
enjoyed it, but I found the plot and pacing to be somewhat odd. It felt
like two disjoint movies, one about a struggling photographer trying to
follow his dreams and one about trying to find hope in the aftermath of
the 2011 Tōhoku earthquake. I think both stories worked well on their
own, but I think that they failed to transition effectively between the
two.
</p>
<p>
The first half of the movie shows Masashi taking up photography after
seeing his father gifts him the old family camera. He is very interested
in photography as a child before becoming directionless after graduating
from his university with a prestigious award for a family photo he took.
Years later, he becomes inspired once again and begins taking many
family photos, each with funny themes where the family pretends to be in
various different scenarios such as pretending they were all on a car
racing team or that they were a family of gangsters. He publishes a book
of this photography and initially has little success before winning an
award for it and achieving a lot of success. I found this section to be
very poorly paced. He pretty quickly goes from his book being an abject
failure to a huge success. It feels like it was missing something, but
the family photos were cute and fun and the struggles of wanting to do
something, but never doing anything to satisfy that urge to create is
immensely relatable to me.
</p>
<p>
The second half of the movie was significantly more emotionally
stimulating and I think that it deals with the devestation of such a
natural disaster very well. In particular, I appreciated how it dealt
with a young child who had lost her father in the earthquake. After his
death she was very distraught because she could not find any photos of
her father in the collection of photos that protagonist Masashi Asada
and other volunteers had helped salvage. At the same time, Masashi's
father was having a medical emergency and his family thought he may pass
away. Similarly, there were few photos of him before Masashi took up
photography as his father was always the one behind the camera.
Realizing this, Masashi quickly comes back to Tōhoku to take a family
photo for that child. Wearing the father's old watch to take a photo, he
made the family realize that their father was actually in every single
one of those photos, just behind the camera instead of in front.
</p>
<p>
The movie ends with a fake-out about the father's death. It shows the
family surrounding him as he lays down as though dead. His wife falls
forward to sob, and then you hear a camera shutter and the family all
start laughing. This was just another of Masashi's fun themed family
photos. The scene gave me a good chuckle.
</p>
<p>
Overall, I found the movie to be very cute and I found that it did a
great job of dealing with the tragedy of natural disaster. I really wish
that it did a better job of pacing the first half and tying the themes
of the first half to the second half. It felt disjointed and that is
disappointing to me because I think it could have been a really
fantastic movie if those issues were worked through with a little more
script editing.
</p>
</div>
</body>
</html>

13
rants/TheAsadas.org Normal file
View file

@ -0,0 +1,13 @@
#+title: Talking About The Asadas(2020)
I finally got around to re-watching this movie last night after watching it on a plane one time. It really stuck with me because of a scene near the end that made me cry. I usually don't really talk about movies all that much but I felt the need to discuss this one.
On re-watch, the film did not hold up as well as I remembered. I still enjoyed it, but I found the plot and pacing to be somewhat odd. It felt like two disjoint movies, one about a struggling photographer trying to follow his dreams and one about trying to find hope in the aftermath of the 2011 Tōhoku earthquake. I think both stories worked well on their own, but I think that they failed to transition effectively between the two.
The first half of the movie shows Masashi taking up photography after seeing his father gifts him the old family camera. He is very interested in photography as a child before becoming directionless after graduating from his university with a prestigious award for a family photo he took. Years later, he becomes inspired once again and begins taking many family photos, each with funny themes where the family pretends to be in various different scenarios such as pretending they were all on a car racing team or that they were a family of gangsters. He publishes a book of this photography and initially has little success before winning an award for it and achieving a lot of success. I found this section to be very poorly paced. He pretty quickly goes from his book being an abject failure to a huge success. It feels like it was missing something, but the family photos were cute and fun and the struggles of wanting to do something, but never doing anything to satisfy that urge to create is immensely relatable to me.
The second half of the movie was significantly more emotionally stimulating and I think that it deals with the devestation of such a natural disaster very well. In particular, I appreciated how it dealt with a young child who had lost her father in the earthquake. After his death she was very distraught because she could not find any photos of her father in the collection of photos that protagonist Masashi Asada and other volunteers had helped salvage. At the same time, Masashi's father was having a medical emergency and his family thought he may pass away. Similarly, there were few photos of him before Masashi took up photography as his father was always the one behind the camera. Realizing this, Masashi quickly comes back to Tōhoku to take a family photo for that child. Wearing the father's old watch to take a photo, he made the family realize that their father was actually in every single one of those photos, just behind the camera instead of in front.
The movie ends with a fake-out about the father's death. It shows the family surrounding him as he lays down as though dead. His wife falls forward to sob, and then you hear a camera shutter and the family all start laughing. This was just another of Masashi's fun themed family photos. The scene gave me a good chuckle.
Overall, I found the movie to be very cute and I found that it did a great job of dealing with the tragedy of natural disaster. I really wish that it did a better job of pacing the first half and tying the themes of the first half to the second half. It felt disjointed and that is disappointing to me because I think it could have been a really fantastic movie if those issues were worked through with a little more script editing.

14
sitemap.org Normal file
View file

@ -0,0 +1,14 @@
#+TITLE: Sitemap
- [[file:about.org][About Me]]
- [[file:index.org][Jacob Janzen's Website]]
- [[file:projects.org][Projects]]
- [[file:rants.org][Rants]]
- [[file:tea.org][Tea Tasting Notes]]
- rants
- [[file:rants/TheAsadas.org][Talking About The Asadas(2020)]]
- tea
- [[file:tea/W2T-2021-HotlineSpaceCoyote.org][W2t 2021 Hotline Space Coyote]]
- [[file:tea/W2T-2022-BoatCaptain.org][White2Tea 2022 Boat Captain]]
- [[file:tea/W2T-2023-LumberSlut.org][White2Tea 2023 Lumber Slut]]
- [[file:tea/W2T-DailyDuckShit.org][White2Tea Daily Duck Shit]]

View file

@ -1,40 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Tea Tasting Notes</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="./index.html">Home</a>
<a href="./projects.html">Projects</a>
<a href="./tea.html">Tea Tasting Notes</a>
<a href="./rants.html">Rants</a>
<a href="./about.html">About Me</a>
</div>
<div class="body">
<h1>Tea Tasting Notes</h1>
<p>This is where I will post notes about various teas I try.</p>
<ul>
<li>
<a href="tea/W2T-2021-HotlineSpaceCoyote.html"
>W2T 2021 Hotline Space Coyote</a
>
</li>
<li>
<a href="tea/W2T-2022-BoatCaptain.html">W2T 2022 Boat Captain</a>
</li>
<li>
<a href="tea/W2T-2023-LumberSlut.html">W2T 2023 Lumber Slut</a>
</li>
<li>
<a href="tea/W2T-DailyDuckShit.html">W2T Daily Duck Shit</a>
</li>
</ul>
</div>
</body>
</html>

7
tea.org Normal file
View file

@ -0,0 +1,7 @@
#+title: Tea Tasting Notes
This is where I will post notes about various teas I try.
- [[file:tea/W2T-2021-HotlineSpaceCoyote.org][W2T 2021 Hotline Space Coyote]]
- [[file:tea/W2T-2022-BoatCaptain.org][W2T 2022 Boat Captain]]
- [[file:tea/W2T-2023-LumberSlut.org][W2T 2023 Lumber Slut]]
- [[file:tea/W2T-DailyDuckShit.org][W2T Daily Duck Shit]]

View file

@ -1,32 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>W2T 2021 Hotline Space Coyote</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="../index.html">Home</a>
<a href="../projects.html">Projects</a>
<a href="../tea.html">Tea Tasting Notes</a>
<a href="../rants.html">Rants</a>
<a href="../about.html">About Me</a>
</div>
<div class="body">
<h1>White2Tea 2021 Hotline Space Coyote</h1>
<p>A 3-year-old sheng pu'er in a 200 gram cake.</p>
<p>
Pale yellow liquor. Milky mouthfeel. Flavour gives me senses of fresh
fruit, apricot.
</p>
<p>Rating: 9/10</p>
</div>
</body>
</html>

View file

@ -0,0 +1,7 @@
#+title: White2Tea 2021 Hotline Space Coyote
This is a 3-year-old raw pu'er in a 200 gram cake.
This one is really fantastic. The pale yellow liquor has a milky mouthfeel that gives notes of fresh fruit, apricot in particular.
Rating 9/10

View file

@ -1,34 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>W2T 2022 Boat Captain</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="../index.html">Home</a>
<a href="../projects.html">Projects</a>
<a href="../tea.html">Tea Tasting Notes</a>
<a href="../rants.html">Rants</a>
<a href="../about.html">About Me</a>
</div>
<div class="body">
<h1>White2Tea 2022 Boat Captain</h1>
<p>This is a 2-year-old sheng pu'er in a 200 gram cake.</p>
<p>
The liquor is a yellowy-orange colour, with a thick, soupy texture. The
early steeps were very smooth, while later ones were steeps were drier
with a more tannic mouthfeel. It has a smoky, leather flavour that
settles into a malty sweetness.
</p>
<p>Rating: 8/10</p>
</div>
</body>
</html>

View file

@ -0,0 +1,7 @@
#+title: White2Tea 2022 Boat Captain
This is a 2-year-old raw pu'er in a 200 gram cake.
The liquor is a yellowy-orange colour, with a thick, soupy texture. The early steeps were very smooth, while later ones were steeps were drier with a more tannic mouthfeel. It has a smoky, leather flavour that settles into a malty sweetness.
Rating 8/10

View file

@ -1,35 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>W2T 2023 Lumber Slut</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="../index.html">Home</a>
<a href="../projects.html">Projects</a>
<a href="../tea.html">Tea Tasting Notes</a>
<a href="../rants.html">Rants</a>
<a href="../about.html">About Me</a>
</div>
<div class="body">
<h1>White2Tea 2023 Lumber Slut</h1>
<p>1 year old 200 gram ripe pu'er cake</p>
<p>
The liquor is black and smells like wood. It has a pleasant, smooth
woody flavour. Not at all complex, but still enjoyable. I like to brew
this one by putting an unmeasured chunk of leaves at the bottom of my
thermos and fill it with boiling water. It doesn't seem to oversteep no
matter what I do to it. Good daily drinker.
</p>
<p>Rating: 8/10</p>
</div>
</body>
</html>

View file

@ -0,0 +1,7 @@
#+title: White2Tea 2023 Lumber Slut
This tea is a 1-year-old ripe pu'er. It came in a 200 gram cake.
The liquor is black and smells like wood. It has a pleasant, smooth woody flavour. Not at all complex, but still enjoyable. I like to brew this one by putting an unmeasured chunk of leaves at the bottom of my thermos and fill it with boiling water. It doesn't seem to oversteep no matter what I do to it. Good daily drinker.
Rating 8/10

View file

@ -1,38 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>W2T Daily Duck Shit</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="../index.html">Home</a>
<a href="../projects.html">Projects</a>
<a href="../tea.html">Tea Tasting Notes</a>
<a href="../rants.html">Rants</a>
<a href="../about.html">About Me</a>
</div>
<div class="body">
<h1>White2Tea Daily Duck Shit</h1>
<p>
I won't lie; I initially bought this one for the funny name, but it's
actually a pretty decent inexpensive tea. Normally, roasted oolongs
aren't my favourite, but I do enjoy some good duck shit.
</p>
<p>
The liquor is a pale orange with a milky texture. The liquor is a pale
orange with a milky mouthfeel. The flavour is somewhat nutty but also
evokes a sense of dried fruit. Dates and almonds are the most prominent
flavours that I taste in it.
</p>
<p>Rating: 7/10</p>
</div>
</body>
</html>

View file

@ -0,0 +1,7 @@
#+title: White2Tea Daily Duck Shit
I won't lie; I initially bought this one for the funny name, but it's actually a pretty decent inexpensive tea. Normally, roasted oolongs aren't my favourite, but I do enjoy some good duck shit.
The liquor is a pale orange with a milky texture. The liquor is a pale orange with a milky mouthfeel. The flavour is somewhat nutty but also evokes a sense of dried fruit. Dates and almonds are the most prominent flavours that I taste in it.
Rating: 7/10

View file

@ -1,31 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Title</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../styles.css" />
<link rel="icon" type="image/png" href="data:image/png;base64," />
</head>
<body>
<div class="header">
<a href="../index.html">Home</a>
<a href="../projects.html">Projects</a>
<a href="../tea.html">Tea Tasting Notes</a>
<a href="../rants.html">Rants</a>
<a href="../about.html">About Me</a>
</div>
<div class="body">
<h1>Title</h1>
<p>Description</p>
<p>
<!-- liquor, mouthfeel, flavour -->
</p>
<p>Rating: x/10</p>
</div>
</body>
</html>