Compare commits
2 Commits
61c7d27e22
...
c614a66c98
Author | SHA1 | Date | |
---|---|---|---|
c614a66c98 | |||
4b2676cff6 |
@ -64,6 +64,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="hidden md:block md:grow" />
|
<div class="hidden md:block md:grow" />
|
||||||
<div class="flex flex-col gap-y-2 lg:gap-y-0">
|
<div class="flex flex-col gap-y-2 lg:gap-y-0">
|
||||||
|
<div class="md:ml-auto">
|
||||||
<Window title="contacts!" iconUri="/icons/contact.png">
|
<Window title="contacts!" iconUri="/icons/contact.png">
|
||||||
<div class="prose prose-ralsei leading-6">
|
<div class="prose prose-ralsei leading-6">
|
||||||
<ul>
|
<ul>
|
||||||
@ -102,4 +103,16 @@
|
|||||||
</div>
|
</div>
|
||||||
</Window>
|
</Window>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="mt-auto">
|
||||||
|
<Window title="current" iconUri="/icons/entry.png">
|
||||||
|
<div class="prose prose-ralsei leading-6">
|
||||||
|
<ul>
|
||||||
|
<li>playing void stranger, ace combat 7, helldivers 2, warframe</li>
|
||||||
|
<li>working on this website (duh)</li>
|
||||||
|
<li>adding stuff to my godot boids addon</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</Window>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
@ -1,9 +1,55 @@
|
|||||||
+++
|
+++
|
||||||
title = "about me"
|
title = "about me"
|
||||||
date = "2024-08-14"
|
date = "2024-08-14"
|
||||||
layout = "blogpost"
|
layout = "about"
|
||||||
+++
|
+++
|
||||||
|
|
||||||
idk im too lazy to write about myself, bother me if you really want me to
|
hello, i'm dusk!!
|
||||||
|
i like to do many different things, but perhaps mainly i want to create stuff to inspire others to create stuff. at least i'm convinced that's what i wanna do xD.
|
||||||
|
software is my means to that end! (it's what i'm most proficient with lol)
|
||||||
|
|
||||||
<p class="text-xs italic">(i will do this later)</p>
|
i'm also trying to learn:
|
||||||
|
- how to draw (for concept art mainly)
|
||||||
|
- modeling / texturing / sculpting (these i have more experience with!)
|
||||||
|
- playing (acoustic, later electric) guitar (have to practice actually...)
|
||||||
|
|
||||||
|
my hope is to make many video games, ideally do the majority of the work myself and as said before, have people be inspired by them.
|
||||||
|
which is, well, kinda hard it turns out. so that's gonna take a long time probably (lmao)...
|
||||||
|
you can see some of the stuff i deem "okay" on my [itch.io profile](https://yusdacra.itch.io/)
|
||||||
|
(although those are by no means the only stuff i have worked on, have a lot of incomplete stuff, or stuff i don't want to show :3)
|
||||||
|
|
||||||
|
software wise you can just look at my github and gitea account to see what i like to use (is linked on the home page)
|
||||||
|
|
||||||
|
i like and interact with way too many media, mostly video games (can you guess that i like video games), here are the ones that influenced me the most:
|
||||||
|
- all 07th expansion works (most notably when they cry)
|
||||||
|
- all Project Moon works
|
||||||
|
- outer wilds
|
||||||
|
- splatoon
|
||||||
|
- steins;gate
|
||||||
|
- kino no tabi
|
||||||
|
- serial experiments lain
|
||||||
|
- LISA the Painful / Joyful (and some of it's fangames)
|
||||||
|
- VA-11 Hall-A
|
||||||
|
- SCP antimemetic division tales (by qntm)
|
||||||
|
- pokemon (unova my beloved)
|
||||||
|
|
||||||
|
honorable mentions (i want more people to see these cause i love them too much not to list):
|
||||||
|
- mr. rainer's solve-it service
|
||||||
|
- [fireball](https://en.wikipedia.org/wiki/Fireball_(TV_series))
|
||||||
|
- SANABI
|
||||||
|
- opus: echo of starsong
|
||||||
|
- the red strings club
|
||||||
|
- q.u.q.
|
||||||
|
- bug fables
|
||||||
|
- haibane renmei
|
||||||
|
- project wingman
|
||||||
|
- gosick
|
||||||
|
- tomorrow won't come for those without ██████
|
||||||
|
|
||||||
|
you can also look at [my steam profile](https://steamdb.info/calculator/76561198106829949/?all_games) for games i played, although not everything is there.
|
||||||
|
|
||||||
|
what else, i like robots a lot, maybe too much. want to become one.
|
||||||
|
i want to learn japanese (i'm failing hard).
|
||||||
|
i like to listen to music (shocker), check my [youtube music profile](https://music.youtube.com/channel/UCE_r0yMNQhOWituywmOJgzA?si=7DTUV9PFqcKxJyl1) i guess to see a bit of what i listen to.
|
||||||
|
|
||||||
|
idk if you wanna know more just hit me up and i'll gladly nerd out, or if you want to play anything i may be open to it...
|
27
src/routes/about/_layout.svelte
Normal file
27
src/routes/about/_layout.svelte
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<script lang="ts">
|
||||||
|
import Window from '../../components/window.svelte';
|
||||||
|
import '../../styles/app.css';
|
||||||
|
|
||||||
|
export let title;
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<article class="flex flex-wrap md:flex-nowrap gap-4 h-entry">
|
||||||
|
<Window {title}>
|
||||||
|
<div class="prose prose-ralsei leading-6 prose-ul:leading-5 max-w-[80ch] e-content">
|
||||||
|
<slot />
|
||||||
|
</div>
|
||||||
|
</Window>
|
||||||
|
<Window title="itches" sticky>
|
||||||
|
<div class="prose prose-ralsei pr-2 leading-6">
|
||||||
|
<ul>
|
||||||
|
<li>website / social presence todos on <a href="https://indieweb.org/User:Gaze.systems">the indieweb wiki</a></li>
|
||||||
|
<li>want to start reading chaos;head and chaos;child</li>
|
||||||
|
<li>start playing killer7 and the silver case etc.</li>
|
||||||
|
<li>participate in yet another game jam</li>
|
||||||
|
<li>stream game dev stuff (...if i can stop being anxiety x1000)</li>
|
||||||
|
<li>mess around with kinect devkit, try to reimplement skeleton estimation?</li>
|
||||||
|
<li>fly more in VTOL VR with people</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</Window>
|
||||||
|
</article>
|
@ -44,6 +44,7 @@ const config = {
|
|||||||
backticks: false,
|
backticks: false,
|
||||||
},
|
},
|
||||||
layout: {
|
layout: {
|
||||||
|
about: './src/routes/about/_layout.svelte',
|
||||||
blogpost: './src/routes/entries/_layout.svelte',
|
blogpost: './src/routes/entries/_layout.svelte',
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
|
Loading…
Reference in New Issue
Block a user