Hi folks,
Couldn't resist and had some fun with 'draw
something' for
Android. Now some people tend to draw very very bad.. (..including
me..), which makes it almost impossible to guess their drawings. To fix
this issue, I was looking out for an easy way to figure out what they've
been drawing. A quick tcpdump-session and draw something revealed the
path for the wordlist. So now that we have the official wordlist, we can
append a grep and find the words they've been drawing. Find below an
example. Just change egrep parameters to match your 'situation'. So for
example, I had the letters 'bceeijlorwwy' available, and the wordlength
was 7.
{.lang:sh .decode:true}
$ curl -q http://static.iminlikewithyou.com/drawsomething/wordlist.csv 2>/dev/null | awk -F, ' { print $1 } ' | egrep '^[bceeijlorwwy]${7}'
bicycle
[...]
Cheers,
Raphi