Projects | denizk0461

Welcome to my projects page! Here I show off all the things I have done. Projects are ordered by general topic, sorted reverse-chronologically, and have a status marker assigned that shows whether they are active or not. have fun browsing~!

The projects page also has a sister page where I document some of my smaller projects, if that interests you.

Games

{#each games as project} {@render projectSummary({ project: project })} {/each}

Hardware

{#each hardware as project} {@render projectSummary({ project: project })} {/each}

Apps

{#each apps as project} {@render projectSummary({ project: project })} {/each}

Music

I made a lot of music in the past; over a hundred songs in total. There's at least a small story behind pretty much every one of them here, and I am chronicling my memories on a subpage.

You can find this here, if you're interested.

{#each music as project} {@render projectSummary({ project: project })} {/each}
{#snippet projectSummary({ project }: { project: Project; })}

{project.title}

{#if project.subtitle}

[ {project.subtitle} ]

{/if} {#if project.banner}
Overview banner for {project.title}
{/if}

{#if project.date} {project.date} | {/if} {getStatusText(project)}

{#if project.icon} Icon for {project.title} {/if} {#each project.paragraphs as paragraph}

{@html paragraph}

{/each} {/snippet}