-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (106 loc) · 4.01 KB
/
Copy pathindex.html
File metadata and controls
113 lines (106 loc) · 4.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="styles/style.css">
<link rel="stylesheet" href="styles/devicon.min.css">
<title>okyntary</title>
</head>
<body>
<div class="header">
<ul class="page-links">
<li>
<a href="http://okyntary.github.io">
okyntary
</a>
</li>
<li>
<a href="#about">
About
</a>
</li>
<li>
<a href="#projects">
Projects
</a>
</li>
<li>
<a href="#contact">
Contact
</a>
</li>
</ul>
<ul class="external-links">
<li>
<a href="https://github.com/okyntary">
<i class="devicon-github-original"></i>
</a>
</li>
<li>
<a href="https://linkedin.com/in/teokeane">
<i class="devicon-linkedin-plain"/></i>
</a>
</li>
</ul>
</div>
<div class="content">
<div id="landing">
<p>
My name is Keane. I go by <i>okyntary</i> online.
</p>
<p>
This website showcases some of my professional work.
</p>
</div>
<div id="about">
<h1>About Me</h1>
<p>
I'm studying Computer Science with a Second Major in Mathematics at the <a href="https://www.comp.nus.edu.sg/">National University of Singapore</a>. I'm also in the <a href="https://www.usp.nus.edu.sg/">University Scholars Programme</a>.
</p>
<p>
What drives me every day is a desire to learn and understand as much as I can about the world.
My hobbies include reading speculative fiction, playing Slay the Spire, and dabbling in <a>studying random topics that interest me</a>.
</p>
</div>
<div id="projects">
<h1>Projects</h1>
<div class="project">
<h2><a href="https://github.com/AY2122S1-CS2103-T14-2/tp/">Database application</a></h2>
<img src="">
<p> - Brown-field contact manager app, written in Java with a team. <br>
- Responsibilities: handling storage aspect to ensure all new features created by team members will be properly stored and retrieved by ePoch, and more.
</p>
</div>
<div class="project">
<h2><a href="https://waxgame.herokuapp.com/">Wax</a></h2>
<img src="">
<p>- Deckbuilding card game, written in JavaScript and React from May – Jul 2021 with a partner.<br>
- Responsibilities: design of procedurally generated maps, the card system (comprising >80 playable cards), the combat system, and many more.
</p>
</div>
<div class="project">
<h2><a href="https://github.com/okyntary/ChessCppRedux/">ChessCpp</a></h2>
<img src="">
<p>- Console chess program, written in C++ over Dec 2021.<br>
- Written entirely from scratch using principles learnt from my Software Methodology and Software Engineering modules (OOP, MVC, observer patterns etc.)<br>
- Features: move validation for all legal chess moves + a simple chess AI.
</p>
</div>
<div class="project">
<h2><a href="https://github.com/AY2122S1-CS2103-T14-2/tp/">ePoch</a></h2>
<img src="">
<p> - Brown-field contact manager app, written in Java with a team. <br>
- Responsibilities: handling storage aspect to ensure all new features created by team members will be properly stored and retrieved by ePoch, and more.
</p>
</div>
</div>
<div id="contact">
<h1>Contact</h1>
<p>You can contact me through either <a href="mailto:teokeane@gmail.com">teokeane@gmail.com</a> (for work-related inquiries) or
<a href="mailto:okyntary@gmail.com">okyntary@gmail.com</a> (for non-work-related inquiries).</p>
</p>
</div>
</div>
<script src="scripts/scripts.js"/>
</body>
</html>