This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.addEventListener('invalid', (function(){ | |
return function(e){ | |
//prevent the browser from showing default error bubble/ hint | |
e.preventDefault(); | |
// optionally fire off some custom validation handler | |
myvalidationfunction(e); | |
}; | |
})(), true); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# @gf3’s Sexy Bash Prompt, inspired by “Extravagant Zsh Prompt” | |
# Shamelessly copied from https://github.com/gf3/dotfiles | |
default_username='joemcgill' | |
if [[ $COLORTERM = gnome-* && $TERM = xterm ]] && infocmp gnome-256color >/dev/null 2>&1; then | |
export TERM=gnome-256color | |
elif infocmp xterm-256color >/dev/null 2>&1; then | |
export TERM=xterm-256color |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function show_img_vars($html, $id, $caption, $title, $align, $url, $size, $alt) { | |
// round up all the variables that get passed so we can test them | |
$vars = "html = $html\n"; | |
$vars .= "id = $id\n"; | |
$vars .= "caption = $caption\n"; | |
$vars .= "title = $title\n"; // this will end up blank no matter what | |
$vars .= "align = $align\n"; | |
$vars .= "url = $url\n"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function show_img_vars($html, $id, $caption, $title, $align, $url, $size, $alt) { | |
// remove alignment class from the image | |
$html = preg_replace( '/ class=".*"/', '', $html ); | |
// return the normal html output you would expect | |
$figure = "<figure class='image-inline"; | |
if ($align == 'left' | 'right') { | |
$figure .= " align".$align; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Pinterest Overlay Code | |
* @require jQuery 1.8 | |
*/ | |
var bs_pinButtonURL = "//link.to/image.png"; | |
var bs_pinButtonHeight = 72; | |
var bs_pinButtonWidth = 72; | |
var bs_yourUrl = $(location).attr('host'); | |
var bs_pinButtonPos = "bottomright"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The rest of the grunt file goes here | |
watch: { | |
// The rest of your watch tasks go here | |
livereload: { | |
options: { | |
livereload: '<%= connect.options.livereload %>' | |
}, | |
files: [ | |
// YOUR LIST OF FILES TO WATCH |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
watch: { | |
options: { | |
livereload: { | |
options: {livereload: '<%= connect.options.livereload %>'}, | |
files: [ | |
'public/**/*' | |
] | |
} | |
}, | |
html: { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a template .gitignore file for git-managed WordPress projects. | |
# | |
# Fact: you don't want WordPress core files, or your server-specific | |
# configuration files etc., in your project's repository. You just don't. | |
# | |
# Solution: stick this file up your repository root (which it assumes is | |
# also the WordPress root directory) and add exceptions for any plugins, | |
# themes, and other directories that should be under version control. | |
# | |
# See the comments below for more info on how to add exceptions for your |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Add custom user fields/meta info | |
*/ | |
add_action( 'show_user_profile', 'wu_custom_user_meta', 9 ); | |
add_action( 'edit_user_profile', 'wu_custom_user_meta', 9 ); | |
function wu_custom_user_meta( $user ) { | |
// create nonce field |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Attempt to load files from production if they're not in our local version | |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteCond %{REQUEST_FILENAME} !-f | |
# Replace http://productionsite.com with your production site's domain name | |
RewriteRule (.*) http://productionsite.com/wp-content/uploads/$1 | |
</IfModule> |