data endpoint for entity 90008 (aka. a website)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: write about page

dusk 4b2676cf 61c7d27e

+76 -3
+49 -3
src/routes/about/+page.md
··· 1 1 +++ 2 2 title = "about me" 3 3 date = "2024-08-14" 4 - layout = "blogpost" 4 + layout = "about" 5 5 +++ 6 6 7 - idk im too lazy to write about myself, bother me if you really want me to 7 + hello, i'm dusk!! 8 + 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. 9 + software is my means to that end! (it's what i'm most proficient with lol) 10 + 11 + i'm also trying to learn: 12 + - how to draw (for concept art mainly) 13 + - modeling / texturing / sculpting (these i have more experience with!) 14 + - playing (acoustic, later electric) guitar (have to practice actually...) 8 15 9 - <p class="text-xs italic">(i will do this later)</p> 16 + 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. 17 + which is, well, kinda hard it turns out. so that's gonna take a long time probably (lmao)... 18 + you can see some of the stuff i deem "okay" on my [itch.io profile](https://yusdacra.itch.io/) 19 + (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) 20 + 21 + 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) 22 + 23 + 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: 24 + - all 07th expansion works (most notably when they cry) 25 + - all Project Moon works 26 + - outer wilds 27 + - splatoon 28 + - steins;gate 29 + - kino no tabi 30 + - serial experiments lain 31 + - LISA the Painful / Joyful (and some of it's fangames) 32 + - VA-11 Hall-A 33 + - SCP antimemetic division tales (by qntm) 34 + - pokemon (unova my beloved) 35 + 36 + honorable mentions (i want more people to see these cause i love them too much not to list): 37 + - mr. rainer's solve-it service 38 + - [fireball](https://en.wikipedia.org/wiki/Fireball_(TV_series)) 39 + - SANABI 40 + - opus: echo of starsong 41 + - the red strings club 42 + - q.u.q. 43 + - bug fables 44 + - haibane renmei 45 + - project wingman 46 + - gosick 47 + - tomorrow won't come for those without ██████ 48 + 49 + you can also look at [my steam profile](https://steamdb.info/calculator/76561198106829949/?all_games) for games i played, although not everything is there. 50 + 51 + what else, i like robots a lot, maybe too much. want to become one. 52 + i want to learn japanese (i'm failing hard). 53 + 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. 54 + 55 + 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
··· 1 + <script lang="ts"> 2 + import Window from '../../components/window.svelte'; 3 + import '../../styles/app.css'; 4 + 5 + export let title; 6 + </script> 7 + 8 + <article class="flex flex-wrap md:flex-nowrap gap-4 h-entry"> 9 + <Window {title}> 10 + <div class="prose prose-ralsei leading-6 prose-ul:leading-none max-w-[80ch] e-content"> 11 + <slot /> 12 + </div> 13 + </Window> 14 + <Window title="itches" sticky> 15 + <div class="prose prose-ralsei pr-2 leading-6"> 16 + <ul> 17 + <li>website / social presence todos on <a href="https://indieweb.org/User:Gaze.systems">the indieweb wiki</a></li> 18 + <li>want to start reading chaos;head and chaos;child</li> 19 + <li>start playing killer7 and the silver case etc.</li> 20 + <li>participate in yet another game jam</li> 21 + <li>stream game dev stuff (...if i can stop being anxiety x1000)</li> 22 + <li>fly more in VTOL VR with people</li> 23 + </ul> 24 + </div> 25 + </Window> 26 + </article>
+1
svelte.config.js
··· 44 44 backticks: false, 45 45 }, 46 46 layout: { 47 + about: './src/routes/about/_layout.svelte', 47 48 blogpost: './src/routes/entries/_layout.svelte', 48 49 }, 49 50 }),