{% import "website/macros/chip.html" as chip %} {% extends "website/base.html" %} {% block content %}

Gabriel Kaszewski

Full-Stack Developer

Who am I? 🤔

Hi, my name is Gabriel Kaszewski, and I am a Bioinformatics student 🧬 and self-taught full-stack developer 💻.

My journey with programming started when I was 11 🚀. I love solving problems and creating software that resolves them 👨‍💻.

Currently, I am working as a Python Developer at digimonkeys.com 🐒. In my free time I like to read about new technologies and work on my projects 📚.

Skills 🛠️

{% for skill in skills %}
{{ chip::chip(text=skill.name) }}
{%endfor%}

Experience 📈

{% for job in jobs %}

{{ job.position }}

{{ job.company }}
{% if job.still_working %}
{{ job.start_date | date(format="%d-%m-%Y") }} - Present
{% else %}
{{ job.start_date | date(format="%d-%m-%Y") }} - {{ job.end_date | date(format="%d-%m-%Y") }}
{% endif %}

Technologies

{% for technology in job.technologies %} {{ chip::chip(text=technology) }} {% endfor %}
{%endfor%}
{% endblock content %}