Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View basveeling's full-sized avatar

Bas Veeling basveeling

  • AI4Science @ Microsoft Research
  • Amsterdam, The Netherlands
  • X @basveeling
View GitHub Profile
class LFSR
@state = 0;
@taps = 0;
def initialize(state, taps)
@state = state
@taps = taps
end
def step
@basveeling
basveeling / gist:3257657
Created August 4, 2012 13:12
event.context is undefined
// app_router.js
EmberTest.Router = Ember.Router.extend({
location: 'hash',
enableLogging: true,
root: Ember.Route.extend({
index: Ember.Route.extend({
route: '/',