-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
338 lines (307 loc) · 15.8 KB
/
index.html
File metadata and controls
338 lines (307 loc) · 15.8 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
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
<!DOCTYPE html>
<html>
<title>Tyler Fording</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<head>
<link rel="apple-touch-icon" sizes="144x144" href="/images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
<link rel="manifest" href="/images/manifest.json">
<link rel="mask-icon" href="/images/safari-pinned-tab.svg" color="#5bbad5">
<meta name="theme-color" content="#ffffff">
</head>
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Lato", sans-serif;}
body, html {
height: 100%;
color: #777;
line-height: 1.8;
}
/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* First image (Logo. Full height) */
.bgimg-1 {
background-image: url('/images/parallax1.jpg');
min-height: 100%;
}
/* Second image (Portfolio) */
.bgimg-2 {
background-image: url("/images/parallax2.2.jpg");
min-height: 400px;
}
/* Third image (Contact) */
.bgimg-3 {
background-image: url("/images/parallax3.2.png");
min-height: 400px;
}
.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: scroll;
}
}
.flex-container {
/* Display this element as flex-box */
display: flex;
/* When items overflow wrap them to the next line */
flex-wrap: wrap;
/* Center items on each row */
justify-content: center;
}
.flex-item {
/* Every item should try to be this wide (i.e. 4 items per row) */
flex-basis: 25%;
/* No item should ever get smaller to make room */
flex-shrink: 0;
/* Items should never grow to take up leftover space */
flex-grow: 0;
/* Leave space on the left and right */
padding: 0 8px;
}
/* On devices smaller than 1024px (tablets) */
@media only screen and (max-device-width: 1024px) {
/* Each item should be 33.3% wide (i.e. 3 items per row) */
.flex-item {
flex-basis: 50%;
}
}
</style>
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar" id="myNavbar">
<a class="w3-bar-item w3-button w3-hover-black w3-hide-medium w3-hide-large w3-right" href="javascript:void(0);" onclick="toggleFunction()" title="Toggle Navigation Menu">
<i class="fa fa-bars"></i>
</a>
<a href="#home" class="w3-bar-item w3-button"><i class="fa fa-home"></i> HOME</a>
<a href="#about" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-user"></i> ABOUT</a>
<a href="https://github.com/tfording/tfording.github.io/blob/master/images/TYLER_FORDING_Resume.pdf" class="w3-bar-item w3-button w3-hide-small" target="_blank"><i class="fa fa-graduation-cap"></i> RESUME</a>
<a href="#portfolio" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-th"></i> PORTFOLIO</a>
<a href="https://github.com/tfording" target="_blank" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-github"></i> GITHUB</a>
<a href="https://www.linkedin.com/in/tfording/" target="_blank" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-linkedin"></i> LINKEDIN</a>
<a href="#contact" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-envelope"></i> CONTACT</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium">
<a href="#about" class="w3-bar-item w3-button" onclick="toggleFunction()">ABOUT</a>
<a href="https://github.com/tfording" target="_blank" class="w3-bar-item w3-button" onclick="toggleFunction()">GITHUB</a>
<a href="#contact" class="w3-bar-item w3-button" onclick="toggleFunction()">CONTACT</a>
</div>
</div>
<!-- First Parallax Image with Logo Text -->
<div class="bgimg-1 w3-display-container w3-opacity-min" id="home">
<div class="w3-display-middle">
<span class="w3-center w3-padding-large w3-black w3-xlarge w3-wide w3-animate-opacity" style="display:inline-block;">TYLER FORDING'S PORTFOLIO</span>
</div>
</div>
<!-- Container (About Section) -->
<div class="w3-content w3-container w3-padding-64" id="about">
<h3 class="w3-center">ABOUT ME</h3>
<p class="w3-center"><em>I've long been captivated by puzzles.</em></p>
<p>From sending complex trad climbing routes to the applications of statistical modeling, I’m constantly seeking elegant solutions to complex problems. During my undergraduate years I was drawn to biomedical research and the challenge of using basic scientific research to contribute to solving human issues like aging, stress, and disease. However, through the course of my lab work I realized that to solve for any of these questions I would need a firm grasp of two things: programming and statistics.</p>
<p>Since then, my focus has been expanding my analytical skill set through the addition of computer science and math classes in my studies. In 2016, I was accepted into the Bioinformatics and Genomics graduate program at the University of Oregon, which emphasizes the statistical analysis of genetic sequence data. Thanks to this education, I now work as a remote Data Scientist in the lab of Dr. Peter Baumann at the Stowers Institute for Medical Research. This position requires me write Python, R, and bash scripts and implement them in conjunction with existing software tools to answer biological questions. Through this data analysis, I generate informative data driven visualizations, like those listed in my <a href="#portfolio">portfolio</a>.
</p>
<div class="w3-row">
<div class="w3-col m6 w3-center w3-padding-large">
<img src="/images/avatar_me.JPG" class="w3-round w3-image w3-opacity w3-hover-opacity-off" alt="Photo of Tyler" width="500" height="333">
</div>
<!-- Hide this text on small devices -->
<div class="w3-col m6 w3-padding-large">
<p class="w3-center"><em>Moving forward...</em></p>
<p>Working in the biomedical research field has been a fantastic opportunity, but I am now looking to apply my analytical skillset to problems based in the business and technology sectors. I thrive in team environments where challenging analytical problems require me to constantly collaborate, learn, and think about problems from different angles. I’m excited about opportunities that allow me to use my computer science and statistical background to solve complex problems with direct implications for users and customers.
</p>
<p>Have an analytical problem you need help solving?</p>
<p><a href="#contact">Let’s talk</a> – coffee's on me.</br></p>
</div>
</div>
<p class="w3-large w3-center w3-padding-16">I'm really good at:</p>
<div class="flex-container">
<div class="flex-item">
<p style="font-weight:bold; font-size:12pt" class="smallest-padding"><i class="fa fa-code-fork"></i> Python</p>
<div class="w3-light-grey">
<div class="w3-container smaller-padding w3-dark-grey" style="width:100%"></div>
</div>
</div>
<div class="flex-item">
<p style="font-weight:bold; font-size:12pt" class="smallest-padding"><i class="fa fa-database"></i> SQL</p>
<div class="w3-light-grey">
<div class="w3-container smaller-padding w3-dark-grey" style="width:100%"></div>
</div>
</div>
<div class="flex-item">
<p style="font-weight:bold; font-size:12pt" class="smallest-padding"><i class="fa fa-line-chart"></i> Statistics</p>
<div class="w3-light-grey">
<div class="w3-container smaller-padding w3-dark-grey" style="width:100%"></div>
</div>
</div>
<div class="flex-item">
<p style="font-weight:bold; font-size:12pt" class="smallest-padding"><i class="fa fa-code"></i> R</p>
<div class="w3-light-grey">
<div class="w3-container smaller-padding w3-dark-grey" style="width:100%"></div>
</div>
</div>
<div class="flex-item">
<p style="font-weight:bold; font-size:12pt" class="smallest-padding"><i class="fa fa-bar-chart" ></i> Data Visualization</p>
<div class="w3-light-grey">
<div class="w3-container smaller-padding w3-dark-grey" style="width:100%"></div>
</div>
</div>
<div class="flex-item">
<p style="font-weight:bold; font-size:12pt" class="smallest-padding"><i class="fa fa-area-chart"></i> Data Modeling</p>
<div class="w3-light-grey">
<div class="w3-container smaller-padding w3-dark-grey" style="width:100%"></div>
</div>
</div>
<div class="flex-item">
<p style="font-weight:bold; font-size:12pt" class="smallest-padding"><i class="fa fa-github"></i> Git/Github</p>
<div class="w3-light-grey">
<div class="w3-container smaller-padding w3-dark-grey" style="width:100%"></div>
</div>
</div>
<div class="flex-item">
<p style="font-weight:bold; font-size:12pt" class="smallest-padding"><i class="fa fa-cloud"></i> Cloud/Remote Computing</p>
<div class="w3-light-grey">
<div class="w3-container smaller-padding w3-dark-grey" style="width:100%"></div>
</div>
</div>
</div>
</div>
<!-- Second Parallax Image with Portfolio Text -->
<div class="bgimg-2 w3-display-container w3-opacity-min">
<div class="w3-display-middle">
<span class="w3-xxlarge w3-text-white w3-wide">PORTFOLIO</span>
</div>
</div>
<!-- Container (Portfolio Section) -->
<div class="w3-content w3-container w3-padding-64" id="portfolio">
<h3 class="w3-center">SOME OF MY RECENT WORK</h3>
<p class="w3-center"><em> Click on the projects to see more.</em></p>
<!-- Responsive Grid. Four columns on tablets, laptops and desktops. Will stack on mobile devices/small screens (100% width) -->
<div class="w3-row-padding w3-center">
<div class="w3-col m3">
<p><a href="https://github.com/tfording/genesis" target="_blank" style="text-decoration:none;"><b>Whiptail Genesis/Ploidy System</b></a></p>
<p><a href="https://github.com/tfording/genesis" target="_blank"><img src="/images/AllSnpsCoverage.png" style="width:100%" class="w3-hover-opacity" alt="Whiptail Linkage Map"></a></p>
</div>
<div class="w3-col m3">
<p><a href="https://github.com/tfording/marmorata_linkagemap" target="_blank" style="text-decoration:none;"><b>Whiptail Linkage Map</b></a></p>
<p><a href="https://github.com/tfording/marmorata_linkagemap" target="_blank"><img src="/images/father_LGbyPos.png" style="width:100%" class="w3-hover-opacity" alt="Whiptail Genesis/Ploidy"></a></p>
</div>
<div class="w3-col m3">
<p><a href="https://github.com/tfording/r_sample" target="_blank" style="text-decoration:none;"><b>R Sample</b></a></p>
<p><a href="https://github.com/tfording/r_sample" target="_blank"><img src="/images/r_sample.jpg" style="width:100%" class="w3-hover-opacity" alt="R Sample"></a></p>
</div>
<div class="w3-col m3">
<p><a href="https://github.com/tfording/HypothesisTestingExample/blob/master/Hypothesis%20Testing%20Example.ipynb" target="_blank" style="text-decoration:none;"><b>Hypothesis Testing Example</b></a></p>
<p><a href="https://github.com/tfording/HypothesisTestingExample/blob/master/Hypothesis%20Testing%20Example.ipynb" target="_blank"><img src="/images/Two-tail-hypothesis-testing.png" style="width:100%" class="w3-hover-opacity" alt="Hypothesis Testing Example"></a></p>
</div>
</div>
</div>
<!-- Modal for full size images on click-->
<div id="modal01" class="w3-modal w3-black" onclick="this.style.display='none'">
<span class="w3-button w3-large w3-black w3-display-topright" title="Close Modal Image"><i class="fa fa-remove"></i></span>
<div class="w3-modal-content w3-animate-zoom w3-center w3-transparent w3-padding-64">
<img id="img01" class="w3-image">
<p id="caption" class="w3-opacity w3-large"></p>
</div>
</div>
<!-- Third Parallax Image with Portfolio Text -->
<div class="bgimg-3 w3-display-container w3-opacity-min">
<div class="w3-display-middle">
<span class="w3-xxlarge w3-text-white w3-wide">CONTACT</span>
</div>
</div>
<!-- Container (Contact Section) -->
<div class="w3-content w3-container w3-padding-64" id="contact">
<h3 class="w3-center">I am looking for new opportunities and I'd love to hear from you!</h3>
<div class="w3-row w3-padding-32 w3-section">
<div class="w3-col m4 w3-container">
<!-- Add Google Maps -->
<div id="googleMap" class="w3-round-large w3-greyscale" style="width:100%;height:400px;"></div>
</div>
<div class="w3-col m8 w3-panel">
<div class="w3-large w3-margin-bottom">
<i class="fa fa-map-marker fa-fw w3-hover-text-black w3-xlarge w3-margin-right"></i> Seattle, WA<br>
</div>
<p>Want to grab <i class="fa fa-coffee"></i>, or leave me a note?</p>
<form method="POST" action=" https://formspree.io/tfording@gmail.com" target="_blank">
<div class="w3-row-padding" style="margin:0 -16px 8px -16px">
<div class="w3-half">
<input class="w3-input w3-border" type="text" placeholder="Name" required name="Name">
</div>
<div class="w3-half">
<input class="w3-input w3-border" type="text" placeholder="Email" required name="_replyto">
</div>
</div>
<textarea class="w3-input w3-border" type="text" placeholder="Message" required name="Message"></textarea>
<button class="w3-button w3-black w3-right w3-section" type="submit" value="Send">
<i class="fa fa-paper-plane"></i> SEND MESSAGE
</button>
</form>
</div>
</div>
</div>
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-64 w3-opacity w3-hover-opacity-off">
<a href="#home" class="w3-button w3-light-grey"><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a>
<div class="w3-xlarge w3-section">
<p><a href="https://www.linkedin.com/in/tfording/"><i class="fa fa-linkedin w3-hover-opacity"></i></p></a>
</div>
<p>Powered by <a href="https://www.w3schools.com/w3css/default.asp" title="W3.CSS" target="_blank" class="w3-hover-text-green">w3.css</a></p>
</footer>
<!-- Add Google Maps -->
<script>
function myMap()
{
myCenter=new google.maps.LatLng(47.606200, -122.332100);
var mapOptions= {
center:myCenter,
zoom:12, scrollwheel: false, draggable: false,
mapTypeId:google.maps.MapTypeId.ROADMAP
};
var map=new google.maps.Map(document.getElementById("googleMap"),mapOptions);
var marker = new google.maps.Marker({
position: myCenter,
});
marker.setMap(map);
}
// Modal Image Gallery
function onClick(element) {
document.getElementById("img01").src = element.src;
document.getElementById("modal01").style.display = "block";
var captionText = document.getElementById("caption");
captionText.innerHTML = element.alt;
}
// Change style of navbar on scroll
window.onscroll = function() {myFunction()};
function myFunction() {
var navbar = document.getElementById("myNavbar");
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
navbar.className = "w3-bar" + " w3-card" + " w3-animate-top" + " w3-white";
} else {
navbar.className = navbar.className.replace(" w3-card w3-animate-top w3-white", "");
}
}
// Used to toggle the menu on small screens when clicking on the menu button
function toggleFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyD4Eq7EizIA2S2L7Q2uIdtLCU25o8150AE&callback=myMap"></script>
</body>
</html>