public/components/index/about.vue

90 lines
2.7 KiB
Vue
Raw Normal View History

2022-08-09 19:13:22 -04:00
<script setup lang="ts">
import { projects } from "@/data/projects";
</script>
2022-08-07 21:25:41 -04:00
<template>
2022-08-09 19:13:22 -04:00
<div class="prose dark:prose-invert w-full flex flex-col mt-9">
2022-08-09 21:07:18 -04:00
<h1 class="text-center mb-0">Fun things</h1>
<p class="text-center">(aka my programming projects)</p>
<div class="flex flex-col items-center justify-around gap-5 mt-6">
<ProjectCard
v-for="(proj, index) in projects"
:project="proj"
:key="index"
2022-08-09 22:17:02 -04:00
/>
2022-08-09 21:07:18 -04:00
</div>
<h1 id="about" class="text-center mb-4 mt-8">About</h1>
2022-08-09 19:13:22 -04:00
<!-- this could be in markdown but eh -->
<p>
Hello! It's very nice to meet you — I'm a student who is quite passionate
2022-09-20 16:22:00 -04:00
about some subjects but is quite lazy in every other.
2022-08-09 19:13:22 -04:00
</p>
<p>
I've dabbled extensively and non-extensively in a variety of topics to
play with, including:
</p>
<ul>
<li>competitive programming on DMOJ</li>
<li>Linux and server administration</li>
2025-01-26 15:09:14 -05:00
<li>web development</li>
2022-09-20 16:22:00 -04:00
<li>hackathons</li>
2022-08-09 19:13:22 -04:00
<li>ski instruction</li>
<li>writing of literature</li>
2025-01-26 15:09:14 -05:00
<li>video game console emulation</li>
2022-08-09 19:13:22 -04:00
</ul>
<p>and other things that I'm forgetting right now.</p>
<p>
2025-01-26 15:09:14 -05:00
I have three server machines at home a Dell OptiPlex 780, a Dell
Latitude E5520, and a custom-built PC. One of them is a laptop and
2022-12-19 15:41:40 -05:00
<s>I'm surprised it hasn't burnt up yet </s>
<span class="redphasis">it has burnt up.</span>
2022-08-09 19:13:22 -04:00
</p>
2025-01-26 15:09:14 -05:00
<h3>Custom PC ("hwaboon")</h3>
<ul>
<li><strong>CPU:</strong> AMD Ryzen 7700X (8c/16t)</li>
<li><strong>GPU:</strong> Integrated</li>
<li><strong>RAM:</strong> 2× 16 GB DDR5</li>
<li><strong>Storage:</strong> Crucial P3 1 TB SSD</li>
<li><strong>OS:</strong> Arch Linux</li>
</ul>
2022-08-09 19:13:22 -04:00
<h3>OptiPlex 780 ("asvyn")</h3>
<ul>
<li><strong>CPU:</strong> Intel Core 2 Duo E8400 (2c/2t)</li>
<li><strong>GPU:</strong> AMD ATI Radeon HD 3450</li>
2025-01-26 15:09:14 -05:00
<li><strong>RAM:</strong> 2× 2 GB DDR3</li>
2022-08-09 19:13:22 -04:00
<li><strong>Storage:</strong> Western Digital 150 GB hard drive</li>
<li><strong>OS:</strong> Arch Linux</li>
</ul>
<h3>Latitude E5520 ("panquia")</h3>
<ul>
<li><strong>CPU:</strong> Intel Core i5-3320M (2c/4t)</li>
<li><strong>GPU:</strong> Integrated</li>
<li><strong>RAM:</strong> 10 GB</li>
<li><strong>Storage:</strong> 300 GB hard drive</li>
<li><strong>OS:</strong> Arch Linux</li>
2022-12-19 15:41:40 -05:00
<li>
<strong>Status: </strong>
<span class="redphasis">ON FIRE.</span>
</li>
2022-08-09 19:13:22 -04:00
</ul>
2022-08-07 21:25:41 -04:00
</div>
</template>
2022-08-09 19:13:22 -04:00
<style scoped>
p {
margin: 0.5rem;
}
ul {
margin: 0;
line-height: 1.35;
}
2022-12-19 15:41:40 -05:00
.redphasis {
font-weight: bold;
color: red;
}
2022-08-09 19:13:22 -04:00
</style>