1
0
Fork 0
isopod.cool/stuff/index.php

108 lines
4.5 KiB
PHP
Raw Normal View History

2023-01-09 21:30:45 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-01-09 21:30:45 +00:00
<title>Items</title>
<link href="../style.css" rel="stylesheet" type="text/css" media="all">
<style>
details[open] > summary {
margin-bottom: .5rem;
}
details ul {
margin: 0;
padding-left: 1.5rem;
}
2023-01-09 21:30:45 +00:00
</style>
<?php include($_SERVER['DOCUMENT_ROOT'] . '/seasonal.php'); ?>
2023-01-09 21:30:45 +00:00
</head>
<body>
<?php include($_SERVER['DOCUMENT_ROOT'] . '/nav.php'); ?>
<h1>stuff</h1>
<h2 id="caption">things too!</h2>
v3.1 - Minor overhaul to the entire site - Removed some unused files - Updated the blog post layout to have all the navigation - Replaced hovertext in blog posts with footnotes - Seaonal pride captions on homepage - Updated /etc/quotes/ - Background color is now actually reminiscent of Discord - Total overhaul to /uses/ - Added sub-page for my computer - New markup for blockquotes that css-tricks.com says is more semantically correct - More difficult captcha on the guestbook (answer remains unchanged) - New blog post about DMs on the fediverse - Blog now has links to each year - Removed journal. I barely used it and it was redundant anyway - Removed the TODO list that I wasn't using from /etc/ - CSS overhaul: - Cool new hover animation on navigation links - Centralized most color definitions to root variables, and a couple other things too - Standard font is now B612 mono - complies with prefers-reduced-motion - Light theme and low contrast mode in the works - Made tables more consistent, and the one on /about/ no longer looks like doodoo - Accent borders on headings and such-like - Main header & caption are now left-aligned instead of center-aligned - Isopod letterhead moved from left side of header to right - h1 made smaller, h2-6 changed back to default sizes - Adjusted a couple background positions to improve readability - Got rid of the checkbox-hack dropdown navigation on mobile, because it kind of sucked - Regular body text no longer has text-shadow - probably some other stuff I forgot about
2024-07-08 09:20:49 +00:00
<h2>Utilities</h2>
2023-01-09 21:30:45 +00:00
<table>
<tr>
<td><a href="rssfilter.php">rssfilter.php</a></td>
<td>Basic RSS and Atom feed filtering utility. Accepts regex.</td>
2023-01-09 21:30:45 +00:00
</tr>
<tr>
<td><a href="firefoxrss/feed.php">firefoxrss</a></td>
<td>RSS bridge for Firefox release notes.</td>
2023-01-09 21:30:45 +00:00
</tr>
v3.1 - Minor overhaul to the entire site - Removed some unused files - Updated the blog post layout to have all the navigation - Replaced hovertext in blog posts with footnotes - Seaonal pride captions on homepage - Updated /etc/quotes/ - Background color is now actually reminiscent of Discord - Total overhaul to /uses/ - Added sub-page for my computer - New markup for blockquotes that css-tricks.com says is more semantically correct - More difficult captcha on the guestbook (answer remains unchanged) - New blog post about DMs on the fediverse - Blog now has links to each year - Removed journal. I barely used it and it was redundant anyway - Removed the TODO list that I wasn't using from /etc/ - CSS overhaul: - Cool new hover animation on navigation links - Centralized most color definitions to root variables, and a couple other things too - Standard font is now B612 mono - complies with prefers-reduced-motion - Light theme and low contrast mode in the works - Made tables more consistent, and the one on /about/ no longer looks like doodoo - Accent borders on headings and such-like - Main header & caption are now left-aligned instead of center-aligned - Isopod letterhead moved from left side of header to right - h1 made smaller, h2-6 changed back to default sizes - Adjusted a couple background positions to improve readability - Got rid of the checkbox-hack dropdown navigation on mobile, because it kind of sucked - Regular body text no longer has text-shadow - probably some other stuff I forgot about
2024-07-08 09:20:49 +00:00
</table>
<h2>Downloads</h2>
<table>
2023-01-09 21:30:45 +00:00
<tr>
<td nowrap><a href="EnchantedToolsPack_v1.zip">EnchantedToolsPack_v1.zip</a></td>
<td>Custom resourcepack for Minecraft that uses functionality from <a href="https://optifine.net/home">Optifine</a> to add custom textures for enchanted tools and weapons. Confirmed working with 1.19.</td>
2023-01-09 21:30:45 +00:00
</tr>
v3.1 - Minor overhaul to the entire site - Removed some unused files - Updated the blog post layout to have all the navigation - Replaced hovertext in blog posts with footnotes - Seaonal pride captions on homepage - Updated /etc/quotes/ - Background color is now actually reminiscent of Discord - Total overhaul to /uses/ - Added sub-page for my computer - New markup for blockquotes that css-tricks.com says is more semantically correct - More difficult captcha on the guestbook (answer remains unchanged) - New blog post about DMs on the fediverse - Blog now has links to each year - Removed journal. I barely used it and it was redundant anyway - Removed the TODO list that I wasn't using from /etc/ - CSS overhaul: - Cool new hover animation on navigation links - Centralized most color definitions to root variables, and a couple other things too - Standard font is now B612 mono - complies with prefers-reduced-motion - Light theme and low contrast mode in the works - Made tables more consistent, and the one on /about/ no longer looks like doodoo - Accent borders on headings and such-like - Main header & caption are now left-aligned instead of center-aligned - Isopod letterhead moved from left side of header to right - h1 made smaller, h2-6 changed back to default sizes - Adjusted a couple background positions to improve readability - Got rid of the checkbox-hack dropdown navigation on mobile, because it kind of sucked - Regular body text no longer has text-shadow - probably some other stuff I forgot about
2024-07-08 09:20:49 +00:00
</table>
<h2>Scripts</h2>
<table>
2023-01-09 21:30:45 +00:00
<tr>
<td>webpkiller/</td>
<td><details><summary>Automatic .webp converters</summary>Various scripts intended for use as the default program for opening .webp files. They automatically replace the .webp image with a .png one and open that instead. Incompatible with animated .webp images.</details></td>
2023-01-09 21:30:45 +00:00
</tr>
<tr class="indent-1">
<td><a href="webpkiller/webpkiller.sh">webpkiller.sh</a></td>
<td>
<details>
<summary>Bash script for Linux.</summary>
<ul>
<li>Only works on .webp files.</li>
<li>Requires <a href="https://imagemagick.org/">ImageMagick</a> to be installed.</li>
</ul>
</details>
</td>
2023-01-09 21:30:45 +00:00
</tr>
<tr class="indent-1">
<td><a href="webpkiller/webpkiller.cmd">webpkiller.cmd</a></td>
<td>
<details>
<summary>Batch script for Windows.</summary>
<ul>
<li>Only works on .webp files.</li>
<li>Requires <a href="https://imagemagick.org/">ImageMagick</a>.</li>
<li>Replaces <i>every</i> instance of ".webp" in the filepath because Windows batch language is hard.</li>
</ul>
</details>
</td>
2023-01-09 21:30:45 +00:00
</tr>
<tr class="indent-1">
<td><a href="webpkiller/webpkiller.py">webpkiller.py</a></td>
<td>
<details>
<summary>Platform-agnostic Python script.</summary>
<ul>
<li>Works on anything supported by pillow.</li>
<li>Requires <a href="https://www.python.org/">Python 3</a> and the <a href="https://python-pillow.org/">pillow</a> library.</li>
</ul>
</details>
</td>
2023-01-09 21:30:45 +00:00
</tr>
<tr class="indent-1">
<td><a href="webpkiller/webpkiller_win.zip">webpkiller_win.zip</a></td>
<td><details><summary>Windows webpkiller.py build.</summary>webpkiller.py, but compiled for Windows with <a href="https://pypi.org/project/pyinstaller/">pyinstaller</a>.</td>
2023-01-09 21:30:45 +00:00
</tr>
<tr>
<td><a href="dirtomp3.sh">dirtomp3.sh</a></td>
<td>Bash script that uses ffmpeg to convert a music library to mp3s.</td>
</tr>
v3.1 - Minor overhaul to the entire site - Removed some unused files - Updated the blog post layout to have all the navigation - Replaced hovertext in blog posts with footnotes - Seaonal pride captions on homepage - Updated /etc/quotes/ - Background color is now actually reminiscent of Discord - Total overhaul to /uses/ - Added sub-page for my computer - New markup for blockquotes that css-tricks.com says is more semantically correct - More difficult captcha on the guestbook (answer remains unchanged) - New blog post about DMs on the fediverse - Blog now has links to each year - Removed journal. I barely used it and it was redundant anyway - Removed the TODO list that I wasn't using from /etc/ - CSS overhaul: - Cool new hover animation on navigation links - Centralized most color definitions to root variables, and a couple other things too - Standard font is now B612 mono - complies with prefers-reduced-motion - Light theme and low contrast mode in the works - Made tables more consistent, and the one on /about/ no longer looks like doodoo - Accent borders on headings and such-like - Main header & caption are now left-aligned instead of center-aligned - Isopod letterhead moved from left side of header to right - h1 made smaller, h2-6 changed back to default sizes - Adjusted a couple background positions to improve readability - Got rid of the checkbox-hack dropdown navigation on mobile, because it kind of sucked - Regular body text no longer has text-shadow - probably some other stuff I forgot about
2024-07-08 09:20:49 +00:00
</table>
<h2>Other</h2>
<table>
2023-01-09 21:30:45 +00:00
<tr>
<td><a href="neon_boost_times.html">neon_boost_times.html</a></td>
<td>A table of my level times in Neon Boost.</td>
2023-01-09 21:30:45 +00:00
</tr>
<tr>
<td><a href="https://userstyles.world/style/5238/status-cafe-latte">userstyles.world/style/5238<br/>/status-cafe-latte</a></td>
<td>Stylus theme I made for <a href="https://status.cafe/">status.cafe</a> and the attached forum.</td>
</tr>
2023-01-09 21:30:45 +00:00
</table>
<div id="rightsidebg" style="background-image: url(bg.jxl), url(bg.jpg); --distancefromcenter: -15%;" title="Pictured: The level of code quality you're getting if you use this stuff"></div>
2023-01-09 21:30:45 +00:00
</body>
</html>