Louis Guidez

Mechanical Engineer. Private Pilot. Geek. Pianist. Hiker. Board-"gamer".

Photo of Louis Guidez

{{ resume.basics.label }}

{{ resume.basics.summary | markdown | safe }}
{# Work Experience #} {% if resume.work and resume.work.length > 0 %}

Work Experience

{% for job in resume.work %}
{% if not job.endDate %}{% endif %}

{{ job.position }}

{{ job.startDate | formatDate }} - {{ job.endDate | formatDate }}
{{ job.name }}
{% if job.highlights and job.highlights.length > 0 %}
{% for highlight in job.highlights %} {{ highlight }} {% endfor %}
{% endif %} {% if job.summary %}
{{ job.summary | markdown | safe }}
{% endif %}
{% endfor %} {% endif %} {# Education #} {% if resume.education and resume.education.length > 0 %}

Education

{% for edu in resume.education %}
{% if not edu.endDate %}{% endif %}

{{ edu.studyType }} in {{ edu.area }}

{{ edu.startDate | formatDate }} - {{ edu.endDate | formatDate }}
{{ edu.institution }} {% if edu.score %} {{ edu.score }} {% endif %}
{% endfor %} {% endif %} {# Projects #} {% if resume.projects and resume.projects.length > 0 %}

Projects

{% for project in resume.projects %}

{{ project.name }}

{{ project.description }} {% if project.highlights and project.highlights.length > 0 %} {% for highlight in project.highlights %} {{ highlight }} {% endfor %} {% endif %}
{% endfor %} {% endif %} {# References #} {% if resume.references and resume.references.length > 0 %}

References

{% if false %} {% for reference in resume.references %}

{{ reference.name }}

{{ reference.reference }}
{% endfor %} {% else %}

Contact me.

{% endif %} {% endif %}