- Litematica (client)
- Tweakeroo (client)
- Tweakfork (client)
- TweakerMore (client)
- MasaGadget (client)
- Malilib (client)
- Litematica Server Paster (server&client)
- Carpet (server)
- Carpet Extra (server)
There are many, many resources, websites, mods, discord servers, and other links that people playing technical minecraft might find useful. This is an attempt at collecting and categorizing some of them.
Starring or bookmarking this gist may be useful :)
Contents:
Icon | Mod | Mod Page | Description |
---|---|---|---|
Fabric API | Modrinth | Library required for a lot of mods | |
Fabric Language Kotlin | Modrinth | Library required for Zoomify | |
MaLiLib | Modrinth | Library required for Masa's mods | |
MagicLib | Modrinth | Library required for MasaGadget | |
OwoLib | [Modrinth](https://modrinth.com/ |
This guide provides instructions for an Arch Linux installation featuring full-disk encryption via LVM on LUKS and an encrypted boot partition (GRUB) for UEFI systems.
Following the main installation are further instructions to harden against Evil Maid attacks via UEFI Secure Boot custom key enrollment and self-signed kernel and bootloader.
You will find most of this information pulled from the Arch Wiki and other resources linked thereof.
Note: The system was installed on an NVMe SSD, substitute /dev/nvme0nX
with /dev/sdX
or your device as needed.
// On the Last.FM website go to the page which lists the tracks that you have loved. | |
// Open Chrome DevTools (or Firefox or any modern browser that has a built in Javacript Console) | |
// and run the following command. | |
// This basically clicks on all the delete buttons on the page and reloads the page. | |
jQuery('.love-button--loved').each(function(_, b) { | |
b.click(); | |
}); | |
location.reload(); |
import functools | |
import inspect | |
import warnings | |
# NOTE(kgriffs): We don't want our deprecations to be ignored by default, | |
# so create our own type. | |
class DeprecatedWarning(UserWarning): | |
pass |