Live data from Hacker News

How I name my apps

blog.zachwaugh.com

11–20 of 38 posts

Re: How I name my apps

#11
post #4
post #2

And 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.

Whoosh.

Re: How I name my apps

#12

It would be fun (and probably exists) a fake word generator that created words that were easy to spell and pronounce, but were basically meaningless.

This is pretty much exactly what Wordoid does with the bonus of telling you if the domain is available - http://wordoid.com/.

Re: How I name my apps

#13
Do remember to check uspto.gov > trademarks > (2) Search Marks to ensure something cool you've picked isn't an active/current registered trademark by another for computer / software / online use.

Re: How I name my apps

#14
post #10

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

Is aspell a spellchecker? And does this command randomly select one word from its dictionary?

(Note: I'm mostly a Windows user nowadays and I have never personally used aspell, sed, or wc)

What does the p at the end of the line do? Is that a mistake or is it there on purpose?

Re: How I name my apps

#15
post #14
post #10

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

Is aspell a spellchecker? And does this command randomly select one word from its dictionary? (Note: I'm mostly a Windows user nowadays and I have never personally used aspell, sed, or wc) What does the p at the end of the line do? Is that a mistake or is it there on purpose?

The p prints the randomly chosen line -- wc -l is the number of lines in the file, (random % lines-in-file) picks a random one, 'sed -n 30p' prints the 30th line.

Re: How I name my apps

#16
post #11
post #4

Earlier quoted context omitted.

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.

Whoosh.

Touché. I wasn't sure if this was a joke or not though. The fact that people actually do this when naming something made it pretty hard to figure out if he was serious.

Re: How I name my apps

#20
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

Knew a guy in college who named every physics assignment.

"A brief treatise in radioactive decay, or how I learned to stop worrying and love the α particle."

Post reply on HN