Skip to content

Instantly share code, notes, and snippets.

@jeremyredhead
jeremyredhead / simple-mouse-keys.ahk
Created March 5, 2021 03:46
Simple Mouse Keys AutoHotKey script
#NoEnv
; #Warn
SetWorkingDir %A_ScriptDir%
SendMode Event ; can't set mouse speed in Input/Play modes
MouseKeysEnabled := false
HotKey, *z, Off
HotKey, *z UP, Off
HotKey, *x, Off
@jeremyredhead
jeremyredhead / README.md
Last active February 3, 2023 20:00
Easily run a BotBot botling standalone, i.e. without BotBot itself

run_botling.py

(i don't have a better name yet)

Moved: Please see repository at https://github.com/jeremyredhead/run_botling

Easily run a BotBot botling standalone, i.e. without BotBot itself.

Once the dependencies are installed, just plop run_botling.py down in any folder,
and pass it the name of a file containing your bot's code. (e.g. py run_botling.py spambot.txt)

@jeremyredhead
jeremyredhead / game.txt
Created June 23, 2022 11:23
tinychoice game
{"START":[["I think I discovered an exploitable bug, hehe..."],[""],["Test exploit","TEST',_=![]+[],Y=!![]+[],U=[][[]]+[],T=Y[0],F=[]+[][_[0]+_[2]+_[1]+T],C=F[3],O=F[6],R=Y[1],([][_[1]+T])[C+O+U[1]+_[3]+T+R+U[0]+C+T+O+R](F[11]+F[10]+Y[3]+R+T+F[13]+42+F[14])(),'"],[""]],"__STARTSECTION__":"START","TEST":[["Did the number \"42\" pop up in a box just now?"],[""],["Yes","BUGGY"],["No","FIXED"],[""]],"BUGGY":[["The bug is still exploitable >:3"]],"FIXED":[["The bug has sadly likely been fixed :["],[""]]}
@jeremyredhead
jeremyredhead / py-activate.sh
Created September 4, 2022 08:28
Activate Python Venv (source this from your .bashrc or similiar to use, then py-activate)
#!/bin/true
# Activate Python Venv
# Can't be an actual shell script b/c child processes cant alter parents ENV
_no_dir() {
echo >&2 "Could not locate $1 directory"
#exit 1
}
@jeremyredhead
jeremyredhead / Instantly_Cozier.user.css
Created November 25, 2023 02:25
Userstyle to make Instant ever so slightly more comfortable/familiar for those used to vanilla euphoria
@-moz-document domain("instant.leet.nu") {
.replies > .message:first-child,
.message + .message {
margin-top: 4px;
}
.message-box > .message,
.message-box > .input-bar {
margin-top: 8px;
}