-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
134 lines (100 loc) · 4.31 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jon's Head in the Cloud(s)</title>
<link rel="shortcut icon" href="favicon.ico">
<!-- Add your CSS files here -->
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/themes/blue.css">
<!-- Add your Fonts here -->
<link href='http://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<div class="logo"><img src="img/logo.svg" alt="Logo"></div>
<div class="social">
<a href="http://www.linkedin.com/pub/jon-weisbaum/34/621/52" class="icon-linkedin" title="LinkedIn"></a>
</div>
<!-- Social Icons End -->
<header>
<nav id="nav">
<ul class="nav">
<li><img src="img/logo.svg" alt="My Logo"></li>
<li class="active"><a href="index.html" class="icon-user"><span>Profile</span></a></li>
<!--
<li><a href="work.html" class="icon-briefcase"><span>Work</span></a></li>
-->
<li><a href="contact.html" class="icon-mail"><span>Contact</span></a></li>
</ul>
</nav>
</header>
<!-- Header End -->
<section class="content">
<article class="clearfix">
<div class="p-image">
<img src="img/profile.jpg" alt="My Image">
</div>
</article>
<article class="p-details profile">
<h2>Jon Weisbaum</h2>
<h4>Software Engineer</h4>
<p>Greetings! Welcome to my little spot on the web. </p>
<h3> About Me</h3>
<p>
My name is Jon Weisbaum and I’m a software engineer with six years of experience. I've mostly worked in mobile/wearable technologies but also recently with full stack, data science and cloud architecture. I am looking to gain more experience with back end development.
</p>
<p>
I think I'm a competent engineer but the more experience I gain, especially in leadership roles, the more I come to understand that my biggest asset is my disposition, friendly nature, and enthusiasm. I am very good at concisely conveying complicated ideas and being clear and direct about expectations. I also don't get bogged down in over communicating. I think I have a knack for team building and leadership. I am able to clearly differentiate between technical implementation details and big picture roadmaps, and how both contribute business value.
</p>
<h3> Keywords and Skills </h3>
<p>
I have shipped front end apps on the following platforms:
</p>
<p>
iOS (Objective-C and Swift), tvOS, Android, JavaScript/HTML/CSS, Google Glass, and ODG
</p>
<p>
And have handled back end development with the following technologies:
</p>
<p>
Node.js, Python (for data analysis using numpy and matplotlib), C#, MongoDB, Ejabberd, Redis, C, Docker, MySql, MongoDB
</p>
<p>
I have worked on side projects, volunteer projects or classwork with:
</p>
<p>
Matlab, Maple, R, Hadoop, Spark
</p>
<p>
I have worked with Azure using Entity Framework and AWS using EC2, Elastic Beanstalk, and Route 53 and am comfortable with Linux but obviously there's always more to learn.
</p>
<a href="resume.pdf">View resume</a>
<a href="contact.html">Contact me</a>
</article>
</section>
<!-- Content End -->
</div>
<!-- Container End -->
<!-- Scripts -->
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/plugins.js"></script>
<script>
var navigation = responsiveNav("#nav", {
animate: true, // Boolean: Use CSS3 transitions, true or false
transition: 400, // Integer: Speed of the transition, in milliseconds
label: "", // String: Label for the navigation toggle
insert: "before", // String: Insert the toggle before or after the navigation
customToggle: "", // Selector: Specify the ID of a custom toggle
openPos: "relative", // String: Position of the opened nav, relative or static
jsClass: "js", // String: 'JS enabled' class which is added to <html> el
init: function(){}, // Function: Init callback
open: function(){}, // Function: Open callback
close: function(){} // Function: Close callback
});
</script>
</body>
</html>