-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
138 lines (114 loc) · 4.5 KB
/
index.html
File metadata and controls
138 lines (114 loc) · 4.5 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
---
title: Home
---
<!DOCTYPE html>
<html lang="en">
{% include header.html %}
<body>
{% include nav-bar.html %}
<!-- Page Content -->
<div id="wrap">
<div class="container">
<!-- Page Heading -->
<div class="row">
<div class="col-lg-12 text-center">
<h3 class="mt-5">Orbiting the Sun-Earth L<sub>2</sub> Lagrange Point</h3>
<p class="lead">Just a project site for some of my hobby coding projects</p>
</div>
</div>
<br><br>
<!-- Project One -->
<div class="row">
<div class="col-md-6">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="/img/germanminimalpairs/banner.png" alt="">
</a>
</div>
<div class="col-md-1">
</div>
<div class="col-md-5">
<h4><a href="german-minimal-pairs.html">German Minimal Pairs Practice</a></h4>
<p><a href="https://mystifying-jang-190509.netlify.app/">German Minimal Pairs Practice</a> is a basic React web app I developed to help me improve my German listening skills, using <a href="https://en.wikipedia.org/wiki/Minimal_pair">minimal pairs</a>. The audio was provided by <a href="https://rhinospike.com/profiles/profile/globeflitzer/">globeflitzer</a> on <a href="https://rhinospike.com">Rhino Spike</a>.</p>
</div>
<hr>
</div>
<!-- /.row -->
<br></br>
<!-- Project Two -->
<div class="row">
<div class="col-md-6">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="/img/t31losb/the-thirty-one-lieutenants-of-sorcerer-bedsui.png" alt="">
</a>
</div>
<div class="col-md-1">
</div>
<div class="col-md-5">
<h4><a href="bedsui-project.html">The Thirty One Lieutenants of Sorcerer Bedsui</a></h4>
<blockquote class="blockquote">
<p class="mb-0">Fight your way through the tower, defeating first Bedsui's lieutenants and then him</p>
<footer class="blockquote-footer">
<cite title="Source Title">Title Screen Instructions</cite>
</footer>
</blockquote>
<p>The Thirty One Lieutenants of Sorcerer Bedsui is a Java roguelike, created as a prototype to show off novel, squad-based combat mechanics. <b>Currently in a fully playable state</b>. I am hoping to incorporate feedback into a more ambitious game in the future.</p>
</div>
<hr>
</div>
<!-- /.row -->
<br><br>
<!-- Project Three -->
<div class="row">
<div class="col-md-6">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="/img/schroedingerchess/project-image.png" alt="">
</a>
</div>
<div class="col-md-1">
</div>
<div class="col-md-5">
<h4><a href="haft-schroedinger-chess.html">Haft Schroedinger Chess</a></h4>
<p>*Haft Schroedinger Chess* is a chess variant with rules inspired by quantum mechanics. Like traditional chess, it is a combinatorial game, meaning it is both deterministic (no random chance at all) and has no hidden information.</p>
</div>
<hr>
</div>
<!-- /.row -->
<br><br>
<!-- Project Four -->
<div class="row">
<div class="col-md-6">
<a href="#">
<img class="img-fluid rounded mb-3 mb-md-0" src="/img/7drl2018/banner.png" alt="">
</a>
</div>
<div class="col-md-1">
</div>
<div class="col-md-5">
<h4><a href="7drl2018.html">Townsfolk Are Tasty</a></h4>
<p>You awake, surrounded by occultists. 'We offer you our services, master'! And served they did - as food - but you're still hungry... This is my entry to the 2018 7DRL challenge.</p>
</div>
<hr>
</div>
<!-- /.row -->
<br><br>
<div class="row">
<div class="col-md-12">
<h3 class="mt-4">Recent Development Updates [<a href="/feed.rss">RSS</a>]</h3>
<hr>
{% for post in site.posts limit:5 %}
<!-- Title -->
<p><h5 class="mt-4">{{ post.title }}</h5> Posted on {{ post.date | date_to_long_string }}</p>
<p>{{ post.excerpt | remove: '<p>' | remove: '</p>' }}</p>
<p><a href="{{ post.url }}">Read More</a></p>
<hr>
{% endfor %}
</div>
</div>
<br><br>
</div>
</div>
<!-- /.container -->
{% include footer.html %}
{% include scripts.html %}
</body>
</html>