forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
107 lines (96 loc) · 3.16 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About</title>
<link href="https://fonts.googleapis.com/css?family=Allan|Caveat|Domine|Gamja+Flower|Source+Sans+Pro:400i" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id = "wrap">
<nav id = "top">
<div class = "container">
<p>EUGENE JAHN</p>
<ul>
<li>
<a href="https://eugenejahn.github.io">Projects</a>
</li>
<li>
<a href="https://eugenejahn.github.io/about.html">About</a>
</li>
<li>
<a href="https://homes.cs.washington.edu/~ejahn1/pdf/eugeneResume.pdf">Resume</a>
</li>
</ul>
</div>
</nav>
<section class = "about">
<h1>About</h1>
<p>
I am a Dreamer, Programmer, Researcher, Maker,
<br>
and Book Lover...
<br>
<br>
My favorite: "Demian" and "傷心咖啡店之歌"
</p>
</section>
<img id = "jahn" src="jahn.jpg">
<img width="100%" src="photo.JPG">
<section id = "experience">
<h1>Experience</h1>
<div class = "line"></div>
<p>2018.07 - Now</p>
<h2>UG Researcher in <a href="https://realitylab.uw.edu/">Reality Lab</a> at <a href="https://www.washington.edu/">University of Washington</a> </h2>
<p>2018.06 - Now</p>
<h2>Web Development Intern in <a href="https://www.freelock.com/">Freelock, LLC</a> </h2>
<p>2017.07 - 2017.09</p>
<h2> Summer Software Intern in <a href="https://tw.olami.ai/open/website/home/home_show">OLAMI team, VIA Tech Company</a></h2>
<p>2017.06 - 2017.09</p>
<h2>Maker Lab, National Chiao Tung University</h2>
<p>2016-6 - 2016-7</p>
<h2>Computer Science camp, National Taiwan University</h2>
<p>2015.11 - 2015.12</p>
<h2>Electrical Engineering camp, National Chiao Tung University</h2>
</section>
<section id = "award">
<h1>Awards</h1>
<div class = "line"></div>
<p>2018-3</p>
<h2><span>Best Hack Overall</span> in Def Hack </h2>
<p>2017-12</p>
<h2><span>2nd prize</span> in PSCSTA Coding Competition</h2>
<p>2017-6</p>
<h2><span>1st prize</span> in NTUhackathon</h2>
<p>2017-2</p>
<h2><span>Best AR app</span> in AT&T Hack</h2>
<p>2017-2</p>
<h2><span>Special Award</span> in T-Mobile CodeDay</h2>
</section>
<footer>
<div id = "copyright">
Copyright © Eugene Jahn 2018
</div>
<div id = "icon">
<a href="mailto:[email protected]" class="fa fa-envelope-o" ></a>
<a href="https://www.facebook.com/eugenejahn" class="fa fa-facebook" ></a>
<a href="https://github.com/eugenejahn" class="fa fa-github-alt" ></a>
<a href="https://www.linkedin.com/in/eugene-j/" class="fa fa-linkedin" ></a>
</div>
</footer>
</div>
<script>
var prevScrollpos = window.pageYOffset;
window.onscroll = function() {
var currentScrollPos = window.pageYOffset;
if (prevScrollpos > currentScrollPos) {
document.getElementById("top").style.top = "0";
} else {
document.getElementById("top").style.top = "-100px";
}
prevScrollpos = currentScrollPos;
}
</script>
</body>
</html>