How I name my apps
31–38 of 38 posts
Re: How I name my apps
#32Re: How I name my apps
#33Re: How I name my apps
#34Earlier quoted context omitted.
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.
sh -c 'cat /usr/share/dict/words | sed -n $(echo $((`cat /dev/urandom | od -N3 -An -i` % `cat /usr/share/dict/words | wc -l`)))p'
This is closer, although you might get sed: illegal option occasionally, I guess. I'm yet to learn how to generate a random number within given limits with bash. Oh wait, we can use Python can't we? sh -c 'cat /usr/share/dict/words | sed -n $(echo $((`python -c "import random; print random.randint(1,234935)"` % `cat /usr/share/dict/words | wc -l`)))p'Re: How I name my apps
#35I'll find words I like and fit them together myself, like Rocketboom, or Humanwire, e.g.
Re: How I name my apps
#36And if you really get stuck, try removing vowels and repeating some letters
Just curious... why would you want to do that even if you're stuck? This is more of a quick brainstorm method, I don't think he's even looked to see if the domain name is available at this point. Also, I'd rather have something like "getflint.com" or "flintapp.com" than "flnnt.com" or something. When you start getting into cutesy abstractions like that it becomes hard to remember.
Re: How I name my apps
#37But seriously, I have given them descriptive names - inspired by the supplier of meat to MacDonalds in Australia called "The 100% Australian Beef Company". I figured it was good for googling, and informative. Also reminded me of Humpty Dumpty (my name means the shape I am). And it worked.
Though I note most people go for clever and/or zany names, with creative spellings (so they be trademarked). An amusing "story" to explain a clever name can operate as a vector for word of mouth: by passing on the story for entertainment value, you also pass on the name. It's kind of like product placement, where the story is the movie. An example is GNU. It can also operate as an in-joke, creating an artificial elite.
Re: How I name my apps
#38In the end, the name doesn't have to be descriptive, but it does have to be unique and pronouncable.