I'm not sure a name has that much of an impact on a business's success. I posted this comment in another thread recently: The word "Target" doesn't really carry any signal about what that company actually does. Ask yourself, in Target's infancy, did the name hurt or help them? I'd guess it had very little to do with their eventual outcome.
“Startup Names” by Paul Graham (2006)
41–50 of 70 posts
Re: “Startup Names” by Paul Graham (2006)
#42Interestingly enough, that domain name is for sale.
Re: “Startup Names” by Paul Graham (2006)
#43Re: “Startup Names” by Paul Graham (2006)
#44Re: “Startup Names” by Paul Graham (2006)
#45The best names have two syllables.
Re: “Startup Names” by Paul Graham (2006)
#46A while back I created a startup name generator by fusing tech and culinary terms together. I also set it up to check if the .com is available. It gets a decent amount of traffic and a few domains purchased every once in a while. Check it out: http://montanaflynn.me/lab/startup-name-generator/
Re: “Startup Names” by Paul Graham (2006)
#47The best names have two syllables.
I tend to agree with you, do you know of any software projects to programmatically determine syllables?
Re: “Startup Names” by Paul Graham (2006)
#48"Nothing could be less cool, at this point, than calling a startup “cool.com.”" Interestingly enough, that domain name is for sale.
Re: “Startup Names” by Paul Graham (2006)
#49Re: “Startup Names” by Paul Graham (2006)
#50Earlier quoted context omitted.
I tend to agree with you, do you know of any software projects to programmatically determine syllables?
http://www.nltk.org/
from nltk.corpus import cmudict
d = cmudict.dict()
def nsyl(word):
return [len(list(y for y in x if y[-1].isdigit())) for x in d[word.lower()]]