From 5b537ba863c46cd0c3a820edba9e9286dab5c0a9 Mon Sep 17 00:00:00 2001 From: Jacob Janzen Date: Fri, 12 Apr 2024 15:24:36 -0500 Subject: org-based setup --- .build.yml | 12 ++--- about.html | 55 ----------------------- about.org | 9 ++++ css/stylesheet.css | 57 +++++++++++++++++++++++ index.html | 37 --------------- index.org | 5 +++ projects.html | 55 ----------------------- projects.org | 9 ++++ publish.el | 36 +++++++++++++++ rants.html | 34 -------------- rants.org | 5 +++ rants/TheAsadas.html | 87 ------------------------------------ rants/TheAsadas.org | 13 ++++++ sitemap.org | 14 ++++++ styles.css | 57 ----------------------- tea.html | 40 ----------------- tea.org | 7 +++ tea/W2T-2021-HotlineSpaceCoyote.html | 32 ------------- tea/W2T-2021-HotlineSpaceCoyote.org | 7 +++ tea/W2T-2022-BoatCaptain.html | 34 -------------- tea/W2T-2022-BoatCaptain.org | 7 +++ tea/W2T-2023-LumberSlut.html | 35 --------------- tea/W2T-2023-LumberSlut.org | 7 +++ tea/W2T-DailyDuckShit.html | 38 ---------------- tea/W2T-DailyDuckShit.org | 7 +++ tea/template.html | 31 ------------- 26 files changed, 190 insertions(+), 540 deletions(-) delete mode 100644 about.html create mode 100644 about.org create mode 100644 css/stylesheet.css delete mode 100644 index.html create mode 100644 index.org delete mode 100644 projects.html create mode 100644 projects.org create mode 100644 publish.el delete mode 100644 rants.html create mode 100644 rants.org delete mode 100644 rants/TheAsadas.html create mode 100644 rants/TheAsadas.org create mode 100644 sitemap.org delete mode 100644 styles.css delete mode 100644 tea.html create mode 100644 tea.org delete mode 100644 tea/W2T-2021-HotlineSpaceCoyote.html create mode 100644 tea/W2T-2021-HotlineSpaceCoyote.org delete mode 100644 tea/W2T-2022-BoatCaptain.html create mode 100644 tea/W2T-2022-BoatCaptain.org delete mode 100644 tea/W2T-2023-LumberSlut.html create mode 100644 tea/W2T-2023-LumberSlut.org delete mode 100644 tea/W2T-DailyDuckShit.html create mode 100644 tea/W2T-DailyDuckShit.org delete mode 100644 tea/template.html diff --git a/.build.yml b/.build.yml index 47ae8d0..e8a9146 100644 --- a/.build.yml +++ b/.build.yml @@ -1,11 +1,13 @@ -image: alpine/edge -oauth: pages.sr.ht/PAGES:RW +image: archlinux packages: - - hut + - emacs +sources: + - https://git.sr.ht/~jjanzen/dotfiles tasks: + - build: | + emacs --batch --script ~/website/publish.el - package: | - cd website + cd ~/public_html/ tar -cvz . > ../site.tar.gz - upload: | hut pages publish -d jjanzen.ca site.tar.gz - hut pages publish -d www.jjanzen.ca site.tar.gz diff --git a/about.html b/about.html deleted file mode 100644 index 109a32f..0000000 --- a/about.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - About Me - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

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. -

-
- - diff --git a/about.org b/about.org new file mode 100644 index 0000000..645d5e7 --- /dev/null +++ b/about.org @@ -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. diff --git a/css/stylesheet.css b/css/stylesheet.css new file mode 100644 index 0000000..3bc204e --- /dev/null +++ b/css/stylesheet.css @@ -0,0 +1,57 @@ +* { + box-sizing: border-box; +} + +body { + font-family: Georgia, Times; + font-size: 20px; + background-color: #fff8ea; + color: #594545; + width: 700px; + max-width: calc(100% - 20px); + margin: auto; +} + +h1 { + color: #815b5b; + font-family: Helvetica, Tahoma, Arial; + font-weight: normal; +} + +h2, +h3, +h4, +h5, +h6 { + color: #815b5b; + font-weight: normal; +} + +a { + color: darkblue; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} + +.topnav { + color: #fff8ea; + background-color: #594545; + margin-top: 10px; + padding: 5px 5px 5px 5px; +} + +.topnav a { + color: #fff8ea; + padding: 10px 10px; +} + +@media screen and (max-width: 700px) { + .topnav a { + float: none; + display: block; + text-align: left; + } +} diff --git a/index.html b/index.html deleted file mode 100644 index f12d339..0000000 --- a/index.html +++ /dev/null @@ -1,37 +0,0 @@ - - - - - jacob janzen's website - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

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 - sourcehut and - LinkedIn. -

-
- - diff --git a/index.org b/index.org new file mode 100644 index 0000000..f7b2389 --- /dev/null +++ b/index.org @@ -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]]. diff --git a/projects.html b/projects.html deleted file mode 100644 index 56086dc..0000000 --- a/projects.html +++ /dev/null @@ -1,55 +0,0 @@ - - - - - Projects - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

Projects

-

In Progress

- -

Finished

- -
- - diff --git a/projects.org b/projects.org new file mode 100644 index 0000000..deffe65 --- /dev/null +++ b/projects.org @@ -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. diff --git a/publish.el b/publish.el new file mode 100644 index 0000000..5513b6f --- /dev/null +++ b/publish.el @@ -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 "" + :html-preamble "
HomeProjectsTea Tasting NotesRantsDotfilesAbout Me
" + :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 "" + :html-preamble "
HomeProjectsTea Tasting NotesRantsDotfilesAbout Me
" + :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) diff --git a/rants.html b/rants.html deleted file mode 100644 index 6092250..0000000 --- a/rants.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - Rants - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

