This file contains hidden or 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 Batman.SetTransform extends Batman.Set | |
| constructor: (@source, observedItemKeys..., @transform) -> | |
| super() | |
| @transformIndex = new Batman.SimpleHash | |
| if @source.isObservable | |
| @_setObserver = new Batman.SetObserver(@source) | |
| @_setObserver.observedItemKeys = observedItemKeys | |
| @_setObserver.observerForItemAndKey = @observerForItemAndKey | |
| @_setObserver.on 'itemsWereAdded', @add | |
| @_setObserver.on 'itemsWereRemoved', @remove |
This file contains hidden or 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
| /* | |
| example design of an expandable list view that expands selected items in place using alternate list item view | |
| */ | |
| tasksView: SC.ScrollView.design({ | |
| hasHorizontalScroller: NO, | |
| layout: { top: 24, bottom: 0, left: 0, right: 0 }, | |
| backgroundColor: 'white', | |
| contentView: Tasks.ExpandableListView.design({ | |
| contentBinding: 'Tasks.controller.arrangedObjects', | |
| selectionBinding: 'Tasks.controller.selection', |
This file contains hidden or 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
| require 'thread' | |
| require 'json' | |
| require 'net/http' | |
| require 'uri' | |
| require 'betabrite' | |
| require 'psych' | |
| require 'usb' | |
| class StreamClient | |
| def initialize user, pass |
This file contains hidden or 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
| var Job = { | |
| data : [ | |
| "We are glad to see you here. This site is dedicated to", | |
| "poetry and to the people who make poetry possible", | |
| "poets and their readers. FamousPoetsAndPoems.com is", | |
| "a free poetry site. On our site you can find a large", | |
| "collection of poems and quotes from over 631 poets", | |
| "Read and Enjoy Poetry", | |
| "I, too, sing America", |
This file contains hidden or 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
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl http://npmjs.org/install.sh | sh |
This file contains hidden or 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
| echo 'export PATH=$HOME/local/bin:$PATH' >> ~/.bashrc | |
| . ~/.bashrc | |
| mkdir ~/local | |
| mkdir ~/node-latest-install | |
| cd ~/node-latest-install | |
| curl http://nodejs.org/dist/node-latest.tar.gz | tar xz --strip-components=1 | |
| ./configure --prefix=~/local | |
| make install # ok, fine, this step probably takes more than 30 seconds... | |
| curl http://npmjs.org/install.sh | sh |
This file contains hidden or 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 = SC.Application.create( | |
| /** @scope Chase.prototype */ { | |
| NAMESPACE: 'App', | |
| VERSION: '0.1.0', | |
| // This is your application store. You will use this store to access all | |
| // of your model data. You can also set a data source on this store to | |
| // connect to a backend server. The default setup below connects the store | |
| // to any fixtures you define. |
This file contains hidden or 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
| # mongo_template.rb | |
| # remove unneeded defaults | |
| run "rm public/index.html" | |
| run "rm public/images/rails.png" | |
| run "rm public/javascripts/controls.js" | |
| run "rm public/javascripts/dragdrop.js" | |
| run "rm public/javascripts/effects.js" | |
| run "rm public/javascripts/prototype.js" |
This file contains hidden or 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
| # | |
| # Inspired by | |
| # http://dev.rubyonrails.org/svn/rails/plugins/account_location/lib/account_location.rb | |
| # | |
| module SubdomainAccounts | |
| def self.included( controller ) | |
| controller.helper_method(:account_domain, :account_subdomain, :account_url, :current_account, :default_account_subdomain, :default_account_url) | |
| end | |
| protected |