add header

This commit is contained in:
Jacob Janzen 2024-03-17 20:26:08 -05:00
parent 2f0090b5bf
commit b5d09893bd
8 changed files with 187 additions and 123 deletions

4
.gitignore vendored Normal file
View file

@ -0,0 +1,4 @@
.DS_Store
.idea
*.log
tmp/

View file

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

View file

@ -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>
<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>Jacob Janzen's Website</h1> <h1>Jacob Janzen's Website</h1>
<p> <p>
This website is designed to be as minimal as possible. It's written in This website is designed to be as minimal as possible. It's written in
HTML with minimal CSS and JavaScript where needed. There are no frameworks HTML with minimal CSS and JavaScript where needed. There are no
and no bloat. It's currently hosted on GitHub pages, but I intend to frameworks and no bloat. It's currently hosted on GitHub pages, but I
eventually move it over to a self-hosted server when I get the hardware intend to eventually move it over to a self-hosted server when I get the
(this is years away). hardware (this is years away).
</p> </p>
<h3>Links</h3> <p>
<ul> Find me on
<li><a href="./about.html">About Me</a></li> <a href="https://github.com/JacobJanzen" target="_blank">GitHub</a> and
<li><a href="./projects.html">Projects</a></li> <a href="https://www.linkedin.com/in/jacob--janzen/" target="_blank"
<li><a href="./tea.html">Tea Tasting notes</a></li> >LinkedIn</a
</ul> >.
</p>
</div>
</body> </body>
</html> </html>

View file

@ -1,30 +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>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>
<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>Projects</h1> <h1>Projects</h1>
<h2>In Progress</h2> <h2>In Progress</h2>
<ul> <ul>
<li> <li>
<a href="https://github.com/JacobJanzen/urlg" target="_blank">urlg</a>: <a href="https://github.com/JacobJanzen/urlg" target="_blank">urlg</a
an old-style roguelike written in C with ncurses. Progress is slow as I >: an old-style roguelike written in C with ncurses. Progress is slow
only work on this one when I'm feeling really inspired. as I only work on this one when I'm feeling really inspired.
</li> </li>
<li> <li>
<a <a
href="https://github.com/University-of-Manitoba-Computer-Science/RealTimeNetworking" href="https://github.com/University-of-Manitoba-Computer-Science/RealTimeNetworking"
target="_blank" target="_blank"
>Real Time Networking Project</a >Real Time Networking Project</a
>: implementing a CAN bus driver for the SAM-E51J20A microcontroller for >: implementing a CAN bus driver for the SAM-E51J20A microcontroller
a project-based course at the University of Manitoba. for a project-based course at the University of Manitoba.
</li> </li>
<li> <li>
<a href="https://github.com/codyauch/IPN-Project" target="_blank" <a href="https://github.com/codyauch/IPN-Project" target="_blank"
@ -37,19 +42,20 @@
<li> <li>
<a href="https://jacobjanzen.itch.io/space-cowboy" target="_blank" <a href="https://jacobjanzen.itch.io/space-cowboy" target="_blank"
>Space Cowboy</a >Space Cowboy</a
>: a simple platforming game with some "interesting" physics written for >: a simple platforming game with some "interesting" physics written
the 2022 University of Manitoba Computer Science Student Association for the 2022 University of Manitoba Computer Science Student
Game Jam. Association Game Jam.
</li> </li>
<li> <li>
<a <a
href="https://github.com/JacobJanzen/writhing_mass_of_flesh" href="https://github.com/JacobJanzen/writhing_mass_of_flesh"
target="_blank" target="_blank"
>Writhing Mass of Flesh</a >Writhing Mass of Flesh</a
>: a program that procedurally generates mildly disturbing looking GIFs. >: a program that procedurally generates mildly disturbing looking
Winner of the best code category for the University of Manitoba GIFs. Winner of the best code category for the University of Manitoba
DevClub's 2022 generative art challenge. DevClub's 2022 generative art challenge.
</li> </li>
</ul> </ul>
</div>
</body> </body>
</html> </html>

View file

@ -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;
}
}

View file

@ -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>
<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>Tea Tasting Notes</h1> <h1>Tea Tasting Notes</h1>
<p>This is where I will post notes about various teas I try.</p>
<ul> <ul>
<li><a href="tea/W2T-2022-BoatCaptain.html">W2T 2022 Boat Captain</li> <li>
<a href="tea/W2T-2022-BoatCaptain.html">W2T 2022 Boat Captain</a>
</li>
</ul> </ul>
</div>
</body> </body>
</html> </html>

View file

@ -1,15 +1,20 @@
<!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>
<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> <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>
@ -17,10 +22,11 @@
<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>

View file

@ -1,15 +1,20 @@
<!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>
<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> <h1>Title</h1>
<p>Description</p> <p>Description</p>
@ -19,5 +24,6 @@
</p> </p>
<h3>Rating: x/10</h3> <h3>Rating: x/10</h3>
</div>
</body> </body>
</html> </html>