-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
432 lines (395 loc) · 14.2 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="calebadcock.me - Software Developer "/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Caleb Adcock - Software Developer</title>
<link rel="shortcut icon" type="image/ico" href="img/icon.ico"/>
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<link type="text/css" href="css/hamburger.css" rel="stylesheet">
<link type="text/css" href="css/main.min.css" rel="stylesheet">
<link type="text/css" href="css/jquery.fancybox.css" rel="stylesheet" media="screen" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script type="text/javascript" src="lib/jquery.backstretch.min.js"></script>
<script type="text/javascript" src="lib/jquery.fancybox.pack.js"></script>
<script type="text/javascript" src="lib/jquery.smoothwheel.js"></script>
</head>
<script type="text/javascript">
// Returns true if the specified element is in the window, based on its top & middle position
function isScrolledIntoView(elem) {
var docViewTop = $(window).scrollTop();
var docViewBottom = docViewTop + $(window).height();
var elemTop = $(elem).offset().top;
var elemBottom = elemTop + ($(elem).height() / 4) + 10;
elemTop = elemTop + ($(elem).height() / 4) - 10;
return ((elemBottom <= docViewBottom) && (elemTop >= docViewTop));
}
function isHeaderHidden(elem) {
var docViewTop = $(window).scrollTop();
var docViewBottom = docViewTop + $(window).height();
var elemTop = $(elem).offset().top;
var elemBottom = elemTop + $(elem).height();
return (elemBottom - 64 < docViewTop);
}
function setHeader() {
if (isHeaderHidden($('#intro'))) {
$('#header').addClass('blue');
} else {
$('#header').removeClass('blue');
}
}
$(document).ready(function() {
// Toggle hamburger menu visibility on click
$('#mobile_nav_toggle').on('click', function() {
$('#mobile_nav_toggle .hamburger').toggleClass('is-active');
if (document.body.classList.contains('hamburgler-active')) {
document.body.classList.remove('hamburgler-active');
} else {
document.body.classList.add('hamburgler-active');
}
});
// Hide hamburger on escape pressed
window.addEventListener("keyup", function(e) {
if (e.keyCode == 27) document.body.classList.remove('hamburgler-active');
}, false);
var animating = false;
$('.nav_link').on('click', function(e) {
e.preventDefault();
var href = $(this).attr('href');
// Give clicked header link 'active' class
$('#header nav a h6').removeClass('active');
$('#header nav a[href="' + href + '"] h6').addClass('active');
// Don't animate on smaller screens, to help performance
var animationTime = 0;
if ($(window).width() > 680)
animationTime = 1000;
// Stop current animations and animate to position of link's href
$('html, body').stop(true, false);
animating = true;
$('html, body').animate({
scrollTop: $(href).offset().top
}, animationTime, function() {
animating = false;
});
// Hide hamburger menu if it's currently showing
$('#mobile_nav_toggle .hamburger').removeClass('is-active');
document.body.classList.remove('hamburgler-active');
});
// Set active header link when the user scrolls to the corresponding section
var ids = [];
$('#header nav a.nav_link').each(function() { ids.push($(this).attr('href')); });
$(document).scroll(function() {
setHeader();
if (animating)
return;
var found = false;
for (var i = 0; i < ids.length; i++) {
if (isScrolledIntoView($(ids[i]))) {
$('#header nav a h6').removeClass('active');
$('#header nav a[href="' + ids[i] + '"] h6').addClass('active');
found = true;
}
}
if (!found) {
$('#header nav a h6').removeClass('active');
}
});
// Set active header link based on initial URL & hash
var currHash = '#intro';
if(window.location.hash) {
currHash = window.location.hash;
}
$('#header nav a[href="' + currHash + '"] h6').addClass('active');
$("#parallax").backstretch("img/code.png");
$('.zoomable_image').fancybox({
'hideOnContentClick': true,
helpers: {
overlay: {
locked: false
}
}
});
$("#trayak_logo").backstretch("img/trayak.png");
setHeader();
// $("html, body").smoothWheel();
});
</script>
<body>
<div id="mobile_nav">
<div>
<a style="text-decoration: none" href="#about" class="nav_link"><h1>About</h1></a>
<a style="text-decoration: none" href="#work" class="nav_link"><h1>Work</h1></a>
<a style="text-decoration: none" href="#activities" class="nav_link"><h1>activities</h1></a>
<a style="text-decoration: none" href="#contact" class="nav_link"><h1>Contact</h1></a>
</div>
</div>
<div id="header">
<a href="#intro" class="nav_link" style="text-decoration:none;">
<div id="logo">
<h2>Caleb Adcock</h2>
</div>
</a>
<nav>
<a href="#about" class="nav_link"><h6>About</h6></a>
<a href="#work" class="nav_link"><h6>Work</h6></a>
<a href="#activities" class="nav_link"><h6>activities</h6></a>
<a href="#contact" class="nav_link"><h6>Contact</h6></a>
</nav>
<div id="mobile_nav_toggle">
<button class="hamburger hamburger--squeeze" type="button">
<span class="hamburger-box">
<span class="hamburger-inner"></span>
</span>
</button>
</div>
</div>
<div id="parallax" class="section_wrapper"></div>
<div id="intro" class="section_wrapper">
<div class="section_content">
<h1>My name is Caleb Adcock.</h1
<br>
<h2>I'm a developer.</h2>
<br>
<a href="#about" class="nav_link" style="text-decoration: none;">
<div class="mtrl-button font-bold">
Learn More
</div>
</a>
<a class="nav_link" href="#contact" style="text-decoration: none;">
<div class="mtrl-button-flat font-bold">
Email Me
</div>
</a>
</div>
</div>
<div id="about" class="section_wrapper">
<div class="section_content">
<img class="profile_pic" src="img/caleb.png" alt="Caleb">
<div class="profile_links">
<a target="_blank" href="https://stackoverflow.com/users/5181636/caleb"><img src="img/stackoverflow.png" alt="StackOverflow"></a>
<a style="margin-left:16px;"target="_blank" href="https://github.com/calebadcock"><img src="img/github.png" alt="Github"></a>
</div>
<div id="caleb" class="section_header hide_on_mobile"></div>
<br><br>
<!-- desktop layout -->
<div class="hide_on_mobile">
<div>
<h1 class="content_header">Who am I?</h1>
<br />
<p>
I've been a programmer for 5 years. I started programming in Java and C# while in highschool.
It only took a couple days of my first CS class for me to realize how much I love it.
I'm now a big fan of mobile and web development. In my free time, I write code for a couple of personal activities, which mostly deal with iOS and NodeJS.
</p>
</div>
<br><br>
<div>
<h1 class="content_header">Education</h1>
<br />
<p>
I'm currently a 3rd year student at the University of Cincinnati where I'm working towards a Bachelors in Computer Science. I'm searching for a position as a co-op for the Summer of 2017.
</p>
<br />
<p>
I'm expecting to graduate in May of 2019.
</p>
</div>
<br />
<br />
</div>
<!-- mobile layout -->
<table class="show_on_mobile">
<tr>
<td>
<h1 class="content_header">Who am I?</h1>
<br>
<div style="text-align:left">
<p>
I've been a programmer for 5 years. I started programming in Java and C# while in highschool.
It only took a couple days of my first CS class for me to realize how much I love it.
I'm now a big fan of mobile and web development. In my free time, I write code for a couple of personal activities, which mostly deal with iOS and NodeJS.
</p>
</div>
</td>
<td>
<h1 class="content_header">Education</h1>
<br>
<div style="text-align:left">
<p>
I'm currently a 3rd year student at the University of Cincinnati where I'm working towards a Bachelors in Computer Science. I'm searching for a position as a co-op for the Summer of 2017.
</p>
<br>
<p>
I'm expecting to graduate in May of 2019.
</p>
</div>
<br>
</td>
</tr>
</table>
</div>
</div>
<div id="work" class="section_wrapper">
<div class="section_content">
<h1 class="section_subheader">Work</h1>
<!-- Trayak -->
<div class="work_item">
<div class="header">
<h1 class="section_subheader">Trayak LLC</h1>
<h1 class="content_header">iOS | Web</h1>
<h1 class="content_header">June 2015 - December 2016</h1>
</div>
<div class="content">
<table>
<tr>
<td style="vertical-align:middle;">
<a target="_blank" href="http://trayak.com"><img class="screenshot" src="img/trayak.png" alt="Trayak"></a>
</td>
<td style="vertical-align:middle;">
<p>
Trayak is a startup with a focus on sustainability. They offer solutions to help manufacturers and product designers achieve their sustainability goals.
</p>
<br>
<p>
During my time as a co-op, I was able to work on two of their products.
The first project that I was assigned to was an iOS app that connected to a Java server with a MySQL database. The app also had a Facebook-based user network.
The second project that I worked on was an AngularJS web app. This web app calculates the environmental impact of a product.
It also allows companies to test the impact of new materials before they start production.
</p>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div id="activities" class="section_wrapper">
<div class="section_content">
<h1 class="section_subheader">Activities</h1>
<!-- Syntonic -->
<div class="activities_item">
<div class="header">
<h1 class="section_subheader">Syntonic LLC</h1>
<h1 class="content_header">Co-Owner</h1>
</div>
<div class="content">
<table>
<tr>
<td style="vertical-align:middle;">
<a target="_blank" href="https://syntonic.io"><img class="screenshot-large" src="img/syntonic-website.png" alt="Syntonic"></a>
</td>
<td style="vertical-align:middle;">
<p>
Syntonic is startup that I began with two of my friends in October 2016.
</p>
<br>
<p>
We started this company as a way to gain more exposure to product developemnt.
We accept jobs for Web and Mobile development as well as maintain our own side activities.
So far, I have learned a lot about what it takes to run a business as well as what all is involved in client to business relationships.
</p>
</td>
</tr>
</table>
</div>
</div>
<!-- FireStream -->
<div class="activities_item">
<div class="header">
<h1 class="section_subheader">FireStream</h1>
<h1 class="content_header">Mobile App</h1>
</div>
<div class="content">
<table>
<tr>
<td style="vertical-align:middle;">
<a target="_blank" href="https://firestreamapp.com/"><img class="screenshot" src="img/firestream.png" alt="FireStream"></a>
</td>
<td style="vertical-align:middle;">
<p>
Android and iOS App that allows people to create realtime Spotify playlists with their friends.
</p>
<br>
<p>
This started out as a hackathon project for Hack OHI/O 2016 and has continued on.
This is a project that is officially under Syntonic, but I am the sole contributor for the iOS side.
FireStream was initially writeen in 24 hours, so this made maintaining it a cumbersome process.
I have since rewritten the application and we are planning on releasing the official versions very soon.
</p>
</td>
</tr>
</table>
</div>
</div>
<!-- Dodger.io -->
<div class="activities_item">
<div class="header">
<h1 class="section_subheader">Dodger.io</h1>
<h1 class="content_header">Multiplayer JS Game</h1>
</div>
<div class="content">
<table>
<tr>
<td style="vertical-align:middle;">
<a target="_blank" href="https://dodger.io/"><img class="screenshot-large" src="img/dodger.png" alt="Dodger.io"></a>
</td>
<td style="vertical-align:middle;">
<p>
Dodger.io is a simple multiplayer Javascript game that I made with my roomate.
</p>
<br>
<p>
This was an experiment to try to develop a multiplayer game written in Javascript.
We created a Node server and connected to it using Web Sockets.
Problems started to arrise when we tried to account for the lag between the client and the server.
Even though we have since stopped working on it, it was still a fun learning experience.
</p>
</td>
</tr>
</table>
</div>
</div>
<!-- Hobbies -->
<div class="activities_item">
<div class="header">
<h1 class="section_subheader">Hobbies</h1>
<h1 class="content_header">What I Do</h1>
</div>
<div class="content">
<table>
<tr>
<td style="vertical-align:middle;">
<p>
Since starting college, I have become an active table tennis and racquetball player.
</p>
<br>
<p>
I can often be seen at UC Table Tennis club meets or playing racquetball with friends.
Both of these have become a great way for me to stay active.
These two sports do a great job at quenching my thirst for competition.
</p>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div id="contact" class="section_wrapper">
<div class="section_content">
<h1 class="section_header">Still interested? Let's chat.</h1>
<br class="show_on_mobile">
<a target="_top" href="mailto:[email protected]" style="text-decoration: none;">
<div class="mtrl-button font-bold color-accent">
</div>
</a>
<a target="_blank" href="resume.pdf" style="text-decoration: none;">
<div class="mtrl-button-flat font-bold">
Resume
</div>
</a>
</div>
</div>
</body>
</html>