forked from icco/resume
-
Notifications
You must be signed in to change notification settings - Fork 23
/
index.html
145 lines (122 loc) · 4.79 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
<html>
<head>
<title>Dan Mayer's Resume</title>
<link href="style.css" media="screen" rel="stylesheet" type="text/css" />
</head>
<body>
<div id='formats'>
Formats: <a href="/">HTML</a> | <a href='latex'>LaTeX</a> | <a href='markdown'>Markdown</a>
</div>
<div id="resume">
<p>Daniel Mayer<br/>
[email protected]<br/>
503-819-3246<br/>
226 9th St SE #1<br/>
Washington, DC 20003</p>
<p><a href="http://github.com/danmayer">GitHub</a><br/>
<a href="http://mayerdan.com">Blog</a></p>
<h2>Skills</h2>
<ul>
<li><p>Ruby</p>
<ul>
<li>Rails</li>
<li>Sinatra</li>
<li>Merb</li>
<li>EventMachine</li>
<li>DataMapper</li>
<li>Custom EventMachine-based protocols</li>
</ul>
</li>
<li><p>Tools</p>
<ul>
<li>Linux</li>
<li>OS X</li>
<li>Javascript (JQuery/Prototype)</li>
<li>HTML</li>
<li>Amazon Web Services (Ec2, SimpleDB, S3, SQS)</li>
<li>Distributed Computing</li>
<li>Apache</li>
<li>MySQL</li>
<li>PostgreSQL</li>
<li>Schemaless DBs (NoSql)</li>
<li>RESTul webservice API’s</li>
</ul>
</li>
<li><p>Style</p>
<ul>
<li>Pair Programming</li>
<li>Test-Focused Development</li>
<li>Distributed Teams</li>
<li>Agile team management</li>
<li>Contributor to Ruby OSS software</li>
<li>Active on Github</li>
</ul>
</li>
</ul>
<h2>Work Experience</h2>
<p><strong>LivingSocial</strong><br/>
Software Developer<br/>
June 2010 – Current<br/>
Working with a small team of developers to grow LivingSocial. Working on mobile apps, mobile site, APIs, and backend tools.</p>
<p><strong>Devver</strong><br/>
Founder / CTO / Ruby Software Developer<br/>
April 2008 – April 2010<br/>
Software startup to make the lives of developers easier. Originally developed accelerated testing for Ruby developers. More recently, launched getcaliper.com, which builds code analytics for all Rubygems and builds metrics for public and private git-based Ruby projects.</p>
<ul>
<li>Built accelerated testing tool, using distributed computing services to run developer tests</li>
<li>Developed a cloud-based continuous integration server and notification services</li>
<li>Developed cloud-based code metrics and analytics project analyzer, which integrated with Rubygems.org to provide analytics on all public Rubygems and many OSS git-based projects (7000+ projects)</li>
<li>Member of a distributed agile team — practiced daily standups, remote pair programming, and continuous integration</li>
<li>Worked extensively with cloud based services and distributed computing techniques. (EC2, Beanstalkd queues, Schemaless SimpleDB, S3)</li>
<li>Developed and deployed EventMachine, Merb, Rails, and Sinatra in production environments</li>
</ul>
<p><strong>Pretheory</strong><br/>
Founder<br/>
May 2007 – April 2008<br/>
Small Denver-based consumer web startup. Built <a href="http://seekler.com">Seekler.com</a> to help people find the best of everything online by user generated, community-based top 10 lists on topics or products. Seekler was a social way to rank things with friends or the entire community.</p>
<p><strong>Indigio</strong><br/>
Java Lead Engineer<br/>
August 2006 – May 2007<br/>
Developed web sites for Fortune 500 companies. Managed a small Java team with local and international remote employees.</p>
<ul>
<li>Developed and deployed large scale newspaper, real estate, and car rental companies Java sites</li>
</ul>
<p><strong>Impact Science & Technology (IST)</strong><br/>
Java Software Engineer<br/>
December 2005 – June 2006<br/>
Developed full lifecycle of a DOD distributed synchronous infrastructure in Java.</p>
<h2>Education</h2>
<p>University of Colorado<br/>
Boulder, CO<br/>
B.S., Computer Science<br/>
GPA: 3.185</p>
<p><em>References available on request</em></p>
</div>
</br>
<div id='footer'>
This resume is Ruby, powered by <a href="http://github.com/danmayer/Resume">Ruby Resume</a>.
</div>
<div class="ruby-runner-custom" style="display:none;" data-sig="IhFw4kpAHfpiBkbNv0s4ALR8tjc=" data-auto-init="false">
<pre class="code">
require 'pdfkit'
kit = PDFKit.new('http://resume.mayerdan.com/?no_pdf=true')
file = kit.to_file('./artifacts/dan_mayer_resume.pdf')
</pre>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://git-hook-responder.herokuapp.com/javascript/code-runner.js" type="text/javascript"></script>
<script>
var addPDFLink = function(currentPluggin) {
var element = '#formats';
$('#formats').append(' | <a class="run-button" href="#">PDF</a>');
$(element).find('.run-button').click(function(e) {
$(element).find('.run-button').text('generating...');
currentPluggin.runExample();
e.preventdefault;
return false;
});
};
/*$('.ruby-runner-custom').codeRunner({'initialize_method' : addPDFLink, 'follow_files' : 'true'});*/
</script>
</body>
</html>