Skip to content

Instantly share code, notes, and snippets.

View airborne-commando's full-sized avatar
🐱
Edit: Thanks for the silv!

Nicholas airborne-commando

🐱
Edit: Thanks for the silv!
View GitHub Profile
@airborne-commando
airborne-commando / false-positives.txt
Last active December 26, 2025 00:12
For blackbird/crow feel free to contrib
## ok.ru
## Chatango
## 247CTF
## Znanija
## zhihu
## These are the results you need to look out for.
## Use libreoffice calc, use auto-filter for any site name you want to get rid of.
@airborne-commando
airborne-commando / Mouse-R.md
Last active June 13, 2025 02:21
Record and playback mouse movements

mouse-r

record and playback mouse movement; useful for veracrypt.

Python3 -m venv venv

Source venv/bin/activate

pip install pyautogui numpy matplotlib scipy pynput

@airborne-commando
airborne-commando / iopaint-user.sh
Last active October 1, 2025 07:41
iopaint shell script, get iopaint from https://www.iopaint.com/
#!/bin/bash
# User configuration file for IOPaint
# Edit these settings to customize your IOPaint installation
# GPU Configuration
GPU_VENDOR="cpu" # nvidia, amd, or cpu
# Virtual environment settings
VENV_DIR="${HOME}/.iopaint_venv"
@airborne-commando
airborne-commando / -first-last-names.md
Last active June 13, 2025 22:39 — forked from elifiner/-first-last-names.md
List of first names and last names for random data generation

First and last names

This gist has two files in it: first-names.txt and last-names.txt, each with 4096 names taken from some unnamed database.

Useful for generating mock data for testing or for opfuscating production data for testing.

See https://stackoverflow.com/a/50242368/15109 for some thoughts about data obfuscation.

@airborne-commando
airborne-commando / nuke.sh
Last active December 25, 2025 12:43
nuke devices
#!/bin/bash
# Check if the script is run as root
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root. Please use sudo or run as root."
exit 1
fi
# Function to install packages based on the distribution
install_packages() {
@airborne-commando
airborne-commando / steamedhams.sh
Created January 4, 2023 03:10
Steamed hams except it's a shell script.
#!/bin/bash
# Set up some variables to store the dialogue
ch1="Well, Seymour, I made it, despite your directions."
sk1="Ah, Superintendent Chalmers, welcome. I hope you're prepared for an unforgettable luncheon!"
ch2="Yeah."
sk2="Oh, ye Gods! My roast is ruined! But what if I were to purchase fast food and disguise it as my own cooking? [chuckles] Delightfully devilish, Seymour."
ch20="SEEEEEYMOOUUURRR!!!"
sk3="Superintendent! I was just...uh---just stretching my calves on the windowsill. Isometric exercise! Care to join me?"
ch3="Why is there smoke coming out of your oven, Seymour?"
@airborne-commando
airborne-commando / wGPU-select.sh
Last active March 30, 2023 17:58
My webUI script for AMD and NVIDIA gpu's
#!/bin/bash
echo -n "This script will configure your venv for AUTOMATIC1111 webui, first the venv has to be removed"
echo " and reinstalled or existing venv for AMD can be used (or NVIDIA)."
read -p "Continue configuration for AMD or NVIDIA? [y/n] " answer
if [ "$answer" = "y" ] || [ "$answer" = "Y" ]; then
echo "Ok continuing the install of either AMD or Nvidia venv, will take a few moments."
else
exit 0
fi
@airborne-commando
airborne-commando / mysql_installer.sh
Created November 6, 2022 15:49
a simple mySQL installer
#!/bin/bash
if [ $EUID -ne 0 ]
then
echo "This program must run as root to function."
exit 1
fi
# to see if the service is already started