{% 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 - I'm a Bioinformatics graduate 🧬 and a self-taught full-stack developer 💻. I love creating software that resolves complex problems, and my most ambitious project yet is my first game. Take a look at the Steam preview below and consider adding it to your wishlist!

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 %}