Skip to content

Instantly share code, notes, and snippets.

View Nighthawk42's full-sized avatar

Nighthawk Nighthawk42

  • Somewhere, USA
View GitHub Profile
@Nighthawk42
Nighthawk42 / userscript,js
Last active May 22, 2026 23:17
Google Search Auto-Append "-ai"
// ==UserScript==
// @name Google Search - Silent Append -ai
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Silently appends "-ai" to Google searches without showing it in the search input box.
// @author Nighthawk
// @match https://*.google.com/search*
// @match https://*.google.com/
// @grant none
// @run-at document-start
@Nighthawk42
Nighthawk42 / docker_manager.py
Created October 26, 2024 04:19
A simple Docker Container Manager. Written in Python.
import os
import subprocess
import datetime
import sys
from tqdm import tqdm # For progress bars
from colorama import Fore, Style, init
# Initialize colorama
init(autoreset=True)
@Nighthawk42
Nighthawk42 / wowhead_tooltip_reddit.js
Created June 23, 2024 05:30
Wowhead Tooltips for Reddit
// ==UserScript==
// @name Wowhead Tooltips on Reddit
// @namespace http://tampermonkey.net/
// @version 1.0
// @description Show Wowhead tooltips on valid Reddit Wowhead links
// @author Nighthawk42
// @match https://www.reddit.com/*
// @match https://old.reddit.com/*
// @grant none
// ==/UserScript==