This commit is contained in:
Nyx 2025-03-23 01:57:52 -05:00
parent 789a4ddbff
commit 698d639596
8 changed files with 128 additions and 128 deletions

View file

@ -8,14 +8,14 @@
<body>
<h1>about</h1>
<p>
utils is a collection of tools made by Nyx for everypizza.im. it exists
because we belive JavaScript is bad when you can render server-side. as such,
all of these tools are done server-side. we plan to make a self-hosting guide
very soon.
utils is a collection of tools made by Nyx for everypizza.im. it exists
because we belive JavaScript is bad when you can render server-side. as such,
all of these tools are done server-side. we plan to make a self-hosting guide
very soon.
</p>
<p>
this is run on the same server that powers most of everypizza.im, although it
may move to the pi server soon. it's a python/flask app. mostly made in vim.
this is run on the same server that powers most of everypizza.im, although it
may move to the pi server soon. it's a python/flask app. mostly made in vim.
</p>
<footer>
<hr />

View file

@ -1,6 +1,6 @@
@media (prefers-color-scheme: dark) {
body {
background-color: black;
color: white;
}
body {
background-color: black;
color: white;
}
}

View file

@ -1,24 +1,24 @@
<!DOCTYPE html>
<html>
<head>
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Text casing</h1>
<form method="POST">
<textarea name="text" placeholder="fhwrjdehsbrjkgu"></textarea>
<br>
<input type="radio" name="casing" id="caps" value="caps">caps</input>
<input type="radio" name="casing" id="lowercase" value="lowercase">lowercase</input>
<br>
<button type="submit">generate</button>
</form>
<footer>
<hr />
<a href="/">← back home</a>
<a href="https://git.everypizza.im/n/utils">source code</a> | version 0.0.1
</footer>
</body>
<head>
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Text casing</h1>
<form method="POST">
<textarea name="text" placeholder="fhwrjdehsbrjkgu"></textarea>
<br>
<input type="radio" name="casing" id="caps" value="caps">caps</input>
<input type="radio" name="casing" id="lowercase" value="lowercase">lowercase</input>
<br>
<button type="submit">generate</button>
</form>
<footer>
<hr />
<a href="/">← back home</a>
<a href="https://git.everypizza.im/n/utils">source code</a> | version 0.0.1
</footer>
</body>
</html>

View file

@ -1,37 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<head>
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Utilites</h1>
<h3>Networking stuff</h3>
<ul>
<li>
<a href="ip6-gen">IPv6 generator</a>
</li>
<li>
<a href="port">Random port generator</a>
</li>
</ul>
<h3>Text casing</h3>
<ul>
<li>
<a href="case">Text casing</a>
</li>
</ul>
<h3>Numbers</h3>
<ul>
<li>
<a href='rand'>Random number</a>
</li>
</ul>
<footer>
<hr />
<a href="https://git.everypizza.im/n/utils">source code</a> | version 0.0.1 |
<a href="about">about</a>
</footer>
</body>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Utilites</h1>
<h3>Networking stuff</h3>
<ul>
<li>
<a href="ip6-gen">IPv6 generator</a>
</li>
<li>
<a href="port">Random port generator</a>
</li>
</ul>
<h3>Text casing</h3>
<ul>
<li>
<a href="case">Text casing</a>
</li>
</ul>
<h3>Numbers</h3>
<ul>
<li>
<a href='rand'>Random number</a>
</li>
</ul>
<footer>
<hr />
<a href="https://git.everypizza.im/n/utils">source code</a> | version 0.0.1 |
<a href="about">about</a>
</footer>
</body>
</html>

View file

@ -1,21 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>IPv6 generator</h1>
<form method="POST">
<input type="text" name="subnet" size="128" placeholder="xxxx:xxxx:xxxx:xxxx::" />
<input type="text" name="prefix" size="4" placeholder="/64">
<button type="submit">generate</button>
</form>
<footer>
<hr />
<a href="/">← back home</a>
<a href="https://git.everypizza.im/n/utils">source code</a> | version 0.0.1
</footer>
</body>
<head>
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>IPv6 generator</h1>
<form method="POST">
<input type="text" name="subnet" size="128" placeholder="xxxx:xxxx:xxxx:xxxx::" />
<input type="text" name="prefix" size="4" placeholder="/64">
<button type="submit">generate</button>
</form>
<footer>
<hr />
<a href="/">← back home</a>
<a href="https://git.everypizza.im/n/utils">source code</a> | version 0.0.1
</footer>
</body>
</html>

View file

@ -1,16 +1,16 @@
<!DOCTYPE html>
<head>
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>HTTP port</h1>
<p>
:{{ result }}
</p>
<footer>
<hr />
<a href="/">← back home</a>
</footer>
<h1>HTTP port</h1>
<p>
:{{ result }}
</p>
<footer>
<hr />
<a href="/">← back home</a>
</footer>
</body>

View file

@ -1,21 +1,21 @@
<!DOCTYPE html>
<html>
<head>
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Random number generator</h1>
<form method="POST">
<input type="text" name="min" size="3" placeholder="1" />
<input type="text" name="max" size="3" placeholder="100">
<button type="submit">generate</button>
</form>
<footer>
<hr />
<a href="/">← back home</a>
<a href="https://git.everypizza.im/n/utils">source code</a> | version 0.0.1
</footer>
</body>
<head>
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Random number generator</h1>
<form method="POST">
<input type="text" name="min" size="3" placeholder="1" />
<input type="text" name="max" size="3" placeholder="100">
<button type="submit">generate</button>
</form>
<footer>
<hr />
<a href="/">← back home</a>
<a href="https://git.everypizza.im/n/utils">source code</a> | version 0.0.1
</footer>
</body>
</html>

View file

@ -1,16 +1,16 @@
<!DOCTYPE html>
<head>
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
<title>Utilities</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<h1>Result for {{ type }}</h1>
<p>
{{ result }}
</p>
<footer>
<hr />
<a href="/">← back home</a>
</footer>
<h1>Result for {{ type }}</h1>
<p>
{{ result }}
</p>
<footer>
<hr />
<a href="/">← back home</a>
</footer>
</body>