Identify what the business goal is for building software.
Increase repeat sales to existing customers by 50% over the next 12 months
From the business goal, derive the scope of the feature(s)
| # Answering this question: | |
| # http://stackoverflow.com/questions/3679306/ | |
| >>> import json | |
| >>> class Foo(object): | |
| ... def __init__(self, a, b): | |
| ... self.a = a | |
| ... self.b = b | |
| ... | |
| >>> foo = Foo('a string', ['a', 'list', 'of', 'strings']) |
| require 'rubygems' | |
| require 'rack' | |
| class Object | |
| def webapp | |
| class << self | |
| define_method :call do |env| | |
| func, *attrs = env['PATH_INFO'].split('/').reject(&:empty?) | |
| [200, {}, send(func, *attrs)] | |
| end |
| #OS junk files | |
| [Tt]humbs.db | |
| *.DS_Store | |
| #Visual Studio files | |
| *.[Oo]bj | |
| *.user | |
| *.aps | |
| *.pch | |
| *.vspscc |
| /* Default (OS X).sublime-keymap */ | |
| /* Key Bindings - User */ | |
| [ | |
| { "keys": ["ctrl+shift+."], "command": "erb", "context": | |
| [ | |
| { | |
| "key": "selector", | |
| "operator": "equal", | |
| "operand": "text.html.ruby, text.haml, source.yaml, source.css, source.scss, source.js, source.coffee" | |
| } |
| # value_iteration.r | |
| # George Lesica | |
| # CSCI 555 - FA 2012 | |
| # Homework 5 | |
| # Solution to problem 3 | |
| INTENDED <- 0.8 | |
| LEFT <- 0.1 | |
| RIGHT <- 0.1 |