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
#!/usr/bin/env bash | |
# executables prefix | |
_prefix="/usr/local/bin" | |
# git executable | |
_git="$_prefix/git" | |
# site generation executable | |
_generate="$_prefix/jekyll" | |
# options for the generator |
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
# == Schema Information | |
# | |
# Table name: showings | |
# | |
# id :integer not null, primary key | |
# start_time :datetime | |
# end_time :datetime | |
class Showing < ActiveRecord::Base | |
attr_accessor :showing_date, :start_date, :end_date |
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
Started GET "/sign_in" for 127.0.0.1 at 2012-02-15 09:39:58 -0600 | |
NoMethodError (undefined method `scoped_path' for nil:NilClass): | |
devise (2.0.1) app/controllers/devise_controller.rb:164:in `_prefixes' | |
actionpack (3.2.0) lib/abstract_controller/view_paths.rb:45:in `lookup_context' | |
actionpack (3.2.0) lib/abstract_controller/rendering.rb:44:in `process' | |
actionpack (3.2.0) lib/action_controller/metal.rb:203:in `dispatch' | |
actionpack (3.2.0) lib/action_controller/metal/rack_delegation.rb:14:in `dispatch' | |
actionpack (3.2.0) lib/action_controller/metal.rb:246:in `block in action' | |
actionpack (3.2.0) lib/action_dispatch/routing/route_set.rb:66:in `call' |
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
- (void)applicationDidFinishLaunching:(UIApplication *)application { | |
... | |
[self.navigationController.navigationBar setNeedsDisplay]; | |
... | |
} |
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
~/code/ryanjm[source]% rake generate | |
## Generating Site with Jekyll | |
unchanged sass/screen.scss | |
Configuration from /Users/RyanJM/code/ryanjm/_config.yml | |
/Users/RyanJM/.rvm/gems/ruby-1.9.2-p180/gems/ffi-1.0.9/lib/ffi_c.bundle: [BUG] unknown type 0x22 (0xc given) | |
ruby 1.9.2p180 (2011-02-18 revision 30909) [x86_64-darwin10.7.0] | |
-- control frame ---------- | |
c:0038 p:---- s:0120 b:0120 l:000119 d:000119 CFUNC :initialize | |
c:0037 p:-541620956 s:0118 b:0118 l:000117 d:000117 TOP |
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
<section id="new_subscriber"> | |
<div class="payment-errors"> </div> | |
<%= form_for @subscriber, :url => campaign_subscribers_path(@campaign) do |f| %> | |
<%= f.hidden_field :campaign_id, :value => @campaign.id %> | |
<%= f.fields_for :stripe_customer do |s| %> | |
<%= s.hidden_field :stripe_token %> | |
<% end %> | |
<ul> |
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
Rails CMS alternatives | |
====================== | |
I've updated this as of 6/14/11. Looking at only active projects | |
Active projects: | |
--------------- | |
BrowserCMS | |
repo: http://github.com/browsermedia/browsercms | |
site: http://www.browsercms.org/ |
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
Set your password | |
Put in Apple Account | |
Chrome | |
Setup Mail | |
Mac Software Updates | |
Evernote - app store | |
Alfred - app store | |
- Change spotlight shortcut and set command+space as alfred | |
Setup caps lock to be control | |
Caffeine - lighthead - app store |
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
# http://blog.illuminex.com/2009/10/better-sample-gitignore-file-for-xcode.html | |
# Mac OS X Finder and whatnot | |
.DS_Store | |
# Sparkle distribution Private Key (Don't check me in!) | |
dsa_priv.pem | |
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
After do |scenario| | |
if scenario.failed? && scenario.exception.is_a?(Webrat::NotFoundError) | |
save_and_open_page | |
end | |
end |