This commit is contained in:
nelle 2024-06-05 14:44:02 -06:00
commit 5003dd1ed2
123 changed files with 4585 additions and 0 deletions

0
.gitignore vendored Executable file
View file

26
.hidden/mentalnotes.html Executable file
View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="og:site_name" content="Limepot">
<meta name="og:title" content="LimePot">
<meta name="og:description" content="personal site">
<meta name="og:type" content="website">
<meta name="og:image" content="../assets/branding/obo-icon.png">
<meta name="theme-color" content="#19fcf1">
<link rel = "icon" href = "../assets/branding/obo-icon.png">
<title>vented voided</title>
<link rel="stylesheet" href="../mybulma/css/mystyles.css">
</head>
<body>
<section class="section">
<div class="container">
wish the peanut gallery in this head would just shut the fuck up sometimes. 7'23'23
<br>
this isnt fair...
</div>
</section>
</body>
</html>

1
.htaccess Executable file
View file

@ -0,0 +1 @@
ErrorDocument 404 /404.html

39
404.html Executable file
View file

@ -0,0 +1,39 @@
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8" />
<title>
Page Not Found!
</title>
<!-- add icon link -->
<link rel = "icon" href = "assets/branding/obo-icon.png"
type = "image/x-icon">
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
body{
width: 100%;
height: 100vh;
background-image: url('assets/404/crt.gif');
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
marquee{
height: 100vh;
}
</style></head>
<body>
<marquee behavior="alternate" scrollamount="30">
<marquee behavior="alternate" scrollamount="30" direction="down">
<img src="assets/404/404.png">
</marquee>
</marquee>
</body>
</html>

View file

@ -0,0 +1,37 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>LimePot's Portfolio</title>
<link rel="stylesheet" href="style.css">
</head>
<body class="darkmode">
<header>
<h1>LimePot's Portfolio</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/about">About</a></li>
<li><a href="/portfolio">Portfolio</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</nav>
<button id="toggle-dark-light-mode">Toggle Dark/Light Mode</button>
</header>
<main>
<h2>Welcome to my Portfolio!</h2>
<p>Here you can find information about me and my projects.</p>
<p>Click on the links in the navigation bar above to learn more.</p>
</main>
<footer>
<p>Copyright 2022 LimePot</p>
</footer>
<script>
const toggleButton = document.getElementById('toggle-dark-light-mode');
toggleButton.addEventListener('click', () => {
document.body.classList.toggle('darkmode');
document.body.classList.toggle('lightmode');
});
</script>
</body>
</html>

70
EXPERIMENTS/AI/index.html Executable file
View file

@ -0,0 +1,70 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>LimePot's Website</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<button id="toggle-dark-light-mode">Toggle Dark/Light Mode</button>
<header>
<h1>Welcome to LimePot's Website!</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About</h2>
<p>Hi, my name is LimePot and I am a developer and gamer. I enjoy creating websites, mods, and games in my free time.</p>
<p>I have been interested in technology and programming since I was a kid, and I have always loved the idea of being able to create and build things using code. I have spent many hours learning and experimenting with different programming languages and technologies, and I am always eager to learn more and improve my skills.</p>
<p>In my free time, I enjoy playing games, especially Minecraft and other sandbox games. I also enjoy creating mods and other custom content for these games, as it allows me to express my creativity and share my creations with others.</p>
</section>
<section id="projects">
<h2>Projects</h2>
<ul>
<li>Minecraft Mod: SpaceMod</li>
<li>Website: limepot.xyz</li>
<li>Game: Galactic Adventures</li>
</ul>
<p>Click on the links above to learn more about my projects or check out my <a href="https://github.com/limepotato">GitHub profile</a> for more information and updates.</p>
</section>
<section id="contact">
<h2>Contact</h2>
<p>You can contact me through email at <a href="mailto:nelle@limepot.xyz">nelle@limepot.xyz</a> or by filling out the form below:</p>
<form action="/contact" method="post">
<label for="name">Name:</label><br>
<input type="text" id="name" name="name"><br>
<label for="email">Email:</label><br>
<input type="email" id="email" name="email"><br>
<label for="message">Message:</label><br>
<textarea id="message" name="message"></textarea><br>
<input type="submit" value="Submit">
</form>
<p>You can also find me on social media at the following links:</p>
<ul>
<li><a href="https://twitter.com/limepot">Twitter</a></li>
</ul>
</section>
</main>
<footer>
<p>Copyright 2022 LimePot</p>
</footer>
<script>
const toggleButton = document.getElementById('toggle-dark-light-mode');
toggleButton.addEventListener('click', () => {
document.body.classList.toggle('darkmode');
document.body.classList.toggle('lightmode');
});
</script>
</body>
</html>

68
EXPERIMENTS/AI/style.css Executable file
View file

@ -0,0 +1,68 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
header h1 {
margin: 0;
}
header nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
header nav li {
margin-left: 20px;
}
header nav a {
color: #fff;
text-decoration: none;
}
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
}
header h1 {
margin: 0;
}
header nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
header nav li {
margin-left: 20px;
}
header nav a {
color: #fff;
text-decoration: none;
}

160
about.html Executable file
View file

