feat: update site

This commit is contained in:
Alexander Daichendt 2023-08-02 21:04:16 +02:00
parent 6828695cbe
commit 5fc58fd0bc
5 changed files with 21 additions and 17 deletions

View file

@ -18,7 +18,7 @@
<ThemeSwitcher /> <ThemeSwitcher />
</div> </div>
<nav> <nav>
<ol> <ol class="navList">
{#each NAV_ITEMS as navItem} {#each NAV_ITEMS as navItem}
<li <li
class="navItem {$page.url.pathname === navItem.href || class="navItem {$page.url.pathname === navItem.href ||
@ -40,7 +40,9 @@
.active { .active {
font-weight: 600; font-weight: 600;
} }
.navList {
padding: 0;
}
.navItem { .navItem {
display: inline; display: inline;
} }

View file

@ -7,9 +7,9 @@
<div class="container upper"> <div class="container upper">
<Header /> <Header />
<div class="content"> <main>
<slot /> <slot />
</div> </main>
</div> </div>
<MoveUpButton /> <MoveUpButton />
<Footer /> <Footer />
@ -21,10 +21,6 @@
.upper { .upper {
min-height: calc(100vh - 4rem - 8px); min-height: calc(100vh - 4rem - 8px);
} }
.content {
max-width: 60rem;
margin: 0 auto;
}
:global(.container) { :global(.container) {
max-width: 70rem; max-width: 70rem;

View file

@ -5,13 +5,12 @@
let SKILLS = [ let SKILLS = [
{ name: 'Lightweight virtualisation (LXC, Docker)' }, { name: 'Lightweight virtualisation (LXC, Docker)' },
{ name: 'Container orchestration at scale (K8s)' }, { name: 'Kubernetes' },
{ name: 'Cloud Computing (AWS, Cloudflare)' }, { name: 'Cloud Computing / IaaS (AWS, Cloudflare)' },
{ name: 'Web development (mostly frontend with React, Svelte, vanilla)' }, { name: 'Web development (fullstack; React, Next, Svelte, vanilla, Rust+WASM)' },
{ name: 'Scripting and automation (Bash, Python)' }, { name: 'Scripting and automation (Bash, Python)' },
{ name: 'git and GitOps pipelines' }, { name: 'git and GitOps pipelines' },
{ name: 'Linux administration (Debian, Arch)' }, { name: 'Linux administration' },
{ name: 'Object oriented programming (Java)' },
]; ];
const PROJECTS = [ const PROJECTS = [
@ -64,8 +63,8 @@
Programming has been a hobby of mine since my teens. Been working on countless projects for Programming has been a hobby of mine since my teens. Been working on countless projects for
various games. For a few years now I am maintaining a small homelab, which got me into DevOps/SRE. various games. For a few years now I am maintaining a small homelab, which got me into DevOps/SRE.
I am a privacy enthusiast and advocate for non-invasive software. Sometimes, I build slick I am a privacy enthusiast and advocate for non-invasive software. Sometimes, I build slick
websites that do not load megabytes of data and follow best-practices. Currently, I am working on websites that do not load megabytes of data and try to follow best-practices. Currently, I am
my Masters degree in computer science at <Link href="https://www.tum.de/">TUM</Link>. working on my Masters degree in computer science at <Link href="https://www.tum.de/">TUM</Link>.
</p> </p>
<h2>Skills</h2> <h2>Skills</h2>

View file

@ -17,6 +17,7 @@ keywords:
- linux kernel - linux kernel
- kernel - kernel
hidden: false hidden: false
updated: '2023-08-02'
--- ---
<script> <script>
@ -57,3 +58,11 @@ The power draw is now as expected at around 8W. The memory downclocks to 96Mhz.
This might not seem like a lot, but in situations like this I have to think about how many GPUs were sold globally and are affected by this bug. It's is not an insignificant amount of power that is wasted on a global scale. This might not seem like a lot, but in situations like this I have to think about how many GPUs were sold globally and are affected by this bug. It's is not an insignificant amount of power that is wasted on a global scale.
<Image meta={hz144low} alt="High power draw and high mem frequency"/> <Image meta={hz144low} alt="High power draw and high mem frequency"/>
_Update: 2021-08-02_:
I tried to use my internal GPU for the display and the 6700 XT for compute only. Initially, this setup would crash every few minutes. A couple days ago, Gigabyte pushed a new BIOS update for my B650 AM5 board - version F7 - which apparently fixed this issue.
To launch games on the dGPU, I must launch it with an environment variable: `DRI_PRIME=1`. For steam games, you can set this in the launch options. For example: `DRI_PRIME=1 %command%`.
My dGPU sits now happily in idle at 5W with 96Mhz memory frequency.

View file

@ -45,8 +45,6 @@
</ListItem> </ListItem>
</ul> </ul>
I usually reply within a couple minutes - if it is important.
<style> <style>
ul { ul {
list-style-type: none; list-style-type: none;