productivity
flows & screens
- screen name at top
- transitions below the title
- branching and transitions
"ambitious apps" - applications that have many screens / flows
class CreateBirds < ActiveRecord::Migration | |
def change | |
create_table :comments do |t| | |
t.string :location | |
t.belongs_to :birdable, polymorphic: true | |
t.timestamps | |
end | |
end | |
end |
(ns noc.core | |
(:use quil.core)) | |
(defn setup [] | |
(background 255) | |
(no-loop)) | |
(defn draw [] | |
(pixels) | |
(doseq [x (range 0 (width)) |
#!/bin/bash | |
# Script for installing tmux on systems where you don't have root access. | |
# tmux will be installed in $HOME/local/bin. | |
# It's assumed that wget and a C/C++ compiler are installed. | |
# Using curl instead of wget. | |
# exit on error | |
set -e |
Bobbys-MacBook-Air:bonsai bobbywilson0$ bundle exec nespr server | |
/Users/bobbywilson0/.gem/ruby/2.0.0/bin/nespr:23:in `load': /Users/bobbywilson0/projects/bonsai/vendor/cache/nespr-c256af5e115f/bin/nespr:5: `$(' is not allowed as a global variable name (SyntaxError) | |
/Users/bobbywilson0/projects/bonsai/vendor/cache/nespr-c256af5e115f/bin/nespr:5: syntax error, unexpected end-of-input | |
$(type -p greadlink readlink | head -1) "$1" | |
^ | |
from /Users/bobbywilson0/.gem/ruby/2.0.0/bin/nespr:23:in `<main>' |
I hereby claim:
To claim this, I am signing this object:
{"index":{"_index":"olympic_data","_type":"athlete","_id":1}} | |
{"athlete":"Michael Phelps","age":"23","country":"United States","year":"2008","closing ceremony date":"8/24/2008","sport":"Swimming","gold medals":"8","silver medals":"0","bronze bedals":"0","total medals":"8"} | |
{"index":{"_index":"olympic_data","_type":"athlete","_id":2}} | |
{"athlete":"Michael Phelps","age":"19","country":"United States","year":"2004","closing ceremony date":"8/29/2004","sport":"Swimming","gold medals":"6","silver medals":"0","bronze bedals":"2","total medals":"8"} | |
{"index":{"_index":"olympic_data","_type":"athlete","_id":3}} | |
{"athlete":"Michael Phelps","age":"27","country":"United States","year":"2012","closing ceremony date":"8/12/2012","sport":"Swimming","gold medals":"4","silver medals":"2","bronze bedals":"0","total medals":"6"} | |
{"index":{"_index":"olympic_data","_type":"athlete","_id":4}} | |
{"athlete":"Natalie Coughlin","age":"25","country":"United States","year":"2008","closing ceremony date":"8/24/2008","sport":"Swimming","gol |
TypeFast.GameController = Ember.Controller.extend({ | |
quote: model.body, | |
word: '' | |
}); |
def bootstrap | |
reseller = FactoryGirl.create(:reseller) | |
FactoryGirl.create(:shipping_price_list, reseller_id: reseller.id) | |
@template = create_website_template | |
create_theme_website(@template) | |
@user = FactoryGirl.create(:user, reseller_id: reseller.id, auth_token: SecureRandom.urlsafe_base64) | |
@website = FactoryGirl.create(:website, :active_template_id => @template.id, :user_id => @user.id) | |
end | |
def user_logs_in |
Dec 03 13:37:26 rhea rsyslogd: [origin software="rsyslogd" swVersion="5.8.6" x-pid="4132" x-info="http://www.rsyslog.com"] exiting on signal 15. | |
Dec 03 13:37:26 rhea kernel: imklog 5.8.6, log source = /proc/kmsg started. | |
Dec 03 13:37:26 rhea rsyslogd: [origin software="rsyslogd" swVersion="5.8.6" x-pid="6612" x-info="http://www.rsyslog.com"] start |