@ -0,0 +1,160 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="og:description" content="personal site">
<meta name="og:type" content="website">
<meta name="og:image" content="assets/branding/obo-icon.png">
<meta name="og:site_name" content="Limepot">
<meta name="og:title" content="LimePot">
<meta name="theme-color" content="#19fcf1">
<link rel = "icon" href = "assets/branding/obo-icon.png">
<title>LimePot - About</title>
<link rel="stylesheet" href="mybulma/css/mystyles.css">
<style>
body{
background: repeat url("assets/background.gif");
}
</style>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://limepot.xyz/">
<img src="assets/branding/obo-icon.png" style="border-radius: 20%">
LimePot
</a>
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu" id="navMenu">
<div class="navbar-start">
<a class="navbar-item" href="https://limepot.xyz/about.html">
About Me
</a>
<a class="navbar-item" href="https://limepot.xyz/projects.html">
Projects
</a>
</div>
</div>
</div>
<div class="navbar-end">
<a class="navbar-item" href="https://ko-fi.com/limepot">
<img src="assets/other-branding/ko-fi-button-red.png">
</a>
</div>
</div>
</div>
</div>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
<script>document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});</script>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
</nav>
<section class="section">
<div class="container">
<div class="content">
<div class="wrapper">
</div>
<p>Howdy Traveller!</p>
<br>
<p>Privacy Activist, Public Domain (<a href="https://unlicense.org"><u>The Unlicense</u></a>) Believer, and FOSS Lover. Massive into all things archival.
Love long talks about theoretical physics, astronomy, and possibilities of the impossible.</p>
<br>
<p>do a lot of tinkering with various things, hardware and software. Currently messing around with web-development, Minecraft mods, 3D Printing, Linux, and Game Design. Checkout my <a href="https://limepot.xyz/projects.html"><u>Projects</u></a> to see what I'm currently working on.</p>
<p>Also dabble in photography.</p>
<br>
<p>Don't ask about time travel.</p>
<br><br>
<h2>Where to find/contact:</h2>
<br>
<a href = "mailto: bm01@limepot.xyz"><u>Email</u></a>
<br>
<a href="https://ouroboros.gay/@limepot"><u>Fediverse</u></a><a href="/rss/fedirss.html"> <image src="assets/rss.png" width="10" height="10"></a>
<br>
<a href="https://odysee.com/@LimePot:4"><u>Odysee</u></a><a href="/rss/odyseerss.html"> <image src="assets/rss.png" width="10" height="10"></a>
<br>
<a href="https://steamcommunity.com/id/limepot/"><u>Steam</u></a>
<br>
<!--<a href="https://limepot.xyz/redir/discord.htmll"><u>Discord Guild</u></a>-->
<br>
<a href="https://github.com/LimePotato/"><u>Github</u></a>
<!--
<br>
<a href="direct.limepot.xyz:3000">Gitea</a>
commit test message, delete when you see this
-->
<br>
<a href="https://codeberg.org/LimePotato"><u>Codeberg</u></a><a href="/rss/codebergrss.html"> <image src="assets/rss.png" width="10" height="10"></a>
<br>
<a href="https://modrinth.com/user/limepotato"><u>Modrinth</u></a>
<br><br><br>
</div>
</div>
<center>
<footer class="footer">
<div class="content has-text-centered">
<!--Badges-->
<a href="https://jointhefediverse.net/"><image src="assets/badges/FEDERATE-NOW.jpg"></a>
<a href="https://archlinux.org"><image src="assets/badges/archlinux.gif"></a>
<a href="https://gnu.org"><image src="assets/badges/gnu-linux.gif"></a>
<a href="https://fuckoffgoogle.de/"><image src="assets/badges/google_stand.gif"></a>
<a href="https://privacytests.org/"><image src="assets/badges/chrmevil.gif"></a>
<br>
<image src="assets/badges/browser.gif">
<a href="https://tuxcrafting.online/"><image src="assets/badges/tctek.gif"></a>
<iframe src="//incr.easrng.net/badge?key=limepot" style="background: url(//incr.easrng.net/bg.gif)" title="increment badge" width="88" height="31" frameborder="0"></iframe>
<a href="https://cybercriminal.eu"><image src ="../assets/badges/cbrmnl.png"></a>
<br>
<a href="https://limepot.xyz/"><image src="assets/badges/limepotxyz-badge00.gif"></a>
<!--Badges-->
<br><br>
<a href="https://bulma.io">
<img src="https://bulma.io/images/made-with-bulma--semiwhite.png" alt="Made with Bulma" width="128" height="24">
</a>
<a href="https://github.com/catppuccin/catppuccin">
<img src="https://img.shields.io/badge/Catppuccin-Mocha%20Mauve-%23cba6f7" width="185" height="20">
</a>
<a href="https://git.ouroboros.group/LimePotato/limepot-xyz">
<img src="https://img.shields.io/badge/Site-Source-lightgrey.svg" width="94.2" height="20">
</a>
<br>
<a href="https://up.ouroboros.group/status/obos"><u>Experiencing downtimes?</u></a>
<a href="snp.html"><u>Security, Privacy, & Credits</u></a>
</div>
</footer>
</center>
</section>
</body>
</html>

BIN
assets/404/404.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

BIN
assets/404/crt.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 KiB

BIN
assets/404/dvd.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

BIN
assets/background.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 216 KiB

BIN
assets/badges/FEDERATE-NOW.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
assets/badges/FEDIVERSE-NOW.jpg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

BIN
assets/badges/archlinux.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

BIN
assets/badges/browser.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 2 KiB

BIN
assets/badges/cbrmnl.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

BIN
assets/badges/chrmevil.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
assets/badges/gnu-linux.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 550 B

BIN
assets/badges/google_stand.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

BIN
assets/badges/piracy.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 910 B

BIN
assets/badges/tctek.gif Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 375 B

518
assets/branding/key/obo.svg Executable file

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 105 KiB

BIN
assets/branding/obo-icon.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 KiB

BIN
assets/branding/self-portrait.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
assets/fronting/screenshot1.jpeg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 111 KiB

36
assets/icons/Forgejo_logo.svg Executable file
View file

@ -0,0 +1,36 @@
<svg viewBox="0 0 212 212" xmlns="http://www.w3.org/2000/svg">
<metadata xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://creativecommons.org/ns#" xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:RDF>
<cc:Work rdf:about="https://codeberg.org/forgejo/meta/src/branch/readme/branding#logo">
<dc:title>Forgejo logo</dc:title>
<cc:creator rdf:resource="https://caesarschinas.com/"><cc:attributionName>Caesar Schinas</cc:attributionName></cc:creator>
<cc:license rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/"/>
</cc:Work>
</rdf:RDF>
</metadata>
<style type="text/css">
circle {
fill: none;
stroke: #000;
stroke-width: 15;
}
path {
fill: none;
stroke: #000;
stroke-width: 25;
}
.orange {
stroke:#ff6600;
}
.red {
stroke:#d40000;
}
</style>
<g transform="translate(6,6)">
<path d="M58 168 v-98 a50 50 0 0 1 50-50 h20" class="orange"/>
<path d="M58 168 v-30 a50 50 0 0 1 50-50 h20" class="red"/>
<circle cx="142" cy="20" r="18" class="orange"/>
<circle cx="142" cy="88" r="18" class="red"/>
<circle cx="58" cy="180" r="18" class="red"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 1.2 KiB

