Skip to content

Instantly share code, notes, and snippets.

@sorrycc
Created October 29, 2013 13:28
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save sorrycc/7214622 to your computer and use it in GitHub Desktop.
Save sorrycc/7214622 to your computer and use it in GitHub Desktop.
get all zen from https://api.github.com/zen
require "open-uri"
data = []
while true
item = open("https://api.github.com/zen").read
if data.index(item) == nil
p item
data.push item
end
end
@sorrycc
Copy link
Author

sorrycc commented Oct 29, 2013

"It's not fully shipped until it's fast."
"Practicality beats purity."
"Avoid administrative distraction."
"Mind your words, they are important."
"Non-blocking is better than blocking."
"Design for failure."
"Half measures are as bad as nothing at all."
"Favor focus over features."
"Approachable is better than simple."
"Encourage flow."
"Anything added dilutes everything else."
"Speak like a human."
"Responsive is better than fast."
"Keep it logically awesome."

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment