Skip to content

Instantly share code, notes, and snippets.

View infurno's full-sized avatar
🤖

Hal Borland infurno

🤖
View GitHub Profile
@infurno
infurno / gist:4192219
Created December 3, 2012 02:30
This snippet will disable the built in jQuery in Wordpress, but leaves it for the Wordpress admin side.
// Drop this in functions.php or your theme
if( !is_admin()){
wp_deregister_script('jquery');
wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"), false, '1.3.2');
wp_enqueue_script('jquery');
}
@infurno
infurno / .bashrc
Last active October 11, 2015 01:38
Infurno's prompt
# .bashrc
# Reset
Color_Off='\e[0m' # Text Reset
# Regular Colors
Black='\e[0;30m' # Black
Red='\e[0;31m' # Red
Green='\e[0;32m' # Green
Yellow='\e[0;33m' # Yellow
Blue='\e[0;34m' # Blue