View file

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg xmlns="http://www.w3.org/2000/svg"
aria-label="Codeberg" role="img"
viewBox="0 0 512 512"><rect
width="512" height="512"
rx="15%"
fill="#ffffff"/><defs><linearGradient id="A" x1="259.804" x2="383.132" y1="161.4" y2="407.835" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#ffffff" stop-opacity="0"/><stop offset=".5" stop-color="#71c2ff"/><stop offset="1" stop-color="#39aaff"/></linearGradient></defs><path fill="url(#A)" d="M259.804 161.4c-.44 0-1.1 0-1.32.44l-.44 1.1L332.04 440.21a192.039 192.039 0 0 0 86.77-74.437L261.125 162.06a1.762 1.762 0 0 0-1.321-.661z" opacity=".5" paint-order="stroke markers fill"/><path fill="#2185d0" d="M255.3 71.8a192 192 0 0 0-162 294l160.1-207c.5-.6 1.5-1 2.6-1s2 .4 2.6 1l160 207a192 192 0 0 0 29.4-102c0-106-86-192-192-192a192 192 0 0 0-.7 0z" paint-order="stroke markers fill"/></svg>

After

Width:  |  Height:  |  Size: 962 B

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
<circle cx="24" cy="24" r="20" fill="#181717"/>
<path d="M6.81348 34.235C9.24811 38.3138 13.0939 41.4526 17.6772 42.9784C18.6779 43.1614 19.0425 42.5438 19.0425 42.0134C19.0425 41.7938 19.0388 41.4058 19.0339 40.8866C19.0282 40.2852 19.0208 39.5079 19.0155 38.6124C13.4524 39.8206 12.2787 35.931 12.2787 35.931C11.3689 33.6215 10.0576 33.0064 10.0576 33.0064C8.2417 31.7651 10.1951 31.7896 10.1951 31.7896C12.2025 31.9321 13.2584 33.8511 13.2584 33.8511C15.0424 36.9071 17.94 36.0243 19.0794 35.5135C19.2611 34.2207 19.7767 33.3391 20.3489 32.8394C15.908 32.3348 11.2387 30.6183 11.2387 22.9545C11.2387 20.7715 12.0184 18.9863 13.2977 17.5879C13.0914 17.082 12.4051 15.0488 13.4929 12.2949C13.4929 12.2949 15.1725 11.7571 18.9934 14.3453C20.5883 13.9021 22.2998 13.6798 24.0003 13.6725C25.6983 13.6798 27.4099 13.9021 29.0072 14.3453C32.8256 11.7571 34.5016 12.2949 34.5016 12.2949C35.5931 15.0488 34.9067 17.082 34.7005 17.5879C35.9823 18.9863 36.757 20.7715 36.757 22.9545C36.757 30.638 32.0804 32.3286 27.6247 32.8234C28.343 33.441 28.9827 34.6614 28.9827 36.5277C28.9827 38.3152 28.9717 39.8722 28.9644 40.9035C28.9608 41.4143 28.9581 41.7962 28.9581 42.0134C28.9581 42.5487 29.3178 43.1712 30.3332 42.976C33.9844 41.7572 37.1671 39.5154 39.5403 36.5903C35.8734 41.1108 30.274 44 23.9997 44C16.6943 44 10.3038 40.0832 6.81348 34.235Z" fill="white"/>
</svg>

After

Width:  |  Height:  |  Size: 1.5 KiB

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
<svg width="800px" height="800px" viewBox="0 0 1024 1024" xmlns="http://www.w3.org/2000/svg">
<circle cx="512" cy="512" r="512" style="fill:#e24329"/>
<path d="m766.7 552.8-28.6-88.2L681.3 290c-2.9-9-15.6-9-18.5 0L606 464.6H417.6l-56.8-174.5c-2.9-9-15.6-9-18.5-.1l-56.8 174.6-28.6 88.2c-2.6 8 .3 16.8 7.1 21.8l247.8 180 247.8-180c6.9-4.9 9.7-13.7 7.1-21.8" style="fill:#fff"/>
</svg>

After

Width:  |  Height:  |  Size: 508 B

1
assets/icons/logo-rss.svg Executable file
View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><path d="M108.56 342.78a60.34 60.34 0 1060.56 60.44 60.63 60.63 0 00-60.56-60.44z"/><path d="M48 186.67v86.55c52 0 101.94 15.39 138.67 52.11s52 86.56 52 138.67h86.66c0-151.56-125.66-277.33-277.33-277.33z"/><path d="M48 48v86.56c185.25 0 329.22 144.08 329.22 329.44H464C464 234.66 277.67 48 48 48z"/></svg>

After

Width:  |  Height:  |  Size: 383 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.6 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 19 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
assets/profileimages/luna.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 273 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 494 KiB

BIN
assets/profileimages/nelle.jpeg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

BIN
assets/profileimages/sonia.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 KiB

BIN
assets/rss.png Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

22
blograw/agoraphobia.html Executable file
View file

@ -0,0 +1,22 @@
I have trouble remembering my childhood; However, as far as I can remember easily, I've always been someone you'd consider "Socially Awkward" or "introverted". I wouldn't understand social gestures, speech patterns, habits, etc; And I wasnt fond of interacting with many people for this reason.
It wasn't that bad, just a shy kid, who also hated physical contact. As I grew older, for a multitude of reasons, I became increasingly depressed. Now, instead of being slightly anxious towards and misunderstanding of, social interaction, I simply didn't have the energy to try. So I distanced myself, further and further from people.
I'd get pulled in and push my way out of a few friend groups over the course of my school years, due to this and moving frequently, so I never really held close to many individuals. When I did it would work out sometimes, and that was nice; but sometimes, it'd end awfully for me, and make me want to further isolate.
During one such negative experience, it got really bad. I'd started to become extremely self-conciois of my every move, in fear of letting them down, I'd push people away who'd say negative things about my relationship with this individual. And my anxiety started to skyrocket at the same time as my depression.
Eventually we grew more and more distant, and as the pandemic came, I lost my job, my last place of socialization. I was now the most alone I'd ever been in my entire life. Pushed away or drifted from all the relationships I used to have.
I locked myself in my room, stopped going up for dinner with my family, only stayed awake between 5pm and 5am, to avoid human interaction. No money, no friends, no real hobbies (just watched YouTube, movies, shows, played a game or two, every day, have... Spiritual journeys.), I was reduced to nothing.
Ever since then, I have felt terrified, of human interaction. Going out in public is a panic attack and needs preparations for hours before hand, talking to people, including my own roomates and family, is extremely nerve racking, and mentally taxing. Going to work everyday (whenever I would even have a job), would be an hour long "You can do this. You can do this." Session.
No more eating in public, browsing the mall with friends, hanging out at a museum, going to the library, doing an interview, going for a walk, getting groceries, getting a haircut, going to any appointments, without absolute panic, paranoia, and anxiety.
Specifically the paranoia has worsened over these last few months, as my teeth have been broken by an accident, which doesn't need elaboration for this post besides "it chipped my teeth like a cartoon character getting a hammer to the teeth". I feel like eyes are more drawn to me when I speak or eat in public because of it and that's the exact opposite of what I want.
Now that I have a job, I can work on fixing my teeth and hopefully ease the paranoia, and go back to therapy to work on things... Hopefully.
But until then, I am living a painful hell, of agoraphobia.

