-
un-bot image me
query
- The Original. Queries Google Images forquery
and returns a random top result. -
un-bot animate me
query
- The same thing asimage me
, except adds a few parameters to try to return an animated GIF instead. -
un-bot mustache me
url
- Adds a mustache to the specified URL. -
un-bot mustache me
query
- Searches Google Images for the specified query and mustaches it. -
un-bot map me
query
- Returns a map view of the area returned byquery
. -
un-bot math me
expression
- Calculate the given expression. -
un-bot convert me
expression
tounits
- Convert expression to given units.
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 public> | |
<head> | |
<meta charset=utf-8> | |
<title>Bookmarkable Tabs Demo</title> | |
<style> |
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 ($) { | |
$.fn.html5Uploader = function (options) { | |
var crlf = '\r\n'; | |
var boundary = "iloveigloo"; | |
var dashes = "--"; | |
var settings = { | |
"name": "uploadedFile", |
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('mousewheel', function(e) { | |
handleWheel(e); | |
}, false); | |
document.addEventListener('DOMMouseScroll', function(e) { | |
.handleWheel(e); | |
}, false); | |
var handleWheel = function(e) { |
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(window, doc, undefined) { | |
var awesomeGridBookmarkletElement = doc.getElementById('awesomeGridBookmarkletElement'); | |
if ( awesomeGridBookmarkletElement !== null) { | |
awesomeGridBookmarkletElement.parentNode.removeChild(awesomeGridBookmarkletElement); | |
return; | |
} | |
var grid = doc.createElement('div'); | |
grid.id = 'awesomeGridBookmarkletElement'; | |
grid.style.backgroundImage = 'url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3AgUFTcrYHXFEgAAAAxpVFh0Q29tbWVudAAAAAAAvK6ymQAAABlJREFUGNNjZGBg+M9AJCBKIROxpo0qxAsADuYCECT/rwcAAAAASUVORK5CYII=)'; | |
grid.style.position = 'fixed'; |
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
#!/usr/bin/ruby | |
require 'mustache' | |
require 'yaml' | |
LAYOUT = 'layout.html' | |
DATA = 'data.yaml' | |
OUT = 'index.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
for(n=0;++n<101;){console.log((n%3?'':'Fizz')+(n%5?'':'Buzz')||n)} |
-
hubot image me
query
- The Original. Queries Google Images forquery
and returns a random top result. -
hubot animate me
query
- The same thing asimage me
, except adds a few parameters to try to return an animated GIF instead. -
hubot mustache me
url
- Adds a mustache to the specified URL. -
hubot mustache me
query
- Searches Google Images for the specified query and mustaches it. -
hubot map me
query
- Returns a map view of the area returned byquery
. -
hubot math me
expression
- Calculate the given expression. -
hubot convert me
expression
tounits
- Convert expression to given units.
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
<head> | |
<title>protectMail Examples</title> | |
<script src="http://code.jquery.com/jquery-2.0.2.min.js"></script> | |
<script src="protectMail.js"></script> | |
</head> | |
<body> | |
<h1>protectMail Examples</h1> | |
<p> |
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
_ = | |
pop: (ctx) -> | |
Array::pop.call ctx | |
slice: (args..., ctx) -> | |
Array::slice.apply ctx, args | |
reduce: (args..., ctx) -> | |
Array::reduce.apply ctx, args |
OlderNewer