Skip to content

Instantly share code, notes, and snippets.

View feliperazeek's full-sized avatar
💭
Be there and give a shit

Felipe Oliveira feliperazeek

💭
Be there and give a shit
View GitHub Profile

Make it real

Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.

Ship it

Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.

Do it with style

@feliperazeek
feliperazeek / gist:3537872
Created August 30, 2012 19:07 — forked from lucasfais/gist:1207002
Sublime Text 2 - Useful Shortcuts

Sublime Text 2 – Useful Shortcuts (Mac OS X)

CTags

Ctrl-t Ctrl-r rebuild tags
Ctrl-t Ctrl-y search for definitions

General

⌘T go to file
@dyross
dyross / config.scala
Created January 12, 2012 22:54
Scala DSL for loading properties in Play!
// Loading properties with Java API's is annoying...
// val someInt = play.configuration("some.int", 10).toInt
// val someBool = "true" == play.configuration("some.boolean", "true").toLowerCase
// This makes it nicer. It's specifically for play but can be easily changed.
object config {
def string(name: String): Proption[String] = {
Proption(Option(play.configuration(name)), name)