Rants

-

- This page is where I post rants about various miscellaneous topics—my - blog I suppose. -

- -
- - diff --git a/rants.org b/rants.org new file mode 100644 index 0000000..5561884 --- /dev/null +++ b/rants.org @@ -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*** diff --git a/rants/TheAsadas.html b/rants/TheAsadas.html deleted file mode 100644 index 1e5ad93..0000000 --- a/rants/TheAsadas.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - Talking About The Asadas (2020) - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

Talking About The Asadas (2020)

-

- 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. -

-

- 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. -

-

- 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. -

-
- - diff --git a/rants/TheAsadas.org b/rants/TheAsadas.org new file mode 100644 index 0000000..90d2c70 --- /dev/null +++ b/rants/TheAsadas.org @@ -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. diff --git a/sitemap.org b/sitemap.org new file mode 100644 index 0000000..61d8451 --- /dev/null +++ b/sitemap.org @@ -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]] \ No newline at end of file diff --git a/styles.css b/styles.css deleted file mode 100644 index bc6466b..0000000 --- a/styles.css +++ /dev/null @@ -1,57 +0,0 @@ -* { - box-sizing: border-box; -} - -body { - font-family: Georgia, Times; - font-size: 20px; - background-color: #fff8ea; - color: #594545; - width: 700px; - max-width: calc(100% - 20px); - margin: auto; -} - -h1 { - color: #815b5b; - font-family: Helvetica, Tahoma, Arial; - font-weight: normal; -} - -h2, -h3, -h4, -h5, -h6 { - color: #815b5b; - font-weight: normal; -} - -a { - color: darkblue; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} - -.header { - color: #fff8ea; - background-color: #594545; - margin-top: 10px; - padding: 5px 5px 5px 5px; -} - -.header a { - color: #fff8ea; - padding: 10px 10px; -} - -@media screen and (max-width: 600px) { - .header a { - float: none; - display: block; - text-align: left; - } -} diff --git a/tea.html b/tea.html deleted file mode 100644 index 22cfdd1..0000000 --- a/tea.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Tea Tasting Notes - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

Tea Tasting Notes

-

This is where I will post notes about various teas I try.

- -
- - diff --git a/tea.org b/tea.org new file mode 100644 index 0000000..88d2272 --- /dev/null +++ b/tea.org @@ -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]] diff --git a/tea/W2T-2021-HotlineSpaceCoyote.html b/tea/W2T-2021-HotlineSpaceCoyote.html deleted file mode 100644 index d5d669b..0000000 --- a/tea/W2T-2021-HotlineSpaceCoyote.html +++ /dev/null @@ -1,32 +0,0 @@ - - - - - W2T 2021 Hotline Space Coyote - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

White2Tea 2021 Hotline Space Coyote

- -

A 3-year-old sheng pu'er in a 200 gram cake.

- -

- Pale yellow liquor. Milky mouthfeel. Flavour gives me senses of fresh - fruit, apricot. -

- -

Rating: 9/10

-
- - diff --git a/tea/W2T-2021-HotlineSpaceCoyote.org b/tea/W2T-2021-HotlineSpaceCoyote.org new file mode 100644 index 0000000..11e8efb --- /dev/null +++ b/tea/W2T-2021-HotlineSpaceCoyote.org @@ -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 diff --git a/tea/W2T-2022-BoatCaptain.html b/tea/W2T-2022-BoatCaptain.html deleted file mode 100644 index b221fca..0000000 --- a/tea/W2T-2022-BoatCaptain.html +++ /dev/null @@ -1,34 +0,0 @@ - - - - - W2T 2022 Boat Captain - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

White2Tea 2022 Boat Captain

- -

This is a 2-year-old sheng 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

-
- - diff --git a/tea/W2T-2022-BoatCaptain.org b/tea/W2T-2022-BoatCaptain.org new file mode 100644 index 0000000..f630f99 --- /dev/null +++ b/tea/W2T-2022-BoatCaptain.org @@ -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 diff --git a/tea/W2T-2023-LumberSlut.html b/tea/W2T-2023-LumberSlut.html deleted file mode 100644 index c2f671d..0000000 --- a/tea/W2T-2023-LumberSlut.html +++ /dev/null @@ -1,35 +0,0 @@ - - - - - W2T 2023 Lumber Slut - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

White2Tea 2023 Lumber Slut

- -

1 year old 200 gram ripe pu'er 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

-
- - diff --git a/tea/W2T-2023-LumberSlut.org b/tea/W2T-2023-LumberSlut.org new file mode 100644 index 0000000..1d303d4 --- /dev/null +++ b/tea/W2T-2023-LumberSlut.org @@ -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 diff --git a/tea/W2T-DailyDuckShit.html b/tea/W2T-DailyDuckShit.html deleted file mode 100644 index 9f7d242..0000000 --- a/tea/W2T-DailyDuckShit.html +++ /dev/null @@ -1,38 +0,0 @@ - - - - - W2T Daily Duck Shit - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

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

-
- - diff --git a/tea/W2T-DailyDuckShit.org b/tea/W2T-DailyDuckShit.org new file mode 100644 index 0000000..1ed9636 --- /dev/null +++ b/tea/W2T-DailyDuckShit.org @@ -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 diff --git a/tea/template.html b/tea/template.html deleted file mode 100644 index 18ab9f1..0000000 --- a/tea/template.html +++ /dev/null @@ -1,31 +0,0 @@ - - - - - Title - - - - - - -
- Home - Projects - Tea Tasting Notes - Rants - About Me -
-
-

Title

- -

Description

- -

- -

- -

Rating: x/10

-
- - -- cgit v1.2.3