Created
October 29, 2013 13:28
-
-
Save sorrycc/7214622 to your computer and use it in GitHub Desktop.
get all zen from https://api.github.com/zen
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"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."