Skip to content

Instantly share code, notes, and snippets.

View Zehra's full-sized avatar
⚠️
Please read, please act: https://keepandroidopen.org/

Zehra Zehra

⚠️
Please read, please act: https://keepandroidopen.org/
View GitHub Profile
@Zehra
Zehra / bzflag-world-files.md
Created July 19, 2026 01:27
BZFlag World Files: (Index from sourceforge.net)
@Zehra
Zehra / bzwselect.js
Created February 9, 2026 18:17
pretty broken bzw select tool
function valInRange(val, init, range) {
if ((val <= (init + range)) && (val >= (init - range))) {return 1;} else {return 0;}}
function bzwSelect(instr) {
let builder=[];
let lines = instr.split("\n");
let selected=0;
let xorigin=249;
@Zehra
Zehra / helper.sh
Created February 9, 2026 18:06
my-bash-utils
function fixswap(){
echo "Setting swappiness to 10"
sudo sysctl vm.swappiness=10
}
function fixswaps(){
echo "Setting swappiness to 1"
sudo sysctl vm.swappiness=1
}