Wobbly-Website/index.php

139 lines
5.2 KiB
PHP
Raw Normal View History

<?php
header("Content-type: text/html");
include "file_viewer.php";
?>
2023-07-30 18:32:42 +02:00
<!DOCTYPE html>
<html lang="de"><meta charset="utf-8">
<head>
<title>Wobbly Website</title>
2024-10-21 13:22:12 +02:00
2023-07-30 18:32:42 +02:00
<link rel="icon" sizes="192x192" href="profilbild-workbench.png">
2024-10-05 16:39:36 +02:00
<link rel="stylesheet" href="styles.php">
<link rel="stylesheet" href="file_viewer_styles.css">
<?php
echo " <style>
/* This CSS code is php generated. Hardcoding it would be a programming war crime. :3 */\n\n";
echo generateCSSCode(completeScanDir("files"));
echo " </style>";
?>
2023-07-30 18:32:42 +02:00
<script type="text/javascript" src="script.js"></script>
</head>
2024-10-25 18:03:01 +02:00
<body>
2023-07-30 18:32:42 +02:00
<div class="background" id="background">
2023-07-30 18:32:42 +02:00
<div class="topnav-placeholder"></div>
2024-10-25 18:03:01 +02:00
<p class="big-text fat-text">The Wobbler's Website</p>
2024-10-21 13:22:12 +02:00
<div class="glass inset">
<p class="normal-text">
Hi, I am The Wobbler, a teenager from germany.
2024-10-21 13:22:12 +02:00
<br>
I can program a little bit, preferably with Python.
2024-10-21 13:22:12 +02:00
<br>
But I also have some experience with the languages Kotlin, JavaScript, PHP, Lua, Bash, GDScript and C.
2024-10-21 13:22:12 +02:00
<br>
I do also use the design-languages HTML and CSS sometimes, although CSS usually drives me crazy.
2024-10-21 13:22:12 +02:00
<br>
However, I bypass JavaScript, even if i have to use CSS instead.
2024-10-21 13:22:12 +02:00
<br>
BTW this Website only consists of a single line of JavaScript, the rest is HTML, CSS and PHP.
2025-03-02 18:27:32 +01:00
<br>
I don't use Arch BTW, I use Linux Mint.
<br>
In the summer, you can always find me on the <a href="https://fedi.camp" target="_blank">Fedicamp</a>.
<br>
I am a big fan of decentralized networks and can't wait for <a href="https://forgejo.org" target="_blank">Forgejo</a>
to become capable of federation.
2024-10-21 13:22:12 +02:00
</p>
</div>
<div class="glass inset" id="projects">
<p class="fat-text heading-text">Pojects</p>
2025-03-02 18:07:42 +01:00
<a href="https://teapot.informationsanarchistik.de/Wobbl/Wobuzz" class="button inout" target="_blank">Wobuzz</a>
<p class="tiny-text">A simple audio player written in Python and PyQt.</p>
2025-03-02 18:07:42 +01:00
<hr class="inset">
<a href="https://teapot.informationsanarchistik.de/Wobbl/Bread_Editor" class="button inout" target="_blank">Bread Editor</a>
<p class="tiny-text">A bit-editor, made with PyQt.</p>
<hr class="inset">
2025-03-02 18:07:42 +01:00
<a href="https://teapot.informationsanarchistik.de/Wobbl/wobbl_sand" class="button inout" target="_blank">Wobbl Sand</a>
<p class="tiny-text">A simple falling sand simulation written in Python.</p>
<hr class="inset">
2025-03-02 18:07:42 +01:00
<a href="https://teapot.informationsanarchistik.de/Wobbl/Screensaver" class="button inout" target="_blank">Wobbl's Screensaver</a>
<p class="tiny-text">
A simple program that lets svg images from a specific folder hover through the window screensaver-like.
</p>
<hr class="inset">
2025-03-02 18:07:42 +01:00
<a href="https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools" class="button inout" target="_blank">Wobbl Tools</a>
<p class="tiny-text">A Python module i need for some of my projects.</p>
</div>
2024-10-22 15:37:28 +02:00
<div class="glass inset">
<p class="heading-text fat-text">If you want to text me, game with me, help me or contribute to one of my Projects:</p>
<a href="javascript:copyText('emil@i21k.de')" class="button inout" title="The button copies the address.">E-Mail</a>
<br>
2024-10-23 16:04:13 +02:00
<a href="javascript:copyText('eknr1@jabber.ccc.de')" class="button inout" title="The button copies the address.">XMPP</a>
<br>
<a href="https://teapot.informationsanarchistik.de/Wobbl" target="_blank" class="button inout">Git (Forgejo)</a>
<br>
<a href="https://gitlab.com/EKNr1" target="_blank" class="button inout">GitLab</a>
<p class="tiny-text inline-text">
(I am no longer active on GitLab because we have our own
<a href="https://teapot.informationsanarchistik.de/" target="_blank">Forgejo-Instance</a>
and Forgejo will be capable of federation soon.)
2024-10-22 15:37:28 +02:00
</p>
<br>
<a href="https://dizl.de/@eknr1" target="_blank" class="button inout">Mastodon</a>
<br>
<a href="https://peertube.art3mis.de/a/eknr01/" target="_blank" class="button inout">Peertube</a>
<br>
<a href="https://discord.com/invite/8htpyBfdan" target="_blank" class="button inout">Discord</a>
<br>
<br>
2024-10-22 15:37:28 +02:00
</div>
<div class="glass inset">
<p>
Here I have a little data-junkyard of scrap I had to share with someone and therefore put it here.,
<br>
Maybe you can find something usable here.
</p>
<div class="glass inset">
<?= generateSubmenusHTML(completeScanDir("files"), " ") ?>
2024-12-01 19:56:07 +01:00
<br>
</div>
</div>
2023-07-30 18:32:42 +02:00
</div>
<div class="topnav-companion"></div>
<div class="topnav">
2024-10-21 13:22:12 +02:00
<a class="topnav-active" href="">Start</a>
<a class="topnav-inactive" href="#projects">Projects</a>
<a class="topnav-inactive align-right" href="de.php">German</a>
<a class="topnav-active align-right" href="">English</a>
<a class="topnav-text align-right">Languages:</a>
</div>
2025-03-03 18:54:40 +01:00
<p class="hover-wobble button inout">Let it wobble!</p>
2023-07-30 18:32:42 +02:00
</body>
</html>