Skip to content

Instantly share code, notes, and snippets.

View blairanderson's full-sized avatar

Blair Anderson blairanderson

View GitHub Profile
@blairanderson
blairanderson / guide_to_delivering.md
Last active December 16, 2015 17:29 — forked from parkerl/Lews_guide_to_delivering.md
How to Deliver Features

Opinionated Guide to Delivering Features


  1. First, understand the story.

Do you understand the story completely? If not, talk to the product owner to clarify your understanding.

Is the story a logically cohesive grouping of functionality? If not, can it be broken into multiple stories?

Do the points assigned make sense given your current level of understanding of the story? If not, can it be broken into multiple stories?

@blairanderson
blairanderson / query.rb
Last active December 15, 2015 04:59 — forked from pjb3/query.rb
Create a ruby hash by chaining methods.
class Query
def initialize
@hash = {}
end
def method_missing(name, *args)
value = args.length > 0 ? args.first : true
@hash.merge!(name => value)
self
end