-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthors.html
116 lines (100 loc) · 5.09 KB
/
authors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./bulma.css">
<link rel="stylesheet" href="./style.css">
<link data-react-helmet="true" rel="icon" href="/images/favicon.webp">
<title>Authors</title>
</head>
<body>
<nav class="navbar is-active" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" title="Go to the Official Raspberry Pi Website" target="_blank"
href="https://www.raspberrypi.org/">
<img alt="Raspberry Pi Logo" src="./images/raspberrypilogo.png" width="25" height="30">
</a>
</div>
<div id="navbar" class="navbar-menu is-active">
<div class="navbar-start">
<a class="navbar-item grow" href="./index.html">Home</a>
<a class="navbar-item grow" href="./history.html">History</a>
<a class="navbar-item grow" href="./tech.html">Tech-Specs</a>
<a class="navbar-item grow" href="./projects.html">Projects</a>
<a class="navbar-item grow">About the Authors</a>
</div>
</div>
</nav>
<section class="section">
<div class="container">
<div class="content">
<h1 class="title grow">About the Authors</h1>
<div class="container">
<!--denny-->
<div class="columns">
<div class="column is-8">
<div class="container">
<div class="content">
<h5 class="subtitle has-text-grey grow">Denny "Mayhem" Massey</h5>
<p>Hi, I'm Denver! And to answer your question: No, I have never been to the city. I am a 3rd-year
student
at UNC Chapel Hill working on a double major in Computer Science and Mathematics with a minor in
Physics (I know, yikes).
As you can see, I'm the perfect demographic for the Raspberry Pi. I bought my first Pi this past
summer after William
introduced me to them and have been having a blast using them for various projects ever since.
My hobbies include playing chess, lifting weights, and programming. Lastly, I am a big supporter of
<em>Vim</em>: learn it, live it, love it. Check
me out on twitter <a target="_blank" href="https://twitter.com/massey_denver">@massey_denver</a>.
</p>
</div>
</div>
</div>
<div class="column has-text-centered">
<img alt="Denver gazing across his kingdom." src="./images/dennyBinoculars.jpg"
style="width: 50%; height: 100% ;" class="grow">
</div>
</div>
<!--will--><br>
<div class="container">
<div class="columns">
<div class="column is-3 has-text-centered">
<img alt="Will consuming a rather large 'bag'-el." src="./images/willBagel.jpg"
style="width: 50%; height: 100% ;" class="grow">
</div>
<div class="column">
<div class="container">
<div class="content">
<h5 class="subtitle has-text-grey grow">Will "Oh no, my queen!" Bucher</h5>
<p>
Hello! I'm Will, and I'm a third-year at UNC majoring in computer science and minoring in geology.
It rocks B).
I found out about Raspberry Pi's at the beginning of college when I was looking into more ways of
getting into
computer science. I heard nothing but good things about them so I decided to buy one...that was my best
decision ever.
I used it as a development platform for small projects like
games using <a target="_blank" href="https://www.pygame.org/news">pygame</a> and as a way to
learn how to
use the BASH terminal within a Linux distribution. Using this knowledge, I have even started using
Linux as my primary
operating system on my laptop. The Raspberry Pi has definitely made a meaningful impact on my
computer science
career. I recommend anyone interested in computing to pick one up.
I do have hobbies outside of computer science too! I like working on cars a lot! I currently drive a 2013
Mazda Miata and I couldn't love her more. I also like playing chess, especially with Denny, even though
I always seem to hang my queen against him.
Wanna know even MORE about me? Follow me on instagram,
<a target="_blank" href="https://instagram.com/willbucher">@willbucher</a>!
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>