135
blograw/blogtemp.html Executable file
View file

@ -0,0 +1,135 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="og:description" content="personal site">
<meta name="og:type" content="website">
<meta name="og:image" content="../assets/branding/obo-icon.png">
<meta name="og:site_name" content="Limepot">
<meta name="og:title" content="LimePot">
<meta name="theme-color" content="#19fcf1">
<link rel = "icon" href = "../assets/branding/obo-icon.png">
<title>LimePot - Projects</title>
<link rel="stylesheet" href="../mybulma/css/mystyles.css">
<style>
body{
background: repeat url("../assets/background.gif");
}
</style>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://limepot.xyz/">
<img src="../assets/branding/obo-icon.png" style="border-radius: 20%">
LimePot
</a>
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu" id="navMenu">
<div class="navbar-start">
<a class="navbar-item" href="https://limepot.xyz/about.html">
About Me
</a>
<a class="navbar-item" href="https://limepot.xyz/blog.html">
Blog
</a>
<a class="navbar-item" href="https://limepot.xyz/projects.html">
Projects
</a>
</div>
</div>
</div>
<div class="navbar-end">
<a class="navbar-item" href="https://ko-fi.com/limepot">
<img src="../assets/other-branding/ko-fi-button-red.png">
</a>
</div>
</div>
</div>
</div>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
<script>document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});</script>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
</nav>
<section class="section">
<div class="container">
<div class="content">
<md-block>
***lorem ipsum lorem ipsum lorem ipsum***
`to test the functionality`
***this is some sample markdown text***
`to test the functionality`
***this is some sample markdown text***
`to test the functionality`
***this is some sample markdown text***
`to test the functionality`
***this is some sample markdown text***
`to test the functionality`
</md-block>
</div>
</div>
<center>
<footer class="footer">
<div class="content has-text-centered">
<br><br>
<!--Badges-->
<br><br>
<a href="https://jointhefediverse.net/"><image src="../assets/badges/FEDERATE-NOW.jpg"></a>
<a href="https://archlinux.org"><image src="../assets/badges/archlinux.gif"></a>
<a href="https://gnu.org"><image src="../assets/badges/gnu-linux.gif"></a>
<a href="https://fuckoffgoogle.de/"><image src="../assets/badges/google_stand.gif"></a>
<a href="https://privacytests.org/"><image src="../assets/badges/chrmevil.gif"></a>
<br>
<image src="../assets/badges/browser.gif">
<a href="https://cybercriminal.eu/"><image src="../assets/badges/cbrmnl.png"></a>
<image src="assets/badges/piracy.gif">
<a href="https://tuxcrafting.online/"><image src="../assets/badges/tctek.gif"></a>
<iframe src="//incr.easrng.net/badge?key=changeme" style="background: url(//incr.easrng.net/bg.gif)" title="increment badge" width="88" height="31" frameborder="0"></iframe>
<!--Badges-->
<br><br>
<a href="https://bulma.io">
<img src="https://bulma.io/images/made-with-bulma--semiwhite.png" alt="Made with Bulma" width="128" height="24">
</a>
<a href="https://github.com/catppuccin/catppuccin">
<img src="https://img.shields.io/badge/Catppuccin-Mocha%20Mauve-%23cba6f7" width="185" height="20">
</a>
<a href="https://codeberg.org/LimePotato/limepot-xyz">
<img src="https://img.shields.io/badge/Site-Source-lightgrey.svg" width="94.2" height="20">
</a>
<br>
<a href="../snp.html"><u>Security, Privacy, & Credits</u></a>
</div>
</footer></center>
</section>
</body>
</html>

21
blograw/dental issues.html Executable file
View file

