up vote 50 down vote favorite
44
share [g+] share [fb]

I was thinking, that all of my projects have boring names. For example, if making a math library, I'd call it math. Sometimes, I would add a prefix with my initials, so it'd become pmmath or *pm_math*. Boring, isn't it?

How do people come up with fun or at least, less boring names? Like Apache, Python, Ruby... They're not boring. If you never heard the name before - you can not make any assumptions about what the project is about...

So, I was wondering, how to come up with fun project names? What methods do you use?

link|improve this question
5  
Anything that's not a bloody recursive acronym! Seriously, how could someone possibly think that they're funny? – DrJokepu Feb 22 '09 at 12:02
3  
Recursive acronyms are inherently amusing. Or at least they were when Stallman came up with GNU. But, yeah, these days, it's been done a few thousand times already, so give it a rest and try to be at least a little original. – Dave Sherohman Feb 22 '09 at 13:51
2  
Here's an acronym for a project title: SURA (Stop Using Recursive Acronyms). :) – Paulius Maruška Feb 22 '09 at 14:08
19  
this is a programming related question. naming is one of the hardest things a programmer does IMO – Jeff Atwood Feb 25 '09 at 8:05
3  
@Paulius How about "SURA Uses Recursive Acronyms" ;) – Stephen Jan 15 '11 at 18:49
show 6 more comments
feedback

closed as not constructive by Bill the Lizard Oct 25 '11 at 20:31

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ.

18 Answers

Two approaches:

  1. Look for similarities between your what your project does and other adjacent words here: http://www.visuwords.com/

  2. Look up a cool ancient god name here: http://www.godchecker.com/. Maybe related to what your project does, so you can post it in your project trivia page.

link|improve this answer
Visuwords link is briliant! I'd up-vote twice if I could... Thanks. – Paulius Maruška Feb 22 '09 at 9:28
Finished playing with the Visuwords, and now I'm looking at the godchecker site... It's good too! Man, you deserve at least three up-votes from me... :) – Paulius Maruška Feb 22 '09 at 9:38
Thanks, glad I could help :) – SorinV Feb 22 '09 at 10:12
I dunno, the concept of Visuwords seemed great, but trying to use it to find some better names for my projects didn't really get me anywhere. There's no entry for "RPC" so I tried "communication". This gave me alternatives like "convey", "transmit", "document". But where's my project name? – flodin Feb 22 '09 at 10:24
3  
You get ideas and combine the words there with something else. Example: communihub, conveythat, justransmit. Depends on what your project is about. – SorinV Feb 22 '09 at 10:30
show 3 more comments
feedback

Hire Dogbert.

Dilbert

The source, of course, is Dilbert.com.

link|improve this answer
'uranus hertz' LOL!!! – Pranav May 28 '09 at 8:17
feedback

I wrote a blog entry some years ago on naming free software. I expect most of the points apply to all software, actually:

  • Try to keep your name pronounceable by people from across the globe.
  • Make sure the name has few hits in Google, so people can find your stuff.
  • Descriptiveness is not important and restricts namespace too much. Small projects may benefit from descriptive names, though, and it's certainly simpler. I named one of mine genbackupdata, since it generates backup test data.
  • Obscure references are always fun: name your word processor or blog engine Lorem ipsum.
  • Password generators can come up with good names: maemo.org is an example.
  • Try non-English languages, the more obscure the better. Sanskrit, perhaps? (I reserve the Finnish language for myself, thanks.)
  • Do you like a book, movie, or TV show? Ample sources of names, there, especially if they're obscure.
  • If you're playing music while thinking about this, pick a name from the currently playing track. Opus3.
  • Instead of going for short, simple names, go for long, ridiculous names: "The little blogging engine that not just could, but did, and does, and will do" (TLBETNJCBDADAWD for short).
link|improve this answer
4  
TLBETNJCBDADAWD doesn't seem quite pronounceable :) – emirmert Oct 27 '10 at 8:12
feedback

Well, Python, Ruby, and Apache and so forth are basically words the authors thought were neat. Each might or might not have some grand reason behind it, usually its just that the authors thought they were cool. For those, you could just find random nouns. You could bias on animals and proper nouns. Being creative is not really something you learn. Perhaps you could to a certain extent, but at some point, you just have to "get" it.

Probably a more interesting thing is to come up with an interesting (not really relevant) word for your application and then try to turn it into an acronym. Usually, it's not that hard. You could even have the first letter be recursive, like GNU, Gnu is Not Unix. A gnu also happens to be an animal. :)

