-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
65 lines (56 loc) · 4.01 KB
/
about.html
File metadata and controls
65 lines (56 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-26509540-4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-26509540-4');
</script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>About</title>
<link rel="shortcut icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="icon" href="assets/favicon.ico" type="image/x-icon">
<link rel="stylesheet" type="text/css" href="css/global.css">
<link rel="stylesheet" type="text/css" href="css/global-article.css">
<link rel="stylesheet" type="text/css" href="css/about.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="lightbox/css/lightbox.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/script.js"></script>
<script src="lightbox/js/lightbox.js"></script>
</head>
<body>
<!--Navigation Bar-->
<div id="nav-placeholder"></div>
<script>
$(function(){
$("#nav-placeholder").load("nav.html");
});
</script>
<!--End Navigation Bar-->
<img src="assets/headshot.png" class="headshot" alt="Picture of Daniel Peng">
<hr/>
<div class="article">
<h1>I'm Daniel.</h1>
<p>I'm a Computer Science student at the University of Waterloo. I like to learn and write programs that can help others.</p>
<p>Come check out my projects on <a href="https://github.com/danielpeng2">GitHub</a> or take a look at my <a href="assets/Resume.pdf">resume</a>. If you'd like to chat, send me an <a href="mailto:danielpeng2@gmail.com">email</a> or connect with me on <a href="https://www.linkedin.com/in/daniel-peng/">LinkedIn</a>!</p>
<h2>Some more about me.</h2>
<p>Like everyone else, I enjoy typical hobbies like following sports, listening to podcasts, and eating good food.</p>
<p>I've spent a decent amount of time running. Anywhere from morning jogs to half-marathons, it's my way of getting myself outside. I've even built a <a href="https://datarunner.herokuapp.com">website</a> that tracks interesting stats and heatmaps from my running data.</p>
<p>I like using things that look nice. I've spent too much money on <a href="https://www.reddit.com/r/MechanicalKeyboards/">mechanical keyboards</a>, tinkered around with <a href="https://www.reddit.com/r/unixporn/">unix ricing</a> and my <a href="https://github.com/danielpeng2/dotfiles">dotfiles</a>, and been known to theme my phone occasionally.
<div>
<a href="assets/theme0.jpg" data-lightbox="theme-set"><img src="assets/theme0.jpg" style="max-width: 50%;" alt="Phone homescreen 0"></a>
<a href="assets/theme1.jpg" data-lightbox="theme-set"><img src="assets/theme1.jpg" style="display: none;" alt="Phone homescreen 1"></a>
<a href="assets/theme2.png" data-lightbox="theme-set"><img src="assets/theme2.png" style="display: none;" alt="Phone homescreen 2"></a>
<a href="assets/theme3.png" data-lightbox="theme-set"><img src="assets/theme3.png" style="display: none;" alt="Phone homescreen 3"></a>
<a href="assets/theme4.png" data-lightbox="theme-set"><img src="assets/theme4.png" style="display: none;" alt="Phone homescreen 4"></a>
<a href="assets/theme5.png" data-lightbox="theme-set"><img src="assets/theme5.png" style="display: none;" alt="Phone homescreen 5"></a>
</div>
<div class="caption">Some of the themes I have made for my phones. Click to view more!</div>
</div>
</body>
</html>