Skip to content

Commit

Permalink
Update experience section
Browse files Browse the repository at this point in the history
  • Loading branch information
OmeGak committed Jan 19, 2017
1 parent 8ff0db4 commit d03dff0
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 20 deletions.
30 changes: 18 additions & 12 deletions assets/sass/_timeline.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.timeline-entry {
$font-size: 9pt;

&:not(:first-of-type) {
margin-top: 1em;
}
Expand All @@ -7,34 +9,38 @@
display: -webkit-flex;
justify-content: space-between;
color: $light-gray;
font-size: 9pt;
font-size: $font-size;
}

.entry-main {
display: -webkit-flex;
justify-content: space-between;
}

.entry-content {
-webkit-flex-grow: 1;
}

.entry-description,
.entry-details {
font-size: 9pt;
font-size: $font-size;
text-align: justify;
margin-top: 0.05cm;
}

.entry-description {
font-style: italic;
}

.entry-details {
margin-left: 0.5cm;

ul {
list-style: square;
margin: 0;
padding-left: 0;
}
}

.entry-title {
@extend %font-family-medium;
}

ul {
list-style: square;
margin: 0;
padding-left: 0;
}
}

.timeline-row {
Expand Down
34 changes: 26 additions & 8 deletions partials/main.njk
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
{% macro render_job(title, location, from_dt, to_dt, hint=none, url=none) %}
{% macro render_job(title, location, from_dt, to_dt, hint=none, url=none, description=none) %}
<div class="timeline-entry">
<div class="entry-meta">
<span class="time">{{ from_dt }} &mdash; {{ to_dt }}</span>
{% if url %}
{% if hint %}
{{ hint }}
{% elif url %}
<a href="{{ url }}">{{ url }}</a>
{% endif %}
{{ hint }}
</div>
<div class="entry-main">
<span class="entry-title">{{ title }}</span>
<span class="highlight">{{ location }}</span>
</div>
{% if description %}
<div class="entry-description">
{{ description }}
</div>
{% endif %}
<div class="entry-details">
{{ caller() }}
</div>
Expand All @@ -31,13 +37,25 @@

<section>
<h1>Experience</h1>
{% call render_job(title="Full-Stack Software Developer", location="CERN: Indico", from_dt="2013 Mar", to_dt="now", url="http://indico-software.org/") %}
{# Indico, an open source web application for event organization used at CERN and 150+ other institutions. My job involves extensive use of Python, Javascript, Jinja (HTML) and SASS (CSS), as well as making use of several frameworks (Flask, AngularJS, Compass), libraries (jQuery, SQLAlchemy, pytest) and other technologies (PostgreSQL, Redis, Sphinx, Git). Moreover, my tasks also include orchestration of 15+ machines with Puppet and service operations in general. #}
Indico is an open source web application for event organization used at CERN and 150+ other institutions. My job involves developing, and service reliability.

{% call render_job(title="Full-Stack Software Developer", location="Indico (CERN)",
from_dt="2013 Mar", to_dt="now", url="http://indico-software.org/",
description="Indico is a web application for event organization used at CERN, UN, Fermilab, and 150+ other
institutions.") %}
{# Moreover, my tasks also include orchestration of 15+ machines with Puppet and service operations in general. #}
{# Personel selection, release planning, training courses, knowledge transfer to newcomers #}
<ul>
<li>Helped migrate the whole application from ZODB, an object-oriented database, to PostgreSQL.</li>
<li>Introduced numerous reusable UI components to enforce visual consistency application-wide.</li>
<li></li>
<li></li>
</ul>
{% endcall %}

{% call render_job(title="Software Engineer", location="CERN", from_dt="2012 Jun", to_dt="2012 Sep") %}
Summer student position. Data visualizations and front-end desktop interfaces, using Java EE and Swing, for the weak magnet safety system of the LHC.
{% call render_job(title="Data Visualization Engineer", location="CERN", from_dt="2012 Jun", to_dt="2012 Sep") %}
<ul>
<li>Developed an interactive tool for LHC data visualization in Java EE and integrated it into a Swing app.</li>
</ul>
{% endcall %}
</section>

Expand Down

0 comments on commit d03dff0

Please sign in to comment.