add header
This commit is contained in:
parent
2f0090b5bf
commit
b5d09893bd
8 changed files with 187 additions and 123 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
.DS_Store
|
||||||
|
.idea
|
||||||
|
*.log
|
||||||
|
tmp/
|
76
about.html
76
about.html
|
@ -1,45 +1,53 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html class="no-js" lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
||||||
<title>About Me</title>
|
<title>About Me</title>
|
||||||
<meta name="description" content="" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
|
||||||
<link rel="stylesheet" href="styles.css" />
|
<link rel="stylesheet" href="styles.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>About Me</h1>
|
<div class="header">
|
||||||
<p>
|
<a href="./index.html">Home</a>
|
||||||
Hi, I'm Jacob. I'm a current undergraduate computer science student at the
|
<a href="./projects.html">Projects</a>
|
||||||
University of Manitoba and infrastructure developer at the National
|
<a href="./tea.html">Tea Tasting Notes</a>
|
||||||
Microbiology Lab. I'm planning on continuing on to do a master's degree at
|
<a href="./about.html">About Me</a>
|
||||||
the U of M as well.
|
</div>
|
||||||
</p>
|
<div class="body">
|
||||||
<p>
|
<h1>About Me</h1>
|
||||||
My big interests outside of computers these days are tea and fountain
|
<p>
|
||||||
pens. I also am really into literature, but haven't been able to find the
|
Hi, I'm Jacob. I'm a current undergraduate computer science student at
|
||||||
time to read all that much as of late.
|
the University of Manitoba and infrastructure developer at the National
|
||||||
</p>
|
Microbiology Lab. I'm planning on continuing on to do a master's degree
|
||||||
<p>
|
at the U of M as well.
|
||||||
In terms of computers, the hardware I'm most interested in is older video
|
</p>
|
||||||
game consoles (which I want to eventually start some projects with) and
|
<p>
|
||||||
microcontrollers. I like being able to fully understand how the hardware
|
My big interests outside of computers these days are tea and fountain
|
||||||
works which becomes a challenge for more complicated devices.
|
pens. I also am really into literature, but haven't been able to find
|
||||||
</p>
|
the time to read all that much as of late.
|
||||||
<p>
|
</p>
|
||||||
In a similar vein, I like being able to understand the software that I use
|
<p>
|
||||||
which is why I like using free (as in freedom) software. Emacs is my text
|
In terms of computers, the hardware I'm most interested in is older
|
||||||
editor of choice although I also use (neo)vim on remote machines (and at
|
video game consoles (which I want to eventually start some projects
|
||||||
work due to some incompatibilities with the available version of Emacs and
|
with) and microcontrollers. I like being able to fully understand how
|
||||||
my configuration). My language of choice for personal projects is C. I
|
the hardware works which becomes a challenge for more complicated
|
||||||
enjoy the limited number of keywords in the language as it allows me to
|
devices.
|
||||||
keep the full language inside of my head and allow me to focus on writing
|
</p>
|
||||||
the algorithms, although Python is nice for rapid prototyping. Go is a
|
<p>
|
||||||
nice middle-ground that I choose sometimes when I want faster code than
|
In a similar vein, I like being able to understand the software that I
|
||||||
Python or a stronger typing system. Another language that I enjoy is Rust,
|
use which is why I like using free (as in freedom) software. Emacs is my
|
||||||
although I don't find myself writing it very often.
|
text editor of choice although I also use (neo)vim on remote machines
|
||||||
</p>
|
(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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
41
index.html
41
index.html
|
@ -1,28 +1,35 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html class="no-js" lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
||||||
<title>jacob janzen's website</title>
|
<title>jacob janzen's website</title>
|
||||||
<meta name="description" content="" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
|
||||||
<link rel="stylesheet" href="styles.css" />
|
<link rel="stylesheet" href="styles.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Jacob Janzen's Website</h1>
|
<div class="header">
|
||||||
<p>
|
<a href="./index.html">Home</a>
|
||||||
This website is designed to be as minimal as possible. It's written in
|
<a href="./projects.html">Projects</a>
|
||||||
HTML with minimal CSS and JavaScript where needed. There are no frameworks
|
<a href="./tea.html">Tea Tasting Notes</a>
|
||||||
and no bloat. It's currently hosted on GitHub pages, but I intend to
|
<a href="./about.html">About Me</a>
|
||||||
eventually move it over to a self-hosted server when I get the hardware
|
</div>
|
||||||
(this is years away).
|
<div class="body">
|
||||||
</p>
|
<h1>Jacob Janzen's Website</h1>
|
||||||
<h3>Links</h3>
|
<p>
|
||||||
<ul>
|
This website is designed to be as minimal as possible. It's written in
|
||||||
<li><a href="./about.html">About Me</a></li>
|
HTML with minimal CSS and JavaScript where needed. There are no
|
||||||
<li><a href="./projects.html">Projects</a></li>
|
frameworks and no bloat. It's currently hosted on GitHub pages, but I
|
||||||
<li><a href="./tea.html">Tea Tasting notes</a></li>
|
intend to eventually move it over to a self-hosted server when I get the
|
||||||
</ul>
|
hardware (this is years away).
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
Find me on
|
||||||
|
<a href="https://github.com/JacobJanzen" target="_blank">GitHub</a> and
|
||||||
|
<a href="https://www.linkedin.com/in/jacob--janzen/" target="_blank"
|
||||||
|
>LinkedIn</a
|
||||||
|
>.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,55 +1,61 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html class="no-js" lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
||||||
<title>Projects</title>
|
<title>Projects</title>
|
||||||
<meta name="description" content="" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
|
||||||
<link rel="stylesheet" href="styles.css" />
|
<link rel="stylesheet" href="styles.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Projects</h1>
|
<div class="header">
|
||||||
<h2>In Progress</h2>
|
<a href="./index.html">Home</a>
|
||||||
<ul>
|
<a href="./projects.html">Projects</a>
|
||||||
<li>
|
<a href="./tea.html">Tea Tasting Notes</a>
|
||||||
<a href="https://github.com/JacobJanzen/urlg" target="_blank">urlg</a>:
|
<a href="./about.html">About Me</a>
|
||||||
an old-style roguelike written in C with ncurses. Progress is slow as I
|
</div>
|
||||||
only work on this one when I'm feeling really inspired.
|
<div class="body">
|
||||||
</li>
|
<h1>Projects</h1>
|
||||||
<li>
|
<h2>In Progress</h2>
|
||||||
<a
|
<ul>
|
||||||
href="https://github.com/University-of-Manitoba-Computer-Science/RealTimeNetworking"
|
<li>
|
||||||
target="_blank"
|
<a href="https://github.com/JacobJanzen/urlg" target="_blank">urlg</a
|
||||||
>Real Time Networking Project</a
|
>: an old-style roguelike written in C with ncurses. Progress is slow
|
||||||
>: implementing a CAN bus driver for the SAM-E51J20A microcontroller for
|
as I only work on this one when I'm feeling really inspired.
|
||||||
a project-based course at the University of Manitoba.
|
</li>
|
||||||
</li>
|
<li>
|
||||||
<li>
|
<a
|
||||||
<a href="https://github.com/codyauch/IPN-Project" target="_blank"
|
href="https://github.com/University-of-Manitoba-Computer-Science/RealTimeNetworking"
|
||||||
>IPN Project</a
|
target="_blank"
|
||||||
>: implementing an interplanetary network simulation using ns-3.
|
>Real Time Networking Project</a
|
||||||
</li>
|
>: implementing a CAN bus driver for the SAM-E51J20A microcontroller
|
||||||
</ul>
|
for a project-based course at the University of Manitoba.
|
||||||
<h2>Finished</h2>
|
</li>
|
||||||
<ul>
|
<li>
|
||||||
<li>
|
<a href="https://github.com/codyauch/IPN-Project" target="_blank"
|
||||||
<a href="https://jacobjanzen.itch.io/space-cowboy" target="_blank"
|
>IPN Project</a
|
||||||
>Space Cowboy</a
|
>: implementing an interplanetary network simulation using ns-3.
|
||||||
>: a simple platforming game with some "interesting" physics written for
|
</li>
|
||||||
the 2022 University of Manitoba Computer Science Student Association
|
</ul>
|
||||||
Game Jam.
|
<h2>Finished</h2>
|
||||||
</li>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a
|
<a href="https://jacobjanzen.itch.io/space-cowboy" target="_blank"
|
||||||
href="https://github.com/JacobJanzen/writhing_mass_of_flesh"
|
>Space Cowboy</a
|
||||||
target="_blank"
|
>: a simple platforming game with some "interesting" physics written
|
||||||
>Writhing Mass of Flesh</a
|
for the 2022 University of Manitoba Computer Science Student
|
||||||
>: a program that procedurally generates mildly disturbing looking GIFs.
|
Association Game Jam.
|
||||||
Winner of the best code category for the University of Manitoba
|
</li>
|
||||||
DevClub's 2022 generative art challenge.
|
<li>
|
||||||
</li>
|
<a
|
||||||
</ul>
|
href="https://github.com/JacobJanzen/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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
18
styles.css
18
styles.css
|
@ -29,3 +29,21 @@ a {
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.header {
|
||||||
|
color: #fff8ea;
|
||||||
|
background-color: #594545;
|
||||||
|
}
|
||||||
|
|
||||||
|
.header a {
|
||||||
|
color: #fff8ea;
|
||||||
|
padding: 10px 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (max-width: 500px) {
|
||||||
|
.header a {
|
||||||
|
float: none;
|
||||||
|
display: block;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
23
tea.html
23
tea.html
|
@ -1,18 +1,27 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html class="no-js" lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
||||||
<title>Tea Tasting Notes</title>
|
<title>Tea Tasting Notes</title>
|
||||||
<meta name="description" content="" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
|
||||||
<link rel="stylesheet" href="styles.css" />
|
<link rel="stylesheet" href="styles.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Tea Tasting Notes</h1>
|
<div class="header">
|
||||||
<ul>
|
<a href="./index.html">Home</a>
|
||||||
<li><a href="tea/W2T-2022-BoatCaptain.html">W2T 2022 Boat Captain</li>
|
<a href="./projects.html">Projects</a>
|
||||||
</ul>
|
<a href="./tea.html">Tea Tasting Notes</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-2022-BoatCaptain.html">W2T 2022 Boat Captain</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,26 +1,32 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html class="no-js" lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
||||||
<title>W2T 2022 Boat Captain</title>
|
<title>W2T 2022 Boat Captain</title>
|
||||||
<meta name="description" content="" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
|
||||||
<link rel="stylesheet" href="../styles.css" />
|
<link rel="stylesheet" href="../styles.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>White2Tea 2022 Boat Captain</h1>
|
<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="./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>This is a 2 year-old sheng pu'er in a 200 gram cake.</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
The liquor is a yellowy-orange colour, with a thick, soupy texture. The
|
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
|
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
|
with a more tannic mouthfeel. It has a smoky, leather flavour that
|
||||||
into a malty sweetness.
|
settles into a malty sweetness.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h3>Rating: 8/10</h3>
|
<h3>Rating: 8/10</h3>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,23 +1,29 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html class="no-js" lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
||||||
<title>Title</title>
|
<title>Title</title>
|
||||||
<meta name="description" content="" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
|
|
||||||
<link rel="stylesheet" href="../styles.css" />
|
<link rel="stylesheet" href="../styles.css" />
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Title</h1>
|
<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="./about.html">About Me</a>
|
||||||
|
</div>
|
||||||
|
<div class="body">
|
||||||
|
<h1>Title</h1>
|
||||||
|
|
||||||
<p>Description</p>
|
<p>Description</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
<!-- liquor, mouthfeel, flavour -->
|
<!-- liquor, mouthfeel, flavour -->
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<h3>Rating: x/10</h3>
|
<h3>Rating: x/10</h3>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Add table
Reference in a new issue