link|improve this answer
Yes, if the name is short - I always try to find a phrase, for which the word could be an acronym... I fail most of the times... :/ – Paulius Maruška Feb 22 '09 at 9:30
It's actually not that hard. :) A lot of the names out there that are like that, the "acronym" is somewhat convoluted anyway. Just pick words and random and then try it! – BobbyShaftoe Feb 22 '09 at 9:59
2  
Actually Apache is so named because it's a cobbled together system. A Patchy Server – annakata Feb 24 '09 at 9:03
@annakata, well if you read my answer I did say "Each might or might not have some grand reason." Also, if you actually look into this matter there is some controversy over whether that is true or not. It's kind of silly, but anyway, I did say there might be some magical reason. – BobbyShaftoe Feb 24 '09 at 11:19
1  
I believe Ruby was so named because a ruby is more valuable than a perl... Not having a dig, just an FYI. – Evan Feb 25 '09 at 10:17
feedback

When I used to manage internal development projects (which gave us a lot of flexiblity in choosing names), we usually did it using some kind of a pun/metaphor type play on words.

  • A web interface for starting jobs on a server was LaunchPad (it was used to launch/kick off jobs)

  • A web interface for a daily archiving of data files was Disk Janitor (does cleanup)

  • An internal data dictionary app was Webster

  • An app to manage logos for our online application was "LogoMotion" (that was kind of a stretch)

  • An app for copying (cloning) report templates was Dolly.. etc.

Here's an old entry from Coding Horror on the topic.

link|improve this answer
Kudos for "LogoMotion," I think it's neat. :) – BobbyShaftoe Feb 22 '09 at 9:17
1  
Nice. This reminds me of a Smashing Pumpkins interview, where they explain how they name their songs... If the song is about red roses, red associates with bull... ha! we'll name the song "cows death"! That's the kind of fun naming I'm after! :) – Paulius Maruška Feb 22 '09 at 9:18
+1 for the coding horror link. – flodin Feb 22 '09 at 10:28
feedback

there are tools to do this :

The Generic Code Name Generator

Code Name Generator

Google Project Name Generator

link|improve this answer
2  
Shit! My codename is "Ochroleucous Wey Iguana"! +1 for great links – Evan Feb 25 '09 at 10:23
feedback

My magical recipe to come up with a funny project name : My English is not very good but I'm quite fluent in French (langue maternelle, entre autres raisons) and I like to make really bad puns and plays on words, and try to translate them... Do I need to explain further ? It's a kind of confusion based name generation. If it makes me laugh and look pretty, it is good.

Okay, an example :

Plyme, an experimental distributed and disconnected text editor built on Mercurial. The name came from "plume", which can be translated by "feather" or "fountain pen". Since it is for writing stories, that's better with the last interpretation. Then, it is written in Python, so the 'u' became an 'y', which have the same sound between French and Alemanish (Swiss German). And the un-intended joke : each writter can make "harvest" sheets of text (plys...) and browse through them (to ply...) (Well, project disbanded because Dropbox is better suited...)

link|improve this answer
feedback

I recently faced this problem. I wrote down on a piece of paper the names of the successful products: yahoo, skype, google, youtube, badoo, zylom, etc.

I observed a few similarities:

  • They're short.
  • They mean nothing.
  • They are fun to pronounce.
  • They don't look like any known word.
  • They don't remind of anything negative, or politics, religion, etc.
  • The dot com is not already taken (before you take it)

That's a hint, amongst others.

link|improve this answer
feedback

I named one of my projects photomania. It was s digital photo print order application. Client do not like it, but it doesn't matter. they want it to called photolab and called it so. But my project names and namespaces are still photomania :)

link|improve this answer
What's the project about? Is it something about managing photos? Also, this could be an addition to mm2010 post - you can always add suffix -mania (mathmania, calcmania etc.) ;) – Paulius Maruška Feb 22 '09 at 9:12
I edit my post for your question. I think mania is a cool suffix :) I named my quake 3 server name as Maxmania, my nick in game is Max :):) – Canavar Feb 22 '09 at 9:18
feedback

Just a general advice: avoid using too generic names. Why? Because it makes harder to find your project with a search engine! Some cool names that are hard to search: Löve (Lua-based game engine), Processing (Java-base graphical environment), Fan (JVM/CLR-based programming language).

link|improve this answer
feedback

I can suggest some types:

  • Something from chemistry theory. f.ex: Germanium, Cobalt, Ytterbium.
  • Something from math theory. f.ex: Double Pendulum, Edge Of Chaos, Riemann.
  • Something from astronomy theory. f.ex: Andromeda, Celestial Object, Crab Nebula.
  • Something from medicine theory. f.ex: Campylobacter, Trypanosomiasis, Leishmaniasis.
  • Something from you favorite board or computer game. f.ex: marine :)
  • Favorite character from movie or TV. f.ex: Gendalf, Bilbo, Vulpa.
  • Famous Scientists names from various areas. f.ex: Van Gogh, Adolf von Baeyer, Rudjer Boscovich.
  • You can think of smth you like, f.ex sweets names, shampoo names, etc. etc..
  • And also you can mix all of these :)

