README
- READMEs - every project must have a good README
- Markdown
- Heroku URL
- set up instructions
- what's the point, what's it called, what's weird about it vs other apps you've seen
- https://github.com/thoughtbot/suspenders
README
class Punctuation | |
def _?(*args) | |
yield 5 | |
end | |
end | |
punctuation = Punctuation.new | |
# 8: . _ ? ( & : ! ) | |
puts punctuation._?(&:!) |
fruit_colors(my_hash)
. Write out the hash that you're passing in to the function.I hereby claim:
To claim this, I am signing this object:
- (BOOL)hasCards | |
{ | |
// Is relying on the implicit "NO == 0" ok? | |
// Should I do `[self.cards count] > 0` instead? | |
return [self.cards count]; | |
} |
#!/bin/bash | |
# Run this inside a git repo. | |
# Change name of `origin` remote to `git` | |
sed -i '' 's/remote "origin"/remote "git"/' .git/config | |
# Pushing to `paid` means pushing to `master` | |
# http://stackoverflow.com/questions/549920/is-it-possible-to-alias-a-branch-in-git | |
git symbolic-ref refs/heads/paid refs/heads/master |
#!/bin/bash | |
/usr/local/bin/phantomjs-real $@ 2> >(grep -v CoreText 1>&2) |