up vote 579 down vote favorite
1356
share [g+] share [fb]

Question

What programming terms have you coined that have taken off in your own circles (i.e. have heard others repeat it)? It might be within your own team, workplace or garnered greater popularity on the Internet.

Directions

  • Write your programming term, word or phrase in bold text followed by an explanation, citation and/or usage example so we can use it in appropriate context.

  • Don't repeat common jargon already ingrained in the programming culture like: kludge, automagically, cruft, etc. (unless you coined it).

Background

This question serves in the spirit of communication among programmers through sharing of terminology with each other, to benefit us by its propagation within our own teams and environments.


Stealing from the comments:

"A shared vocabulary is the basis of communication, not just among programmers [...]"

link
67  
Voted to reopen. I couldn't see a reason to close this in the first place, CW or not. A shared vocabulary is the basis of communication, not just among programmers, and this is a very interesting, and worthy question. Now I just wish I had invented some term that others might find useful ;-) – Grundlefleck Feb 28 '10 at 0:52
114  
I'm thinking "BadgeWhoring" would be a great term, applicable to people who post "fun" questions in order to garner SO badges. – blowdart Feb 28 '10 at 16:53
33  
I want Jeff Atwood to post "six to eight weeks" as an answer. – Aaronaught Mar 1 '10 at 1:26
27  
I didn't make this up, but it should be on any jargon list: Heisenbug - a bug in the release version of the program that doesn't happen in the debug version (or doesn't occur when you're debugging) – Scott Smith Mar 1 '10 at 3:44
9  
Yeah the whole "close because it's not a question" idea bothers me. This is a community of programmers that sometimes wants to know more about the culture we work in, instead of just answering technical questions. – Mike Robinson Mar 3 '10 at 19:46
show 44 more comments
feedback

locked by Robert Harvey Oct 5 '11 at 6:06

This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. More info: FAQ.

closed as not constructive by Sam Saffron Aug 26 '11 at 5:22

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.

354 Answers

1 2 3 4 5 12
up vote 1560 down vote accepted

"Yoda Conditions"— using if(constant == variable) instead of if(variable == constant), like if(4 == foo). Because it's like saying "if blue is the sky" or "if tall is the man".

Thanks to dreamlax for helping me find that.

if (5 == count)

Trillian suggested the following during an IM conversation:

Here's a dirty but portable trick you can use to force a compile-time error:

struct not_a_bool {};
template<typename T>
not_a_bool ERROR_CONDITIONAL_EXPRESSION_IS_NOT_BOOL(T value) { return not_a_bool(); }
bool ERROR_CONDITIONAL_EXPRESSION_IS_NOT_BOOL(bool value) { return value; }
#define if(x) if(::ERROR_CONDITIONAL_EXPRESSION_IS_NOT_BOOL(x))
#define while(x) while(::ERROR_CONDITIONAL_EXPRESSION_IS_NOT_BOOL(x))

This will cause Visual Studio to emit the following error:

error C2451: conditional expression of type 'not_a_bool' is illegal

While GCC will emit:

error: could not convert ‘ERROR_CONDITIONAL_EXPRESSION_IS_NOT_BOOL [with T = int]((lhs <unknown operator> 1))’ to ‘bool’

It doesn't work with for loops, but equality testing in for loops is less frequent.

link
18  
+1 Very original and applicable. Sums up a common programming scenario quite succinctly. – John K Mar 14 '10 at 0:39
145  
This is actually quite a common idiom on languages that use == and =. If you put a constant on the LHS of the expression the compiler will generate an error if you use = accidentally rather than == for equality checking. Quite a few C or C++ programming types actually recommend doing this, and the principle would apply to C# or Java as well. – ConcernedOfTunbridgeWells Mar 15 '10 at 13:53
100  
We know it's a common idiom. Things can be common and still be really annoying. – Kyralessa Mar 16 '10 at 18:13
755  
Isn't "Yoda Programming" where you never handle exceptions? Because, you know, there is no "try". – Michael Myers Mar 16 '10 at 18:13
68  
@ConcernedOfTunbridgeWells: We all know why this idiom arose. In civilised climes, we have compiler warnings to help us avoid this mistake, rather than subjecting every reader of our code for ever more to this Yoda-speak. (gcc -Wall: warning: suggest parentheses around assignment used as truth value) – John Marshall Mar 17 '10 at 11:22
show 47 more comments
feedback

