Skip to content

Instantly share code, notes, and snippets.

View NoDataFound's full-sized avatar
💭
█▬█ ▞▚匚🄺 █ █▀█₲

Corian (Cory) Kennedy NoDataFound

💭
█▬█ ▞▚匚🄺 █ █▀█₲
View GitHub Profile
@NoDataFound
NoDataFound / gist:0bb3ca3d3cb1bb4b92698e708eb08918
Created June 12, 2024 16:16
gitleaks scan to csv one liner
gitleaks detect --source . -v -l debug -r "git_sh1t.json" -f json | echo "Commit,File,Match,Author,Email,Date" > git_sh1t.csv && jq -r '.[] | "\(.Commit),\(.File),\(.Match),\(.Author),\(.Email),\(.Date)"' git_sh1t.json | sort | uniq >> git_sh1t.csv
@NoDataFound
NoDataFound / dfi.sh
Created February 1, 2025 04:34
This script provides an easy way to install, update, or uninstall Decky FrameGen on the Steam Deck until it becomes officially available in the Decky Loader Store. Why? Decky FrameGen is currently not in the store, so this temporary solution makes installation seamless without manual file management.
#!/bin/bash
# Define variables
DECKY_LOADER_URL="https://github.com/SteamDeckHomebrew/decky-loader/releases/latest/download/decky_installer.desktop"
FRAMEGEN_RELEASE_API="https://api.github.com/repos/xXJSONDeruloXx/Decky-Framegen/releases/latest"
DOWNLOADS_DIR="$HOME/Downloads"
PLUGINS_DIR="$HOME/homebrew/plugins"
FRAMEGEN_FOLDER="$PLUGINS_DIR/decky-framegen"
DECKY_INSTALLER="$DOWNLOADS_DIR/decky_installer.desktop"
INSTALLED_VERSION_FILE="$FRAMEGEN_FOLDER/version.txt"
@NoDataFound
NoDataFound / strike.png
Last active March 26, 2025 15:48
STRIKE
strike.png
#!/bin/bash
# Ensure the script runs as root.
if [ "$EUID" -ne 0 ]; then
exec sudo "$0" "$@"
fi
BASE_BACKUP="Flipper/backups"
SOURCE_DIR="/Volumes/Flipper"
DATE=$(date +%Y-%m-%d)
TIME=$(date +%H%M%S)

Keybase proof

I hereby claim:

  • I am NoDataFound on github.
  • I am strike_intel (https://keybase.io/strike_intel) on keybase.
  • I have a public key whose fingerprint is B1D8 6BA2 64AC 9D2A 76E7 78FF 16F0 762C DF15 5B72

To claim this, I am signing this object:

@NoDataFound
NoDataFound / install.sh
Last active April 16, 2026 23:27
VantaBrain installer — includes hakcerline (Claude Code statusline). Standalone hakcerline install: npx hakcerline install
VantaBrain installer — includes hakcerline (Claude Code statusline). Standalone hakcerline install: npx hakcerline install
#!/bin/bash
# VantaBrain installer
# curl -fsSL https://vb.darkcode.ai | bash
set -u
VB_VERSION="3.2.1"
REPO="vantagrid/vantabrain"