An implementation of Conway's Game of Life in 140 characters of Ruby.
Created by Simon Ernst (@sier).
| # Defaults / Configuration options for homebridge | |
| # The following settings tells homebridge where to find the config.json file and where to persist the data (i.e. pairing and others) | |
| HOMEBRIDGE_OPTS=-U /var/lib/homebridge | |
| # If you uncomment the following line, homebridge will log more | |
| # You can display this via systemd's journalctl: journalctl -f -u homebridge | |
| # DEBUG=* |
| sudo /Applications/Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Mavericks.app --nointeraction |
An implementation of Conway's Game of Life in 140 characters of Ruby.
Created by Simon Ernst (@sier).
| # app/models/post.rb | |
| class Post | |
| searchable :auto_index => false, :auto_remove => false do | |
| text :title | |
| text :body | |
| end | |
| after_commit :resque_solr_update, :if => :persisted? |
| ################################################################ | |
| # For views/migrations etc. check http://tinyurl.com/3xfx3zm # | |
| ################################################################ | |
| # File : RAILS_APP/config/initializers/devise.rb | |
| # Change the following only. Rest can stay same | |
| # NOTE : You must use devise master or any version released after Mar 13, 2011 to get everything mentioned here working. | |
| config.authentication_keys = [ :login ] | |
| config.confirmation_keys = [ :login ] | |
| config.unlock_keys = [ :login ] |
| current_dir = File.dirname(__FILE__) | |
| platform = "https://api.opscode.com/organizations" | |
| require 'grit' | |
| branch = Grit::Repo.new("#{current_dir}/..").head.name | |
| case branch | |
| when "internal" | |
| url = "http://virt1test.int.example.org:4000" | |
| validator = "" |
| # | |
| # bash completion support for core Git. | |
| # | |
| # Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
| # Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
| # Distributed under the GNU General Public License, version 2.0. | |
| # | |
| # The contained completion routines provide support for completing: | |
| # | |
| # *) local and remote branch names |