Pokémon Exception Handling. For when you just Gotta Catch 'Em All.

link
43  
[citation needed] – Ether Feb 28 '10 at 0:07
29  
47  
at the very least, I liek your mudkips – Jimmy Mar 1 '10 at 6:13
38  
@nick: I've actually seen something like something like try {MessageBox.Show(message);} catch(Exception exc) {MessageBox.Show(exc.Message);} somewhere. Grrr... – David X Mar 12 '10 at 6:13
40  
MY EXCEPTIONZ - Let me show you them – akamike Mar 29 '10 at 16:08
show 18 more comments
feedback

You know the style of brackets where the opening brace goes on the end of the current line, e.g. this?

if (a == b) {
    printf("hello");
}

We used to refer to this style of brackets as "Egyptian brackets". Why? Compare the position of the brackets with the hands in this picture:

alt text

(This style of brackets is used in Kernighan and Ritchie's book The C Programming Language, so it's known by many as K&R style.)

link
34  
Walk like an Egyptian. – eyelidlessness May 10 '10 at 21:48
147  
F**! My code used to look pretty, now I keep seeing Egyptians! – Aiden Bell May 13 '10 at 10:20
7  
That's why I put brackets on their own line. – Josh K May 16 '10 at 2:22
94  
"All the coders in their cubes say way-oh-way-oh..." – Kyralessa May 16 '10 at 4:16
70  
I might add "Tie-Fighter else" to this one... }else{ – Vincent Robert May 21 '10 at 8:12
show 14 more comments
feedback

Different kinds of bug reports:

Smug Report - a bug submitted by a user who thinks he knows a lot more about the system's design than he really does. Filled with irrelevant technical details and one or more suggestions (always wrong) about what he thinks is causing the problem and how we should fix it.

Drug Report - a report so utterly incomprehensible that whoever submitted it must have been smoking crack. The lesser version is a chug report, where the submitter is thought to have had one too many.

Shrug Report - a bug report with no error message or repro steps and only a vague description of the problem. Usually contains the phrase "doesn't work."

link
15  
+sideways 8 for smug and shrug reports – Antony Mar 1 '10 at 1:48
443  
Man, developing software would be great if it wasn't for all the f**ing users. – Frank Farmer Mar 1 '10 at 2:40
14  
+1 for Smug and Drug reports. Admittedly, I am quite guilty of the former – Sukasa Mar 3 '10 at 0:24
29  
My favorite bug report of all time was "It runs for half an hour and then it stops." I never got any clarification on that one, despite asking. – David Thornley Mar 3 '10 at 23:03
32  
I once reported a vulnerability in Wordpress and everyone on the dev team accused me of "smoking crack" and didn't even bother using my exploit. So I made the exploit public, and then Wordpress wrote a patch. I guess I mean to say that it goes both ways. – Rook May 15 '10 at 1:07
show 12 more comments
feedback

A Duck

A feature added for no other reason than to draw management attention and be removed, thus avoiding unnecessary changes in other aspects of the product.

I don't know if I actually invented this term or not, but I am certainly not the originator of the story that spawned it.

This started as a piece of Interplay corporate lore. It was well known that producers (a game industry position, roughly equivalent to PMs) had to make a change to everything that was done. The assumption was that subconsciously they felt that if they didn't, they weren't adding value.

The artist working on the queen animations for Battle Chess was aware of this tendency, and came up with an innovative solution. He did the animations for the queen the way that he felt would be best, with one addition: he gave the queen a pet duck. He animated this duck through all of the queen's animations, had it flapping around the corners. He also took great care to make sure that it never overlapped the "actual" animation.

Eventually, it came time for the producer to review the animation set for the queen. The producer sat down and watched all of the animations. When they were done, he turned to the artist and said, "that looks great. Just one thing - get rid of the duck."

link
195  
130  
I saw a similar "duck" idea on The Daily WTF. There was a loop that did nothing for 10000000 or so iterations. It was there so when the coder wasn't able to produce anything that management would understand, they could remove a 0 from the iteration number and tell management that they found a place in the code that they optimized by an order of magnitude. – Dinah Apr 7 '10 at 16:52
86  
The only problem here is if management sees the "Duck" and says it looks fine. – MiffTheFox Apr 30 '10 at 22:53
123  
@MiffTheFox or worse ""that looks great. Just one thing - get rid of the queen." – Robert Groves May 1 '10 at 3:33
122  
@MiffTheFox: I did this once. I put in placeholder voiceovers in a multimedia title, with the stupidest Monty-Python-esque voiceovers I could manage, so it would be obvious they needed replacing with the real thing. The clients loved them, and got me to go into a sound studio to record more. – whybird May 10 '10 at 3:40
show 17 more comments
feedback

I wish I had invented it myself, but credit goes to Jason Gorman:

Refuctoring - the process of taking a well-designed piece of code and, through a series of small, reversible changes, making it completely unmaintainable by anyone except yourself.

link
11  
I have a person on my team doing this right now. Too bad mgmt overruled my objections. :-( – KPexEA Mar 3 '10 at 0:44
409  
We had a guy come in and immediately strip out comments and whitespace from our code "to make it faster". – Scott Smith Mar 4 '10 at 3:47
63  
Coder: Look sir! We shaved 359ms off the compile time! Boss: sigh... – Nick Bedford Mar 10 '10 at 23:21
55  
I wonder how many people are voting up Scott Smith because they too have made code faster that way. – jfar Mar 16 '10 at 23:28
19  
@Scott Smith: That may have made some sense if the language was HTML. If not... o_O WTF? – slacker Mar 19 '10 at 20:05
show 12 more comments
feedback

Stringly Typed

A riff on strongly typed. Used to describe an implementation that needlessly relies on strings when programmer & refactor friendly options are available.

For example:

  • Method parameters that take strings when other more appropriate types should be used
  • On the occasion that a string is required in a method call (e.g. network service), the string is then passed and used throughout the rest of the call graph without first converting it to a more suitable internal representation (e.g. parse it and create an enum, then you have strong typing throughout the rest of your codebase).
  • Message passing without using typed messages etc.

Excessively stringly typed code is usually a pain to understand and detonates at runtime with errors that the compiler would normally find.

Example:

Person 1: "Did you check out Jimmy's API?"

Person 2: "Yeah, what a mess. It's so hard to understand and it always fails at runtime in an obscure fashion because it's Stringly Typed from top to bottom."

alt text

link
10  
P.s. this answer contains Jimmy which I independently used! (It seems Jimmy is used throughout the world to denote an incompetent developer :D) – Mark Simpson Mar 16 '10 at 22:41
13  
i coined this independently to describe tcl's type system :) – Martin DeMello Mar 22 '10 at 5:43
14  
The cause of this is Unix' "everything is a file" and "hey, it's just text". Text interfaces at the surface are great (as Unix shows) but they aren't so hot once you are inside the program (as this answer shows). – jmucchiello May 11 '10 at 21:36
17  
I call this "String Oriented Programming"! – Ricardo Nolde May 11 '10 at 22:56
17  
+1 for the cat picture...ok and the answer itself ;) – Adam Neal May 26 '10 at 15:14
show 21 more comments
feedback

Heisenbug - can't take credit for this, but it is awesome!

A computer bug that disappears or alters its characteristics when an attempt is made to study it.

alt text

link
115  
I've seen (or not) a few (or many) of those. – Jeff Davis Mar 16 '10 at 19:15
16  
Almost always cased by stack corruption errors (and that is most often because of a bad pointer initialization or free() on something that is not a pointer.). – Hogan Mar 17 '10 at 18:53
8  
I once had to hunt a memory corruption bug that disappeared when -- and only when -- I ran under valgrind. This term would have been very handy. – Beta Mar 19 '10 at 17:39
9  
Everyone who took C filesystems class at my school ran into this over and over, when forgetting to put \n on a printf statement. Then adding another printf statement later in the code to debug, which has a \n, and flushes the buffer, causing the appearance that a ton of code suddenly started working, when it really had been before but not printing. – Nick Lewis May 10 '10 at 4:59
20  
Like the nasty race-conditions that seems to evaporate when you turn the logging on... – daramarak May 12 '10 at 9:40
show 12 more comments
feedback

Doctype Decoration - When web designers add a doctype declaration but don't bother to write valid markup.

link
6  
@Zurahn - Argh! I hate when my team members do this. (I'm totally using this phrase from now on.) – JasCav Mar 3 '10 at 0:15
8  
@Nick - xkcd.com/292 – Zurahn Mar 4 '10 at 3:39
46  
This does actually serve some kind of purpose. If you don't use a doctype you will get quirks mode... – olive May 10 '10 at 11:31
21  
@tloflin If you don't specify a doctype in IE6/IE7/IE8, you will get horribly-broken-beyond-any-hope-quirksmode, while if you specify the doctype but have invalid markup, you'll simply get quirksmode. The difference is that in horribly-broken mode, you'll have considerably more work to do to make the HTML really compliant. For example, take a legacy web application designed for IE6 without a doctype, add a doctype to it, and see how the pages layout suddenly abominably breaks because of the upgrade from "horribly-broken-quirksmode" to "quirksmode" – ckarras May 10 '10 at 19:27
12  
Another variant of this: Write broken code and slap a »Valid XHTML & CSS« button somewhere on the site (because, hey, at some point in time that probably was true [probably when the site was just <html></html>]). Even better when it links to the validator which promptly screams »Invalid!«. – Joey May 10 '10 at 21:15
show 10 more comments
feedback

"Jimmy"

A generalized name for the clueless/new developer.

We found as we were developing a framework component that required minimal knowledge of how it worked for the other developers.

We would always phrase our questions as:

"What if Jimmy forgets to update the attribute?"

This led to the term: "Jimmy-proof" when referring to well designed framework code.

alt text

link
14  
I use "Lumpy Cheetosian" - has a certain associated mental image, and name collisions are somewhat less likely. – Scott Smith Mar 1 '10 at 1:50
1461  
sigh . . ...... :< – Jimmy Mar 1 '10 at 6:30
28  
Wow... priceless stackoverflow moment. I wish there was a best-of like Craigslist. – Joseph Silvashy Mar 1 '10 at 7:30
38  
:( I might start a few more accounts to down vote this. Jimmy doesn't like it when he get's made fun of. – jim Mar 13 '10 at 18:47
21  
Oh I forgot, it is also a unit of measurement. 1 Jimmy = the amount of work not done in an hour. – Aidos May 17 '10 at 7:18
show 26 more comments
feedback

A Higgs-Bugson is a hypothetical bug predicted to exist based on a small number of possibly related event log entries and vague anecdotal reports from users, but it is difficult (if not impossible) to reproduce on a dev machine because you don't really know if it's there, and if it is there what is causing it.

(see Higgs-Boson)

link
23  
The Higgs-Bugson sometimes results in domain generalization, with actual physical objects flying around, clearly demonstrating the concepts of inertia, but without no solid theory as to why. – Schedler May 7 '10 at 14:15
18  
It has been speculated that to actually witness this phenomenon physicists have to smash your fist against your keyboard at almost the speed of light. – gingerbreadboy May 7 '10 at 16:02
3  
But does it travel backwards in time? – shoosh May 10 '10 at 20:24
5  
Predicted to be between lines 115 and 150 – xenon May 27 '10 at 23:55
59  
To find these, you need a Large Hadron Debugger. – Timwi Aug 23 '10 at 2:49
show 5 more comments
feedback

nopping
I'm writing a scifi novel from the POV of an AI, and their internal language has a lot of programming jargon in it. One of the more generalizable terms is "nopping", which comes from assembler NOP for no-operation. It's similar to 'nap', but doesn't imply sleep, just zoning out.

Example: Stanislav sat watching the screensaver and nopped for a while.

link
141  
+1 for working your jargon into a sci-fi novel. That's novel. – John K Mar 1 '10 at 2:36
4  
Haha... cute ! Might start using that when I zone out. – Mark Mar 1 '10 at 3:47
6  
For a full dose, here's a short story full of computer jargon--two AIs arguing about whether humans could be considered intelligent because of their glacial thought speeds. zzascape.blogspot.com/2008/04/interruption.html – Stanislav Mar 1 '10 at 12:02
3  
It's downloadable from lifeartificial.com. Part 2 is about half finished. – Stanislav May 2 '10 at 21:44
1  
Why would an AI have programming jargon in its language? It’s not like humans have biology/neurology jargon in their everyday communication. – Timwi Apr 22 '11 at 21:54
show 8 more comments
feedback

Unicorny - An adjective to describe a feature that's so early in the planning stages that it might as well be imaginary. We cribbed this one from Yehuda Katz, who used it in his closing keynote at last year's Windy City Rails to describe some of Rails' upcoming features.

Barack Obama - An account in Redmine that we assign our most aspirational tickets to, i.e. the stuff we'd really like to do with a project but will probably never get approval for.

alt text

link
190  
+1 for Obama. :-) – Konrad Garus Mar 15 '10 at 13:46
98  
-1 for Obama. :P – Kyralessa Mar 26 '10 at 19:35
35  
@Tim Santeford - Way to kill the funny! – Richard Szalay May 20 '10 at 14:17
8  
@Richard Szalay - Au contraire, I found the parallel hilarious. I'm sure most have worked on projects that fit all three of those categories. – Tim Santeford May 20 '10 at 16:44
35  
@Tim Santeford: How about Barack Obama for stuff that will save us money in thee long run, and make life better for our users, but the other developers won't let us do for because they won't get credit. – Matthew Scouten Oct 12 '10 at 19:44
show 3 more comments
feedback

Baklava code

Code with too many layers.

alt text

link
5  
Most of these answers gave me a 'meh' response, but after this, I find myself giggling uncontrollably. Thanks! – Dean J May 10 '10 at 13:49
68  
also known as "lasagna code" to keep with a common pasta-based theme... – Brian Postow May 11 '10 at 13:46
4  
baklava is made of phyllo dough – Big Endian May 19 '10 at 19:22
2  
yummmiiiii... it makes it more tempting. – Andrei Rinea Jun 9 '10 at 17:54
17  
I think "lasagna code" would refer to code with the right number of layers and Baklava would be too many layers. – Slapout Jun 26 '10 at 1:42
show 6 more comments
feedback

Hindenbug

A catastrophic data destroying bug - "Oh the humanity!"

Counterbug

A bug you present when presented with a bug caused by the person presenting the bug

Bloombug

A bug that accidentally generates money (just did this one)

link
81  
On the same note, one I learned recently: Heisenbug, a bug that's difficult to reproduce or changes when you try to observe it. – jtbandes Mar 20 '10 at 2:52
37  
I like Schrödingbug, which is a problem that some people see when they look and others can't find at all. Often tied to the execution environment in a surprising way (or at cat). – Donal Fellows May 10 '10 at 8:08
10  
Stop putting heisenbug on here - it's already been done in different answers – Mike Robinson May 10 '10 at 20:05
32  
A Schroedinbug is not "a problem that some people see when they look and others can't find at all." It refers to a function/feature that appears to fluctuate between buggy and correct (like Schrödinger's cat fluctuating between alive and dead), until somebody looks at the source code (opens the box), at which point it becomes permanently bugged. It's a fun term but it's definitely not a new one. – Aaronaught May 11 '10 at 0:45
10  
@ZoFreX I accidentally rendered every ad twice on the page - they were layered on top of each other too, so you didn't notice. But twice the ads = twice the impressions. Tadah! – Mike Robinson May 27 '10 at 4:06
show 11 more comments
feedback

Workaroundability (by co-worker)
That's the feeling when already hacked approach still can or can't be hacked further.

Fear Driven Development
When project management adds more pressure (fires someone or something).
alt text

link
4  
The important part of this game is the part where you define the term. – Dolph Mar 15 '10 at 14:35
34  
+ for FDD - this also comes around when mgmt informs you that the viability of your job is directly linked to the success of a failing project – bedwyr May 16 '10 at 22:35
11  
Prayer Driven Development is closely related to FDD, by the way. – Erik van Brakel May 20 '10 at 23:32
6  
+ for FDD: I once had a boss threaten to fire every one of my coworkers if I didn't meet a deadline that he pulled out of the air without regard to the state of the 15 new features he added the week before. I hacked together a working build then quit the next Monday. – jessecurry May 25 '10 at 12:20
3  
@jessecurry, if he first fired your coworkers and then you quit, would that have made a more lasting impression? No business left... – Thorbjørn Ravn Andersen Sep 21 '11 at 16:35
show 3 more comments
feedback

Common Law Feature: A bug in the application that has existed so long that it is now part of the expected functionality, and user support is required to actually fix it.

link
5  
Perl has Many, Many of these. In fact, it's policy that most unintentional bugs be kept as features. – Robert P May 11 '10 at 21:01
34  
Isn't this why a lot of Windows programs don't work in wine? – Brendan Long May 12 '10 at 0:55
29  
@Robert: Perl was made by a linguist; unfortunately, linguists are of the mindset that language evolves naturally and gains quirks along the way. Let that sink in. – Jon Purdy May 18 '10 at 11:51
1  
@Brendan One of the reasons – KitsuneYMG May 18 '10 at 16:05
3  
@Jon: That may be true, but that's not why they keep the bug-features - it's so they don't break existing tools unintentionally. (Not that they don't fix them either, eventually., see the := vs : = change in 5.12.) – Robert P May 18 '10 at 16:36
show 5 more comments
feedback

Hydra Code

Code that cannot be fixed. One fix causes two new bugs.
It should be rewritten.

link
2  
@Pete, thanks for the link. Very interesting. I was curious why the name Dehydra, and from developer.mozilla.org/En/Dehydra/… "Initially Dehydra was written as an easy way to look for patterns in Control Flow Graphs (CFGs). Images of those graphs reminded me of the multiheaded Hydra monster. De-hydra can be thought of as a decapitating tool for slaying CFGs." – Nick Dandoulakis May 14 '10 at 12:49
175  
I call that kind of code "perfect" because it can't be improved. – xan May 18 '10 at 20:28
show 5 more comments
feedback

I've started Loch Ness Monster bug for anything not reproducible / only sighted by one person. I'm hearing a lot of people in the office say it now..

link
267  
Is that related to the legendary Bugfoot? – Kevin Mar 15 '10 at 20:02
2  
Lol - I have a user like that, and she's kind of a monster. Works out pretty well imho. – tsilb Mar 16 '10 at 19:03
2  
I'm going to create a "bug" and remove it just so I can say that – KThompson Mar 19 '10 at 17:12
25  
"WHAT YOU WANT, BUG?" "Oh, bout tree fiddy." – Will May 11 '10 at 15:35
13  
Wouldn't "Nessiebug" sound better? – peterchen May 27 '10 at 15:23
show 1 more comment
feedback

Ninja comments: Also known as invisible comments, secret comments, or no comments.

No comment.

link
23  
The code I inherited has Ninja Comments. (a geeky way of saying no comments) – schar Mar 16 '10 at 19:18
4  
I like this one. I like it a lot. – Paul Nathan Mar 16 '10 at 20:57
4  
When I saw "Ninja Comments", I would have thought of hidden or buried comments, rather than non-existent ones. Maybe class doc information at the end of a classfile? – RMorrisey May 10 '10 at 6:50
1  
@TokenMacGuy exactly – schar May 12 '10 at 17:01
11  
There are 21 ninjas hiding in the following image: Can you spot them? – thSoft May 21 '10 at 9:00
show 6 more comments
feedback

Smurf Naming Convention

When almost every class has the same prefix. IE, when a user clicks on the button, a SmurfAccountView passes a SmurfAccountDTO to the SmurfAccountController. The SmurfID is used to fetch a SmurfOrderHistory which is passed to the SmurfHistoryMatch before forwarding to either SmurfHistoryReviewView or SmurfHistoryReportingView. If a SmurfErrorEvent occurs it is logged by SmurfErrorLogger to ${app}/smurf/log/smurf/smurflog.log

link
27  
Can we use a namespace, people?! – Jon Purdy May 10 '10 at 14:29
10  
But this is waaaay better... it's a 'namespariable' better than either a regular variable or namespace. – vfilby May 11 '10 at 17:05
10  
@Jon Purdy: You can, if your language supports namespaces. Further reading: Objective C. – Robert P May 11 '10 at 21:08
4  
@Robert @JBRWilkinson this can be forgivable in languages without namespaces, it is totally unforgivable in languages with. There is no reason to do this in Java or C# where use of namespace is a requirement for anything non trivial. – sal May 13 '10 at 15:24
8  
@JBRWilkinson "NS" stands for NextStep which is where Mac OS X has its roots. Which does not change the utter irrelevance... – Simon Oct 23 '10 at 6:16
show 14 more comments
feedback

Protoduction - A prototype that ends up in production.

Heard this from a tech at the Fermi lab. He said he didn't coin the term but had heard it used a number of times at Fermi.

link
34  
that would be most of the web :P – George Profenza May 12 '10 at 11:17
11  
Seriously, is there a prototype that doesn't go into production? – Jim Leonardo May 21 '10 at 0:03
6  
Basically, a protoduct... that noun should be used more often. – Macke May 21 '10 at 9:24
7  
+1 for the pic. Why can't I be that guy? – Evan Plaice Jun 26 '10 at 7:09
4  
We call this type of code "Demonsployable" – samkass Sep 21 '10 at 23:35
show 5 more comments
feedback

Rubberducking

Sometimes, you just have to talk a problem out. I used to go to my boss and talk about something and he'd listen and then I'd just answer my own question and walk out without him saying a thing.

I read about someone that put a rubber duck on their monitor so they could talk to it, so rubberducking is talking your way through a problem.

Databasically

"Hey, I'll put all of our customers into a Word document and then we can X." "No, we should do that database-ically so that we can keep that list up to date."

Yes, I named my company that.

link
55  
Great term! I've only actually submitted a handful of questions here. Far more often, I will get stumped, start writing a question, and figure out the answer myself as I'm trying to explain what the problem is. So, Stack Overflow is my Rubber Duckie! – mbmcavoy Apr 22 '10 at 18:52
6  
27  
Bristol University has a teddy bear on a seat outside their helpdesk room, which is visible through the windows. It's mandatory to first state your problem to the bear before entering and asking a question. Not only does it force people to think enough to phrase the question well, but apparently a lot of them walk away with the answer without consulting anyone other than the stuffed bear. – ZoFreX May 24 '10 at 5:47
9  
@ZoFreX that is Allan Turing's bear! that he talked to just like the OP talked to his duck. If you ever gaze upon this bear you must bow in honor of its limitless powers of reasoning and induction. – Rook May 26 '10 at 1:53
8  
Round my place we call ask someone to "be my teddybear" in this context. Snuggling is optional. – Ben May 26 '10 at 20:27
show 14 more comments
feedback

At one company where I worked, we had a lot of food-related jargon, in-jokes, and backcronyms:

Programmer fuel - Mountain Dew, coffee, Mate, anything which gets you well-caffeinated.

I can't get started on Monday mornings until I've had my programmer fuel. (Synonyms: nerd fuel, geek chow.)

Hot potato / Hot potatoes - Http and Https repsectively. Same number of syllables, but more fun to say.

Submit all customer information through the authentication service at hot potatoes company-name.com/auth

[Noun] cake - depends on context, usually indicating an action related to the placeholder noun. Noun should be a single syllable for easy communication.

Marty's noob cake broke the build. (See also: noobery, noobage, noobular, works on my machine)

Juliet's serving ample amounts of bitch cake because everyone double and triple books her for meetings without checking her availability.

Banana banana banana - placeholder text indicating that documentation is in progress or yet to be completed. Mostly used because FxCop complains when a public function lacks documentation.

/// <summary>
/// banana banana banana
/// </summary>
public CustomerValidationResponse Validate(CustomerValidationRequest request, bool useStrictValidation, bool throwIfSessionExpired)

Chunky salsa - based on the chunky salsa rule, a single critical error or bug that renders an entire system unusable, especially in a production environment.

The whole system turned chunky salsa after Bob's change to the login screen locked everyone out of their accounts.

link
11  
If you go to Properties > Build > Suppress warnings and put in 1591, you won't have to type banana banana banana anymore. – Kyralessa Mar 16 '10 at 18:18
27  
+1 for "banana banana banana"... I ♥ Futurama – Mike Stone Mar 17 '10 at 2:26
121  
Uh-oh, you linked to tvtropes from SO... you've just single-handedly wiped out 40 billion hours of programmer productivity worldwide! – Aaronaught Mar 28 '10 at 3:08
6  
@Aaronaught: put me down for 2 – Ty W Apr 30 '10 at 19:06
11  
+1 for hot potato(es) – Zsolt Török May 10 '10 at 11:11
show 18 more comments
feedback

Bicrement - Adding 2 to a variable

link
353  
I always thought "excrement" should have been the opposite of increment. – Jimmy Mar 1 '10 at 6:16
9  
Anyone who upvotes Jimmy's comment knows what the correct opposite of "excrement" is? – BeowulfOF Mar 1 '10 at 13:20
11  
AFAIK excrement doesn't have an opposite. I think excrement should be used to indicate adding an unknown quantity to a variable (ie. add x). – Dom Mar 2 '10 at 11:02
41  
@BeowulfOF: food? – RegDwight Mar 12 '10 at 14:34
26  
@Nick Bedford: Don't worry, that feature is coming in C++++. – dreamlax Mar 24 '10 at 5:49
show 6 more comments
feedback

Reality 101 failure:

The program (or more likely feature of a program) does exactly what was asked for but when it's deployed it turns out that the problem was misunderstood and it's basically useless.

link
6  
This happens to me so often – Sukasa Mar 3 '10 at 0:30
14  
Ask client what they want -> build what they want -> show client -> trash project -> build different program -> endure it for the money. – Nick Bedford Mar 23 '10 at 0:25
25  
@Nick You just described the agile approach, it's just that they strive to make that string of actions happen in a very short amount of time because they know there will be things needing to be trashed. Better sooner than later. – AaronLS May 9 '10 at 18:23
1  
I do not get the point of the picture? What is wrong with solar powered flashlight? It contains accu, therefore it recharges when there is light and can shine once it gets dark. – Suma May 19 '10 at 6:22
3  
I did NOT post that picture! Someone went through an attached pictures to a lot of the posts in this thread. – Loren Pechtel May 19 '10 at 21:14
show 11 more comments
feedback

Mad Girlfriend Bug

For when you see something strange happening, but it will just tell you everything is fine.

link
9  
When I write a bunch of code that I don't expect to work right away, I actually hope to have that one little bug; not having it makes me uneasy. Is that what a Mad Girlfriend Bug refers to? – Joey Adams May 19 '10 at 6:42
show 1 more comment
feedback

Hooker Code - Code that is problematic and causes application instability (application "goes down" often).

Example:

Did the site go down again? Yeah, Jim must still have some hooker code in there.

link
67  
fracking Jimmy! – Eric Johnson May 10 '10 at 2:31
9  
Goes down often ! Excellent funny sir! – Mark May 10 '10 at 19:09
6  
a.k.a. Yo Momma Code – kibibu May 11 '10 at 0:31
26  
And they say programming is male-dominated. – dclowd9901 May 12 '10 at 4:46
18  
-1 for slut-shaming. – Zack Aug 3 '10 at 1:03
show 6 more comments
feedback

Squizzle-giz: A horribly mispronounced version of the file extension .sql.gz

We made it up while setting up a server and looking for something easier/more fun to say than "dot ess que ell dot gee zee file" or "gzipped sequel file."

link
82  
Is that a hard 'g' or a soft 'g' because it makes a big difference in hilarity if nothing else. – John K Mar 1 '10 at 2:41
34  
I kinda like squizzle-jizz better (or soft g). – Mark Mar 1 '10 at 3:48
93  
@mark that sounds like a personal problem – Woot4Moo Mar 1 '10 at 4:35
18  
I will attempt to use this every day. I may have to change my day job to DBA but that is a small price to pay – oxbow_lakes Mar 1 '10 at 22:34
15  
How about squirrel-giz? If that's not a straight line... – outis Mar 13 '10 at 19:06
show 9 more comments
feedback

Megamoth

Stands for MEGA MOnolithic meTHod.
Often contained inside a God Object, and usually stretches over two screens in height.

Megamoths of greater size than 2k LOC have been sighted. Beware of the MEGAMOTH!

link
60  
If in Python, over five screens in width. – rlb.usa Mar 19 '10 at 18:16
38  
Project contains one file: main.cpp. – Nick Bedford Mar 23 '10 at 0:29
23  
Two screens? That's highly optimistic. We have java classes with 3000+ lines of code, and the longest method is about 800 lines. And I'm secretly proud of it. :-) – G B May 1 '10 at 17:08
24  
I've got C code with a single function over 8000 lines, with less than 1% of that comments. It's also the most goto-infested thing I've ever come across. (What's worse, it's functionaliy-critical, speed critical and it's stuck in a local minimum. Refactoring it is a bitch.) – Donal Fellows May 10 '10 at 7:40
63  
@G B: Serial killers are proud of their work as well. – BlueRaja - Danny Pflughoeft May 10 '10 at 17:20
show 22 more comments
feedback
1 2 3 4 5 12

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