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
@ontiuk
ontiuk / woocommerce-select2-selectwoo-remove
Last active December 5, 2024 14:24
Woocommerce Remove Select2 / SelectWoo
// Add to your theme's functions.php file. De-queues Select2 styles & scripts. Useful to keep Boostrap form control formatting
/**
* Remove Woocommerce Select2 - Pre WC 3.2.1-ish
*/
function woo_dequeue_select2() {
if ( class_exists( 'woocommerce' ) ) {
wp_dequeue_style( 'select2' );
wp_deregister_style( 'select2' );
@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 November 27, 2024 21:55
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 23, 2025 19:40
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: "