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
How I name my apps
21–30 of 38 posts
Re: How I name my apps
#22Re: How I name my apps
#23$ 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
#24Re: How I name my apps
#25Re: How I name my apps
#26Earlier 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.
Re: How I name my apps
#27$ aspell dump master |sed -n $(echo $(($RANDOM % `aspell dump master|wc -l`)))p
Re: How I name my apps
#28Earlier 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.
Re: How I name my apps
#29Re: How I name my apps
#30I have never liked this naming scheme because it makes names that are existing words. This makes it hard to Google.