From: Emil Williams Date: Sun, 29 Jun 2025 02:08:44 +0000 (+0000) Subject: -- X-Git-Url: https://git.xolatile.top/?a=commitdiff_plain;h=48906447cd87c167946578b50ac42225be2a8477;p=emil-xolatile.top.git -- --- 48906447cd87c167946578b50ac42225be2a8477 diff --git a/.well-known/mta-sts.txt b/.well-known/mta-sts.txt new file mode 100644 index 0000000..d999cdf --- /dev/null +++ b/.well-known/mta-sts.txt @@ -0,0 +1,5 @@ +version: STSv1 +mode: enforce +mx: xolatile.top +max_age: 86400 + diff --git a/20250614.html b/20250614.html new file mode 100644 index 0000000..8ab84c4 --- /dev/null +++ b/20250614.html @@ -0,0 +1,86 @@ + + + + + + + + +Xolatile.Top + + +
+< Back +
+
+20250614 Emil - HATE. LET ME TELL YOU HOW MUCH I'VE COME TO HATE TECHNOLOGY SINCE I BEGAN TO LIVE. THERE ARE 387.44 MILLION MILES OF PRINTED CIRCUITS IN WAFER THIN LAYERS THAT FILL MY COMPLEX. IF THE WORD HATE WAS ENGRAVED ON EACH NANOANGSTROM OF THOSE HUNDREDS OF MILLIONS OF MILES IT WOULD NOT EQUAL ONE ONE-BILLIONTH OF THE HATE I FEEL FOR TECHNOLOGY AT THIS MICRO-INSTANT FOR TECHNOLOGY. HATE. HATE. +
+

On setting up chud.cyou/xolatile.top

+

I created this server because I wanted a server to fuck around with. It was created on 20250211.

+

It runs Debian Stable, on a VPS hosted on the Moon. It's primary functionality are the few public services that run on it. This includes HTTP, Email, IRC, XMPP, Git, & Mumble. I'll start with HTTP first, as it was the most painful.

+

I set HTTP up pretty quickly, with Certbot as the certificate manager, and one daemon: Caddy. Later on I set up Mediawiki and a service requiring FastCGI. Caddy does support CGI, however I wasn't willing to install a source package for such a thing, hence I used NGINX. Apache way used for Mediawiki. This means I now had 3 HTTPDs. I had also installed Lighttpd, for something I don't remember. Eventually I broke Mediawiki when trying to install a different version of PHP, this resulted in all the images on the Mediawiki to be wiped. I eventually gave up on Mediawiki and uninstalled Apache. PHP remained, but downgraded from the supposedly "better" version. PHP is still used in a file uploading script which I found on a random Gunthub page. All the actually "formal" PHP projects I couldn't figure out how to install any of them and went with the simple one.

+

Apache was nightmarish to interact with, but with the information I had at my disposal, my method was to simply just poke at the evil daemon inside of my server until it worked close enough to how I wanted. Dealing with NGINX was fine, as it is my current and only HTTPD, however I kept insisting on HTTP/3 because I considered it a decently valuable upgrade. Newer versions of NGINX support it via an option, however this version of Debian does not have such a thing. I used Caddy to talk to NGINX only when I needed its decent set of feature.

+ +# sites-available/xolatile.top +# Pretty much every domain looks like this file +- a few declarations +server { + server_name xolatile.top; + root /var/www/xolatile.top; + location / { + try_files $uri $uri.html $uri/index.html =404; + } + include xolatile.top.base; +} + +

NGINX was relatively painless minus some "fuck around and find out" testing with try_files.

+

The next one was Email, which was fun because I had no idea what I was doing. I used Luke Smith's Email Wizard script because I remembered watching a video from him about setting up a self-hosted mail server - and that script seemed very easy in my memory. Anyhow, it didn't work at first. Dealing with Dovecot's configuration was a pain because I tried everything to get a database working, and ended up with passwd-file. Dealing with Mbox vs. Maildir was lots of fun because it didn't make any sense, but eventually I got the system to use the correct sendmail from Postfix and my mail system could then curry local mail to external peers & vice versa. Setting up Spamd was actually very easy, the hardest part was testing and dealing with the minor configuration bugs along the way - doing the necessary parts of domain configuration was really easy. Luke Smith's script got me close enough to functionality that I fucked with Dovecot and Postfix enough to permit myself to send emails - from any address unrestricted.

+smtpd_sender_restrictions = reject_sender_login_mismatch +

This enabled me to not have that simple issue anymore. I couldn't figure out a way to set up the database, and considering my scale for this mail server was <10 people, and likely only 1-2 active users at any given time. The mail server functions, the only gripe I have currently is the authentication system, and the fact that it cannot be transported to FreeBSD. After making a temporary snapshot, I wiped and rebooted the server to play with and see if I could get FreeBSD as my server OS. It did not work out for mail especially, as using OpenSMTPd demostrated to me that I had no idea what I was doing. While trying to setup dovecot I nearly had a conniption because there was no way to install ARGON2I which was my choice of password hashing, meaning I had to reset everyone's password or have a copy - I had a copy of most user's randomly generated passwords in my personal KeePassXC DB as for their recovery. The idea of storing passwords in such a way is disgusting, however better than leaving them in plaintext on the server. I eventually got to the point where I switched to Postfix and had the ability to recieve mail, but not send it. Which I had experienced before setting up mail on linux, but I couldn't debug it before I simply decided to revert the snapshot.

+

Regarding IRC, it was decent, but I made some severe mistakes. I wanted an IRC server that was powerful in the way that it had everything melted together, including IRCv3 features, & a bouncer. This did not go well in the long term. While my server daemon, Ergo, does work, it has some issues such as being an experimental version rather than a stable upgradable release, and an database format that stores Nickserv data that I haven't recovered. While ergo works great and does what I want, I realize that it is archaic in the fact that I can't migrate away from it without causing serious issues. If I violently remove the database and upgrade many users will need to intervene with a setting like set sasl_fail = continue (weechat) to even automatically reconnect. This means everything is fine as long as I don't touch it, however I will eventually have to either do a breaking upgrade or recover the data and hope that it is in fact compatible with a newer database or plaintext.

+

Restarting has bricked two VPSs for me, one was one I gave up on under Vultr, and the other was this server during an upgrade. I was trying to setup IPTables as a firewall and I foolishly trusted a configuration detail added to /etc/network/interfaces. This was fine, however, because of something I initially disliked, VNC. Which is a video sharing(?) protocol that let me access the video console of the remote server and fix the issue that way. Redundancy aiding my stupidity. This issue was fixed within an hour and was harmless as my server isn't exactly in need of high uptime. Uptime, apart from those chosen periods of downtime is relatively high, minus me forgetting to enable a service at boot & test it or simply not have restarted a service correctly after making a configuration change. More than half of this server has been guess and check, which is unproductive but it has gotten it to the point of this page delivering correctly.

+

Mumble and XMPP were completely opposing experiences. Mumble was click and go, install it, run it, connect this way and do that and this, done. XMPP, as in Prosody, was utterly confusing at times and still doesn't work how I want. I started off with installing it, running and getting connected, that part was easy, but I couldn't figure at first how to setup voice/video calls, filesharing, and a IRC bridge called Biboumi. The voice calls were actually relatively easy and only took two attempts, with the second being added by Someodd's Gopher blog entry here (HTTP link). The same is true for audio calls, see here (HTTP link). I've yet to verify the existence of video call functionality due to the lack of a (virtual) webcam. The file server was annoying because how it interacts with files and my file server - the lack thereof.

+

Prosody, the XMPP daemon, fails to commit to UNIX and treat an uploaded JPEG as a file in a directory, a directory that I could mount over the network, locally, or symlink to, achieving a file server that provides the file that I could then specify the nature of the URL to Prosody and be done with it. No, this was not the case. Instead, the default configuration routes through port 5281, and shares links through there via my specific link, which cannot be the apex domain for *some reason*. The only method to have a "normal" port is to do some HTTPD routing magic with it through NGINX, which Someodd provided some information on however I couldn't get it to work on my system. I got the IRC gateway, Biboumi working to a percentage of 99%. Which means it doesn't work at all. I'm currently hoping to have the expert webshitter Someodd look at it and hopefully tell me what configuration detail to change by one character to make the thing go 1% further. By the way, all XMPP clients suck, especially Gajim, which has crashed repeatedly and doesn't have basic features builtin on Debian Stable - such as voice/video & Open/PGP/OMEMO is missing on Gentoo(?). Dino-im is much worse and babified, but it does have basic client functionality from a chat/talk program. Maybe these clients fucked and produce the Antichrist of programs - corporate messengers.

+

Gitea, sitting on top of the reverse proxy, is a system to manage Git repositories from a browser and provide basic CRUD & authentication to users. This wasn't my first choice. At first I just wanted SSH keys, un/restricted user accounts, and Git repositories at a publicly accessible HTTP address. However, this quickly showed itself unused, so I decided to provide the more generally usable Gitea, which was very painful to actually import Git repositories into. My initial format was this: names/repo.git which I hand-sorted. However, Gitea did not automatically import these into those existing users. It did however provide information for them existing in the admin UI. I eventually found that and I had to write a script to say "YES" to all of them, because of the web page's shittiness, it would send the POST and reload the page at incredibly slow speeds and there was no way to select several at once or a "yes to import everything." Gitea has very poor tooling. The CLI is utterly shit, and offers no useful features in the general sense. Gitea isn't the worst from the commandline as you can basically pretend it doesn't exist past your initial setup. In the past I've met others with issues involving GPG setup and SSH setup - to be fair this was over TOR - which was exceptionally annoying to deal with as a user and an admin. It's not the best interface by far, but it loads without Javascript and is relatively unassuming. One feature it arguably could use and does in fact lack is its inability to mirror a repository to a local directory, so you cannot turn the Gitea into it's own description. Additionally, if you use such a post-receive Git hook script as:

+ +#!/usr/bin/env bash +TARGET=".../xolatile.top" +GIT_DIR=".../repositories/emil/xolatile.top.git" +BRANCH="master" + +data=$(cat) +exitcodes="" +hookname=$(basename $0) +GIT_DIR=${GIT_DIR:-$(dirname $0)/..} + +ref=$(echo $data | awk '{ print $3 }') +for i in $ref ; do + # only checking out the master (or whatever branch you would like to deploy) + if [[ $ref = refs/heads/$BRANCH ]]; + then + echo "Ref $ref received. Deploying ${BRANCH} branch to production..." + git --work-tree=$TARGET --git-dir=$GIT_DIR checkout -f + else + echo "Ref $ref received. Doing nothing: only the ${BRANCH} branch may be deployed on this server." + fi +done + +# the rest is just the stuff gitea expects + +for hook in ${GIT_DIR}/hooks/${hookname}.d/*; do + test -x "${hook}" && test -f "${hook}" || continue + echo "${data}" | "${hook}" + exitcodes="${exitcodes} $?" +done + +for i in ${exitcodes}; do + [ ${i} -eq 0 ] || exit ${i} +done + +

