portfolio/website/components/sections/Skills.vue

23 lines
1.6 KiB
Vue
Raw Permalink Normal View History

2023-11-21 21:23:16 +01:00
<template>
<div class="py-40">
<h1 class="text-6xl font-bold text-primary-500">Skills</h1>
2023-11-28 16:15:51 +01:00
<h2 class="text-primary-600 font-bold text-2xl mt-10">Linux</h2>
<p class="text-bright mt-2">
I have been using Linux as my daily driver since 2020. I started out with <a href="https://pop.system76.com/">Pop!_OS</a> and at that moment my love started with Linux. Early 2021 I switch to <a href="https://archlinux.org/">Archlinux</a> and was very happy with the customizability. Later in 2022 I started using a tiling window manager instead of a stacking window manager, because I wanted to be more productive and learn more about how a desktop works. Since late 2023 until now I use <a href="https://nixos.org/">NixOS</a> because I loved the idea of an declarative system.
</p>
<h2 class="text-primary-600 font-bold text-2xl mt-10">Programming</h2>
<p class="text-bright mt-2">
My programming journey started in 2018 with learning the basics of <a href="https://arduino.cc">Arduino</a>. Later I started learning html, css and javascript to learn about the web. I found the framework <a href="https://nuxt.com">Nuxt</a> and now use this to create websites and progressive web apps. Since late 2023 I started learning the <a href="https://rustlang.org">Rust</a> programming language, because I wanted to create native desktop applications without electron.
</p>
<h2 class="text-primary-600 font-bold text-2xl mt-10">Tools</h2>
<ul class="mt-2">
<li class="text-bright">
Docker, Git, Ionic
</li>
2023-11-21 21:23:16 +01:00
</ul>
</div>
</template>