@ -0,0 +1,21 @@
I was hit by a car while riding my electric scooter on my way to work back in late October, this was 2 days before I was to leave my job and move further upstate (keep in mind I did not have a new job lined up, it was a time sensitive matter).
I landed head first, after flipping over my scooters handle bars, my top front teeth ended up going through the skin under my lower lip, and cracking/shattering a lot of my teeth.
I was in the middle of going through a few dental appointments to get rotten teeth cleaned, capped, filled, etc. (I had just gone through a massive depressive episode and did not take care of myself at all, it was awful, but was working on getting myself back on my feet with the help of therapy).
When I went to the dentist after recovering from my more harsh injuries enough to walk, they told me that the car insurance would not cover the work, until after the work was completed, and that I'd need to pay completely up front (about $4000 USD for the accident work, or what Geico considered part of the accident, which left out some teeth) and then after the procedure was over they pay me back. The teeth they had left out, instead of being filled, now needed entire root canals, and some other teeth had also worsened because of this.
In total, my dental fees now stood at $8000, half would be up front in one appointment, and the other half would be after my insurance covered the rest.
This was a massive issue for me, as I now did not have a job, and could not work due to my knee effusion which made it near impossible to walk, and my extremely sore body and healing wounds.
I would not be able to walk until January (even though it should've healed within weeks not months.) And now, even though I'm completely capable, and Qualified, I'm struggling to find a job, companies like *non-descript drink making join* and *non-descript movie theater concession stand* keep rejecting me with emails that read "Even though you are greatly qualified, and competitive, you do not meet our minimum qualifications." Keep in mind I was a fast food shift manager, a restaurant dishwasher, worked at one of these drink joints before, and a couple other jobs. I have the qualifications, but nobody will hire.
So now, I'm stuck, we can barely afford food after rent every month (pretty much all of my girlfriends money goes towards bills), and no matter how well I brush my teeth with my electric brush, I wash out my mouth, pick at my teeth with tooth picks, or how often. I'm stuck with extremely exposed nerves, all of which are rotting away because of this, no matter what I do.
And It's the most embarrassment I've ever felt, the social anxiety and body anxiety I feel over my teeth is so much worse than my dysphoria at this point, I wish dysphoria was all I had.
Anyways, if you want to help pay for some of our groceries, or better yet help me pay my medical bills, [I do have a Ko-Fi Link](https://ko-fi.com/limepot/goal?g=0). Anything helps, truly. If you can't/don't want to donate, I completely understand, but I am extremely grateful for you reading this far, as I didn't write this with the intent of asking for donations initially, just wanted to vent. :comfynight:

122
boilerplate.html Executable file
View file

@ -0,0 +1,122 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="og:site_name" content="Limepot">
<meta name="og:title" content="LimePot">
<meta name="og:description" content="personal site">
<meta name="og:type" content="website">
<meta name="og:image" content="assets/branding/obo-icon.png">
<meta name="theme-color" content="#19fcf1">
<link rel = "icon" href = "assets/branding/obo-icon.png">
<title>LimePot - Home</title>
<link rel="stylesheet" href="mybulma/css/mystyles.css">
<style>
body{
background: repeat url("assets/background.gif");
}
</style>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://limepot.xyz/">
<img src="assets/branding/obo-icon.png" style="border-radius: 20%">
LimePot
</a>
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu" id="navMenu">
<div class="navbar-start">
<a class="navbar-item" href="https://limepot.xyz/about.html">
About Me
</a>
<a class="navbar-item" href="https://limepot.xyz/projects.html">
Projects
</a>
</div>
</div>
</div>
<div class="navbar-end">
<a class="navbar-item" href="https://ko-fi.com/limepot">
<img src="assets/other-branding/ko-fi-button-red.png">
</a>
</div>
</div>
</div>
</div>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
<script>document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});</script>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
</nav>
<section class="section">
<div class="container">
<!--
you put content here!
-->
</div>
</div>
<center>
<footer class="footer">
<div class="content has-text-centered">
<!--Badges-->
<a href="https://jointhefediverse.net/"><image src="assets/badges/FEDERATE-NOW.jpg"></a>
<a href="https://archlinux.org"><image src="assets/badges/archlinux.gif"></a>
<a href="https://gnu.org"><image src="assets/badges/gnu-linux.gif"></a>
<a href="https://fuckoffgoogle.de/"><image src="assets/badges/google_stand.gif"></a>
<a href="https://privacytests.org/"><image src="assets/badges/chrmevil.gif"></a>
<br>
<image src="assets/badges/browser.gif">
<a href="https://tuxcrafting.online/"><image src="assets/badges/tctek.gif"></a>
<iframe src="//incr.easrng.net/badge?key=limepot" style="background: url(//incr.easrng.net/bg.gif)" title="increment badge" width="88" height="31" frameborder="0"></iframe>
<a href="https://cybercriminal.eu"><image src ="../assets/badges/cbrmnl.png"></a>
<br>
<a href="https://limepot.xyz/"><image src="assets/badges/limepotxyz-badge00.gif"></a>
<!--Badges-->
<br><br>
<a href="https://bulma.io">
<img src="https://bulma.io/images/made-with-bulma--semiwhite.png" alt="Made with Bulma" width="128" height="24">
</a>
<a href="https://github.com/catppuccin/catppuccin">
<img src="https://img.shields.io/badge/Catppuccin-Mocha%20Mauve-%23cba6f7" width="185" height="20">
</a>
<a href="https://git.ouroboros.group/LimePotato/limepot-xyz">
<img src="https://img.shields.io/badge/Site-Source-lightgrey.svg" width="94.2" height="20">
</a>
<br>
<a href="https://up.ouroboros.group/status/obos"><u>Experiencing downtimes?</u></a>
<a href="snp.html"><u>Security, Privacy, & Credits</u></a>
</div>
</footer></center>
</section>
<!--<script>if(navigator.getEnvironmentIntegrity!==undefined)document.querySelector('body').innerHTML='<h1>Your browser contains Google DRM</h1>"Web Environment Integrity" is a Google euphemism for a DRM that is designed to prevent ad-blocking. In support of an open web, this website does not function with this DRM. Please install a browser such as <a href="https://www.mozilla.org/en-US/firefox/new/">Firefox</a> that respects your freedom and supports ad blockers.';</script>-->
</body>
</html>

55
dl/Word-of-Miku.md Executable file
View file

@ -0,0 +1,55 @@
- Big Ass Tree mod
- trees have a chance of growing big and ass.
- Rainbows (square ones)
- Monster bait (like a piece of meat on a stick you could place that attracts mobs)
- Spears (2 sticks + point on a diagonal)
- Redstone Microchips ("...which can contain complex redstone circuits in just one block")
- Paint/Canvas's (Painting recipe is replaced with the canvas output, when you right-click holding the canvas, you can choose one of the vanilla paintings, or to paint your own.)
- Alarms Triggered by redstone
- Dynamic Weather
- Large elevators, ships, lifts
- goo slimeL/iquid slime that spawns slimes
- Hexagonal Alchemy
- Buddy List (can i make a p2p way? hmm)
- Beer and Alcohol/Breweries
- More Crafting areas, like cooking table or stove or something, But they might also have prerequisites for the area around them...., chimney, or something like that, The more have that fits the block, the better it acts or something like that.
- Pigmen villages
- Oil/Flammable Oil
- Chairs and Tables
- Diving Suit
- Lizards, snakes, iguanas
- Iron Spikes
- Whirlpools
- Redstsone dust on walls
- Redstone activated furnaces
- Cave ins, falling boulders and rocks
- Proper dungeon generation
- Musical Instruments
- Smoke Block: Would be generated by fire, be passable, cast shadows, float upwards and disappear after a short time.
- Flags
- Kobolds, goblins, goblin village
- Magic
- Carts and Caravans
- 4x4 Crafting table
- Rituals/Summoning (summoning creeper armies?)
- Cobblestone growing moss naturally
- Wet Sand (it stays, and eventually falls down)
- Ham Sandwiches
- Coins
- Sharks as passive mob
- Grates
- Sleeping recovers some health
- Cloud Interaction: clouds slowing things down, and being physically active with the player.
- Glowing blocks through magic???
- Throw-able Torches
- Furniture
- Lanterns/Oil lamps might need steel: An oil lamp feels like it should run out itself, but maybe you need to have found steel before crafting them.
- Tracks/Rails on stairs
- Chalk/Spray Paint for graffiti
- Nether Reactor Core
- Torches will go out after a while
- Craft-able watch
- Red Dragons (3rd/half the size of the ender dragon)
- Dispenser Minecart
- At sunset clouds turn pink
-

