Skip to content

Instantly share code, notes, and snippets.

View grand-lotus-iroh's full-sized avatar

Uncle Iroh grand-lotus-iroh

View GitHub Profile
@grand-lotus-iroh
grand-lotus-iroh / quick-compose-email-hotkey.ahk
Last active February 27, 2018 15:08
Quick Compose Shortcut OR Global Compose Email Hotkey / Shortcut
; CTRL + ` - Compose Email
^`::
Run mailto:
Return
; This is a simple and generic example of an AutoHotkey script to compose an
; email using default email program when you press a keyboard shortcut. WIN + R
; to run command and type shell:startup than paste .ahk into startup folder
; [1]: http://www.autohotkey.com/docs/Hotkeys.htm
@Guerra24
Guerra24 / win10-context-menus.css
Last active October 3, 2023 00:17
Self-contained CSS for context menus. For the updated/completed theme please use: https://github.com/Guerra24/Firefox-UWP-Style
menupopup {
-moz-appearance: none !important;
padding: 8px 2px 8px 2px !important;
background-color: #2B2B2B !important;
border: 1px #A0A0A0 solid !important;
min-width: 280px !important;
}
menuseparator {
-moz-appearance: none !important;
border: none !important;
@Liamb135
Liamb135 / userChrome.css
Last active October 11, 2018 15:08
MONOCHROMATIC CSS Skin for Firefox 57+
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/*
MONOCHROMATIC
- First attempt at Firefox CSS
- By Liamb135
- With help from /r/FirefoxCSS
@bgallagh3r
bgallagh3r / wp.sh
Last active March 24, 2024 03:12
Wordpress: Bash Install Script -- Downloads latest WP version, updates wp-config with user supplied DB name, username and password, creates and CHMOD's uploads dir, copies all the files into the root dir you run the script from, then deletes itself!
#!/bin/bash -e
clear
echo "============================================"
echo "WordPress Install Script"
echo "============================================"
echo "Database Name: "
read -e dbname
echo "Database User: "
read -e dbuser
echo "Database Password: "