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(){ | |
/* | |
String.allIndexOf(searchstring, ignoreCase) | |
String [String] - the string to search within for the searchstring | |
searchstring [String] - the desired string with which to find starting indexes | |
ignoreCase [Boolean] - set to true to make both the string and searchstring case insensitive | |
Use: | |
var s = "The rain in Spain stays mainly in the plain"; | |
s.allIndexOf("ain"); // result [ 5,14,25,40 ] | |
s.allIndexOf("the"); // result [ 34 ] |
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
/* | |
Check if all images are loaded | |
- Callback occurs when all images are loaded | |
- image load errors are ignored (complete will be true) | |
- Use: | |
$('.wrap img').imagesLoaded(function(){ | |
alert('all images loaded'); | |
}); | |
*/ |
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
/* Checkbox Hack */ | |
input[type=checkbox] { | |
position: absolute; | |
top: -9999px; | |
left: -9999px; | |
} | |
label { | |
-webkit-appearance: push-button; | |
appearance: button; |
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
/** | |
* 3D cube | |
*/ | |
body { | |
perspective: 99999px; | |
} | |
body > section { | |
display: inline-block; |
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
// [JS] Expand Abbreviated IPv6 Addresses | |
// by Christopher Miller | |
// http://forrst.com/posts/JS_Expand_Abbreviated_IPv6_Addresses-1OR | |
// Modified to work with embedded IPv4 addresses | |
function expandIPv6Address(address) | |
{ | |
var fullAddress = ""; | |
var expandedAddress = ""; | |
var validGroupCount = 8; | |
var validGroupSize = 4; |
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
/* jQuery Quicksearch plugin | |
by riklomas https://github.com/riklomas/quicksearch | |
Modified to include childRows (for tablesorter) | |
See http://stackoverflow.com/q/20342203/145346 for | |
more details | |
*/ | |
(function($, window, document, undefined) { | |
$.fn.quicksearch = function (target, opt) { |
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
# -*- coding: utf-8 -*- | |
""" | |
Jellybeans Colorscheme | |
~~~~~~~~~~~~~~~~~~~~~~ | |
Converted by Vim Colorscheme Converter | |
""" | |
from pygments.style import Style | |
from pygments.token import Token, Keyword, Number, Comment, Name, Operator, String, Generic |
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
/*! | |
* tablesorter pager plugin | |
* updated 4/16/2014 (v2.15.14-mod); requires jQuery 1.5+ | |
*/ | |
/*jshint browser:true, jquery:true, unused:false */ | |
;(function ($) { | |
"use strict"; | |
/*jshint supernew:true */ | |
var ts = $.tablesorter; |
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 NETSCAPE-Bookmark-file-1> | |
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8"> | |
<TITLE>Bookmarks</TITLE> | |
<H1>Bookmarks</H1> | |
<DL><p> | |
<DT><A HREF="javascript:(function(){%20var%20e,s;%20IB=-1;%20function%20isDigit(c)%20{%20return%20(%220%22%20<=%20c%20&&%20c%20<=%20%229%22)%20}%20L%20=%20location.href;%20LL%20=%20L.length;%20for%20(e=LL-1;%20e>=0;%20--e)%20if%20(isDigit(L.charAt(e)))%20{%20for(s=e-1;%20s>=0;%20--s)%20if%20(!isDigit(L.charAt(s)))%20break;%20break;%20}%20++s;%20if%20(e<0)%20return;%20oldNum%20=%20L.substring(s,e+1);%20newNum%20=%20%22%22%20+%20(parseInt(oldNum,10)%20+%20IB);%20while%20(newNum.length%20<%20oldNum.length)%20newNum%20=%20%220%22%20+%20newNum;%20location.href%20=%20L.substring(0,s)%20+%20newNum%20+%20L.slice(e+1);%20})();" ADD_DATE="1257995008" ICON="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAWklEQVQ4jWNkYGBgiJ8i8J+BDLAw5wMjI7maYYCJEs2D3IAF2e8ZFmS/J88AYjTCAEYsENKcMFWQsAtIAVjTAbIr0G1EB1hdQEgTQReQAgZxQiIWMDIwUJadASvGHReRAe+EAAAAAElFT |
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
/* Shuffle | |
Modified Fisher-Yates shuffle ( original from http://bost.ocks.org/mike/shuffle/ ) | |
to allow not shuffling specifically mapped array elements | |
Example: | |
var arry = [ 'aardvark', 'bison', 'cheeta', 'dingo', 'elephant', 'fawn', 'giraffe', 'hippo' ], | |
// don't shuffle 'bison' or 'elephant' | |
map = [ '', false, '', '', false ]; | |
shuffle( arry, map ); // ["fawn", "bison", "dingo", "giraffe", "elephant", "hippo", "cheeta", "aardvark"] |