-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (115 loc) · 5.03 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Kevin Chan Computer Science</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="css/style.css" type="text/css">
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-inverse navbar-fixed-top header">
<div id="container">
<ul class="navigation nav navbar-nav">
<li> <a href= "#about"> hello </a></li>
<li> <a href= "#projects"> work </a></li>
<li> <a href= "#contact-info"> contact</a></li>
</ul>
</div>
</nav>
<!-- Page Content -->
<div class="container hero-image">
<div class= "row">
<div class="col-md-6 col-md-push-2 col-xs-6 col-xs-push-2 name">
<h1> Kevin Chan Computer <br /> Science UWaterloo </h1>
</div>
<div class="col-md-6 col-xs-6 block">
</div>
</div>
</div>
<div class="container">
<div class ="row">
<div class="col-md-6 about">
<a class="anchor" id="about"> </a>
<h2> about</h2>
</div>
<div class="col-md-6 about-paragraph">
<p> Avid programmer who has experience designing and building hardware. Currently looking for a
co-op position for Summer 2017. Always willing to take on new challenges and learn new things.
</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="software">
<a class="anchor" id="projects"></a>
<h1> <software> </h1>
</div>
</div>
</div>
<div class="row project">
<div class="col-md-6 black-box">
<div class="info">
<h2> Python Side Shooter </h2>
<p> A 2D side-scrolling shooter developed using Python and the Pygame library. Sprites were based
upon well-known MOBA League of Legends.
</p>
</div>
</div>
<img class="col-md-6 project-image" src="images/game.png">
</div>
<div class="row project">
<img class="col-md-6 project-image reverse-top" src="images/Domino.jpg">
<div class="col-md-6 black-box reverse-bottom">
<div class= "info">
<h2> Autonomous Domino Output Robot </h2>
<p> Written in Robot C the robot would output dominoes based upon user input or preset pathways,
while continuously checking if any sensors were triggered.
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-s-push-6 black-box">
<div class="info">
<h2> Brain Computer Interface </h2>
<p> Member of a team working towards developing a fully functioning Brain Computer Interface to compete in the Cybathalon Games. Created a Bio-signal Amplifier to perform an EEG for data collection. Worked with an Emotiv Headset to see if it was feasible for our BCI. (Code written in Python).
</p>
</div>
</div>
<img class="col-md-6 col-s-pull-6 project-image" src="images/BCI.png">
</div>
<div class="row">
<div class="col-md-12 hardware">
<h1> hardware </h1>
</div>
</div>
<div class="row project">
<img class="col-md-6 project-image reverse-top" src="images/ultrasound.JPG">
<div class="col-md-6 black-box reverse-bottom">
<div class="info">
<h2> Ultrasound Experiment</h2>
<p> I designed and assembled the electrical component of the first prototype of a device similar to the Myoband. Instead of using Electromyography electrodes, a nanoscale ultrasound transducer capable of transmitting and receiving a signal was used. Similar to an ultrasound probe a pulse echo would be transmitted and received. The signal received from the difference in depth between a resting and contracting muscle would be used for a computer interface.
</p>
</div>
</div>
</div>
</div>
<div class="container" id="contact-info">
<div class="row">
<div class="col-md-6 contact">
<h3><a href="mailto:[email protected]"> Email </a></h3>
</div>
<div class="col-md-6 contact">
<h3><a href="https://ca.linkedin.com/in/kevin-chan-6a9519134"> Linkedin </a></h3>
</div>
</div>
</div>
<!-- jQuery Version 1.11.1 -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>