Hi, I’m Andreas. I make screencasts. This is my written version of Mac OS X Screencasts (MOSX).
MOSX is mainly about tutorials and reviews of OS X and iOS software in English and German. MOSX is also on Twitter. And I am, too.
My personal iPhone and iPad homescreens can be found here.
Here’s how to generate a quick four-worder from the command line:
shuf -n4 /usr/share/dict/words | tr -d '\n'Source: Command Line Fu
Unfortunately this only works on Linux. On OS X we could use something like jot (which is mentioned on Command Line Fu as well), but here’s a rather convenient Perl solution:
perl -le 'chomp(@words= <>); print join " ", map {@words[rand @words]} 1..4' /usr/share/dict/words
(Yes, this post took a while. I know…)