BIN
dl/create/3x3_quarry.nbt Executable file

Binary file not shown.

BIN
dl/limborscpck.zip Executable file

Binary file not shown.

6
dl/singularityupdate.txt Executable file
View file

@ -0,0 +1,6 @@
{
"modpack": {
"identifier": "Singularity",
"version": "Beta - Steampunk 1.0"
}
}

171
funny/badgedance.html Executable file
View file

@ -0,0 +1,171 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="og:site_name" content="Limepot">
<meta name="og:title" content="LimePot">
<meta name="og:description" content="personal site">
<meta name="og:type" content="website">
<meta name="og:image" content="../assets/branding/obo-icon.png">
<meta name="theme-color" content="#19fcf1">
<link rel = "icon" href = "../assets/branding/obo-icon.png">
<title>LimePot - Home</title>
<link rel="stylesheet" href="../mybulma/css/mystyles.css">
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background: repeat url("../assets/background.gif");
}
marquee{
height: 100vh;
}
</style>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://limepot.xyz/">
<img src="../assets/branding/obo-icon.png" style="border-radius: 20%">
LimePot
</a>
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu" id="navMenu">
<div class="navbar-start">
<a class="navbar-item" href="https://limepot.xyz/about.html">
About Me
</a>
<a class="navbar-item" href="https://limepot.xyz/blog.html">
Blog
</a>
<a class="navbar-item" href="https://limepot.xyz/projects.html">
Projects
</a>
</div>
</div>
</div>
<div class="navbar-end">
<a class="navbar-item" href="https://ko-fi.com/limepot">
<img src="../assets/other-branding/ko-fi-button-red.png">
</a>
</div>
</div>
</div>
</div>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
<script>document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});</script>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
</nav>
<section class="section">
<div class="container">
<!--
you put content here!
-->
</div>
</div>
<center>
<footer class="footer">
<div class="content has-text-centered">
<!--Badges-->
<marquee behavior="alternate" scrollamount="20">
<marquee behavior="alternate" scrollamount="90" direction="down">
<a href="https://jointhefediverse.net/"><image src="../assets/badges/FEDERATE-NOW.jpg"></a>
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="10">
<marquee behavior="alternate" scrollamount="50" direction="down">
<a href="https://archlinux.org"><image src="../assets/badges/archlinux.gif"></a>
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="30">
<marquee behavior="alternate" scrollamount="35" direction="down">
<a href="https://gnu.org"><image src="../assets/badges/gnu-linux.gif"></a>
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="40">
<marquee behavior="alternate" scrollamount="36" direction="down">
<a href="https://fuckoffgoogle.de/"><image src="../assets/badges/google_stand.gif"></a>
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="60">
<marquee behavior="alternate" scrollamount="10" direction="down">
<a href="https://privacytests.org/"><image src="../assets/badges/chrmevil.gif"></a>
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="23">
<marquee behavior="alternate" scrollamount="30" direction="down">
<image src="../assets/badges/browser.gif">
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="10">
<marquee behavior="alternate" scrollamount="732" direction="down">
<image src="../assets/badges/piracy.gif">
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="30">
<marquee behavior="alternate" scrollamount="30" direction="down">
<a href="https://tuxcrafting.online/"><image src="../assets/badges/tctek.gif"></a>
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="30">
<marquee behavior="alternate" scrollamount="30" direction="down">
<iframe src="//incr.easrng.net/badge?key=limepot" style="background: url(//incr.easrng.net/bg.gif)" title="increment badge" width="88" height="31" frameborder="0"></iframe>
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="10">
<marquee behavior="alternate" scrollamount="37" direction="down">
<a href="https://cybercriminal.eu"><image src ="../assets/badges/cbrmnl.png"></a>
</marquee>
</marquee>
<marquee behavior="alternate" scrollamount="13">
<marquee behavior="alternate" scrollamount="110" direction="down">
<a href="https://limepot.xyz/"><image src="../assets/badges/limepotxyz-badge00.gif"></a>
</marquee>
</marquee>
<!--Badges-->
<a href="https://bulma.io">
<img src="https://bulma.io/images/made-with-bulma--semiwhite.png" alt="Made with Bulma" width="128" height="24">
</a>
<a href="https://github.com/catppuccin/catppuccin">
<img src="https://img.shields.io/badge/Catppuccin-Mocha%20Mauve-%23cba6f7" width="185" height="20">
</a>
<a href="https://codeberg.org/LimePotato/limepot-xyz">
<img src="https://img.shields.io/badge/Site-Source-lightgrey.svg" width="94.2" height="20">
</a>
<br>
<a href="https://up.ouroboros.group/status/obos"><u>Experiencing downtimes?</u></a>
<a href="snp.html"><u>Security, Privacy, & Credits</u></a>
</div>
</footer></center>
</section>
</body>
</html>

BIN
funny/screenshot.jpeg Executable file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

38
funny/yaseen.html Executable file
View file

