-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersonalProjects.html
38 lines (33 loc) · 1.48 KB
/
PersonalProjects.html
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
<!DOCTYPE html>
<html>
<head>
<title>Ian Chan</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<div class ="header">
<nav>
<ul>
<li id = "firstheader"> <a href="index.html">Ian C</a></li>
<li ><a href="Portfolio.html">Portfolio</a></li>
<li>Personal Projects</li>
<li><a href="Academia.html">Academia</a></li>
</ul>
</nav>
</div>
<section id="about">
<div class = "container">
<h3>Python Role Playing Game</h3>
<p> My first ever personal project was a text based RPG game (with simple animations) that I created on Python and was my introduction into Object Oriented Programming. You start off as a character who slowly levels up, obtains gold, armour and potions who must slay many bosses. The total development time was around 70 hours and the playtime is between 1 to 2 hours. It was never published. </p>
<br>
<h3>Elevator Simulator</h3>
<p> This is currently in progress and was inspired by one of my modules, CS2040. Elevator algorithms are suprisingly complex and there is no one-shoe-fits all algo that works for any situation. The animations of the elevators will push my skills as a front end developer, with special attention paid to CSS. The backend involves implementing very rigorous algorithms and data structures that take into account many corner cases. I aspire to finish this by April 2020 </p>
</div>
</div>
</section>
<footer>
<p>Ian C, Copyright ©2019</p>
</footer>
</body>
</html>