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
<!DOCTYPE html> | |
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | |
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title></title> | |
<meta name="description" content=""> |
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 script should be loaded or embedded after the form. | |
// There must be an element with an ID of "answer" and a form with an ID of "myform". | |
// Beginners: you can change what IDs the script looks for by replacing all instances of #answer or #myform | |
function set_question(){ | |
operation = Math.floor( Math.random() * 2 ); // 1 or 0 | |
constant1 = Math.floor( Math.random() * 11 ); // 0 through 10 | |
constant2 = Math.floor( Math.random() * 11 ); // 0 through 10 | |
if( operation == 1 ){ | |
operation_symbol = "+"; |
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
# inspired from http://drupal.org/node/207095 | |
tar -C /extract/archive/here/ -zxvf ~/Downloads/myarchive.tar.gz --strip 1 | |
# tar is the command | |
# -C lets you choose what directory to put the untarred archive into. | |
# The target directory is specified just like any other command in shell. | |
# -zxvf does a bunch of stuff. Just use it, or take out the v because that makes the command display the filename of each file that is extracted. | |
# The second path is where your archive is located. | |
# --strip 1 removes the directory that will be containing your files. There is always a 'myarchive' folder around the files in a myarchive.tar.gz. This will prevent that. So, be sure to set the first path of the command to a dir that you want all your files to be dumped into! |
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
/* Modernizr and Enquire make a great team when it comes to responsive design. | |
Modernizr checks for features and Enquire checkes for the current media query, | |
so you can always load the right stuff at the right time and keep your mobile | |
footprint nice and slim. | |
*/ | |
// This snippet below would go into your app.js file. Modernizr.js needs to be called from your template before app.js is. | |
/* Pre-requisite files: | |
- Enquire.js http://wicky.nillia.ms/enquire.js |
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
# | sed "s/^\([0-1]\)\([0-1]\)\([0-1]\)\([0-1]\)\([0-1]\)\([0-1]\)\([0-1]\)\([0-1]\)$/\1 \2 \3 \4 \5 \6 \7 \8/g" | | |
r=$(($RANDOM % 255 + 1)); echo "obase=2;${r}" | bc | sed "s/\$/ \\`echo -e '\n\r'`128 64 32 16 8 4 2 1\\`echo -e '\n\r'`${r}/" |
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
for(var key in x){ | |
document.write( key + ": " + x[key] + "<br>" ); | |
} |
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
//requires jQuery | |
$(window).scroll(function(){ | |
var threshold = 200; // number of pixels before bottom of page that you want to start fading | |
var op = (($(document).height() - $(window).height()) - $(window).scrollTop()) / threshold; | |
if( op <= 0 ){ | |
$("#thing-to-hide").hide(); | |
} else { | |
$("#thing-to-hide").show(); | |
} | |
$("#thing-to-hide").css("opacity", op ); |
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
$(function(){ | |
$.each( $("img"), function(){ | |
$(this).parents().show().end().show().css({ | |
"background-image": "url(" + $(this).attr("src") + ")", | |
"background-size": "100%", | |
"width": $(this).width(), | |
"height": $(this).height() | |
}); // show all images so that their size isn't 0x0 - showing parents enables children to be shown too. Then replace src with decoy image and make background the real image with the proper scale in case the image is scaled. | |
$(this).attr("src","./image/cache/empty.png"); | |
}); |
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 file operates on every file within the current directory and below, recursively. | |
# The original command is from http://rushi.vishavadia.com/blog/find-replace-across-multiple-files-in-linux | |
# but has been modified to not mess with end of line characters (-b option in sed) according to http://stackoverflow.com/a/11508669 | |
find . -name "*.html" -print | xargs sed -i -b 's/find/replacewith/g' | |
# This example command searches only .html files. This can be changed to anything. | |
# You need to specify what to find and what to replace it with (find/replacewith). These are regular expressions, so be careful of special characters. |
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
" Find All Words That Have A Capital Letter In Front. Replace with lower case letters. | |
" NOTE: I don't think this .vim file would actually work in vim. I just gave it that extension for Gist's sake. | |
:1s/\<\w*\>/\l&/gc | |
" : begin search and replace | |
" 1 line number you are searching | |
" s/ begin search | |
" \< match the beginning of a word | |
" \w match a letter |