Skip to content

Instantly share code, notes, and snippets.

View Apocalypsing's full-sized avatar

Emily Apocalypsing

  • Perth, Western Australia
  • 22:39 (UTC +08:00)
View GitHub Profile
@Apocalypsing
Apocalypsing / domains-runescape3-worlds-210-259.txt
Created June 12, 2022 02:18
Domain name list for RuneScape 3 (worlds 210-259)
world210.runescape.com
world210a.runescape.com
world211.runescape.com
world211a.runescape.com
world212.runescape.com
world212a.runescape.com
world213.runescape.com
world213a.runescape.com
world214.runescape.com
world214a.runescape.com
@Apocalypsing
Apocalypsing / RS3DisableMinimize.ahk
Created August 1, 2021 07:19
RuneScape 3 • disable minimize for game client (NXT client crash avoidance on Windows)
#SingleInstance Force
Menu, Tray, Tip,RS3 client anti-minimize`nPress F1 to enable
F1::disableMinimize()
disableMinimize() {
WinSet, Style, -0x20000, ahk_class JagWindow
TrayTip, RuneScape, Client minimize button disabled, 3
ExitApp
}
@Apocalypsing
Apocalypsing / oisd-wildcard.sh
Created February 3, 2021 07:28
Unbound-compatible OISD blocklist download script (wildcard domains)
#!/bin/sh
printf "Downloading list... "
curl "https://dblw.oisd.nl/" -o oisd-dblw.txt 2> /dev/null
printf "done\nProcessing list... "
grep -v "#" oisd-dblw.txt | grep -v "*." | grep "." | awk '{print "local-zone: \""$1"\" always_refuse"}' > oisd-wildcard.conf
rm -f oisd-dblw.txt
printf "done\n"
@Apocalypsing
Apocalypsing / dnsblocklist-mcmods.txt
Last active October 25, 2020 18:29
Sketchy Minecraft mod sites • domain blocklist
# Domain blocklist for sketchy Minecraft mod sites
# For use with any DNS-based domain blocking solution
# Supports both IPv4 and IPv6
# Last updated: 2020-10-25 18:29 UTC
:: 9minecraft.net www.9minecraft.net
:: www.dl.9minecraft.net www.dl1.9minecraft.net www.dl2.9minecraft.net www.dl3.9minecraft.net www.dl4.9minecraft.net www.dl5.9minecraft.net www.dl6.9minecraft.net
:: www.files.9minecraft.net www.files1.9minecraft.net www.files2.9minecraft.net www.files3.9minecraft.net www.files4.9minecraft.net
:: mc-mod.net www.mc-mod.net
:: www.download.mc-mod.net www.files.mc-mod.net
@Apocalypsing
Apocalypsing / ElevationBypass.ahk
Created October 10, 2019 02:34
Elevation Bypass for Windows Applications
; Elevation Bypass v1.0
; Allows one to try and run an application without elevated (admin) user privileges,
; useful for programs that were compiled with a manifest specifying elevated
; privileges, programs that don't actually need elevated privileges to run.
#NoEnv
EnvSet, __COMPAT_LAYER, RUNASINVOKER
IniFile = ElevationBypass.ini
if (!FileExist(IniFile)) {
IniWrite, PlaceholderApp.exe, %IniFile%, Application, AppName
@Apocalypsing
Apocalypsing / GTAVLauncherOffline.cmd
Last active March 25, 2026 09:41
Forces the Grand Theft Auto V launcher to start the game in offline mode, and sets appropriate process priorities
@echo off
taskkill /f /im gtavLauncher.exe
ipconfig /release
start gtavLauncher.exe
wmic process where name="gtavlauncher.exe" CALL setpriority "low priority"
timeout 30
ipconfig /renew
wmic process where name="gta5.exe" CALL setpriority "high priority"
wmic process where name="subprocess.exe" CALL setpriority "low priority"