I hereby claim:
- I am jbottigliero on github.
- I am joebot (https://keybase.io/joebot) on keybase.
- I have a public key whose fingerprint is 083B 05C2 872D 0345 E3C3 FA60 38A4 FE61 F8F9 ABBC
To claim this, I am signing this object:
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
define([ | |
/* global Backbone */ | |
'backbone' | |
], function(){ | |
'use strict'; | |
/** | |
* Override for Backbone.Collection.sort to allow for simple reversing using | |
* a 'reverse' boolean option. |
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
tell application "Safari" | |
activate | |
end tell | |
try | |
tell application "System Events" to tell process "Safari" | |
click menu item 2 of menu of menu item "iOS Simulator" of menu 1 of menu bar item "Develop" of menu bar 1 | |
end tell | |
on error error_message | |
return error_message |
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
// Moves the BitBucket Activity Stream out of the ".sidebar" | |
(function(){ | |
var o = document.getElementById('dashboard-overview') || document.getElementById('repo-overview') || document.getElementById('profile-tab-content'); | |
if (!o) return; | |
a = o.querySelector('.sidebar'), | |
m = o.firstElementChild; | |
o.insertBefore(a, m); | |
a.classList.remove('sidebar'); | |
if (o.id === 'profile-tab-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
/** @jsx React.DOM */ | |
define(['reactjs'], function(React){ | |
return React.createClass({ | |
getDefaultProps: function(){ | |
return { | |
multiple: false | |
/* | |
name: 'mySelect' |
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 for Chrome-style progress-indicator with SVG and CSS animations | |
*/ | |
@keyframes spin { | |
to { | |
stroke-dashoffset: 360; | |
} | |
} |
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
<html> | |
<head> | |
<style> | |
@-webkit-keyframes clockwise { | |
from { | |
-webkit-transform: rotate(0deg); | |
} | |
to { | |
-webkit-transform: rotate(360deg); | |
} |
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 (root, doc, factory) { | |
if (typeof define === 'function' && define.amd) { | |
define(['global/jquery'], function( $ ) { | |
factory( $, root, doc); | |
return $; | |
}); | |
} else { | |
factory( root.jQuery, root, doc); |
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
<html> | |
<head> | |
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width"> | |
<meta name="apple-mobile-web-app-capable" content="yes"> | |
<title>layers</title> | |
<style> |
NewerOlder