Skip to content

Instantly share code, notes, and snippets.

@bloodyowl
Created September 12, 2013 21:02
Show Gist options
  • Star 6 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bloodyowl/6543749 to your computer and use it in GitHub Desktop.
Save bloodyowl/6543749 to your computer and use it in GitHub Desktop.
Jony Ive bullshit generator
;(function(){
var text = [
[
"Right from the beginning, it appeared to us that designing the new"
, "When we first thought about it, we understood that designing the new"
]
, [
" iPhone"
, " iMac"
, " MacBook"
, " Mac Pro"
, " iPod"
]
, [
" wasn't just a matter of beauty"
, " was about creating a whole new experience"
, " had to be about the experience itself"
, " required a whole different approach"
]
, [
" which is why this is so beautiful. "
, " and the result is just estonishing. "
, " and we managed to completely redesign the product. "
]
]
, l = text.length
function comeOnJony(){
var arr = [], i = -1
while(++i < l) arr.push(text[i][~~(text[i].length * Math.random())])
return arr.join("")
}
this.comeOnJony = comeOnJony
})()
@Shahor
Copy link

Shahor commented Sep 13, 2013

\o/

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