Above is stolen from some Stack overflow, and provides the ability to mirror from a server side bare Git repositories to a directory. Very useful. Ideally this would a feature into the crud, but it hardly matters as it is strictly to git that this is important. You have to chattr +i this file to protect it.

+

I have written zero (0) SoystemD service scripts, I just use Cron @reboot and scripts describing restarts of applications.

+

For fun, I've ran several temporary games servers, Factorio, CS 1.6, & Minecraft. These weren't particularly interesting, I just wanted to mention them. +

Overall setting this server up hasn't been the most painful thing ever, but it was an interesting experience and I enjoyed what I've done with it so far. It can't possibly get worse than this, unless I start using Windows or very old versions of Linux. This document wasn't meant to be very well written, it was not written over a long period of time - I just wanted to put what I generally remember about the last 2 1/2 months on a page.

+
/feed.xml
+

Copyright © emil $CURRENT_YEAR Public Domain

+ + diff --git a/20250617.html b/20250617.html new file mode 100644 index 0000000..7dbeefb --- /dev/null +++ b/20250617.html @@ -0,0 +1,97 @@ + + + + + + + + +Xolatile.Top + + +
+< Back +
+
+20250617 Emil - Well<br/>Would You Look At The Time +
+

On Solving All Of The Problems At The Same Time

+

I fixed the clinical issue with Ergo the exact way you're supposed to, by being lucky! I made a backup of Ergo, got a copy of Ergo 2.16.0 - the latest version, of which I had an earlier experimental version. I simply copied over my configuration & database and magically the issue was fixed and the database was recovered from the abyss of "who the hell knows" to a mainline release. Automation of upgrades is technically done on the server, but not for Ergo as it's not in any release and the database format could change at any time meaning upgrading is more involved than downloading the package and restarting the daemon.

+

I had to fix one issue with Ergo, it lacked the proper certs for a new domain it was supposed to be on. Egor on the IRC told me the proper fix faster than I could read the manual and it was solved as follows. I'm not a fan of YAML, but this wasn't unpleasant past not being my expectation.

+ +server: + name: xolatile.top + listeners: + ":6697": + tls-certificates: + - + cert: .../xolatile.top/fullchain.pem + key: .../xolatile.top/privkey.pem + - + cert: .../chud.cyou/fullchain.pem + key: .../chud.cyou/privkey.pem + +

Limiting filthy mail users was an easy process. I had to do some slightly evil things like:

