View lfsrfail
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
class LFSR | |
@state = 0; | |
@taps = 0; | |
def initialize(state, taps) | |
@state = state | |
@taps = taps | |
end | |
def step |
View gist:3257657
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
// app_router.js | |
EmberTest.Router = Ember.Router.extend({ | |
location: 'hash', | |
enableLogging: true, | |
root: Ember.Route.extend({ | |
index: Ember.Route.extend({ | |
route: '/', |