updated some texts

This commit is contained in:
2025-12-20 14:43:25 +00:00
parent dc0d806115
commit b28885df6b
3 changed files with 8 additions and 57 deletions

View File

@@ -83,9 +83,9 @@
<h3>about ↬<img id="me-img" class="me-img" title="hi there" src={meImg} alt="Deniz, the website developer, small and pixelated">↫ me </h3> <h3>about ↬<img id="me-img" class="me-img" title="hi there" src={meImg} alt="Deniz, the website developer, small and pixelated">↫ me </h3>
<p>Hi! I'm Deniz. I'm a programmer, sometimes a music producer, and rarely a hard-working student in Northern Germany. Welcome to my webpage!</p> <p>Hi! I'm Deniz. I'm a programmer, sometimes a music producer, and student from Northern Germany. Welcome to my webpage!</p>
<p>Here you can find information on things I like sharing. Check out my projects, especially the devlog of the game I'm working on!</p> <p>I share my projects on this website. Check them out the devlog of the game I'm working on especially!</p>
<h3>where to find me</h3> <h3>where to find me</h3>

View File

@@ -25,6 +25,10 @@
text: "underscores <i>fishmonger</i>", text: "underscores <i>fishmonger</i>",
link: "https://underscores.bandcamp.com/album/fishmonger", link: "https://underscores.bandcamp.com/album/fishmonger",
}, },
{
text: "venturing <i>Ghostholding</i>",
link: "https://janeremover.bandcamp.com/album/ghostholding",
},
]; ];
</script> </script>
@@ -56,7 +60,7 @@
<ul class="styled-list"> <ul class="styled-list">
<li>Game development using Godot</li> <li>Game development using Godot</li>
<li>3D modelling in Blender</li> <li>3D modelling in Blender</li>
<li>CAD in Fusion 360 for 3D printing</li> <li>CAD in Fusion 360 for 3D printing (and starting to learn FreeCAD)</li>
<li>Android app development</li> <li>Android app development</li>
<li>A little bit of web development; this website is made using SvelteKit!</li> <li>A little bit of web development; this website is made using SvelteKit!</li>
</ul> </ul>
@@ -106,6 +110,6 @@
<p>I'm also not a social media person. I've tried for years to use it so I could connect with my friends, who all used it extensively, but I was never able to stick with it. I had three Instagram accounts, a Twitter account, some Reddit accounts, and even two Facebook accounts in the past, but they are all gone now. Currently, I do have a <a href="https://bsky.app/denizk0461.dev">Bluesky</a> account, but it's not seen much use either. In fact, in recent times, I've tried getting away from social media and phone overuse to waste less time on slop posted on social media and have more time free to pursue hobbies and other things I enjoy doing.</p> <p>I'm also not a social media person. I've tried for years to use it so I could connect with my friends, who all used it extensively, but I was never able to stick with it. I had three Instagram accounts, a Twitter account, some Reddit accounts, and even two Facebook accounts in the past, but they are all gone now. Currently, I do have a <a href="https://bsky.app/denizk0461.dev">Bluesky</a> account, but it's not seen much use either. In fact, in recent times, I've tried getting away from social media and phone overuse to waste less time on slop posted on social media and have more time free to pursue hobbies and other things I enjoy doing.</p>
<p><i>Last updated: 2025-09-17</i></p> <p><i>Last updated: 2025-12-20</i></p>
</div> </div>
</ContentSidebar> </ContentSidebar>

View File

@@ -1,53 +0,0 @@
<script lang="ts">
import BannerTitleAlt from "$lib/banner-title-alt.svelte";
import Content from "$lib/content.svelte";
let text = $state("");
let secret = $state("");
let sendUpdate = function() {
var timestamp = Date.now();
console.log(text);
console.log(timestamp);
// var xhr = new XMLHttpRequest();
// xhr.open("POST", "https://server.denizk0461.dev:2761/newEntry", true);
// xhr.setRequestHeader('Content-Type', 'application/json');
// xhr.send(JSON.stringify({
// Timestamp: timestamp,
// Text: text,
// Secret: secret,
// }));
fetch(
"https://server.denizk0461.dev:2761/newEntry",
{
method: "POST",
headers: {
'Content-Type': 'application/json',
"Accept": "application/json",
},
body: JSON.stringify({
Timestamp: timestamp,
Text: text,
Secret: secret,
})
}
)
};
</script>
<svelte:head>
<title>Devlog Admin Page | denizk0461</title>
</svelte:head>
<BannerTitleAlt
title="Devlog Admin Page"
banner="/common/me/a.webp"
subtitle="plant mothers only!"
/>
<Content>
<input bind:value="{text}">
<input type="password" bind:value="{secret}">
<button onclick={sendUpdate}>asdf</button>
</Content>