This file contains hidden or 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
| { | |
| "w": 67001, | |
| "o": 94, | |
| "u": "http://www.igvita.com/", | |
| "r": 9, | |
| "i": "ydefault", | |
| "lt": 502, | |
| "g": { | |
| "ynumreq": { | |
| "score": 100, |
This file contains hidden or 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
| /* | |
| * object.watch polyfill | |
| * | |
| * 2012-04-03 | |
| * | |
| * By Eli Grey, http://eligrey.com | |
| * Public Domain. | |
| * NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. | |
| */ |
This file contains hidden or 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(w){ | |
| var perfNow; | |
| var perfNowNames = ['now', 'webkitNow', 'msNow', 'mozNow']; | |
| if(!!w['performance']) for(var i = 0; i < perfNowNames.length; ++i) | |
| { | |
| var n = perfNowNames[i]; | |
| if(!!w['performance'][n]) | |
| { | |
| perfNow = function(){return w['performance'][n]()}; | |
| break; |
This file contains hidden or 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($) { | |
| function parseImagesFromCSS(doc) { | |
| var i, j, | |
| rule, | |
| image, | |
| pattern = /url\((.*)\)/, | |
| properties = ['background-image', '-webkit-border-image'], | |
| images = {}; | |
| if (doc.styleSheets) { |
This file contains hidden or 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> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>TinyLimiter - jQuery Character Limit Counter</title> | |
| <link rel="stylesheet" href="tinylimiter.css"> | |
| <script> | |
| <style> | |
| body {padding-top:130px} |
This file contains hidden or 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> | |
| <html> | |
| <head> | |
| <title>Cross-Origin Resource Sharing (CORS) With jQuery And Node.js</title> | |
| </head> | |
| <body> | |
| <h1> | |
| Cross-Origin Resource Sharing (CORS) With jQuery And Node.js | |
| </h1> |
This file contains hidden or 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
| <html> | |
| <body> | |
| <script> | |
| var xml_type; | |
| // branch for native XMLHttpRequest object | |
| if(window.XMLHttpRequest && !(window.ActiveXObject)) { |
This file contains hidden or 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
| { | |
| "globals": { | |
| "console": false, | |
| "jQuery": false, | |
| "_": false | |
| }, | |
| "maxparams": 5, | |
| "maxdepth": 5, | |
| "maxstatements": 25, | |
| "maxcomplexity": 10, |
This file contains hidden or 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> | |
| <html> | |
| <head> | |
| <title>Demo</title> | |
| <style> | |
| li.selected { background-color: red; } | |
| </style> | |
| </head> |
This file contains hidden or 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 tabname { | |
| printf "\e]1;$1\a" | |
| } | |
| if [ x`type -t cd` == "xfunction" ]; then | |
| # previously wrapped cd | |
| eval $(type cd | grep -v 'cd is a function' | sed 's/^cd/original_cd/' | sed 's/^}/;}/' ) | |
| else | |
| # builtin | |
| eval "original_cd() { builtin cd \$*; }" |