Skip to content

Instantly share code, notes, and snippets.

View jbuck's full-sized avatar

Jon Buckley jbuck

  • Mozilla
  • Toronto, ON
View GitHub Profile
}
return fragment;
},
transitionEndWrapper: (function() {
var div = document.createElement( "div" ),
p,
pre = [ "ms", "O", "Webkit", "Moz", "" ];
The Mo-Factor App
=================
In the spirit of [Twelve-Factor Apps](http://www.12factor.net/), this is a list of concrete things that you can do to make your software better. Some of it overlaps with Twelve-Factor Apps, but it's all good.
Uses git/Github
---------------

The Mo-Factor App

In the spirit of Twelve-Factor Apps, this is a list of concrete things that you can do to make your software better. Some of it overlaps with Twelve-Factor Apps, but it's all good.

Uses git/Github

All of our apps will use git and Github for hosting repositories. This gives us a great collaboration and code review tool, an issue tracker, a wiki, and free static web hosting. All MoFactor apps should be owned by the Mozilla organzation

@jbuck
jbuck / test
Created January 23, 2013 16:50
blah blah blah
@jbuck
jbuck / src#bar.js
Created April 2, 2013 16:40
RequireJS example code
define(["util/baz"], function(Baz) {
return { baz: new Baz() };
});
@jbuck
jbuck / prod.json
Created January 26, 2014 17:26
MakeAPI Staging and Production mappings
{
"make": {
"properties": {
"author": {
"type": "string",
"index": "not_analyzed",
"omit_norms": true,
"index_options": "docs"
},
"contentType": {
@jbuck
jbuck / gist:2e527994f33040a0b2b6
Created September 8, 2014 17:40
API for processor
var processor = New SQSProcessor({
key: 'key',
secret: 'secret',
region: 'region',
url: 'http://example.com',
debug: false
});
// what would be the best way to handle errors here?
processor.startPolling(function(message, callback) {
@jbuck
jbuck / keybase.md
Last active August 29, 2015 14:18
keybase.md

Keybase proof

I hereby claim:

  • I am jbuck on github.
  • I am jbuck (https://keybase.io/jbuck) on keybase.
  • I have a public key whose fingerprint is 7065 A15C 62FB 9266 2DC5 63BF F8B8 CAF7 394C E363

To claim this, I am signing this object:

/projects
[
{
"id": "1",
"title": "My Cool Project",
"author": {
"id": "3",
"username": "jbuck"
}
@jbuck
jbuck / Checklist.md
Last active September 18, 2015 18:34