Skip to content

Instantly share code, notes, and snippets.

View stephanebachelier's full-sized avatar
🎯
Focusing

Stéphane Bachelier stephanebachelier

🎯
Focusing
  • Paris France
View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@stephanebachelier
stephanebachelier / config.json
Created May 9, 2014 16:35
Draftable articles for winter smith blog
{
"plugins": [
"./plugins/paginator.coffee",
"./plugins/draftable_page.coffee",
"wintersmith-livereload"
],
"paginator": {
"perPage": 3
}
}
@stephanebachelier
stephanebachelier / app.js
Created April 25, 2014 15:50
Marionnette onDomRefresh issue example fix proposal
var App = new Backbone.Marionette.Application();
App.addRegions({
main: '#main'
});
App.addInitializer(function() {
App.main.show(new MainLayout())
});
var App = new Backbone.Marionette.Application();
App.addRegions({
main: '#main'
});
App.addInitializer(function() {
console.log('here');
App.main.show(new MainLayout())
});
#!/bin/bash
branch=$(git name-rev --name-only HEAD)
git rebase --onto HEAD~2 HEAD~1 HEAD
git cherry-pick ORIG_HEAD~1
git update-ref refs/heads/$branch $(git rev-parse HEAD)
git checkout --quiet $branch
# Instead of creating an independant bash script with the code above,
# consider simply creating a git alias using the command below.