@ -0,0 +1,38 @@
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8" />
<title>
YASEEN!!!
</title>
<!-- add icon link -->
<link rel = "icon" href = "assets/branding/self-portrait.png"
type = "image/x-icon">
<style>
*{
margin: 0;
padding: 0;
box-sizing: border-box;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
body{
width: 100%;
height: 100vh;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
}
marquee{
height: 100vh;
}
</style></head>
<body>
<marquee behavior="alternate" scrollamount="30">
<marquee behavior="alternate" scrollamount="30" direction="down">
<p>Yaseen</p>
</marquee>
</marquee>
</body>
</html>

139
index.html Executable file
View file

@ -0,0 +1,139 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="og:site_name" content="Limepot">
<meta name="og:title" content="LimePot">
<meta name="og:description" content="personal site">
<meta name="og:type" content="website">
<meta name="og:image" content="assets/branding/obo-icon.png">
<meta name="theme-color" content="#19fcf1">
<link rel = "icon" href = "assets/branding/obo-icon.png">
<title>LimePot - Home</title>
<link rel="stylesheet" href="mybulma/css/mystyles.css">
<style>
body{
background: repeat url("assets/background.gif");
}
</style>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://limepot.xyz/">
<img src="assets/branding/obo-icon.png" style="border-radius: 20%">
LimePot
</a>
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu" id="navMenu">
<div class="navbar-start">
<a class="navbar-item" href="https://limepot.xyz/about.html">
About Me
</a>
<a class="navbar-item" href="https://limepot.xyz/projects.html">
Projects
</a>
</div>
</div>
</div>
<div class="navbar-end">
<a class="navbar-item" href="https://ko-fi.com/limepot">
<img src="assets/other-branding/ko-fi-button-red.png">
</a>
</div>
</div>
</div>
</div>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
<script>document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});</script>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
<!-- The above statement is a lie, i have not been looking into a mobile alternative i am lazy as fuck-->
</nav>
<section class="section">
<div class="container">
<center>
<h1 class="title">
<marquee Behavior=Alternate>Hello World</marquee>
</h1>
<div class="content">
<br>
<a href="https://limepot.xyz/404.html">0 Days since last incident.</a>
<br>
<p class="subtitle">"Forever - is composed of Nows</p>
<p class="subtitle">`Tis not a different time -</p>
<p class="subtitle">Except for Infiniteness -</p>
<p class="subtitle">And Latitude of Home -</p>
<br>
<p class="subtitle">From this - experienced Here -</p>
<p class="subtitle">Remove the Dates - to These -</p>
<p class="subtitle">Let Months dissolve in further Months -</p>
<p class="subtitle">And Years - exhale in Years .<a href=".hidden/mentalnotes.html">.</a>."</p>
<p class="subtitle"></p><strong>- Emily Dickinson</strong></p>
<br>
</div>
</div>
</center>
<center>
<footer class="footer">
<div class="content has-text-centered">
<!--Badges-->
<a href="https://jointhefediverse.net/"><image src="assets/badges/FEDERATE-NOW.jpg"></a>
<a href="https://archlinux.org"><image src="assets/badges/archlinux.gif"></a>
<a href="https://gnu.org"><image src="assets/badges/gnu-linux.gif"></a>
<a href="https://fuckoffgoogle.de/"><image src="assets/badges/google_stand.gif"></a>
<a href="https://privacytests.org/"><image src="assets/badges/chrmevil.gif"></a>
<br>
<image src="assets/badges/browser.gif">
<a href="https://tuxcrafting.online/"><image src="assets/badges/tctek.gif"></a>
<iframe src="//incr.easrng.net/badge?key=limepot" style="background: url(//incr.easrng.net/bg.gif)" title="increment badge" width="88" height="31" frameborder="0"></iframe>
<a href="https://cybercriminal.eu"><image src ="../assets/badges/cbrmnl.png"></a>
<br>
<a href="https://limepot.xyz/"><image src="assets/badges/limepotxyz-badge00.gif"></a>
<!--Badges-->
<br><br>
<a href="https://bulma.io">
<img src="https://bulma.io/images/made-with-bulma--semiwhite.png" alt="Made with Bulma" width="128" height="24">
</a>
<a href="https://github.com/catppuccin/catppuccin">
<img src="https://img.shields.io/badge/Catppuccin-Mocha%20Mauve-%23cba6f7" width="185" height="20">
</a>
<a href="https://git.ouroboros.group/LimePotato/limepot-xyz">
<img src="https://img.shields.io/badge/Site-Source-lightgrey.svg" width="94.2" height="20">
</a>
<br>
<a href="https://up.ouroboros.group/status/obos"><u>Experiencing downtimes?</u></a>
<a href="snp.html"><u>Security, Privacy, & Credits</u></a>
</div>
</footer></center>
</section>
</body>
</html>

171
projects.html Executable file
View file

@ -0,0 +1,171 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="og:description" content="personal site">
<meta name="og:type" content="website">
<meta name="og:image" content="assets/branding/obo-icon.png">
<meta name="og:site_name" content="Limepot">
<meta name="og:title" content="LimePot">
<meta name="theme-color" content="#19fcf1">
<link rel = "icon" href = "assets/branding/obo-icon.png">
<title>LimePot - Projects</title>
<link rel="stylesheet" href="mybulma/css/mystyles.css">
<style>
body{
background: repeat url("assets/background.gif");
}
</style>
</head>
<body>
<nav class="navbar" role="navigation" aria-label="main navigation">
<div class="navbar-brand">
<a class="navbar-item" href="https://limepot.xyz/">
<img src="assets/branding/obo-icon.png" style="border-radius: 20%">
LimePot
</a>
<a role="button" class="navbar-burger" data-target="navMenu" aria-label="menu" aria-expanded="false">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div class="navbar-menu" id="navMenu">
<div class="navbar-start">
<a class="navbar-item" href="https://limepot.xyz/about.html">
About Me
</a>
<a class="navbar-item" href="https://limepot.xyz/projects.html">
Projects
</a>
</div>
</div>
</div>
<div class="navbar-end">
<a class="navbar-item" href="https://ko-fi.com/limepot">
<img src="assets/other-branding/ko-fi-button-red.png">
</a>
</div>
</div>
</div>
</div>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
<script>document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});</script>
<!-- This JS is required for mobile users to navigate the site, working on a mobile alternative -->
</nav>
<section class="section">
<div class="container">
<div class="content">
<!--<h1 class="title">
<marquee behavior=scroll direction="left" scrollamount="15"><a href="https://up.ouroboros.gay"><u>My infra is undergoing maintenance, these links may die frequently</u></a></marquee>
</h1>-->
<!--GITEA-->
<h1 class="title"><image src="assets/icons/Forgejo_logo.svg" width="24" height="24"><a href="https://git.ouroboros.group/LimePotato/"><u>Forgejo</u></a><a href="./rss/forgejorss.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<!--CODEBERG-->
<h1 class="title"><image src="assets/icons/codeberg-svgrepo-com.svg" width="24" height="24"><a href="https://codeberg.org/LimePotato"><u>Codeberg</u></a><a href="./rss/codebergrss.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<!--MODRINTH-->
<h1 class="title"><image src="https://avatars.githubusercontent.com/u/67560307?s=200&v=4" width="24" height="24"><a href="https://modrinth.com/user/limepotato"><u>Modrinth</u></a></h1>
<br><br>
<!--NULLAFATI.XYZ-->
<h1 class="title"><image src="https://nullafati.xyz/assets/branding/obo-icon.png" width="24" height="24"><a href="https://nullafati.xyz"><u>The Library</u></a><a href="./rss/nullafatixyzrss.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1></h1>
<h3 class="subtitle">The Library is a self-hosted Archive.</h3>
<!--STELLARWORKS-->
<h1 class="title"><image src="https://git.ouroboros.group/LimePotato/Stellarworks/raw/branch/Latest/src/main/resources/assets/stellarworks/icon.png" width="24" height="24"><a href="https://modrinth.com/mod/stellarworks"><u>Stellarworks</u></a><a href="./rss/stellarworksrss.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<h3 class="subtitle">A Minecraft mod, built for Quilt Loader, Reviving the ideas of my favorite classic tech and space mods.</h3>
<!--ROSES MOD-->
<h1 class="title"><image src="https://git.ouroboros.group/LimePotato/roses-mod/raw/branch/Latest/src/main/resources/assets/roses_mod/icon.png" width="24" height="24"><a href="https://modrinth.com/mod/roses-quilt"><u>Roses</u></a><a href="./rss/roses-modrss.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<h3 class="subtitle">A Minecraft mod, built for Quilt Loader, bringing back the Roses and Cyan Roses of old.</h3>
<!--YUMMY! MOD-->
<h1 class="title"><image src="https://git.ouroboros.group/LimePotato/Yummy/raw/branch/1.20.1/src/main/resources/assets/yummy/icon.png" width="24" height="24"><!--<a href="https://modrinth.com/mod/yummy!">--><a href="https://codeberg.org/LimePotato/Yummy"><u>Yummy!</u></a><a href="./rss/yummyrss.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<h3 class="subtitle">Adds various food related items to Minecraft, mostly inspired off of the promised/mentioned ideas from Mojang themselves.</h3>
<!--EVEN MORE BOUNTIFUL MOD-->
<h1 class="title"><image src="https://git.ouroboros.group/repo-avatars/0db9a3f788caaefcd40020db2010c5ba004522636b5e2dabfafc4c4e1fea94ea" width="24" height="24"><!--<a href="https://modrinth.com/mod/even-more-bountiful">--><a href="https://git.ouroboros.group/LimePotato/even-more-bountiful"><u>Even More Bountiful</u></a><a href="./rss/embrss.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<h3 class="subtitle">A Legacy Fabric mod for 1.7.10, exploring a timeline where minecrafts development took a different direction before 1.8</h3>
<!--QUILT TEMPLATE MOD-->
<h1 class="title"><image src="https://git.ouroboros.group/LimePotato/quilt-template-mod/raw/branch/1.20.1/src/main/resources/assets/example_mod/icon.png" width="24" height="24"></image><a href="https://codeberg.org/LimePotato/limepot-quilt-template-mod"><u>Custom Quilt Template Mod</u></a><a href="./rss/quilt-template-modrss.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<h3 class="subtitle">A fork of the quilt template mod, with an interactive setup script, and other nice-to-haves.</h3>
<!--LEGACY CODER PACK-->
<h1 class="title"><!--<image src="https://codeberg.org/LimePotato/quilt-template-mod/raw/branch/1.20.1/src/main/resources/assets/example_mod/icon.png" width="24" height="24"></image>--><a href="https://codeberg.org/LimePotato/LCP"><u>Legacy Coder Pack - LCP</u></a><a href="./rss/LCPRSS.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<h3 class="subtitle">In the spirit of MCP, but for older versions of alpha (initially just for a1.0.16_02)</h3>
<!--GD RETRO TEMPLATE-->
<h1 class="title"><image src="https://git.ouroboros.group/LimePotato/Godot-Retro-Template/raw/branch/main/Assets/Branding/Gameplay_logo.png" width="24" height="24"></image><a href="https://git.ouroboros.group/LimePotato/Godot-Retro-Template"><u>Godot Retro Template</u></a><a href="./rss/godottempproj.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<h3 class="subtitle">A template godot project for retro (PSX/2, GC, N64, Dreamcast, etc.) styled games.</h3>
<!--PIXELFED PORTFOLIO-->
<h1 class="title"><image src="https://portfolio.pixelfed.social/img/favicon.png?v=2" width="24" height="24"><a href="https://portfolio.pixelfed.social/LimePotato"><u>Photography</u></a><a href="./rss/pixelfedrss.html"> <image src="assets/rss.png" width="15" height="15"></image></a></h1>
<h3 class="subtitle">Some of my photography, until I have it on my archive.</h3>
</div>
</div>
<center>
<footer class="footer">
<div class="content has-text-centered">
<br><br>
<!--Badges-->
<a href="https://jointhefediverse.net/"><image src="assets/badges/FEDERATE-NOW.jpg"></a>
<a href="https://archlinux.org"><image src="assets/badges/archlinux.gif"></a>
<a href="https://gnu.org"><image src="assets/badges/gnu-linux.gif"></a>
<a href="https://fuckoffgoogle.de/"><image src="assets/badges/google_stand.gif"></a>
<a href="https://privacytests.org/"><image src="assets/badges/chrmevil.gif"></a>
<br>
<image src="assets/badges/browser.gif">
<a href="https://tuxcrafting.online/"><image src="assets/badges/tctek.gif"></a>
<iframe src="//incr.easrng.net/badge?key=limepot" style="background: url(//incr.easrng.net/bg.gif)" title="increment badge" width="88" height="31" frameborder="0"></iframe>
<a href="https://cybercriminal.eu"><image src ="../assets/badges/cbrmnl.png"></a>
<br>
<a href="https://limepot.xyz/"><image src="assets/badges/limepotxyz-badge00.gif"></a>
<!--Badges-->
<br><br>
<a href="https://bulma.io">
<img src="https://bulma.io/images/made-with-bulma--semiwhite.png" alt="Made with Bulma" width="128" height="24">
</a>
<a href="https://github.com/catppuccin/catppuccin">
<img src="https://img.shields.io/badge/Catppuccin-Mocha%20Mauve-%23cba6f7" width="185" height="20">
</a>
<a href="https://git.ouroboros.group/LimePotato/limepot-xyz">
<img src="https://img.shields.io/badge/Site-Source-lightgrey.svg" width="94.2" height="20">
</a>
<br>
<a href="https://up.ouroboros.group/status/obos"><u>Experiencing downtimes?</u></a>
<a href="https://up.ouroboros.group/status/obos"><u>Experiencing downtimes?</u></a>
<a href="snp.html"><u>Security, Privacy, & Credits</u></a>
</div>
</footer></center>
</section>
</body>
</html>

2
pronouns.html Executable file
View file

@ -0,0 +1,2 @@
<div class="pageloader" is-active="true"><span class="title">Pageloader</span></div>
<meta http-equiv="Refresh" content="0; url='https://en.pronouns.page/@limepotato'"/>

Some files were not shown because too many files have changed in this diff Show more