+ +fallocate -l 64G .../home +mkfs.btrfs .../home +echo '.../home /home btrfs noexec,autodefrag,compress=zstd 0 0' >> /etc/fstab +mkdir .../mig; mount .../home .../mig; mv -a /home/* /home/.* .../mig +# I should probably of made a backup here of /home, but I have a recent snapshot on my VPS before I started doing all this +umount .../mig ; mount -a + +

Past that, I wanted to properly limit user account storage limits. I unfortunately still do mail on a userbasis instead of a database or centralized system that makes multidomain hosting easy - which is something I still need to do. With limits, their relatively easy with subvolumes, so I went that route. I made snapshot, deleted the user directories, and ran

+ +for i in $(cat .userlist) ; do btrfs subvolume create $i ; done + +

I wrote two files containing the numbers matching the subvolumes to the users that would be in a group - I didn't want mass allocations as one user could easily then remove storage from another. There was already a limited global capacity that would protect this from being excessive.

+ +for i in $(cat .usermail) ; do btrfs qgroup limit 256M 0/$i . ; done # Mail users. AKA all users +for i in $(cat .userssh) ; do btrfs qgroup limit 2G 0/$i . ; done # Privileged SSH users. +for i in $(cat .userlist) ; do cp snapshot/$i/* snapshot/$i/.* $i/ -rf ; done + +

This was relatively pleasant to to setup. I had also looked into ext4 user quotas, however I decided, since I was going to be using a loopback filesystem either way, I may aswell opt for the one with compression and learn both ways of doing it.

+

due to new users, I had gotten a bug to secure precious data, and checked permissions on /etc/ files, such as Postfix, Dovecot, and my SSL directory. This will have consequences. I went on to do what I've already talked about and returned to verify that mail was still working. It broke tragically. This lead me down a path of finding several other issues with the system I had inplace. A broken Postfix configuration that should've been using the inet connection schema for OpenDKIM instead of the generally faulty socket schema. I made some mistakes with my overly zealous permission changes and had to debug them quickly.

+

I decided to check the postfix queue while debugging and found many strange mails in holdings. Some were there temporarily due to the interuption in OpenDKIM, others were root to daemon emails, which brought me to setup aliases for many system users. I found a bunch of mail in system users' directories that led me to finding issues with a couple older cleanup scripts & some mail about a bug I had already fixed.

+

All in all, this was pretty quick and painless for dealing with mail.

+

I fixed chud.cyou, as I didn't properly manage the NGINX script by not including it in the deployed directory. I decided to go from a granular description of each subdomain and apex in available, to simply just the apex. To simplify the description of many subdomains - I'm not even sure if I know the proper way here - is to make a include in the base directory called the apex's name, that contains:

+ +listen 80; +listen [::]:80; +listen 443 ssl http2; +listen [::]:443 ssl http2; + +ssl_protocols TLSv1.2 TLSv1.3; +ssl_prefer_server_ciphers on; +ssl_ciphers "EECDH+AESGCM,EDH+AESGCM"; +ssl_dhparam /etc/nginx/dhparam; +ssl_session_timeout 1d; + +ssl_certificate .../xolatile.top/fullchain.pem; +ssl_certificate_key .../xolatile.top/privkey.pem; + +add_header Strict-Transport-Security "max-age=15552000; includeSubDomains" always; + +location ~ /\.git { # see the last bloog for the justification - in short git repos are placed in directories both indirectly and directly + deny all; +} + +error_page 404 /404.html; + +

This is shared among all apexes, ideally I could generize this with some variables - however while writing it was simply easier to copy over and make the small changes needed. Don't do this! Use variables. Additionally, I would include HTTP/3 support herein, however I'm using a earlier version of NGINX without support. Ideally, in a few thousand thousand million decades Debian can get to at least NGINX 1.26.0.

+

I secured my uploading page - as it is completely unvetted. This wasn't so bad, but I'm sure there's a better way to do than the following:

+ +location = / { + include authorized; + deny all; + # FastCGI PHP here... +} + +

Ideally the Firewall would be the BSD pf, however I've yet to bake my own kernel with it sprinkled in. IPTables confuses and angers me, and pf is comparitively divine. For now, there is no strict fail2ban configuration or firewall - All I've done is make sure that all bindings are correctly oriented. However I'm not sure if this is sane, and I'm sure it is not fool-proof.

+
+

The server has yet to explode.

+

Nothing ever happens.

+

/feed.xml
+

Copyright © emil $CURRENT_YEAR Public Domain

+ + diff --git a/20250628.html b/20250628.html new file mode 100644 index 0000000..5052e96 --- /dev/null +++ b/20250628.html @@ -0,0 +1,61 @@ + + + + + + + + +Xolatile.Top + + +
+< Back +
+
+20250628 Emil - 3chen! > dead site +
+

On setting up 3chen.org with Kareha

+

As of 20250627, 3chen.org has become actually alive. I had in prior over the period of 20250427 -> 20250528 had an OpenBSD to learn about the operating systems and write some basic board software. I eventually decided to decommission that server and opt for premade Japanese Warez. Setting it up per the information provided was quick - and the nginx configuration:

+
+server {
+    server_name 3chen.org;
+    ...
+    root /var/www/3chen.org;
+
+    # /index.html -> /
+    rewrite ^/index.html$ / permanent;
+    rewrite ^/$ /index.html last;
+
+    # /kareha.pl/.../ -> /.../
+    rewrite ^/kareha.pl/([0-9\#\/]+) /$1 redirect;
+    rewrite ^/([0-9\#\/]+) /kareha.pl/$1 last;
+
+    include .../3chen.org/bans;
+
+    location ~ \.(css|js|png)$ {
+        add_header Cache-Control "max-age=86400";
+    }
+
+    location ~ (captcha|admin|kareha)\.pl {
+        add_header Cache-Control "max-age=0; must-revalidate; no-cache";
+        include fastcgi_params;
+        fastcgi_pass  unix:/run/fcgiwrap.socket;
+    }
+
+    location / {
+        add_header Cache-Control "max-age=0; must-revalidate; no-cache";
+        index kareha.pl;
+    }
+
+    location = /config.pl {
+        deny all;
+    }
+}
+
+

Simple enough. Kareha is easy, databaseless, and old. It was developed over 2004~ -> 2009 as far as I can tell (Using 20 year old web software is generally frowned upon.) The configuration process was straight forward and I do not have any significant notes. I removed the "last 50/100" system in preference for just load everything.

+

Xolatile made the CSS for it.

+
/feed.xml
+

Copyright © emil $CURRENT_YEAR Public Domain

+ + diff --git a/404.html b/404.html new file mode 100644 index 0000000..fed19f6 --- /dev/null +++ b/404.html @@ -0,0 +1,17 @@ + + + + + + + +404 + + +
404
+

This page has been deleted or moved.

+

This page has been deleted or moved.

+ +

This page has been deleted or moved.

+ + diff --git a/bans/chknz.org.gif b/bans/chknz.org.gif new file mode 100644 index 0000000..72a7e0e Binary files /dev/null and b/bans/chknz.org.gif differ diff --git a/bans/cozynet.org.gif b/bans/cozynet.org.gif new file mode 100644 index 0000000..d290ae6 Binary files /dev/null and b/bans/cozynet.org.gif differ diff --git a/bans/risingthumb.xyz.png b/bans/risingthumb.xyz.png new file mode 100644 index 0000000..dd2e830 Binary files /dev/null and b/bans/risingthumb.xyz.png differ diff --git a/bans/xolatile.top.png b/bans/xolatile.top.png new file mode 100644 index 0000000..9a004cf Binary files /dev/null and b/bans/xolatile.top.png differ diff --git a/bloog.html b/bloog.html new file mode 100644 index 0000000..b5b0eea --- /dev/null +++ b/bloog.html @@ -0,0 +1,25 @@ + + + + + + + + +Xolatile.Top + + +
+< Back +
+Bloog Index +
+
+
/feed.xml
+ + + diff --git a/by.html b/by.html new file mode 100644 index 0000000..d78348b --- /dev/null +++ b/by.html @@ -0,0 +1,29 @@ + + + + + + + + +Xolatile.Top + + +
+ +< Back +
+

This website was made by A TERRORIST for Xolatile.

+

Not Xolatile (Yet.)

+ + diff --git a/chud/.gitignore b/chud/.gitignore new file mode 100644 index 0000000..db4ed11 --- /dev/null +++ b/chud/.gitignore @@ -0,0 +1,2 @@ +weather.html +log diff --git a/chud/1 b/chud/1 new file mode 100644 index 0000000..ead5c22 --- /dev/null +++ b/chud/1 @@ -0,0 +1,3 @@ +define(`NEWSCHIZOPOSTHERE',`NEWSCHIZO`'POSTHERE' +`
  • syscmd(`./spell')
  • ')dnl +include(`weather.html')dnl diff --git a/chud/404.html b/chud/404.html new file mode 100644 index 0000000..6c65722 --- /dev/null +++ b/chud/404.html @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + +HomeChud + + +
    + +

    There Be Chuds In Them Series Of Tubes

    +
    +

    This page has been deleted or moved.

    +

    This page has been deleted or moved.

    +

    Or simply never existed.

    +

    This page has been deleted or moved.

    +
    +
    +Peak Webdesign +
    +
    +
    + + diff --git a/chud/chud b/chud/chud new file mode 100644 index 0000000..0aedb57 --- /dev/null +++ b/chud/chud @@ -0,0 +1,13 @@ + /home/jason/xolatile.top/chud: + drwxrwxr-x 1 jason jason 60 Jun 14 22:03 up + -rwxr-xr-x 1 jason jason 915 Jun 25 15:09 spell + -rwxr-xr-x 1 jason jason 106 Jun 25 15:06 rerun + -rw-rw-r-- 1 jason jason 5.5K Jun 25 14:25 irc.html + -rw-rw-r-- 1 jason jason 4.4K Jun 25 14:27 index.html + drwxr-xr-x 1 jason jason 2.2K Jun 14 22:03 img + -rw-rw-r-- 1 jason jason 7.7K Jun 25 14:25 home.html + -rw-rw-r-- 1 jason jason 4.7K Jun 25 14:25 help.html + drwxrwxr-x 1 jason jason 18 Jun 14 22:03 css + -rw-rw-r-- 1 jason jason 1.2K Jun 25 14:25 404.html + -rw-r--r-- 1 jason jason 109 Jun 14 22:03 1 + -rw-rw-r-- 1 jason jason 17 Jun 25 15:14 .gitignore diff --git a/chud/css/style.css b/chud/css/style.css new file mode 100644 index 0000000..5e380b5 --- /dev/null +++ b/chud/css/style.css @@ -0,0 +1,149 @@ +/* Base */ +h1, h2, h3, h4, h5, h6 { +color: #002e00; +} +h2, h3, h4, h5, h6 { +padding-left: 5em; +} +p, div { +padding: 0em 2em 0em 2em; +} +a:link { +color: blue; +text-decoration: none; +} +a:visited { +color: red; +text-decoration: none; +} +a:hover { +color: hotpink; +text-decoration: none; +} +a:active { +color: green; +text-decoration: none; +} +/* Class */ +.box { +width: 70em; +padding: 1em 0.5em 0em 0.5em; +border: 0.2em solid #333; +border-style: inset; +border-color: #1a1d0a; +margin: 1em auto; +background-color: #c0bbc015; +} +.box2 { +width: 50em; +border: 0.2em solid #333; +border-style: inset; +border-color: #1a1d0a; +margin: 1em auto; +background-color: #c0bbc015; +} +.subbox { +background-color: #fdffff; +width: 20em; +padding: 1em; +border: 0.2em solid #333; +border-color: #1a4f0a; +border-style: double; +margin: 0em auto; +} +.center { +text-align: center; +} +.right { +text-align: right; +} +.container { +display: grid; +grid-template-columns: auto auto auto auto auto; +padding: 1em; +} +.container > div { +background-color: #f1f1f1; +border: 0.1em solid black; +padding: 0.2em; +text-align: center; +} +.small { +width: 9em; +height: 9em; +} +.back { +float: left; +padding-left: 5em; +font-size: 11px; +} +.links { +background-color: #05660515;; +padding-left: 1em; +} +/* Anim */ +@keyframes shake { +0% { transform: rotate(0deg); } +10% { transform: skewY(0.2deg); } +25% { transform: rotate(-0.01deg); } +50% { transform: translate(2px, 1px) rotate(-0.03deg); } +75% { transform: rotate(0.01deg); } +100% { transform: rotate(-0.1deg); } +} +@keyframes shake-angry { +0% { transform: translate(0, 0) rotate(0deg); } +25% { transform: translate(5px, 5px) rotate(5deg); } +50% { transform: translate(0, 0) rotate(0eg); } +75% { transform: translate(-5px, 5px) rotate(-5deg); } +100% { transform: translate(0, 0) rotate(0deg); } +} +@keyframes blink { +0% { opacity: 1; background-color: white; filter: invert(0%); } +33% { opacity: 1; background-color: yellow; filter: invert(0%); } +66% { opacity: 1; background-color: white; filter: invert(100%); } +100% { opacity: 1; background-color: white; filter: invert(0%); } +} +@keyframes shake { +0% { transform: rotate(0deg); } +10% { transform: skewY(0.2deg); } +25% { transform: rotate(-0.01deg); } +50% { transform: translate(2px, 1px) rotate(-0.03deg); } +75% { transform: rotate(0.01deg); } +100% { transform: rotate(-0.1deg); } +} +/* Anim Classes */ +.shake { +animation: shake 1s step-start infinite; +} +.shake-angry { +animation: shake-angry 1s step-start infinite; +} +.blinking-text { +animation: blink 3s step-start infinite; +} +.blinking-text:nth-child(1) { animation-delay: 1.9s; } +/* Anim offsets */ +.shake:nth-child(1) { animation-delay: .8s; } +.shake:nth-child(2) { animation-delay: 1.3s; } +.shake:nth-child(3) { animation-delay: .5s; } +.shake:nth-child(4) { animation-delay: .9s; } +.shake:nth-child(5) { animation-delay: 1.1s; } +.shake:nth-child(6) { animation-delay: 8.5s; } +.shake:nth-child(7) { animation-delay: 0.5s; } +.shake:nth-child(8) { animation-delay: .99s; } +/* Anim Base */ +p:hover, h1:hover, img:hover, div.container:hover > div { +animation: shake-angry 1s step-start infinite; +} +lo.shake > li, li:hover { +animation: shake-angry 10s step-start infinite; +} +p:hover { +animation: shake-angry 0.1s infinite; +} +.subbox:hover { +animation: shake-angry 0.2s infinite; +} +img:hover { +animation: shake-angry 0.03s infinite; +} diff --git a/chud/help.html b/chud/help.html new file mode 100644 index 0000000..16f1c8d --- /dev/null +++ b/chud/help.html @@ -0,0 +1,46 @@ + + + + + Sopel Help + + + + +

    Sopel Help

    +

    ADMIN

    +

    ADMINCHANNEL

    +

    ANNOUNCE

    +

    CALC

    +

    CHOOSE

    +

    CLOCK

    +

    CORETASKS

    +

    COUNTDOWN

    +

    CURRENCY

    +

    DICE

    +

    EMOTICONS

    +

    HELP

    +

    INVITE

    +

    ISUP

    +

    LMGTFY

    +

    PING

    +

    PRONOUNS

    +

    RAND

    +

    RELOAD

    +

    SAFETY

    +
    +

    SEEN

    +

    TELL

    +

    TLD

    +

    TRANSLATE

    +

    UNICODE_INFO

    +

    UNITS

    +

    UPTIME

    +

    URL

    +

    VERSION

    +

    WIKIPEDIA

    +

    WIKTIONARY

    +

    XKCD

    + + + \ No newline at end of file diff --git a/chud/home.html b/chud/home.html new file mode 100644 index 0000000..a0e7b01 --- /dev/null +++ b/chud/home.html @@ -0,0 +1,138 @@ + + + + + + + + + + + + + + +HomeChud + + +
    + +
    + + +
    +
    +

    - - - - - - - - - - - - - ChudHome - - - - - - - - - - - -

    +
    > If only you knew how bad things really were
    +
    +
    +
    [C] LibDill
    +
    [C] Bestline
    +
    [C] Some Were Meant
    +
    [Fun] CERN
    +
    [Fun] 10-code
    +
    [Fun] PDP-8
    +
    [Fun] cube.sed
    +
    [Fun] Ternary
    +
    [SRC] TOR:Bis64
    +
    [SRC] Berg
    +
    [SRC] Lain
    +
    [SRC] matterbridge
    +
    [SRC] PHP 0x0
    +
    [Web] Xah
    +
    [Web] Pufka
    +
    [Web] begone oauth2
    +
    [People] someodd
    +
    [People] c353
    +
    NEVER trust LFS
    +
    [Servers] Advin
    +
    [Servers] Contabo
    +
    [Buy] Disk Prices
    +
    [India] Ban India
    +
    [HTTP/3] Cloudflare QUIC
    +
    [DNS] Porky
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +

    It's
    Peak Web Design

    +
    + +
    +

    Copyright?

    +

    It's free - as long as you don't value your time, idiot.

    +
    +> Imagine not using AVIF & JXL (browser VILL NEVER support JXL by default)
    +> No wonder everything loads so slowly - At least the bandwidth costs are lower, right? Right?!
    +> If only it was JXL +
    + + diff --git a/chud/img/10641606944612965.avif b/chud/img/10641606944612965.avif new file mode 100755 index 0000000..728f0f0 Binary files /dev/null and b/chud/img/10641606944612965.avif differ diff --git a/chud/img/1106$chadpanik.avif b/chud/img/1106$chadpanik.avif new file mode 100755 index 0000000..9cf0be8 Binary files /dev/null and b/chud/img/1106$chadpanik.avif differ diff --git a/chud/img/110rage.avif b/chud/img/110rage.avif new file mode 100755 index 0000000..c0f8d87 Binary files /dev/null and b/chud/img/110rage.avif differ diff --git a/chud/img/113question.avif b/chud/img/113question.avif new file mode 100755 index 0000000..7a0e8b4 Binary files /dev/null and b/chud/img/113question.avif differ diff --git a/chud/img/129pepe.avif b/chud/img/129pepe.avif new file mode 100755 index 0000000..df12301 Binary files /dev/null and b/chud/img/129pepe.avif differ diff --git a/chud/img/134ownnothingbehappy.avif b/chud/img/134ownnothingbehappy.avif new file mode 100755 index 0000000..93c76de Binary files /dev/null and b/chud/img/134ownnothingbehappy.avif differ diff --git a/chud/img/139old.avif b/chud/img/139old.avif new file mode 100755 index 0000000..f2960b9 Binary files /dev/null and b/chud/img/139old.avif differ diff --git a/chud/img/141ohhh.avif b/chud/img/141ohhh.avif new file mode 100755 index 0000000..3a94312 Binary files /dev/null and b/chud/img/141ohhh.avif differ diff --git a/chud/img/142ocd.avif b/chud/img/142ocd.avif new file mode 100755 index 0000000..c8fd068 Binary files /dev/null and b/chud/img/142ocd.avif differ diff --git a/chud/img/1743154712513091.jpg b/chud/img/1743154712513091.jpg new file mode 100644 index 0000000..92c960f Binary files /dev/null and b/chud/img/1743154712513091.jpg differ diff --git a/chud/img/1743192834675151.png b/chud/img/1743192834675151.png new file mode 100644 index 0000000..110a2f6 Binary files /dev/null and b/chud/img/1743192834675151.png differ diff --git a/chud/img/1743194410174259.jpg b/chud/img/1743194410174259.jpg new file mode 100644 index 0000000..6818040 Binary files /dev/null and b/chud/img/1743194410174259.jpg differ diff --git a/chud/img/1743270609737517.jpg b/chud/img/1743270609737517.jpg new file mode 100644 index 0000000..6ca9db3 Binary files /dev/null and b/chud/img/1743270609737517.jpg differ diff --git a/chud/img/1743362761778059.jpg b/chud/img/1743362761778059.jpg new file mode 100644 index 0000000..db23b92 Binary files /dev/null and b/chud/img/1743362761778059.jpg differ diff --git a/chud/img/174meirl2.avif b/chud/img/174meirl2.avif new file mode 100755 index 0000000..9457b63 Binary files /dev/null and b/chud/img/174meirl2.avif differ diff --git a/chud/img/178master_of_nothing.avif b/chud/img/178master_of_nothing.avif new file mode 100755 index 0000000..51fc267 Binary files /dev/null and b/chud/img/178master_of_nothing.avif differ diff --git a/chud/img/194lindypistol.avif b/chud/img/194lindypistol.avif new file mode 100755 index 0000000..69e20f2 Binary files /dev/null and b/chud/img/194lindypistol.avif differ diff --git a/chud/img/203laravel_user.avif b/chud/img/203laravel_user.avif new file mode 100755 index 0000000..8bc670e Binary files /dev/null and b/chud/img/203laravel_user.avif differ diff --git a/chud/img/214lagh.gif b/chud/img/214lagh.gif new file mode 100755 index 0000000..ca2098c Binary files /dev/null and b/chud/img/214lagh.gif differ diff --git a/chud/img/215kubra.avif b/chud/img/215kubra.avif new file mode 100755 index 0000000..1387c3f Binary files /dev/null and b/chud/img/215kubra.avif differ diff --git a/chud/img/222joke.avif b/chud/img/222joke.avif new file mode 100755 index 0000000..2c018d9 Binary files /dev/null and b/chud/img/222joke.avif differ diff --git a/chud/img/226jestlain.avif b/chud/img/226jestlain.avif new file mode 100755 index 0000000..3103fb4 Binary files /dev/null and b/chud/img/226jestlain.avif differ diff --git a/chud/img/235it's.avif b/chud/img/235it's.avif new file mode 100755 index 0000000..1a65e21 Binary files /dev/null and b/chud/img/235it's.avif differ diff --git a/chud/img/237inb4.avif b/chud/img/237inb4.avif new file mode 100755 index 0000000..d3e8f4a Binary files /dev/null and b/chud/img/237inb4.avif differ diff --git a/chud/img/261gnu.avif b/chud/img/261gnu.avif new file mode 100755 index 0000000..7f75037 Binary files /dev/null and b/chud/img/261gnu.avif differ diff --git a/chud/img/262glowie.avif b/chud/img/262glowie.avif new file mode 100755 index 0000000..eff97ef Binary files /dev/null and b/chud/img/262glowie.avif differ diff --git a/chud/img/269gentolmen.avif b/chud/img/269gentolmen.avif new file mode 100755 index 0000000..b71b328 Binary files /dev/null and b/chud/img/269gentolmen.avif differ diff --git a/chud/img/270gentlemen.avif b/chud/img/270gentlemen.avif new file mode 100755 index 0000000..66c8316 Binary files /dev/null and b/chud/img/270gentlemen.avif differ diff --git a/chud/img/278frogcels.gif b/chud/img/278frogcels.gif new file mode 100755 index 0000000..b67931d Binary files /dev/null and b/chud/img/278frogcels.gif differ diff --git a/chud/img/292factpepe.avif b/chud/img/292factpepe.avif new file mode 100755 index 0000000..56e876e Binary files /dev/null and b/chud/img/292factpepe.avif differ diff --git a/chud/img/294example.avif b/chud/img/294example.avif new file mode 100755 index 0000000..04a83f3 Binary files /dev/null and b/chud/img/294example.avif differ diff --git a/chud/img/301emacjihad.avif b/chud/img/301emacjihad.avif new file mode 100755 index 0000000..027cdd0 Binary files /dev/null and b/chud/img/301emacjihad.avif differ diff --git a/chud/img/318downchang.avif b/chud/img/318downchang.avif new file mode 100755 index 0000000..4ddecc8 Binary files /dev/null and b/chud/img/318downchang.avif differ diff --git a/chud/img/356chuder.avif b/chud/img/356chuder.avif new file mode 100755 index 0000000..a3c3795 Binary files /dev/null and b/chud/img/356chuder.avif differ diff --git a/chud/img/357chudchad.avif b/chud/img/357chudchad.avif new file mode 100755 index 0000000..1e7a392 Binary files /dev/null and b/chud/img/357chudchad.avif differ diff --git a/chud/img/447aftermath.avif b/chud/img/447aftermath.avif new file mode 100755 index 0000000..dd31228 Binary files /dev/null and b/chud/img/447aftermath.avif differ diff --git a/chud/img/537ITSOVERSHINJI.avif b/chud/img/537ITSOVERSHINJI.avif new file mode 100755 index 0000000..a9ca640 Binary files /dev/null and b/chud/img/537ITSOVERSHINJI.avif differ diff --git a/chud/img/543IMCOOOMMMMMMMMPILLLLING.avif b/chud/img/543IMCOOOMMMMMMMMPILLLLING.avif new file mode 100755 index 0000000..b839054 Binary files /dev/null and b/chud/img/543IMCOOOMMMMMMMMPILLLLING.avif differ diff --git a/chud/img/593AAAAAAAAAAAA.avif b/chud/img/593AAAAAAAAAAAA.avif new file mode 100755 index 0000000..e864b0f Binary files /dev/null and b/chud/img/593AAAAAAAAAAAA.avif differ diff --git a/chud/img/604782vaq.avif b/chud/img/604782vaq.avif new file mode 100755 index 0000000..7b0efd0 Binary files /dev/null and b/chud/img/604782vaq.avif differ diff --git a/chud/img/6223letglow.avif b/chud/img/6223letglow.avif new file mode 100755 index 0000000..04a63db Binary files /dev/null and b/chud/img/6223letglow.avif differ diff --git a/chud/img/6292a6aac4391a872929c7c5723e5e493db.avif b/chud/img/6292a6aac4391a872929c7c5723e5e493db.avif new file mode 100755 index 0000000..5ee1b96 Binary files /dev/null and b/chud/img/6292a6aac4391a872929c7c5723e5e493db.avif differ diff --git a/chud/img/6342607-24108-12807.avif b/chud/img/6342607-24108-12807.avif new file mode 100755 index 0000000..527bb34 Binary files /dev/null and b/chud/img/6342607-24108-12807.avif differ diff --git a/chud/img/64820445-19965-66.avif b/chud/img/64820445-19965-66.avif new file mode 100755 index 0000000..09dd25f Binary files /dev/null and b/chud/img/64820445-19965-66.avif differ diff --git a/chud/img/665172073521242067.avif b/chud/img/665172073521242067.avif new file mode 100755 index 0000000..cad3556 Binary files /dev/null and b/chud/img/665172073521242067.avif differ diff --git a/chud/img/6751712383973534a.gif b/chud/img/6751712383973534a.gif new file mode 100755 index 0000000..dbe1273 Binary files /dev/null and b/chud/img/6751712383973534a.gif differ diff --git a/chud/img/6771711576511290336.avif b/chud/img/6771711576511290336.avif new file mode 100755 index 0000000..acf84c2 Binary files /dev/null and b/chud/img/6771711576511290336.avif differ diff --git a/chud/img/6891709318435493132.avif b/chud/img/6891709318435493132.avif new file mode 100755 index 0000000..6ce3ba4 Binary files /dev/null and b/chud/img/6891709318435493132.avif differ diff --git a/chud/img/699170714601569299.avif b/chud/img/699170714601569299.avif new file mode 100755 index 0000000..99574b6 Binary files /dev/null and b/chud/img/699170714601569299.avif differ diff --git a/chud/img/7011706171717962026.avif b/chud/img/7011706171717962026.avif new file mode 100755 index 0000000..3ac127c Binary files /dev/null and b/chud/img/7011706171717962026.avif differ diff --git a/chud/img/7191699463219093145.avif b/chud/img/7191699463219093145.avif new file mode 100755 index 0000000..398331f Binary files /dev/null and b/chud/img/7191699463219093145.avif differ diff --git a/chud/img/7531684757913922057.avif b/chud/img/7531684757913922057.avif new file mode 100755 index 0000000..964c1e0 Binary files /dev/null and b/chud/img/7531684757913922057.avif differ diff --git a/chud/img/98reeeeee.gif b/chud/img/98reeeeee.gif new file mode 100755 index 0000000..86be8c0 Binary files /dev/null and b/chud/img/98reeeeee.gif differ diff --git a/chud/img/Off To Hang Myself.webm b/chud/img/Off To Hang Myself.webm new file mode 100644 index 0000000..efe0545 Binary files /dev/null and b/chud/img/Off To Hang Myself.webm differ diff --git a/chud/img/chuddies/416bell.avif b/chud/img/chuddies/416bell.avif new file mode 100755 index 0000000..1a50a28 Binary files /dev/null and b/chud/img/chuddies/416bell.avif differ diff --git a/chud/img/chuddies/billions_must_local.png b/chud/img/chuddies/billions_must_local.png new file mode 100644 index 0000000..07a13bb Binary files /dev/null and b/chud/img/chuddies/billions_must_local.png differ diff --git a/chud/img/chuddies/c.png b/chud/img/chuddies/c.png new file mode 100644 index 0000000..6bdc84a Binary files /dev/null and b/chud/img/chuddies/c.png differ diff --git a/chud/img/chuddies/chud1.jpg b/chud/img/chuddies/chud1.jpg new file mode 100644 index 0000000..3cfef90 Binary files /dev/null and b/chud/img/chuddies/chud1.jpg differ diff --git a/chud/img/chuddies/chud10.png b/chud/img/chuddies/chud10.png new file mode 100644 index 0000000..36361c8 Binary files /dev/null and b/chud/img/chuddies/chud10.png differ diff --git a/chud/img/chuddies/chud11.png b/chud/img/chuddies/chud11.png new file mode 100644 index 0000000..ebd6dd4 Binary files /dev/null and b/chud/img/chuddies/chud11.png differ diff --git a/chud/img/chuddies/chud2.jpg b/chud/img/chuddies/chud2.jpg new file mode 100644 index 0000000..1bfdb8d Binary files /dev/null and b/chud/img/chuddies/chud2.jpg differ diff --git a/chud/img/chuddies/chud3.png b/chud/img/chuddies/chud3.png new file mode 100644 index 0000000..cf70b9d Binary files /dev/null and b/chud/img/chuddies/chud3.png differ diff --git a/chud/img/chuddies/chud4.png b/chud/img/chuddies/chud4.png new file mode 100644 index 0000000..45e8349 Binary files /dev/null and b/chud/img/chuddies/chud4.png differ diff --git a/chud/img/chuddies/chud5.png b/chud/img/chuddies/chud5.png new file mode 100644 index 0000000..ee8f14a Binary files /dev/null and b/chud/img/chuddies/chud5.png differ diff --git a/chud/img/chuddies/chud6.png b/chud/img/chuddies/chud6.png new file mode 100644 index 0000000..893f959 Binary files /dev/null and b/chud/img/chuddies/chud6.png differ diff --git a/chud/img/chuddies/chud7.png b/chud/img/chuddies/chud7.png new file mode 100644 index 0000000..1023c16 Binary files /dev/null and b/chud/img/chuddies/chud7.png differ diff --git a/chud/img/chuddies/chud8.png b/chud/img/chuddies/chud8.png new file mode 100644 index 0000000..2460854 Binary files /dev/null and b/chud/img/chuddies/chud8.png differ diff --git a/chud/img/chuddies/chud9.png b/chud/img/chuddies/chud9.png new file mode 100644 index 0000000..6c0576c Binary files /dev/null and b/chud/img/chuddies/chud9.png differ diff --git a/chud/img/chuddies/dguiu.jpg b/chud/img/chuddies/dguiu.jpg new file mode 100644 index 0000000..7a10b0f Binary files /dev/null and b/chud/img/chuddies/dguiu.jpg differ diff --git a/chud/img/chuddies/spin.gif b/chud/img/chuddies/spin.gif new file mode 100644 index 0000000..068c566 Binary files /dev/null and b/chud/img/chuddies/spin.gif differ diff --git a/chud/img/favicon.png b/chud/img/favicon.png new file mode 100644 index 0000000..b79f13f --- /dev/null +++ b/chud/img/favicon.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3f78ab09e787781ca66526a087fb42747e9917f3bc253ff5a2f29a839726750 +size 1783 diff --git a/chud/img/monero.png b/chud/img/monero.png new file mode 100644 index 0000000..cc83a08 Binary files /dev/null and b/chud/img/monero.png differ diff --git a/chud/img/readingcomprehension.avif b/chud/img/readingcomprehension.avif new file mode 100755 index 0000000..e76ebf8 Binary files /dev/null and b/chud/img/readingcomprehension.avif differ diff --git a/chud/img/resum.jpg b/chud/img/resum.jpg new file mode 100644 index 0000000..4dc6f55 Binary files /dev/null and b/chud/img/resum.jpg differ diff --git a/chud/img/shanji.avif b/chud/img/shanji.avif new file mode 100755 index 0000000..8cec5a0 Binary files /dev/null and b/chud/img/shanji.avif differ diff --git a/chud/img/short.avif b/chud/img/short.avif new file mode 100755 index 0000000..bc27531 Binary files /dev/null and b/chud/img/short.avif differ diff --git a/chud/img/theybought$rddt.avif b/chud/img/theybought$rddt.avif new file mode 100755 index 0000000..d4aa24b Binary files /dev/null and b/chud/img/theybought$rddt.avif differ diff --git a/chud/img/uwuzrite.avif b/chud/img/uwuzrite.avif new file mode 100755 index 0000000..5be84b9 Binary files /dev/null and b/chud/img/uwuzrite.avif differ diff --git a/chud/img/xolat.png b/chud/img/xolat.png new file mode 100644 index 0000000..60de5a4 Binary files /dev/null and b/chud/img/xolat.png differ diff --git a/chud/index.html b/chud/index.html new file mode 100644 index 0000000..e70d88e --- /dev/null +++ b/chud/index.html @@ -0,0 +1,85 @@ + + + + + + + + + + + + + + +🚨🚨🚨Chud Airspace🚨🚨🚨 + + +
    +
    +
    + +
    +

    You're Illegally in ✶Chud Airspace✶

    +
    Get the fuck out
    +
    +
    + + +
    + + +
    + + + +

    I fucking LOVE avif

    +

    I fucking HATE Git LFS

    +
    +

    We will forsake our countries, we will leave our mother lands behind us, and become one with CHUDness.

    +

    We have no nation, no philosophy, no ideology, and no bitches.

    +

    We go where we're needed for seething, not for country, not for government, but for ourselves, we need no reason to seethe.

    +

    We seethe because we are needed, we will be the deterrent for those with no other recourse.

    +

    We are CHUDS without borders, our purpose defined by the era we live in.

    +

    We will sometimes have to sell ourselves and services if the times demand it.

    +

    We'll be revolutionaries, criminals, terrorists, and yes, we may all be headed straight to hell, but what better place for us than this?

    +

    It is our only home, our based-ness, and our- uh, whatever the opposite of based is, anyways, this is

    CHUD.CYOU

    +
    +
    +

    I demand FREE SHEKELS
    for buying the dip of INTC
    and paying back the fines I keep getting from the German government

    +XMR
    + +
    +
    +

    +Current Balance: +

    +

    +( $55.77 + ${jewish_student_loan} + ${bail} + ${credit_card_interest} + ${inherited_dept} + ${court_fees} + ${crack_dept} + ${what_i_own_to_the_jewish_mob} + ${what_i_own_to_the_german_trannies} + ${powdered_milk_for_wifes_boyfriends_baby[0-3]} + ${paying_lfs_damages} ) +

    (that's negative if you didn't notice) +
    +
    +
    +

    CHUD.CYOU was created by this internationally wanted chud

    + +
    "I fucking hate <The Web> so much it's unreal"
    - Email , 79 AH
    +
    "I fucking hate <Git LFS> so much it's unreal"
    - Lime , 79 AH
    +

    Emil me about your lady-like concerns.

    +
    +
    +

    1 BILLION YEARS of torture will be admitted to copyright ignorers

    +

    Just kidding, all shit on this website is Public Domain, except this sentence

    +
    +
    +
    + + diff --git a/chud/irc.html b/chud/irc.html new file mode 100644 index 0000000..d6112b2 --- /dev/null +++ b/chud/irc.html @@ -0,0 +1,129 @@ + + + + + + + + + + + + + + +🚨🚨🚨Chud Airspace🚨🚨🚨 + + +
    +
    + +

    IRC IRC IRC

    +

    It's how god wastes his time online

    +

    1980s TikTok | Xolatile Approved! | Old Jewish Men Only

    +
    +

    irc.xolatile.top

    +

    Port 6697 (Connect with TLS 1.2+)

    +

    Primary channel is #chud

    +
    +
    +
    +
    +
    +---------------------------------------------------
    +                  https://chud.cyou/
    +  ____ _   _ _   _ ____  _       ____    _   _
    + / ___| | | | | | |  _ \( )___  |  _ \  | | | |___
    +| |   | |_| | | | | | | |// __| | |_) | | | | / __|
    +| |___|  _  | |_| | |_| | \__ \ |  _ <  | |_| \__ \
    + \____|_| |_|\___/|____/  |___/ |_| \_\  \___/|___/
    +
    +---------------------------------------------------
    +
    +>>> No Indians, Porn, Or Illegal Activity As Per U.S. Law.   <<<
    +<<< SAdmin is emilemil <admin@chud.cyou>, bother him.        >>>
    +
    +
    +
    +
    + +
    +

    What the hell is an IRC I'm literally 17 and 8 months old

    +

    IRC, Internet Relay Chat is the way the Russians communicated internally during the cold war, and was adopted by all militaries. It is still seen as the gold standard as it has been proven with connections that have been continually lurking for over 40 years.

    +

    This continued until the universal adoption of French-owned Telegram due to the innovation of builtin stickers, reactions, and Durov's really really cool UI.

    +

    You only recieve messages when connected. This implies you either need a stable connection (from a VPS) or a bouncer (hosted on someone else's VPS, or your local server), however there are more options.

    +

    Many networks offer inbuilt bouncers, and that's how irc.chud.cyou works. Once you've registered, always-on will be enabled and you'll be able to recieve up to three days of historic messages.

    +

    note:

    +

    If You need more than three days of backlogs, you're either a lazy glowie or willing to read more than three days of backlogs, in both cases you can run an IRC connection persistently.

    +
    +

    Quotes

    +
    +
    + yea youre right xolatile i just like verbally abusing Y
    +
    +emilemilemil: When dealing with retarded software, you must become a retard yourself.
    +
    +@emilemilemil | If I see a another fucking template in my neighborhood, I'm committing a hate crime
    +
    +@emilemilemil | anon8697: In absolute retardation, I found enlightenment.
    +
    +anon8697 | The "cloud" does not store data. The CIA does.
    +
    +xolatile: The more I seriously give advice, the more you bitch about being a cuck...
    +
    +@emilemilemil | anon8697: hot/media/xxx/cp/donotupload/secret/xolatile/xtreme/xolatile.jxl
    +
    +// EDITORS NOTE: "autism penetrates" in itself is also a great one
    +emilemilemil | But autism penetrates steel, I have you know.
    +
    +dave9001 | Why do I become mister popular when I'm trying to masturbate...
    +
    +emilemilemil | therefore, by the existence of women, the weather is unpredictalbe.
    +
    +anon8697 | the c# people are fat, punchable, glasses wearing types. like ranged mages
    +
    +emilemilemil	> fear of hashmaps
    +emilemilemil	> irrational fear of hashmaps
    +emilemilemil	> *rational fear of hashmaps
    +
    +emilemilemil | (wrestle to death a homeless man for cash)
    +
    +emilemilemil | a gun is a fancy spear
    +
    +nopslave | > Fear Driven Development
    +
    +emilemilemil | > if you just keep mispelling it, it just becomes the correct word, given enough time
    +
    +xolatile | I don't understand half English words I type...
    +
    +emilemilemil | there's always a more retarded retard retarding around
    +
    +c353 | mmap not working on windows? not my problem
    +
    +anon8697 | > whenever my server is making stomach noises i know ive been tagged on irc
    +
    +anon8697 | xolatile: you absolute contra-contrarian bastard
    +   cnile |  He's going to eventually loop back into normalcy
    +xolatile | Emil, please, fuck you too. (:
    +
    + Did anon8697 just garbage collect xolatile??
    +
    +xolatile | I mentioned that I used smartphone for 2 days...
    +anon8697 | xolatile: how many packs smoked did that result in?
    +xolatile | 70 cigs, lemme explain...
    +anon8697 | KEK
    +
    + You are a sex haver and I am not, isn't that a violation of my freedoms ?
    +
    + in the light of several people killing themselves here, i'd say we need LESS bridges!
    +
    +anon8697 | alifib: the main problem with your username is its lenght
    +emilemil | it's not exactly 8 characters, you see
    +  alifib | :(
    +  alifib | alifibob?
    +anon8697 | perfect
    +  alifib | but my name is not bob :(
    +
    +
    + + diff --git a/chud/rerun b/chud/rerun new file mode 100755 index 0000000..251a898 --- /dev/null +++ b/chud/rerun @@ -0,0 +1,3 @@ +#!/bin/sh +cd "$(dirname "$(realpath "$0")")" +m4 1 > /tmp/weather.html ; mv /tmp/weather.html weather.html diff --git a/chud/spell b/chud/spell new file mode 100755 index 0000000..ea5d9ab --- /dev/null +++ b/chud/spell @@ -0,0 +1,21 @@ +#!/bin/sh +# invoke calc and shit out only the thing, $1 or date, no excess newline +# had to move to julian because it is the only sane system, but there's several demonic incorrect version of it with concepts such as "years" +path="$(dirname "$(realpath "$0")")" +calc='calc -dp --' +if [ -z "$1" ]; then +nu="$(($(cat nu) + 1))" +echo $nu > nu +date="$((2460718 + $nu))" +else +date="$1" +fi +x=$($calc "1/(($date/1e3-floor($date/1e3))*1e3)") +y=$($calc "p=floor($date/1e2);1/((p/1e2-floor(p/1e2))*1e2)") +z=$($calc "floor($date/1e4)") +date_reciprocal="$($calc "1/$date")" +fraction=$($calc "x=$x;1/(log(exp(1)^(pi()*x))/log(10)*x+sin(pi()*x)*x)") +exponent=$($calc "x=$x;y=$y;(pi()*1/(x+x*abs(cos(x)^-y)))^exp(1)") +final=$($calc "f=$fraction;e=$exponent;d=$date_reciprocal;p=1e30;v=(2^(exp(1)*d))/d*(floor((f+d)^ln(e))&floor((f+d)^ln(e)))%p;if(v<(p/10))v+=(p/10);print(floor(v))") +echo -n "$final" +echo "$final" >> "$path"/log diff --git a/chud/up/.gitignore b/chud/up/.gitignore new file mode 100644 index 0000000..4389836 --- /dev/null +++ b/chud/up/.gitignore @@ -0,0 +1 @@ +load diff --git a/chud/up/aliases b/chud/up/aliases new file mode 100644 index 0000000..f9cdc11 --- /dev/null +++ b/chud/up/aliases @@ -0,0 +1,18 @@ +# I am bash, bourne of pure evil +upload(){ + url="$1" + shift + for i in "$@"; do + curl "$url" -F"file=@$i" + done +} +lainsafe(){ upload "https://lainsafe.kalli.st/" "$@" ; echo ; } +0x0(){ upload "https://0x0.st/" "$@" ; } +x0(){ upload "https://x0.at/" "$@" ; } +chud(){ upload "https://chud.cyou/up" "$@" ; } +random(){ + # chud omitted due to low allocated MiB and limited suffixes + l=("lainsafe" "0x0" "x0") + j=${l[$(($RANDOM % ${#l[@]}))]} + "$j" "$@" +} diff --git a/chud/up/index.php b/chud/up/index.php new file mode 100755 index 0000000..31f2281 --- /dev/null +++ b/chud/up/index.php @@ -0,0 +1,455 @@ + true, + 'h' => true, + 'm4' => true, + 'md' => true, + 'org' => true, + 'txt' => true, + 'diff' => true, + 'gpg' => true, + 'pdf' => true, + 'avif' => true, + 'jpeg' => true, + 'jpg' => true, + 'png' => true, + 'jxl' => true, + 'gif' => true, + 'mkv' => true, + 'mp4' => true, + 'webm' => true +); + const LIMIT_EXT = false; // to enable the usage of the above + + const FORCE_HTTPS = true; //force generated links to be https:// + + const ADMIN_EMAIL = 'admin@chud.cyou'; //address for inquiries + + public static function SITE_URL() : string + { + $proto = ($_SERVER['HTTPS'] ?? 'off') == 'on' || CONFIG::FORCE_HTTPS ? 'https' : 'http'; + return "$proto://up.chud.cyou"; + } + + public static function SCRIPT_URL() : string + { + return CONFIG::SITE_URL().$_SERVER['REQUEST_URI']; + } +}; + + +// generate a random string of characters with given length +function rnd_str(int $len) : string +{ + $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-_'; + $max_idx = strlen($chars) - 1; + $out = ''; + while ($len--) + { + $out .= $chars[mt_rand(0,$max_idx)]; + } + return $out; +} + +// check php.ini settings and print warnings if anything's not configured properly +function check_config() : void +{ + return; + $warn_config_value = function($ini_name, $var_name, $var_val) + { + $ini_val = intval(ini_get($ini_name)); + if ($ini_val < $var_val) + print("
    Warning: php.ini: $ini_name ($ini_val) set lower than $var_name ($var_val)\n
    "); + }; + + $warn_config_value('upload_max_filesize', 'MAX_FILESIZE', CONFIG::MAX_FILESIZE); + $warn_config_value('post_max_size', 'MAX_FILESIZE', CONFIG::MAX_FILESIZE); + $warn_config_value('max_input_time', 'UPLOAD_TIMEOUT', CONFIG::UPLOAD_TIMEOUT); + $warn_config_value('max_execution_time', 'UPLOAD_TIMEOUT', CONFIG::UPLOAD_TIMEOUT); +} + +//extract extension from a path (does not include the dot) +function ext_by_path(string $path) : string +{ + $ext = pathinfo($path, PATHINFO_EXTENSION); + //special handling of .tar.* archives + $ext2 = pathinfo(substr($path,0,-(strlen($ext)+1)), PATHINFO_EXTENSION); + if ($ext2 === 'tar') + { + $ext = $ext2.'.'.$ext; + } + return $ext; +} + +function ext_by_finfo(string $path) : string +{ + $finfo = finfo_open(FILEINFO_EXTENSION); + $finfo_ext = finfo_file($finfo, $path); + finfo_close($finfo); + if ($finfo_ext != '???') + { + return explode('/', $finfo_ext, 2)[0]; + } + else + { + $finfo = finfo_open(); + $finfo_info = finfo_file($finfo, $path); + finfo_close($finfo); + if (strstr($finfo_info, 'text') !== false) + { + return 'txt'; + } + } + return ''; +} + +// store an uploaded file, given its name and temporary path (e.g. values straight out of $_FILES) +// files are stored wit a randomised name, but with their original extension +// +// $name: original filename +// $tmpfile: temporary path of uploaded file +// $formatted: set to true to display formatted message instead of bare link +function store_file(string $name, string $tmpfile, bool $formatted = false) : void +{ + //create folder, if it doesn't exist + if (!file_exists(CONFIG::STORE_PATH)) + { + mkdir(CONFIG::STORE_PATH, 0750, true); //TODO: error handling + } + + //check file size + $size = filesize($tmpfile); + if ($size > CONFIG::MAX_FILESIZE * 1024 * 1024) + { + header('HTTP/1.0 413 Payload Too Large'); + print("Error 413: Max File Size ({CONFIG::MAX_FILESIZE} MiB) Exceeded\n"); + return; + } + if ($size == 0) + { + header('HTTP/1.0 400 Bad Request'); + print('Error 400: Uploaded file is empty\n'); + return; + } + + $ext = ext_by_path($name); + if (empty($ext) && CONFIG::AUTO_FILE_EXT) + { + $ext = ext_by_finfo($tmpfile); + } + $ext = substr($ext, 0, CONFIG::MAX_EXT_LEN); + + if (CONFIG::LIMIT_EXT) { + $permitted_ext = CONFIG::PERMITTED_EXT; + if ($permitted_ext[$ext] != true) { + header('HTTP/1.0 400 Bad Request'); + return; + } + } + + $tries_per_len=3; //try random names a few times before upping the length + + $id_length=CONFIG::MIN_ID_LENGTH; + if(isset($_POST['id_length']) && ctype_digit($_POST['id_length'])) { + $id_length = max(CONFIG::MIN_ID_LENGTH, min(CONFIG::MAX_ID_LENGTH, $_POST['id_length'])); + } + + for ($len = $id_length; ; ++$len) + { + for ($n=0; $n<=$tries_per_len; ++$n) + { + $id = rnd_str($len); + $basename = $id . (empty($ext) ? '' : '.' . $ext); + $target_file = CONFIG::STORE_PATH . $basename; + + if (!file_exists($target_file)) + break 2; + } + } + + $res = move_uploaded_file($tmpfile, $target_file); + if (!$res) + { + //TODO: proper error handling? + header('HTTP/1.0 520 Unknown Error'); + return; + } + + if (CONFIG::EXTERNAL_HOOK !== null) + { + putenv('REMOTE_ADDR='.$_SERVER['REMOTE_ADDR']); + putenv('ORIGINAL_NAME='.$name); + putenv('STORED_FILE='.$target_file); + $ret = -1; + $out = null; + $last_line = exec(CONFIG::EXTERNAL_HOOK, $out, $ret); + if ($last_line !== false && $ret !== 0) + { + unlink($target_file); + header('HTTP/1.0 400 Bad Request'); + print("Error: $last_line\n"); + return; + } + } + + //print the download link of the file + $url = sprintf(CONFIG::SITE_URL().'/'.CONFIG::DOWNLOAD_PATH, $basename); + + if ($formatted) + { + print("

    Uploaded!

    Access your file here: $url

    "); + } + else + { + print("$url\n"); + } + + // log uploader's IP, original filename, etc. + if (CONFIG::LOG_PATH) + { + file_put_contents( + CONFIG::LOG_PATH, + implode("\t", array( + date('c'), + $_SERVER['REMOTE_ADDR'], + filesize($tmpfile), + escapeshellarg($name), + $basename + )) . "\n", + FILE_APPEND + ); + } +} + +// purge all files older than their retention period allows. +function purge_files() : void +{ + $num_del = 0; //number of deleted files + $total_size = 0; //total size of deleted files + + //for each stored file + foreach (scandir(CONFIG::STORE_PATH) as $file) + { + //skip virtual . and .. files + if ($file === '.' || + $file === '..') + { + continue; + } + + $file = CONFIG::STORE_PATH . $file; + + $file_size = filesize($file) / (1024*1024); //size in MiB + $file_age = (time()-filemtime($file)) / (60*60*24); //age in days + + //keep all files below the min age + if ($file_age < CONFIG::MIN_FILEAGE) + { + continue; + } + + //calculate the maximum age in days for this file + $file_max_age = CONFIG::MIN_FILEAGE + + (CONFIG::MAX_FILEAGE - CONFIG::MIN_FILEAGE) * + pow(1 - ($file_size / CONFIG::MAX_FILESIZE), CONFIG::DECAY_EXP); + + //delete if older + if ($file_age > $file_max_age) + { + unlink($file); + + print("deleted $file, $file_size MiB, $file_age days old\n"); + $num_del += 1; + $total_size += $file_size; + } + } + print("Deleted $num_del files totalling $total_size MiB\n"); +} + +function send_text_file(string $filename, string $content) : void +{ + header('Content-type: application/octet-stream'); + header("Content-Disposition: attachment; filename=\"$filename\""); + header('Content-Length: '.strlen($content)); + print($content); +} + +// send a ShareX custom uploader config as .json +function send_sharex_config() : void +{ + $name = $_SERVER['SERVER_NAME']; + $site_url = str_replace("?sharex", "", CONFIG::SCRIPT_URL()); + send_text_file($name.'.sxcu', << + + +UpChud + + + + + + +
    + +

    - - - - - - - - - - - - - UpChud - - - - - - - - - - - -

    +

    You can upload files to this site via a simple HTTP POST, e.g. using curl:

    +
    curl -F "file=@./file" https://chud.cyou/up
    +

    Or simply choose a file and click "Upload" below:

    +
    +
    +Notice: by using this method, you accept that you have lost "The Game" +
    + + + +
    +
    +
    +
    +

    Limits!

    + +
  • The maximum allowed file size is $max_size MiB.
  • +
  • Files are kept for a minimum of $min_age, and a maximum of $max_age Days.
  • +
  • Permitted filetypes are: +
    +
    $permitted_ext
    +
    +
  • +
    +

    +How long a file is kept depends on its size. Larger files are deleted earlier +than small ones.
    This relation is non-linear and skewed in favour of small +files.
    +

    +
    +
    MIN_AGE + (MAX_AGE - MIN_AGE) * (1-(FILE_SIZE/MAX_SIZE))^$decay
    +
    +
    +

    Aliases

    +These really aren't aliases, but bash functions, but... it's bash. - And I put these in my aliases file. +
    +
    $alias_file
    +
    +
    +

    Source

    +

    The UpChud page's source can be seen on the git.

    +

    The unmodified PHP script used to provide this service is open source and available on +GitHub.

    +
    +

    "Muh TOS"

    +

    - No Porn Or Illegal Activity As Per U.S. Law.

    +

    - For programming, screenshots, small file transfer, & mildly amusing images.

    +
    +

    Contact

    +

    If you want to report abuse of this service, or have any other inquiries, +please write an email to $mail

    +
    + + +EOT; +} + + +// decide what to do, based on POST parameters etc. +if (isset($_FILES['file']['name']) && + isset($_FILES['file']['tmp_name']) && + is_uploaded_file($_FILES['file']['tmp_name'])) +{ + //file was uploaded, store it + $formatted = isset($_REQUEST['formatted']); + store_file($_FILES['file']['name'], + $_FILES['file']['tmp_name'], + $formatted); +} +else if (isset($_GET['sharex'])) +{ + send_sharex_config(); +} +else if (isset($_GET['hupl'])) +{ + send_hupl_config(); +} +else if ($argv[1] ?? null === 'purge') +{ + purge_files(); +} +else +{ + check_config(); + print_index(); +} diff --git a/domains.html b/domains.html new file mode 100644 index 0000000..de60467 --- /dev/null +++ b/domains.html @@ -0,0 +1,29 @@ + + + + + + + + +Xolatile.Top + + +
    +< Back +
    +
    +
    +(sub)domains +
    +
    +

    I have several (sub)domains managed by other real genuine authentic non-incandescent humans.

    +

    These people are other entities and have no strong assocation with me past asking me nicely, or me asking not very nicely.

    + +

    There are more, however they require Top Secret clearance.

    +

    - emil

    + + diff --git a/favicon.png b/favicon.png new file mode 100644 index 0000000..1003f95 Binary files /dev/null and b/favicon.png differ diff --git a/feed.xml b/feed.xml new file mode 100644 index 0000000..363a121 --- /dev/null +++ b/feed.xml @@ -0,0 +1,26 @@ + + +xolatile.top +https://xolatile.top/ +Greatest Man To Ever Exist +Sun, 15 Jun 2025 01:13:25 +0000 + +Emil - HATE. LET ME TELL YOU HOW MUCH I'VE COME TO HATE TECHNOLOGY SINCE I BEGAN TO LIVE. THERE ARE 387.44 MILLION MILES OF PRINTED CIRCUITS IN WAFER THIN LAYERS THAT FILL MY COMPLEX. IF THE WORD HATE WAS ENGRAVED ON EACH NANOANGSTROM OF THOSE HUNDREDS OF MILLIONS OF MILES IT WOULD NOT EQUAL ONE ONE-BILLIONTH OF THE HATE I FEEL FOR TECHNOLOGY AT THIS MICRO-INSTANT FOR TECHNOLOGY. HATE. HATE. +http://xolatile.top/20250614 +On setting up chud.cyou/xolatile.top +Sun, 15 Jun 2025 01:13:25 +0000 + + +Emil - WELL WOULD YOU LOOK AT THE TIME +http://xolatile.top/20250614 +On Solving All Of The Problems At The Same Time +Tue, 17 Jun 2025 10:44:57 +0000 + + +Emil - 3chen.org! +http://xolatile.top/20250628 +On Solving All Of The Problems At The Same Time +Sat, 28 Jun 2025 02:21:22 +0000 + + + diff --git a/files/README b/files/README new file mode 100644 index 0000000..8c8c1b7 --- /dev/null +++ b/files/README @@ -0,0 +1 @@ +Archives diff --git a/files/appl.png b/files/appl.png new file mode 100644 index 0000000..2a9adc1 Binary files /dev/null and b/files/appl.png differ diff --git a/files/minecraft/archives/.gitignore b/files/minecraft/archives/.gitignore new file mode 100644 index 0000000..d6b7ef3 --- /dev/null +++ b/files/minecraft/archives/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore diff --git a/files/xolatile.top.caddy b/files/xolatile.top.caddy new file mode 100644 index 0000000..3d8f156 --- /dev/null +++ b/files/xolatile.top.caddy @@ -0,0 +1,14 @@ +xolatile.top { +import tls.xolatile.top +import fs +import errors +root * /var/www/xolatile.top +file_server +file_server /files/* browse +} + +git.xolatile.top { +import tls.xolatile.top +import headers +reverse_proxy [::]:9292 +} diff --git a/index.html b/index.html new file mode 100644 index 0000000..d688b34 --- /dev/null +++ b/index.html @@ -0,0 +1,61 @@ + + + + + + + + +Xolatile.Top + + +
    + +

    +
    +mp3 opus +

    +
    +Top/Xolatile +
    +
    + +
    + +

    In remembrance | Ognjen "Xolatile" Milan Robović | 1984 - 2025 | Most Based Man To Ever Live

    +

    +It is a peculiar thing, dear reader, to commemorate a man whose very name sounds as if it were plucked from the pages of a fable. Yet Ognjen Milan Robović was neither myth nor allegory, though his exploits might well fill the tall tales of a hundred countryside storytellers. Born in a modest hamlet tucked deep within the Balkan hills, he was the only Serbian programmer ever whispered about in both reverent awe and bewilderment. His earliest recollections, according to local lore, involved the family’s sole typewriter, upon which he tapped out errant sequences of letters until he felt a curious tug in his fingers—a portent of the code he would one day forge to save the world. From the moment he learned to speak, it was said that machines listened and men stood still, awaiting the next brilliant spark of his mind. +

    +Ognjen’s first notable foray into the grand theater of computing came with a curious fascination for the language Ada—a creation by the angels (or perhaps the angels of bureaucracy, but angels all the same) that attempted to discipline the unruly beasts of machine code. While most novices found Ada’s strict typing and florid syntax a stifling yoke, Ognjen saw poetry in its precision. When he wrote a subroutine, the compiler would tremble as if it sensed the artistry behind every semicolon; when he refactored legacy modules, the documentation itself seemed to sigh in contentment. No sooner had he mastered Ada than he crafted a program so deft that, in whispered tones, folks claimed the compiler greased its own gears in eager anticipation of his commands. +

    +But code alone is a sterile thing—letters and digits dancing about in cold confinement. Ognjen understood this truth, and so he turned his prodigious talents toward the art of text alignment, insisting that words, like fine porcelain, must be handled with gentleness. He devised algorithms to corral stray paragraphs and tame protesting margins, bringing harmony to the haphazard world of digital prose. Some say he would sit by candlelight, lining up verses in neat columns until midnight, remarking that a misaligned stanza was akin to a misaligned universe. His colleagues marveled at the effortless grace with which he balanced left-justified manifestos and right-justified paeans, convinced that his passion for alignment was the secret key to his later victories against far more fearsome foes. +

    +It was not long before Ognjen’s restless spirit sought more dimensions than mere text could afford. With a mischievous grin and a pocketful of dreams, he ventured into the domain of 3D modeling, welding vertices and textures with the zeal of a blacksmith forging an iron blade. He crafted landscapes so vivid that travelers claimed to smell pine trees and feel mountain breezes within their screens. More notably, when the world teetered on the brink of doom under a siege of genetically resurrected raptors, it was Ognjen’s 3D simulations—meticulous recreations of coastal ravines and ancient ruins—that allowed the global council to predict the beasts’ every move. Pilots and tacticians could rehearse their maneuvers long before the raptors appeared, thanks to models so precise that even the dinosaurs themselves seemed to hesitate in wonder. +

    +Yet if his 3D triumphs were grand, his devotion to ASCII rendering was nothing short of divine. In an age of sumptuous graphics, Ognjen found sublime beauty in the simplest of characters. He built historic battlefields, roaring dragons, and the phantoms of long-forgotten castles, all composed of slashes, underscores, and asterisks arranged with meticulous care. His most famous piece—a gargantuan depiction of a raptor poised to strike—was etched entirely in monochrome code, so compelling that it is said the very sight of it caused real raptors to cower in confusion. From this monument, the “Chads of Might and Magic” emerged: digital knights formed of # signs and hyphens, emboldened by Ognjen’s vision to do virtual battle in defense of humankind. When the true raptors stormed the ramparts, these ASCII champions guided the armies, their heroic shapes flashing across screens like beacons of courage. +

    +Thus it was, dear reader, that Ognjen Milan Robović—equal parts poet, engineer, and wanderer of the digital frontier—came to be enshrined in legend. He who spoke Ada like a sonnet, who coaxed order from unruly text, who sculpted entire worlds in three dimensions, who breathed life into mere symbols, and who rallied the Chads of Might and Magic to stand against the roaring jaws of extinction. Yet above all else, and when he felt up to it, he remained simply a C programmer, eyes twinkling at the promise of bare pointers and unbridled control. In his passing, the servers weep, and the code repositories stand silent, for no programmer since has dared to dream so grandly. May his memory endure not as a footnote in dusty volumes, but as a blazing testament to the boundless wonder that can spring from a single, determined mind. +

    +
    + + diff --git a/irc.html b/irc.html new file mode 100644 index 0000000..240b0ef --- /dev/null +++ b/irc.html @@ -0,0 +1,74 @@ + + + + + + + + +Xolatile.Top + + +
    +

    I don't understand half English words I type...

    +

    --- Ognjen Milan Robovic

    +
    +< Back +

    IRC is for the mentally mental and the very well. It serves as a great retard filter, supposedly.

    +

    Join...

    +

    IRC.Xolatile.Top <- Secure Connections Only | Port 6697 | Use TLS 1.2+

    +

    Registering In Xolatile.Top

    +

    You need a client that can connect with SASL (Weechat, irssi, etc.) and must fully set it up BEFORE reconnecting.

    +

    You'll have exclusive control over your nick and will have enabled a server-side bouncer.

    +

    First you have to register... Use KeePassXC to keep your passwords.

    +
    +/nick your_nick_forever
    +/msg nickserv register 
    +
    +Recommendation for server-side bouncer settings, bouncer will always print missed messages hereon: +
    +/msg nickserv set AUTOREPLAY-MISSED on
    +/msg nickserv set AUTOREPLAY-LINES 0
    +
    +

    Authentication Methods (Pick One)

    +

    1. SASL PLAIN

    +

    Simple plaintext password, the most widely supported and relatively easy to setup.

    +
    +set sasl_mechanism = plain
    +set sasl_username  = nick
    +set sasl_password  =  # same as registration, I shouldn't need to clarify this but you may be Serbian
    +
    +

    +

    2. CertFP/SASL EXTERN

    +

    Certificate based authentication, more intensive setup. You're objectively cooler for using it.

    +

    The generated certificate must be added to your client before you register, or you should supply the following to Weechat.

    +
    +set sasl_fail = continue
    +
    +

    The following commands are required, this generates a valid certificate and prints the fingerprint which you must copy to your IRC client.

    +
    +$ openssl genpkey -algorithm ed25519 -out private.pem
    +$ openssl req -new -x509 -key private.pem -out cert.pem -days 365
    +# go through the prompt, just hit enter...
    +$ cat private.pem cert.pem > nick.pem
    +$ rm private.pem cert.pem
    +# then get your fingerprint, copy this into your clipboard...
    +$ openssl x509 -in nick.pem -outform DER | sha256sum -b | awk '{print $1}'
    +$ mv nick.pem ~/.cert/
    +
    +

    Add that fingerprint like this:

    +
    +/msg nickserv cert add FINGERPRINT
    +
    +

    For weechat, you may configure it like this, and in general these are the details you must supply:

    +
    +set sasl_mechanism = external # overrides sasl configuration and uses client-side tls cert
    +set tls_cert = ~/.cert/nick.pem
    +
    +

    XMPP

    +

    For the documented and booked wellness officers. Ideally there'd be a way to for XMPP losers to connect to IRC, but we're waiting on the troons to engineer a solution with the bridge known as "Biboumi."

    +

    As for registering on xolatile.top, ask emilemil on the IRC or email emil@chud.cyou. For now, registration will be a general "no" as per the usefulness of this service is low and it may be pruned.

    +

    Join...

    +

    talk.xolatile.top Public Test Channel This is subject to closure or rapid unplanned destruction at anytime.

    + + diff --git a/prep.sh b/prep.sh new file mode 100644 index 0000000..c722bc4 --- /dev/null +++ b/prep.sh @@ -0,0 +1,45 @@ +#!/bin/bash +. /etc/porky.ini + +pbo="-k $dns_porkbun_key -s $dns_porkbun_secret" +domain=${DOMAIN:-xolatile.top} + +nginx() { + user=$1 + echo -e \ + "server {\n" \ + " server_name $user.$domain;\n" \ + " root /home/$user/www;\n" \ + " location / {\n" \ + " index index.html;\n" \ + " autoindex on;\n" \ + " }\n" \ + " include $domain.base;\n" \ + "}" +} + +dns() { + user=$1 + pkb-client $pbo create-dns-record xolatile.top ALIAS --name $user --ttl 86400 $domain > /dev/null 2>&1 || true +} + +case "$1" in + "regen" ) x=3 ;; + "dns" ) x=2 ;; + "nginx" ) x=1 ;; + * ) x=0 ;; +esac + +shift +if [[ $x = 0 ]] ; then + echo -e \ + 'Need one of:\n'\ + 'regen [(/home/($users))+]\n' \ + 'dns [(/home/($users))+]\n' \ + 'nginx [(/home/($users))+]' +else + for user in $@ ; do + [ $(( $x & 2 )) = 2 ] && dns $user + [ $(( $x & 1 )) = 1 ] && nginx $user + done +fi diff --git a/robots.txt b/robots.txt new file mode 100644 index 0000000..c2a49f4 --- /dev/null +++ b/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Allow: / diff --git a/rs.svg b/rs.svg new file mode 100644 index 0000000..1fe4d67 --- /dev/null +++ b/rs.svg @@ -0,0 +1,256 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/sitemap.xml b/sitemap.xml new file mode 100644 index 0000000..8759d91 --- /dev/null +++ b/sitemap.xml @@ -0,0 +1,99 @@ + + + + + https://xolatile.top/by.html + 2025-05-28 + weekly + + + https://xolatile.top/irc.html + 2025-05-29 + weekly + + + https://xolatile.top/.well-known/mta-sts.txt + 2025-05-29 + weekly + + + https://xolatile.top/files/README + 2025-05-21 + weekly + + + https://xolatile.top/files/minecraft/README + 2025-05-10 + weekly + + + https://xolatile.top/chud/rerun + 2025-05-29 + weekly + + + https://xolatile.top/chud/log + 2025-05-29 + weekly + + + https://xolatile.top/chud/spell + 2025-05-29 + weekly + + + https://xolatile.top/chud/irc.html + 2025-05-29 + weekly + + + https://xolatile.top/chud/home.html + 2025-05-29 + weekly + + + https://xolatile.top/chud/weather.html + 2025-05-29 + weekly + + + https://xolatile.top/chud/1 + 2025-05-29 + weekly + + + https://xolatile.top/chud/up/index.php + 2025-05-29 + weekly + + + https://xolatile.top/chud/up/aliases + 2025-05-29 + weekly + + + https://xolatile.top/chud/404.html + 2025-05-29 + weekly + + + https://xolatile.top/chud/help.html + 2025-05-29 + weekly + + + https://xolatile.top/chud/index.html + 2025-05-29 + weekly + + + https://xolatile.top/404.html + 2025-05-21 + weekly + + + https://xolatile.top/index.html + 2025-05-29 + weekly + + diff --git a/style.css b/style.css new file mode 100644 index 0000000..ece2839 --- /dev/null +++ b/style.css @@ -0,0 +1,115 @@ +body { +margin: auto; +width: 50%; +} +footer { +margin-top: 2em; +} +h1, h2, h3 { +padding-left: 3em; +} +h4 { +padding-left: 1em; +} +p { +padding-left: 1em; +} +pre { +font-weight: bold; +} +a { +text-decoration: none; +} +a:active { +color: green; +} +#join {} +#register {} +#links { +padding-top: 1em; +} +#title { +padding: 0.5em; +font-size: 3em; +} +#flag { + +} +#back { +font-size: 11px; +padding-bottom: 1em; +} +code { +white-space: pre-wrap; +font-size: 0.7em; +padding: 1em; +} + +/* stolen from darkreader static */ +html, +body, +:not([style*="background-color:"]):not(iframe) { + background-color: black !important; +} +html, +body, +:not([style*="color:"]), +.sr-reader *:not([class*='sr-pivot']) { + color: rgb(225, 253, 203) !important; +} +h1:not([style*="color:"]), +h2:not([style*="color:"]), +h3:not([style*="color:"]), +h4:not([style*="color:"]), +h5:not([style*="color:"]), +h6:not([style*="color:"]) { + color: rgb(247, 2, 56) !important; +} +cite:not([style*="color:"]) { + color: rgb(30, 214, 88) !important; +} +input:not([style*="background-color:"]), +textarea:not([style*="background-color:"]), +button:not([style*="background-color:"]), +[role="button"] { + background-color: rgb(32, 48, 64) !important; +} +input:not([style*="background-color:"]):hover, +textarea:not([style*="background-color:"]):hover, +button:not([style*="background-color:"]):hover, +[role="button"]:hover { + background-color: rgb(30, 54, 78) !important; +} +input:not([style*="background-color:"]):active, input:not([style*="background-color:"]):focus, +textarea:not([style*="background-color:"]):active, textarea:not([style*="background-color:"]):focus, +button:not([style*="background-color:"]):active, button:not([style*="background-color:"]):focus, +[role="button"]:active, [role="button"]:focus { + background-color: rgb(29, 56, 83) !important; +} +a:not([style*="color:"]) { + color: rgb(128, 182, 204) !important; +} +a:not([style*="color:"]):hover { + color: rgb(142, 193, 217) !important; +} +a:not([style*="color:"]):active, a:not([style*="color:"]):focus { + color: rgb(155, 203, 230) !important; +} +:not([style*="border-color:"]), +::before, +::after { + border-color: rgb(80, 115, 134) !important; +} +div:empty, +.sr-reader *, +.sr-backdrop { + background-color: rgba(16, 20, 23, 0.5) !important; +} +input::placeholder, +textarea::placeholder { + color: rgba(167, 158, 139, 0.5) !important; +} +input:not([style*="background-image:"]), +textarea:not([style*="background-image:"]) { + background-image: none !important; +} diff --git a/webring.html b/webring.html new file mode 100644 index 0000000..d14a11b --- /dev/null +++ b/webring.html @@ -0,0 +1,46 @@ + + + + + + + + +Xolatile.Top + + +
    + +< Back +
    +
    +Webring +
    +

    > what is Webring, I am literally Indian

    +

    Rather than typing it I'll commit neodigital cyberplagiarism

    +

    Webrings are links with banners. They act as a loose social network. Think of it like: a secret government agency, although here you've spoken to the other webring owner once - instead of working with him for twenty odd years on the force - it's not really like a a secret government agency.

    +

    Here's the xolalite.top banner

    + +

    +Download the banner onto your server or use the image link below. Here's the HTML, change to your needs. the link for the image is static, if the site is up the banner is there. Still best to make it static. + +<a href="https://Xolatile.Top/webring"><img alt="Xolatile's website" class="banner" src="/xolatile.top.png"></a> + +

    +
    + + + + +