Skip to content

Instantly share code, notes, and snippets.

View anshula's full-sized avatar

Anshula Gandhi anshula

View GitHub Profile
@anshula
anshula / phoronix-cmd.md
Last active March 22, 2024 21:43
Phoronix Test Suite Cheat Sheet
@anshula
anshula / app.js
Last active August 29, 2015 14:02
Peepcode's "Fire Up Ember.js" updated to work with Ember 1.5.1
App = Ember.Application.create({
LOG_TRANSITIONS: true
});
// Router
App.Router.map(function() {
this.resource('tables', function() {
this.resource('table', { path: ':table_id' });
});