diff --git a/assets/views/website/about.html b/assets/views/website/about.html index 727c83e..13ecc58 100644 --- a/assets/views/website/about.html +++ b/assets/views/website/about.html @@ -18,15 +18,15 @@ class="flex flex-col m-4 prose text-white md:text-left md:m-0 md:w-1/2 md:prose-lg lg:prose-xl prose-blue" >

- Hi! I am Gabriel and I am {{ age }} years old. I study Bioinformatics at the - University of Gdansk 🏫. I'm fluent in Polish and English and currently work - as a Python Developer at digimonkeys.com 🐒💻. + Hi! I am Gabriel and I am {{ age }} years old. I graduated in Bioinformatics + from the University of Gdansk 🏫. I'm fluent in Polish and English and + currently work as a Python Developer at digimonkeys.com 🐒💻.

I have published one article you can read it - here - . + here .

Hobbies 🎮🎸

diff --git a/assets/views/website/index.html b/assets/views/website/index.html index 6b3eef4..5c510ce 100644 --- a/assets/views/website/index.html +++ b/assets/views/website/index.html @@ -3,57 +3,113 @@
- +
+ class="flex flex-col items-center justify-start w-full md:inset-0 md:absolute md:items-start md:p-16 lg:p-20" + >
-

+

Gabriel Kaszewski

-

+

Full-Stack Developer

- -
+

Who am I? 🤔

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

- My journey with programming started when I was 11 🚀. I love solving problems and creating software that - resolves them 👨‍💻. + 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 📚. + 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 %}
+ {% for skill in skills %} +
{{ chip::chip(text=skill.name) }}
{%endfor%}
-
+

Experience 📈

{% for job in jobs %}
+ class="flex flex-col gap-2 p-4 text-black bg-gray-50 rounded-lg w-[20rem] max-w-[20rem] shadow-lg odd:motion-preset-slide-right-md odd:motion-delay-100 even:motion-preset-rebound" + >

- + - {{ job.position }} + + {{ job.position }}

- + @@ -130,30 +224,62 @@ - {{ job.company }} + + {{ job.company }}
{% if job.still_working %}
- + - {{ job.start_date | - date(format="%d-%m-%Y") }} - Present + + {{ 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") }} + + {{ job.start_date | date(format="%d-%m-%Y") }} - {{ job.end_date | + date(format="%d-%m-%Y") }}
{% endif %} -

+

+ @@ -165,14 +291,17 @@ - Technologies

+ d="M8 2a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2h-1.5c-.276 0-.494.227-.562.495a2 2 0 0 1-3.876 0C9.994 2.227 9.776 2 9.5 2z" + /> + + Technologies +

- {% for technology in job.technologies %} {{ chip::chip(text=technology) - }} {% endfor %} + {% for technology in job.technologies %} {{ chip::chip(text=technology) }} + {% endfor %}
{%endfor%}
-{% endblock content %} \ No newline at end of file +{% endblock content %} diff --git a/config/development.yaml b/config/development.yaml index 03d3aaf..0b707a7 100644 --- a/config/development.yaml +++ b/config/development.yaml @@ -88,7 +88,7 @@ mailer: # Database Configuration database: # Database connection URI - uri: {{ get_env(name="DATABASE_URL", default="sqlite://./database.db") }} + uri: {{ get_env(name="DATABASE_URL", default="sqlite://./database.db?mode=rwc") }} # When enabled, the sql query will be logged. enable_logging: false # Set the timeout duration when acquiring a connection. diff --git a/dockerfile b/dockerfile index 1ee7223..695ac84 100644 --- a/dockerfile +++ b/dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.74-slim as builder +FROM rust:1.88-slim as builder WORKDIR /usr/src/