-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·105 lines (81 loc) · 4.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width">
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<!-- Fonts -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600|Lusitana' rel='stylesheet' type='text/css'>
<title>Chris Beard</title>
</head>
<body onload="init()">
<div class="container">
<div class="jumbotron">
<h1 class="title">Chris Beard</h1>
<h2 class="sub-title">Student. Musician. Programmer.</h2>
</div>
</div>
<article class="aboutMe">
<h3 class="article-title">About Me</h3>
<p>I'm a senior at Binghamton University, where I study Computer Science and Mathematics.</p>
<p>Lately, I've been interested in hackathons, trying new ideas, and slacklining.</p>
<p>If you want to get in touch, <a href="mailto:[email protected]">e-mail</a> is the best way.</p>
</article>
<div id="skrollr-body">
<img src="images/trombone.jpg" width="100%" data-bottom-top="margin-top:0vh" data-top-bottom="margin-top:-20vh" >
</div>
<article class="music">
<h3 class="article-title">Music</h3>
<p>I've been playing trombone since 2003, and I currently study with Don Robertson at Binghamton University.</p>
<p>I perform with Don's low brass studio ensemble, the Binghamton University Symphony Orchestra, and the Binghamton University Wind Symphony.</p>
<p>You might also see me play in some of the music department's recitals, or at Binghamton's commencement ceremonies.</p>
<p>I make multi-track recordings of myself on trombone, and compose alternative electronic music. Some of my work is available on <a href="http://souncloud.com/trombeard">soundcloud</a>.</p>
</article>
<div id="skrollr-body2">
<img src="images/hackbu.jpg" width="100%" data-bottom-top="margin-top:0vh" data-top-bottom="margin-top:-20vh" >
</div>
<article class="programming">
<h3 class="article-title">Programming</h3>
<p>I've been hacking on some cool projects! You can check out my hacks on my <a href="http://devpost.com/chrisbeard">devpost</a> page.</p>
<p>If you want to see code for my projects, look at my <a href="http://github.com/chrisbeard">GitHub</a>.</p>
<p>I'm one of the core organizers of <a href="http://hackbu.org">HackBU</a>. I head up the sponsorships team and help students out at our weekly workshops.</p>
<p>Lately, I've been programming in C++, C, and Python. I've worked with Java a bunch, and have messed around with Ruby and Perl here and there, too. I write javascript from time to time, as well.</p>
</article>
<footer>© Chris Beard, 2015</footer>
<!-- <script src="js/bootstrap.js"></script> -->
<!-- Parallax -->
<script type="text/javascript" src="js/skrollr.min.js"></script>
<script>
if(!(navigator.userAgent.match(/iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini|Android/i))){
init = function() {
var skrollrOptions = {forceHeight: false},
skrollrToggle = function () {
if (window.innerWidth < 768) {
skrollr.init().destroy();
} else {
skrollr.init(skrollrOptions);
}
var width = document.body.clientWidth;
document.getElementById("skrollr-body").style.height = width * (5/16) + "px";
document.getElementById("skrollr-body2").style.height = width * (7/16) + "px";
}
window.onresize = skrollrToggle;
skrollrToggle();
}
}
</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-52971005-1', 'auto');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
</body>
</html>