Live data from Hacker News

How I name my apps

blog.zachwaugh.com

21–30 of 38 posts

Re: How I name my apps

#21
post #3

I like to name my apps like classical pieces: App No. 1 in Erlang App No. 2 in Haskell Variations on a theme by Hasbro

In college I had a habit of making sure every app had either the word 'Extreme' or 'Ultimate' in the title. Thankfully I have outgrown this.

Re: How I name my apps

#23
post #10

$ aspell dump master |sed -n $(echo $(($RANDOM % `aspell dump master|wc -l`)))p

Too bad zsh caches var expansion. :)

    sh -c 'cat /usr/share/dict/words |sed -n $(echo $(($RANDOM % `cat /usr/share/dict/words |wc -l`)))p'
I don't have aspell installed so 'cat /usr/share/dict/words' in place.

Re: How I name my apps

#26
post #23

Earlier quoted context omitted.

Too bad zsh caches var expansion. :)

sh -c 'cat /usr/share/dict/words |sed -n $(echo $(($RANDOM % `cat /usr/share/dict/words |wc -l`)))p' I don't have aspell installed so 'cat /usr/share/dict/words' in place.

This is actually a good way to go or at least kind of fun for killing some time.

Re: How I name my apps

#28
post #23

Earlier quoted context omitted.

sh -c 'cat /usr/share/dict/words |sed -n $(echo $(($RANDOM % `cat /usr/share/dict/words |wc -l`)))p' I don't have aspell installed so 'cat /usr/share/dict/words' in place.

This is actually a good way to go or at least kind of fun for killing some time.

Problem with this (and probably with the aspell version too, but I can't test that just now): $RANDOM only generates a number from 0 to 32767, but /usr/dict/words has (on my Mac) 235886 words.

Re: How I name my apps

#29
I have never liked this naming scheme because it makes names that are existing words. This makes it hard to Google.

Re: How I name my apps

#30
post #29

I have never liked this naming scheme because it makes names that are existing words. This makes it hard to Google.

Just tack on "ly". In this case he would name the app "Flintly"
Post reply on HN