blob: 56086dc97ba3db6f0e1891d3dda705438aeeec31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<!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>
|