-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
59 lines (58 loc) · 3.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Tyler Gabb's Webpage</title>
<link rel="stylesheet" href="css/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1 id="main-header">Tyler J Gabb</h1>
<div id="main-header-links-container">
<!--<a class="eye-friendly-block" href="documents/CoverLetter.pdf">Professional Experience</a>-->
<a class="eye-friendly-block" href="documents/Resume.pdf" tabindex="0">Resume</a>
<a class="eye-friendly-block" href="https://tylerjgabb.github.io/texturesPage/" tabindex="0">Personal Projects</a>
<a class="eye-friendly-block" href="https://github.com/TylerJGabb/" tabindex="0">Github</a>
</div>
<p class="eye-friendly-block">
Hello! I'm an aspiring Mechanical Engineer and Software Developer.
In December 2018 I earnened batchelors degrees in Mechanical Engineering and Computer Science Emphasis Mathematics.
</p>
<p class="eye-friendly-block">
As of January 2019 I began working as a Software Engineer at <a class="paragraphed-link" href="https://www.modularmining.com/">Modular Mining</a> where I work with a
myriad of different languages, primarily Java in a Unix environment.
Although my education is dense, my true passion is Computer Science and Information Technology. If I had to pick a dream job it would be in the field of
<a class="paragraphed-link" href="https://en.wikipedia.org/wiki/Mechatronics">Mechatronics</a>. Please feel free to navigate the links at the header to find out more about me at your lesiure.
</p>
<h2>
Recent Professional Acheivements
</h2>
<p class="eye-friendly-block">
<a class="bolded">[2019] Distributed Testing System</a><br><br>
While working at ModularMining I had the opportunity to work on a GreenField project for which I took personal responsibility.
The goal of this project was to develop a distributed testing system
that could quickly execute test suites with a scalable resource pool of virtual machines used to split up the testing load.
A solution was implemented using HTTP and SSH. It took approximately 2 months to develop a working system. The system
is currently in use and has already reduced testing times by over 75%. <br>
</p>
<h2>
Browser Goodies
</h2>
<p class="eye-friendly-block">
As a hobby I enjoy exploring the world of 3D rendering within browsers,
below is an animation that I developed as part of an art project at the <a class="paragraphed-link" href="http://www.arizona.edu/">University of Arizona</a>.
</p>
<iframe id="shadows" src="shadows.html"></iframe>
<p class="eye-friendly-block">
I enjoy teaching and consider myself a good educator although I've never professionally held the title. You may browse my personal projects to see examples of the source for these demos -- it has been optimized for teaching.
</p>
<script>
document.addEventListener('DOMContentLoaded', function() {
const obj = document.getElementById("shadows");
console.log(obj);
console.log(obj.offsetWidth);
obj.style.height = obj.offsetWidth*.8 + 'px';
});
</script>
</body>
</html>