-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcv.html
86 lines (81 loc) · 2.87 KB
/
cv.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
---
layout: default
title: my\ CV
---
<header>
<h1>{{ page.title }}</h1>
</header>
<section>
<p>My professional experience started in 2002, however I've been having fun programming
from a very young age and have considered it not only my hobby and carrer, but also my
primary creative outlet (for better or worse)</p>
<ul>
<li>UMBC - M.S. Computer Science 2013 - probabilistic modeling <a class='more' href='ms'>[more]</a></li>
<div id='ms' class="row" style="display:none;">
<div class="col-md-6">
<ul>
<li>Information Retrieval</li>
<li>Principles of Database Systems</li>
<li>Design & Analysis of Algorithms</li>
<li>Advanced Operating Systems</li>
<li>Advanced Computer Architecture</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>Quantum Computation</li>
<li>Introduction to Research</li>
<li>Introduction to IT Services</li>
<li>Introduction to Parallel Computing</li>
<li>Medical Software Engineering</li>
</ul>
</div>
</div>
<li>UMBC - B.S. Computer Science 2006 <a class='more' href='bs'>[more]</a></li>
<div id='bs' class="row" style="display:none;">
<div class="col-md-6">
<ul>
<li>Computer Science I & II</li>
<li>Discrete Structures</li>
<li>Data Structures</li>
<li>Principles of Programming Languages</li>
<li>Computer Organization & Assembly Language</li>
<li>Software Design & Development</li>
<li>Principles of Operating Systems</li>
</ul>
</div>
<div class="col-md-6">
<ul>
<li>Scripting Languages</li>
<li>Computer Networks</li>
<li>Database Management Systems</li>
<li>Data & Network Security</li>
<li>Computer Architecture</li>
<li>Algorithms</li>
<li>Information Assurance</li>
</ul>
</div>
</div>
</ul>
<ul>
<li>Software Engieer - Google Inc >> Jan 2017 - present</li>
<li>Bit-Level Engineer - Cyberpoint Int. >> 1 yr, 10 mos</li>
<li>Co/Founder & CTO - Activatr Inc >> 1 yr, 9 mos</li>
<li>Sr Software Engineer - Voxility, SRL >> 7 mos</li>
<li>Embedded Triage Engineer - Apple Inc >> 1 yr, 1 mo</li>
<li>Founder - Hyperion Storm, LLC >> 1 yr, 1 mo</li>
<li>Sr Software Engineer - Kimball Consulting >> 5 yrs, 8 mos</li>
<li>Analyst/Software Engineer - DoD >> 5 yrs, 1 mo</li>
</ul>
</section>
<script>
$(function() {
$('.more').on('click', function(event) {
event.preventDefault(); // no href for you!
var t = this;
$('#' + $(t).attr('href')).slideToggle({complete: function() {
$(t).remove(); // only have this once, no reason to toggle
}});
});
});
</script>