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

Who am I? 🤔

Hi, my name is Gabriel Kaszewski, and I am a Bioinformatics student 🧬 and self-taught full-stack developer 💻. I started coding when I was 11 🚀. I love solving problems and writing software 👨‍💻. Currently, I am working as a Python Developer at digimonkeys.com 🐒. I am very passionate about Computer Science 💾.

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.name) }} {% endfor %}
{%endfor%}
{% endblock content %}