Good luck :)

link|improve this answer
feedback

I name my work projects after volcanoes like: Fuji, Pelee, Etna... But that is for top namespace only. Modules and classes get reasonable names.

link|improve this answer
feedback

Perhaps you may search for any similar words from any foreign language or mythology. For example, I tried English > Norvegian translator in Google and came up with interesting names.
Besides, what you call boring might be interesting names for others. Its just a frame of reference.

link|improve this answer
feedback

I think you need to do two things. Take your mothers maiden name and then the name of your first pet and concatenate them.

My new product will be called PottsKim.

PottsKim will be an automated kitchen helper application for the iphone.

The great thing about this method is coming up with the name actually helps you think about what the product should do!

link|improve this answer
feedback

Often you'll brainstorm a bit and eventually you hit a name that just clicks for you (e.g. Meta Overflow.)

We had an internal project that involved converting a lot of content from an in-house proprietary format to flash. We ended up calling the project "Mongo" which is the planet out of Flash Gordon. So yeah, it can be pretty obscure.

A pet project of mine I take out and peck at every now and again is a GUI client for the First Internet Backgammon server, commonly known as FIBS. Now a fib is considered a trivial lie, so I've called my program Prevarication. ("Liar" was just too ordinary.)

Google Sets is another tool you could use to come up with ideas based on various words about your project.

link|improve this answer
feedback

Step 1, think of a cool recursive acronym. I.e MIN ((M)IN (I)nterests (N)oone!) .. don't worry about making the name self-critical, the recursive acronym still catches on. Most of your users will share something in common with your chosen name. Nobody needs to know that the M really stands for mathlib.

Step 2, Define some set of coding standards that nobody in their right mind will follow, make exceptions only for brilliant contributors and immediately put them in charge of code review. Give preference to amateur coders who make the acronym non-critical of the project, or contribute animated sprites in makefiles. Foster arguments at all costs, those get you exposure. Calling people "terminally stupid" might help, "jackass" or "moron" are sure fires on public lists, especially if their e-mail ends with @intel.com.

Step 3, After you get popular, make sure you don't tramp on someone else's name space, if you do, send them beer, cash and attractive members of the opposite (or same, depending on who you're dealing with) sex.

Step 4, Find someone who works at Google with a son/daughter in your acceptable age range that is at least mildly attractive. Court them, get married in secret and start all conversations with your startled in-law with "If only someone had discovered MIN ..." At this point, your unemployment is Google's problem, not his/hers.

Step 5, profit.

You are, of course, free to reverse 2 and 3.

Prior to voting this down .. if you have not realized that I was simply being funny .. well ...

So, hmm.. Random Stack Overflow Question Answerer +1 , Darth Vader 0.

Cheers, --R2D2

(Gotta love wiki posts!)

link|improve this answer
feedback

At our place we just developed a small application that handles change and incident requests. After thinking about a name for some time we came up with a title that is in my opinion quite clever and a good example of how to combine creativity with descriptiveness.

The tools name is

INCA

A) This servers as an acronym (maybe more a backronym) for Incident aNd Change Administration. This describes the functionality of the tool quite well.
B) We have a random noun that provides a basis for a neat logo if needed.

link|improve this answer
feedback

Save the cleverness for your design.

Some of the names for project are not bad, but others are just stupid. You want a person who never before heard of your project to have a clear idea of what your project is about. Any name that does that is good, any name that does not do that is bad.

link|improve this answer
I disagree. Without the recommendations from others, people won't start using my project, no matter how descriptive the name is. And if the title is fun (fun to write, read and pronounce), then it will be easier for people to remember it (once they start using it). – Paulius Maruška Feb 22 '09 at 9:32
1  
Indeed what does "Excel" tell you about the purpose of that application? Really I go for unique names because they're easy to google. That's surprisingly useful. – Steve Kemp Feb 22 '09 at 9:36
-1 for being boring – Cruachan Feb 22 '09 at 10:14
... and that's why engineers shouldn't do marketing :) – DrJokepu Feb 22 '09 at 12:30
Then how do you explain the success of GNU? Prior to that, who the #$^*%!)$&(#*& knew what a GNU was? Going recursive is the way of all Zen projects. This is, of course, all in fun :) – Tim Post Feb 25 '09 at 11:51
show 1 more comment
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.