-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
129 lines (125 loc) · 6.57 KB
/
index.html
File metadata and controls
129 lines (125 loc) · 6.57 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset="UTF-8">
<meta name="keywords" content="Ryan Huard, developer, student, ryan, huard">
<script src="https://ajax.aspnetcdn.com/ajax/jQuery/jquery-3.1.1.min.js"></script>
<script src="/js/index.js"></script>
<link href='/stylesheets/index.css' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="slick/slick.css"/>
<link rel="stylesheet" type="text/css" href="slick/slick-theme.css"/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,300" rel="stylesheet" type="text/css">
<title>Ryan Huard - Home</title>
</head>
<body>
<div id="home" class="head">
<div class="head_content">
<div>
<p style="font-size: 150%;">Hi I'm Ryan Huard<br></p>
<p>I love solving problems, and building great projects.</p>
</div>
<img class="profile_image" src="/resources/profile.png" alt="profile_image">
</div>
</div>
<div id = "main_content" class="content">
<div id="about"><h1>About</h1></div>
<p>
<div class="info">
<h1>Technical Background</h1>
<p> I'm an avid programmer with interests including mobile apps, web technologies, and embedded development. Check out my github for more information on my personal projects. </p>
<div class="link_icon">
<a target="_blank" href="https://github.com/loonman">
<img src="resources/github-1024.png" width="64" height="64">
</a>
</div>
<h1>Personal Interests</h1>
<p> In my free time I like to learn new recipes and work on my cooking, you can check out some of <a href="/recipes/index.html">my recipes</a>. I'm also into video games and competing in hackathons.</p>
<h1>Education</h1>
<p>I graduated from the University of Alberta, earning a degree in Computer Engineering with an option in Nanoscale Systems Design, in May 2018.</p>
</div>
</p>
<div class="divider"></div>
<div id="projects"><h1>Projects</h1></div>
<style>
.slick-prev:before, .slick-next:before {
color:#9565C5!important;
}
</style>
<div class="projects slider">
<div>
<a target="_blank" href="https://devpost.com/software/stocksloth">
<h1>Stocksloth</h1>
</a>
<p>Stocksloth is the winning submission for the hardware category of Hacked Beta 2017.
Stocksloth is a python application for controlling a chess game with a Midifighter 64 and displaying the game state online with a flask server.
</p>
</div>
<div>
<a target="_blank" href="https://github.com/Cardinal-HackED2017">
<h1>Cardinal</h1>
</a>
<p> Cardinal is an ASP.net webapp with a javascript front end built for the hackED 2017 hackathon.
Cardinal is designed to let you quickly schedule events with your friends
without needing to share your entire calendar with them.
</p>
</div>
<div>
<a target="_blank" href="https://github.com/Loonman/oreOS">
<h1>oreOS</h1>
</a>
<p> oreOS is a work in progress hobbyist x86 operating system inspired by the <a target="_blank" href="http://littleosbook.github.io/">little os book.</a></p>
</div>
<div>
<a target="_blank" href="https://github.com/Loonman/strife">
<h1>Strife</h1>
</a>
<p> Strife is a Universal Windows Platform app to bring the popular messaging platform Discord to windows phone.</p>
</div>
<div>
<a target="_blank" href="https://github.com/CMPUT301F16T12/CloudyCar">
<h1>CloudyCar</h1>
</a>
<p> CloudyCar is a ride-sharing android app built as a class project for CMPUT 301 at the University of Alberta.
</p>
</div>
</div>
<div class="divider"></div>
<div id="Contact"><h1>Contact me</h1></div>
<p>
<div class="info">
<p> If you want to reach out to me I'm available in the following places </p>
<div style="border:10px;">
<div class="link_icon">
<a target="_blank" href="https://www.linkedin.com/in/ryan-huard-679502101/">
<img src="resources/linkedin-1024.png" width="64" height="64">
</a>
</div>
<div class="link_icon">
<a href="mailto:ryan.huard@live.ca">
<img src="/resources/Mail-512.png" width="64" height="64">
</a>
</div>
</div>
</div>
</p>
</div>
<div id = "navbar" class="navbar">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#main_content">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="/recipes/index.html">Cooking</a></li>
<li><a href="#Contact">Contact</a></li>
</ul>
</div>
<div class = "footer">
<div class = "footer_content">
Developed by Ryan Huard | 2017-2018
</div>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="slick/slick.min.js"></script>
<script src="/js/slick_carousel.js"></script>
</body>
</html>