How do you choose your project codename? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T02:58:45Z http://stackoverflow.com/feeds/question/143248 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename 14 How do you choose your project codename? Allan Mertner 2008-09-27T08:41:46Z 2008-09-28T21:46:07Z <p>We use code names to name branches and to have an easy way to reference the next version, before Marketing has decided what number or even name to give it when it is officially launched.</p> <p>I have used names of planets, moons and cities, since they offer an easy successive list to choose from, and have even used names of STDs in an attempt to make sure the business doesn't choose the development code name for the actual release.</p> <p>Do you do the same? If yes, how do you choose your code names? Which scheme works best, and why? If not, why not?</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143251#143251 2 Answer by Cody Brocious for How do you choose your project codename? Cody Brocious 2008-09-27T08:43:30Z 2008-09-27T08:43:30Z <p>I tend to name my projects after a song I'm listening to a lot in development. Easily memorable and it's easy to look in iTunes and pick out a name quickly.</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143255#143255 2 Answer by unexist for How do you choose your project codename? unexist 2008-09-27T08:47:05Z 2008-09-27T08:47:05Z <p>I use names of things from books I am currently reading. Like name of the fictional cities, characters and so on. I bet every scheme is great as long as you have a name that you can keep in mind and directly associate things to it.</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143256#143256 2 Answer by Chris Jester-Young for How do you choose your project codename? Chris Jester-Young 2008-09-27T08:47:38Z 2008-09-27T08:47:38Z <p>On <a href="#143251" rel="nofollow">Cody's comment</a> about memorable: Back when Ben Goodger was the lead developer for Firefox, a lot of Firefox releases were named after Auckland suburbs, where Ben was from. :-)</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143263#143263 1 Answer by Axeman for How do you choose your project codename? Axeman 2008-09-27T08:52:02Z 2008-09-27T08:52:02Z <p>I choose a planet from the <a href="http://en.wikipedia.org/wiki/List_of_Star_Trek_planets" rel="nofollow">Star Trek Planets List</a> :-) </p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143264#143264 1 Answer by Zee JollyRoger for How do you choose your project codename? Zee JollyRoger 2008-09-27T08:55:02Z 2008-09-27T08:55:02Z <p>If you're a huge music fan or movie-buff you could use band names, song names, or movie names I suppose, but those might seem a bit trivial. I do think it would be funny to walk into an office and ask "So how's Project Tarantula doing?" or "So how's the Dark Side of the Moon?"</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143272#143272 0 Answer by Oli for How do you choose your project codename? Oli 2008-09-27T08:59:19Z 2008-09-27T08:59:19Z <p>Any two letter combination still available :) We like it short...</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143275#143275 1 Answer by Anders Sandvig for How do you choose your project codename? Anders Sandvig 2008-09-27T09:01:40Z 2008-09-27T09:01:40Z <p>First, I spend some time trying to come up with a name that would be suitable for the given project, i.e. a name that relates to what the project is about or what the software does. </p> <p>This can often be quite hard, which is why I also keep a list of potential "codenames" to pick from. When I start a new project I go through the list to see if I can find anything suitable, and use that until I eventually come up with something better. In some cases I might even stick with the codename.</p> <p>Whenever I come up with a new name&mdash;related to a project, or not&mdash;I put it on the list for potential future projects. It doesn't solve the problem of finding good names for the final product, but it saves me a lot of time when starting a new project, as I usually have a name temporary codename ready to use.</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143278#143278 1 Answer by Grimtron for How do you choose your project codename? Grimtron 2008-09-27T09:04:19Z 2008-09-27T09:04:19Z <p>We typically use the names of geographical places of interest in the vicinity of our company's headquarters. River names, for instance, are used for new libraries, while the names of hills are used for winforms applications. We also try to not use too popular geographical sites, to make it less likely that they're used by other companies already (and google helps, too).</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143284#143284 5 Answer by palm3D for How do you choose your project codename? palm3D 2008-09-27T09:14:54Z 2008-09-27T09:14:54Z <p><a href="http://en.wikipedia.org/wiki/Norse_mythology" rel="nofollow">Norse mythology</a> is a fun theme. "Project Thor" sounds like a powerful app, even though it's less than 100 lines of Python ;-)</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143302#143302 4 Answer by Adam J. Forster for How do you choose your project codename? Adam J. Forster 2008-09-27T09:25:58Z 2008-09-27T09:25:58Z <h2>Projects</h2> <p>We use bird names for our internal code names, I keep the RSPB's Birds of the British Isles book on my desk to make picking one easier. So far we have used:</p> <ul> <li>Coot</li> <li>Warbler</li> <li>Plover</li> <li>Quail</li> <li>Puffin</li> <li>Razorbill (our lead developer's favourite)</li> </ul> <p>As you can see we pick them in a random order.</p> <h2>Servers</h2> <p>Our server names however are picked sequentially. We pick two schemes, one for physical servers and one for virtual servers, for example chocolate bars and vegetables. Then each time we install a new server we move up the alphabet from A-Z, when we run out of letters we pick a new scheme.</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143314#143314 1 Answer by Georgi for How do you choose your project codename? Georgi 2008-09-27T09:38:40Z 2008-09-27T09:38:40Z <p>At first we had fun names. For projects we internally used poet names such as "project Poe" or "project Vogelweide". But as the projects (and the client base) grew we simply switched to flat names before the project had a real name and major / minor / build - numbers for the software (updates). The version, i.e. 2.03.047, is coded into the software so you can read it and get a development environment with exactly that code.</p> <p>Anyway, life is too short not to have fun.</p> <p>So, whenever possible I try to make a little fun with all who participate. Example: I was at a clients office and we talked about the new release. After everything was explained and we were allowed to release I took a phone, called the lead developer and said loudly: "Listen, the pigeons are flying backwards in spring, repeat, the pigeons are flying backwards."</p> <p>I think this sounds better than "Release version 2.02.037, please."</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143315#143315 1 Answer by Ilya Kochetov for How do you choose your project codename? Ilya Kochetov 2008-09-27T09:38:43Z 2008-09-27T09:38:43Z <p>We are an outsourcing company and have literally thousands of projects. So we like their names to be consistent and easy to remember. So we use a three-letters code (usually an abbreviation or acronym) for the customer followed by the three-four letters code of the project. This allows us to easily group the work we do for the same customer together and the names are suprisingly easy to read and remember. If it's a second phase it could get a numeric at the end.</p> <p>So at the end we get something like:</p> <pre><code>&lt;CST&gt;-&lt;CMS&gt;[2] </code></pre> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143319#143319 0 Answer by John Channing for How do you choose your project codename? John Channing 2008-09-27T09:42:29Z 2008-09-27T09:42:29Z <p>Currently, we are using <a href="http://en.wikipedia.org/wiki/Greek_gods" rel="nofollow">Greek Gods</a>.</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143373#143373 18 Answer by toolkit for How do you choose your project codename? toolkit 2008-09-27T10:30:25Z 2008-09-27T10:30:25Z <p>At one company I worked for, I suggested man-made disasters (eg: Project Titanic, or Project Hindenburg). Management didn't warm to this ;-)</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143456#143456 1 Answer by Paul Dixon for How do you choose your project codename? Paul Dixon 2008-09-27T11:34:08Z 2008-09-27T11:49:11Z <p>I like to come up with a name, then invent a <a href="http://en.wikipedia.org/wiki/Backronym" rel="nofollow">backronym</a> for it. For example, I wrote a test framework and thought Spengler would be cool name, which stands for "Simple Procedures Examing New Gremlins Lowering Error Rates"</p> <p>More examples</p> <ul> <li>Mozart - "Media Objects Zoning And Redundancy Technology"</li> <li>Corelli - "Cd Ordering REplication Labelling Listing &amp; Invoicing"</li> <li>Brahms - "Batch Recording ArcHive Management System"</li> </ul> <p>Some people suspect I spend more time on the acronym than writing the software. That couldn't be true, could it?</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143470#143470 0 Answer by kronoz for How do you choose your project codename? kronoz 2008-09-27T11:45:22Z 2008-09-27T11:45:22Z <p>I base it on <a href="http://en.wikipedia.org/wiki/Roman_gods" rel="nofollow">Roman gods/titans</a>. Quoting <a href="http://www.codegrunt.co.uk/blog/?cat=14" rel="nofollow">from my blog</a>:-</p> <blockquote> <p>Alright. So I’m calling my compiler framework ‘Kronos‘ after the Roman titan of “human time”, since this project is consuming my life and will continue to do so for a long time, possibly years; and as such is a collosal commitment of my, very human time :-).</p> <p>Kronos was raised up by the Romans from a Greek titan of chaos and disorder. Here is another analogy that resonates with me, right up until now I have been chaotic in my approach to developing myself as a programmer, this framework represents a real ordered commitment.</p> </blockquote> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143490#143490 2 Answer by Prakash for How do you choose your project codename? Prakash 2008-09-27T12:04:05Z 2008-09-27T12:04:05Z <p><a href="http://applemuseum.bott.org/sections/codenames.html" rel="nofollow"><strong>Apple Project Names</strong></a></p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143495#143495 3 Answer by Prakash for How do you choose your project codename? Prakash 2008-09-27T12:04:42Z 2008-09-27T12:04:42Z <p><a href="http://en.wikipedia.org/wiki/Microsoft_codenames" rel="nofollow"><strong>Microsoft Project Names</strong></a></p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143507#143507 9 Answer by Prakash for How do you choose your project codename? Prakash 2008-09-27T12:07:21Z 2008-09-27T12:07:21Z <p><a href="http://www.codinghorror.com/blog/archives/000996.html" rel="nofollow">Jeff's Ideas</a> from his blog entry :)</p> <ul> <li>Types of Food</li> <li>Video games (Atari 2600, Arcade, etc)</li> <li>Brands of Beer</li> <li>Roman Emperors</li> <li>Cartoon characters / shows</li> <li>Mythological names / gods</li> <li>Cars</li> <li>GUIDs (a personal favorite)</li> <li>Gemstones</li> <li>Types of Coffee drinks</li> <li>States</li> <li>Counties</li> <li>Plants</li> <li>Hitchcock films</li> <li>Dog breeds</li> <li>Colors</li> <li>Famous Explorers</li> <li>Trees</li> <li>IRS Tax Forms</li> <li>English monarchs</li> <li>Famous People (eg, Sagan)</li> <li>Wikipedia article names</li> <li>Single letters (including unicode)</li> <li>Radio alphabet</li> <li>Candy brands</li> <li>Dinosaurs</li> <li>Historical Sites</li> <li>City street names</li> <li>IKEA product names</li> <li>Types of Fasteners (nut, bolt, rivet, etc)</li> <li>Ski resorts</li> <li>National Parks</li> <li>Mountain Peaks</li> <li>World War II era ships</li> <li>Birds</li> <li>Beaches</li> <li>Bridges</li> <li>Web 2.0 names</li> <li>Warcraft realm names</li> <li>Cheeses</li> <li>Countries</li> <li>Cereal brands</li> </ul> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143595#143595 0 Answer by roosteronacid for How do you choose your project codename? roosteronacid 2008-09-27T12:51:09Z 2008-09-27T12:51:09Z <p>In my company, we use names of rivers. Our latest project was called "Project Nile". Has a nice ring to it :)</p> <p>For my personal projects, I usually go with something descriptive of the code I'm writing. E.g.: "JavaScriptSelectPopulate", "JavaScriptDataTableAbstraction", etc.</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143602#143602 0 Answer by mattruma for How do you choose your project codename? mattruma 2008-09-27T12:55:06Z 2008-09-27T12:55:06Z <p>For customer projects we use comic book characters, for internal projects we use Lord of the Rings characters.</p> <p><img src="http://ecx.images-amazon.com/images/I/513N2WS7ENL._SL500_AA240_.jpg" alt="alt text" /></p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143614#143614 0 Answer by benjismith for How do you choose your project codename? benjismith 2008-09-27T13:05:38Z 2008-09-27T13:05:38Z <p>I was using Beatles songs for a while, on a project a few years ago.</p> <p>...Helter Skelter ...Glass Onion ...Dear Prudence ...Rocky Racoon</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/143679#143679 0 Answer by Chris Jester-Young for How do you choose your project codename? Chris Jester-Young 2008-09-27T13:59:21Z 2008-09-27T13:59:21Z <p><a href="#143456" rel="nofollow">Paul Dixon's comment</a> about backronyms reminds me of another theme for naming projects: see <a href="http://wiki.scummvm.org/index.php/SCUMM#Sub_Engines_of_SCUMM" rel="nofollow">Sub-engines of SCUMM</a>. :-P</p> http://stackoverflow.com/questions/143248/how-do-you-choose-your-project-codename/144029#144029 1 Answer by Chris Charabaruk for How do you choose your project codename? Chris Charabaruk 2008-09-27T17:14:30Z 2008-09-27T17:14:30Z <p>How about conspiracy theories? Project codenames such as ODESSA, Majestic-12, MKULTRA... Ooh! Project Reptilian Humanoid!</p> <p>No way management would allow code names like those outside of the company. Which might lead to another code name in the conspiracy theory series.</p>