The only amenities I needed were increased FPS, NBT Tooltips, Fancy-leaves-on-Fast-graphics, Zoom, and Saturation Display. These are provided on Fabric, respectively, by: Sodium NBT Tooltip Also Sodium (once they fix #233) WI Zoom AppleSkin I will update this post as I use more stuff. I will cross out, but not delete, mods I no longer…
Quick setup: Fail2ban on CentOS 8
Instant, easy setup. Just 3 commands, and your server will be protected: dnf install fail2ban nano /etc/fail2ban/jail.local Paste this: [sshd] enabled = true systemctl restart fail2ban
Minecraft: Opening a Java sever to console and mobile clients
Due to the work of some brilliant people, it’s now possible to open a Minecraft Java Edition server to Bedrock Edition clients; and, due to another brilliant dude, it’s possible to connect even the nerfed console ports up to an arbitrary server. This means you can have simultaneous crossplay among the whole cornucopia of PC,…
[WIP] Namecheap let's encrypt
/opt/alt/python37/bin/python3 -m venv ~/virtualenv/simp_le bash . ~/virtualenv/simp_le/bin/activate pip install simp-le-client mkdir -v ~/ssl/simp_le pushd ~/ssl/simp_le ln -vs ../keys/{tls_key_id}.key key.pem exit Then, paste this somwhere #!/bin/sh set -e . ~/virtualenv/simp_le/bin/activate pushd "${workdir=$HOME/ssl/simp_le}" > /dev/null simp_le ${acme_endpoint+–server "${acme_endpoint}"}\ –email "${email-${USER}@${HOSTNAME}}"\ –default_root "${default_root=$HOME/public_html}"\ -f account_key.json\ -f account_reg.json\ -f key.pem –reuse_key\ -f cert.pem\ -f chain.pem\ "${@}" dd if=chain.pem status=none…
[BREAKING] Huntsville PD program mandates landlords to deny housing based on criminal history
Both the official website for the Program and its inaugural press release give no indication of these requirements — which the ACLU has argued violate the FHA — and which have entirely evaded public knowledge until now.
test post: dash conversion
[TODO: delete this post once coffee2code/wpuntexturize#2 is resolved]
Python: "with epoll"
If you're using Python 3.4+, select.epoll
already supports context — you're clear to just write with epoll() as E: …
and everything will be OK. If not, here's how to shim it:
Is Gab a controlled-opposition operation?
This post will be sort of an "archive" of everything about Gab that gives me the heebie-jeebies.
JS: Tail-call optimized recursive setTimeout
If you're writing some code on a time-delayed-loop in JavaScript, there are 2 main options: setInterval setTimeout, recursively However, each has a potential downside: setInterval schedules the code to run at the given interval, regardless of whether the last invocation has completed. This means that, if the function takes longer than the delay to execute,…
[DRAFT] Pleroma on Docker Compose
This testing was done with Pleroma 2.2.0, in environment CentOS 8 (Before starting, be sure docker and docker-compose are installed, as well as git, and NGINX.) Fetch and prepare the source code: git clone -b stable –depth 1 "https://git.pleroma.social/pleroma/pleroma.git" && cd pleroma curl https://git.lain.church/squeegily/pleroma/commit/c2635f982687de75296dc67bfc471a1284d5d29c.patch | git apply -v –index sudo chown -vR 911 config uploads…