added resume and dynamic date gen
This commit is contained in:
78
index.html
78
index.html
@@ -55,12 +55,23 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://www.dropbox.com/s/6cflubui10es4ui/Zev%20Averbach%20Full%20Stack%20Developer%20Resume%20August%202018.pdf?dl=0"
|
||||||
|
class="btn btn-primary not-rounded py2"
|
||||||
|
|
||||||
|
target="_blank"
|
||||||
|
|
||||||
|
style="color: #004966; background: #7FDBFF;">Resume</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://www.linkedin.com/in/zev-averbach-964572156/"
|
<a href="https://www.linkedin.com/in/zev-averbach-964572156/"
|
||||||
class="btn btn-primary not-rounded py2"
|
class="btn btn-primary not-rounded py2"
|
||||||
|
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|
||||||
style="color: #004966; background: #7FDBFF;">LinkedIn</a>
|
style="color: #0e3e14; background: #2ECC40;">LinkedIn</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -71,7 +82,7 @@
|
|||||||
|
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|
||||||
style="color: #0e3e14; background: #2ECC40;">Github</a>
|
style="color: #00662c; background: #01FF70;">Github</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -83,36 +94,51 @@
|
|||||||
<div id="content" class="clear h2 m2 sm-col sm-col-12 md-col-10 lg-col-8">
|
<div id="content" class="clear h2 m2 sm-col sm-col-12 md-col-10 lg-col-8">
|
||||||
|
|
||||||
|
|
||||||
<p class="mx2 ml2 h3">Hi, my name is Zev. I live in Burlington, Vermont, in the United States.</p>
|
<p class="mx2 ml2 h3">Hi, my name is Zev. I live in Burlington, Vermont, in the United States.</p>
|
||||||
|
|
||||||
<p class="mx2 ml2 h3" id="availability">As of August 2018 I'm available for full-time employment as a full-stack software engineer.
|
<p class="mx2 ml2 h3" id="availability">
|
||||||
|
As of <span id="work-availability-date">August 2018</span> I'm available for full-time employment as a
|
||||||
|
full-stack software engineer.
|
||||||
|
|
||||||
My preferred stack is</p>
|
My preferred stack is</p>
|
||||||
<ul class="h3 ml2">
|
<ul class="h3 ml2">
|
||||||
<li>Python</li>
|
<li>Python</li>
|
||||||
<li>Flask</li>
|
<li>Flask</li>
|
||||||
<li>Pytest</li>
|
<li>Pytest</li>
|
||||||
<li>SQLAlchemy</li>
|
<li>SQLAlchemy</li>
|
||||||
<li>Celery</li>
|
<li>Celery</li>
|
||||||
<li>MySQL</li>
|
<li>MySQL</li>
|
||||||
<li>AWS (S3, Lambda)</li>
|
<li>AWS (S3, Lambda)</li>
|
||||||
<li>vanilla JavaScript</li>
|
<li>vanilla JavaScript</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<p class="mx2 ml2 h3 clearfix">I'm also familiar with Node.js, PHP, and Django.</p>
|
<p class="mx2 ml2 h3 clearfix">I'm also familiar with Node.js, PHP, and Django.</p>
|
||||||
|
|
||||||
<p class="mx2 ml2 h3">I love to help small businesses solve their worst headaches via technology.
|
<p class="mx2 ml2 h3">I love to help small businesses solve their worst headaches via technology.
|
||||||
<a href="/projects">Here</a>
|
<a href="/projects">Here</a>
|
||||||
are a few projects I've completed to that effect. You'll notice that most of those projects
|
are a few projects I've completed to that effect. You'll notice that most of those projects
|
||||||
are businesses unto themselves: I've started a couple of web-based service businesses,
|
are businesses unto themselves: I've started a couple of web-based service businesses,
|
||||||
so I have an intimate understanding of the challenges entrepreneurs face and how to strategically
|
so I have an intimate understanding of the challenges entrepreneurs face and how to strategically
|
||||||
apply code and off-the-shelf technology to those challenges.</p>
|
apply code and off-the-shelf technology to those challenges.</p>
|
||||||
|
|
||||||
<p class="mx2 ml2 h3" id="github-timeline">I also love contributing to open source software, as you can see on
|
<p class="mx2 ml2 h3" id="github-timeline">I also love contributing to open source software, as you can see on
|
||||||
<a href="https://github.com/zevaverbach/" target="_blank">my Github timeline (external link)</a>.</p>
|
<a href="https://github.com/zevaverbach/" target="_blank">my Github timeline (external link)</a>.</p>
|
||||||
|
|
||||||
|
<p class="mx2 ml2 h3" id="contact">You can reach me at
|
||||||
|
<a title="Email Zev Averbach" href="mailto:zev@averba.ch">zev@averba.ch</a> I'll get back to you within a day or
|
||||||
|
so.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
|
||||||
|
const monthNames = ['January', 'February', 'March', 'April', 'May', 'June', 'July',
|
||||||
|
'August', 'September', 'October', 'November', 'December'];
|
||||||
|
workAvailabilityDate = document.querySelector('#work-availability-date');
|
||||||
|
const date = new Date();
|
||||||
|
workAvailabilityDate.innerHTML = `${monthNames[date.getMonth()]} ${date.getFullYear()}`;
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
<p class="mx2 ml2 h3" id="contact">You can reach me at
|
|
||||||
<a title="Email Zev Averbach" href="mailto:zev@averba.ch">zev@averba.ch</a> I'll get back to you within a day or so.</p>
|
|
||||||
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -55,12 +55,23 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<a href="https://www.dropbox.com/s/6cflubui10es4ui/Zev%20Averbach%20Full%20Stack%20Developer%20Resume%20August%202018.pdf?dl=0"
|
||||||
|
class="btn btn-primary not-rounded py2"
|
||||||
|
|
||||||
|
target="_blank"
|
||||||
|
|
||||||
|
style="color: #004966; background: #7FDBFF;">Resume</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<a href="https://www.linkedin.com/in/zev-averbach-964572156/"
|
<a href="https://www.linkedin.com/in/zev-averbach-964572156/"
|
||||||
class="btn btn-primary not-rounded py2"
|
class="btn btn-primary not-rounded py2"
|
||||||
|
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|
||||||
style="color: #004966; background: #7FDBFF;">LinkedIn</a>
|
style="color: #0e3e14; background: #2ECC40;">LinkedIn</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -71,7 +82,7 @@
|
|||||||
|
|
||||||
target="_blank"
|
target="_blank"
|
||||||
|
|
||||||
style="color: #0e3e14; background: #2ECC40;">Github</a>
|
style="color: #00662c; background: #01FF70;">Github</a>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user