···11+++
22title = "about me"
33date = "2024-08-14"
44-layout = "blogpost"
44+layout = "about"
55+++
6677-idk im too lazy to write about myself, bother me if you really want me to
77+hello, i'm dusk!!
88+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.
99+software is my means to that end! (it's what i'm most proficient with lol)
1010+1111+i'm also trying to learn:
1212+- how to draw (for concept art mainly)
1313+- modeling / texturing / sculpting (these i have more experience with!)
1414+- playing (acoustic, later electric) guitar (have to practice actually...)
81599-<p class="text-xs italic">(i will do this later)</p>1616+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.
1717+which is, well, kinda hard it turns out. so that's gonna take a long time probably (lmao)...
1818+you can see some of the stuff i deem "okay" on my [itch.io profile](https://yusdacra.itch.io/)
1919+(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)
2020+2121+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)
2222+2323+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:
2424+- all 07th expansion works (most notably when they cry)
2525+- all Project Moon works
2626+- outer wilds
2727+- splatoon
2828+- steins;gate
2929+- kino no tabi
3030+- serial experiments lain
3131+- LISA the Painful / Joyful (and some of it's fangames)
3232+- VA-11 Hall-A
3333+- SCP antimemetic division tales (by qntm)
3434+- pokemon (unova my beloved)
3535+3636+honorable mentions (i want more people to see these cause i love them too much not to list):
3737+- mr. rainer's solve-it service
3838+- [fireball](https://en.wikipedia.org/wiki/Fireball_(TV_series))
3939+- SANABI
4040+- opus: echo of starsong
4141+- the red strings club
4242+- q.u.q.
4343+- bug fables
4444+- haibane renmei
4545+- project wingman
4646+- gosick
4747+- tomorrow won't come for those without ██████
4848+4949+you can also look at [my steam profile](https://steamdb.info/calculator/76561198106829949/?all_games) for games i played, although not everything is there.
5050+5151+what else, i like robots a lot, maybe too much. want to become one.
5252+i want to learn japanese (i'm failing hard).
5353+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.
5454+5555+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...
+26
src/routes/about/_layout.svelte
···11+<script lang="ts">
22+ import Window from '../../components/window.svelte';
33+ import '../../styles/app.css';
44+55+ export let title;
66+</script>
77+88+<article class="flex flex-wrap md:flex-nowrap gap-4 h-entry">
99+ <Window {title}>
1010+ <div class="prose prose-ralsei leading-6 prose-ul:leading-none max-w-[80ch] e-content">
1111+ <slot />
1212+ </div>
1313+ </Window>
1414+ <Window title="itches" sticky>
1515+ <div class="prose prose-ralsei pr-2 leading-6">
1616+ <ul>
1717+ <li>website / social presence todos on <a href="https://indieweb.org/User:Gaze.systems">the indieweb wiki</a></li>
1818+ <li>want to start reading chaos;head and chaos;child</li>
1919+ <li>start playing killer7 and the silver case etc.</li>
2020+ <li>participate in yet another game jam</li>
2121+ <li>stream game dev stuff (...if i can stop being anxiety x1000)</li>
2222+ <li>fly more in VTOL VR with people</li>
2323+ </ul>
2424+ </div>
2525+ </Window>
2626+</article>