-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·84 lines (76 loc) · 5.11 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Welcome!</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="icon" href="favicon.ico">
<link href='http://fonts.googleapis.com/css?family=Jura|Advent+Pro|Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/lumen.css">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/main.css">
<script src="js/vendor/modernizr-2.6.2.min.js"></script>
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="container-fluid">
<div class="top">
<h1><span class="cap">J</span>onathan <span class="cap">T</span>ing</h1>
<div class="bar"></div>
<div class="navbar">
<ul>
<li><span id="homeLink"><span class="arrow">> </span><a href="index.html">Home</a></span></li>
<li><span id="projectsLink"><span class="arrow">> </span><a href="projects.html">Projects</a></span></li>
<li><span id="resumeLink"><span class="arrow">> </span><a href="resume.html">Resume</a></span></li>
<!--<li><span id="blogLink"><span class="arrow">> </span><a href="blog.html">Blog</a></span></li>-->
<li><span id="contactLink"><span class="arrow">> </span><a href="contact.html">Contact</a></span></li>
</ul>
</div>
</div>
<div class="content">
<section>
<h2>About me</h2>
<p>Hello! My name is Jonathan Ting, and I am a software developer studying Electrical Engineering and Computer Science at UC Berkeley. I am currently a fourth year and am expected to graduate Fall 2015.</p>
</section>
<section>
<h2>Interests</h2>
<p>I enjoy algorithms and working with server-side code to optimize for reliability and performance.</p>
<img id="PE" align="right" src="https://projecteuler.net/profile/Vigenere36.png"></p>
<p style="text-align:justify">
When I feel productive outside of school, I enjoy exploring various areas of computer science and doing challenges. One of the ways I practice programming languages and algorithms is through Project Euler. Others include HackThis, HackThisSite for security challenges, and HackerRank for algorithmic practice.
<p>
<p>
Outside of school, I enjoy practicing martial arts, and have been practicing for around 6 years. In junior high and high school, I've practiced and hold a black belt in style of karate called Keichu-Do. Additionally, I've done one semester of Taekwondo, and two semesters of Wushu while in university.
</p>
<p>
Additionally, I enjoy practicing the piano. As a child, I was coerced to practice it and grew to dislike playing, and quit at the start of high school. However, I've picked it up again starting Spring 2015, and as an anime fan, I enjoy practicing various soundtracks from those that I've watched.<br><br>
I recorded a cover of Kimi no Shiranai Monogatari <a href="https://www.youtube.com/watch?v=mXXOQlgVE_4">here</a>, if you're interested.
</p>
</section>
<section id="footnote">
<small>Last updated: November 16, 2015</small>
</section>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/vendor/jquery-1.10.2.min.js"><\/script>')</script>
<script src="js/plugins.js"></script>
<script src="js/main.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-59617067-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>