up vote 579 down vote favorite
712

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|flag
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 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 at 16:53
33  
I want Jeff Atwood to post "six to eight weeks" as an answer. – Aaronaught Mar 1 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 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 at 19:46
show 44 more comments

locked by Jonathan Sampson May 28 at 14:48

357 Answers

1 2 3 4 5 12
up vote 866 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.

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|flag
13  
+1 Very original and applicable. Sums up a common programming scenario quite succinctly. – jdk Mar 14 at 0:39
85  
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 at 13:53
58  
We know it's a common idiom. Things can be common and still be really annoying. – Kyralessa Mar 16 at 18:13
430  
Isn't "Yoda Programming" where you never handle exceptions? Because, you know, there is no "try". – mmyers Mar 16 at 18:13
39  
@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 at 11:22
show 38 more comments
up vote 661 down vote

Pokemon Exception Handling. For when you just have to catch em all.

link|flag
18  
[citation needed] – Ether Feb 28 at 0:07
17  
34  
at the very least, I liek your mudkips – Jimmy Mar 1 at 6:13
25  
@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 at 6:13
19  
MY EXCEPTIONZ - Let me show you them – akamike Mar 29 at 16:08
show 17 more comments
up vote 442 down vote

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|flag
74  
+1 for making me laugh – sal May 10 at 18:42
14  
Walk like an Egyptian. – eyelidlessness May 10 at 21:48
6  
This is brilliant. – Gordon Christie May 11 at 14:15
62  
Fuck! My code used to look pretty, now I keep seeing Egyptians! – Aiden Bell May 13 at 10:20
44  
"All the coders in their cubes say way-oh-way-oh..." – Kyralessa May 16 at 4:16
show 10 more comments
up vote 402 down vote

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 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|flag
7  
+sideways 8 for smug and shrug reports – Antony Mar 1 at 1:48
275  
Man, developing software would be great if it wasn't for all the f**ing users. – Frank Farmer Mar 1 at 2:40
9  
+1 for Smug and Drug reports. Admittedly, I am quite guilty of the former – Sukasa Mar 3 at 0:24
17  
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 at 23:03
4  
smug reporter here, damn. – James Morris May 1 at 22:23
show 11 more comments
up vote 336 down vote

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

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|flag
100  
60  
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 at 16:52
36  
The only problem here is if management sees the "Duck" and says it looks fine. – MiffTheFox Apr 30 at 22:53
52  
@MiffTheFox or worse ""that looks great. Just one thing - get rid of the queen." – Robert May 1 at 3:33
58  
@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 at 3:40
show 14 more comments
up vote 239 down vote

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

link|flag
4  
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 at 22:41
8  
i coined this independently to describe tcl's type system :) – Martin DeMello Mar 22 at 5:43
4  
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 at 21:36
8  
I call this "String Oriented Programming"! – Ricardo Nolde May 11 at 22:56
3  
+1 for the cat picture...ok and the answer itself ;) – Adam Neal May 26 at 15:14
show 16 more comments
up vote 218 down vote

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

link|flag
6  
@Zurahn - Argh! I hate when my team members do this. (I'm totally using this phrase from now on.) – Jason Mar 3 at 0:15
4  
@Nick - xkcd.com/292 – Zurahn Mar 4 at 3:39
13  
This does actually serve some kind of purpose. If you don't use a doctype you will get quirks mode... – lhnz May 10 at 11:31
6  
@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 at 19:27
4  
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 at 21:15
show 7 more comments
up vote 185 down vote

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|flag
29  
I've seen (or not) a few (or many) of those. – Jeff Davis Mar 16 at 19:15
11  
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 at 18:53
2  
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 at 17:39
4  
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 at 4:59
4  
Like the nasty race-conditions that seems to evaporate when you turn the logging on... – daramarak May 12 at 9:40
show 7 more comments
up vote 170 down vote

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

link|flag
6  
We don't have a developer on our team named Jimmy so it worked well, going to be interesting when we do though ;) – Gord Mar 1 at 1:39
9  
I use "Lumpy Cheetosian" - has a certain associated mental image, and name collisions are somewhat less likely. – Scott Smith Mar 1 at 1:50
848  
sigh . . ...... :< – Jimmy Mar 1 at 6:30
12  
Wow... priceless stackoverflow moment. I wish there was a best-of like Craigslist. – Joseph Silvashy Mar 1 at 7:30
24  
:( 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 at 18:47
show 20 more comments
up vote 170 down vote

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|flag
73  
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 at 2:52
25  
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 at 8:08
5  
Stop putting heisenbug on here - it's already been done in different answers – Mike Robinson May 10 at 20:05
22  
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 at 0:45
4  
@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 at 4:06
show 8 more comments
up vote 161 down vote

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|flag
14  
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 at 14:15
9  
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. – runrunraygun May 7 at 16:02
3  
But does it travel backwards in time? – shoosh May 10 at 20:24
1  
That would explain why it takes a month to track down... :) – runrunraygun May 11 at 22:38
1  
+1 my fav so far – Aiden Bell May 13 at 10:23
show 3 more comments
up vote 160 down vote

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|flag
61  
+1 for working your jargon into a sci-fi novel. That's novel. – jdk Mar 1 at 2:36
4  
Haha... cute ! Might start using that when I zone out. – Mark Mar 1 at 3:47
5  
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 at 12:02
3  
It's downloadable from lifeartificial.com. Part 2 is about half finished. – Stanislav May 2 at 21:44
show 4 more comments
up vote 158 down vote

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|flag
116  
+1 for Obama. :-) – Konrad Garus Mar 15 at 13:46
62  
-1 for Obama. :P – Kyralessa Mar 26 at 19:35
10  
Does this mean reality trumps hopeychange? – Will May 11 at 15:34
41  
How about Barack Obama for stuff that we really cannot afford, most clients don't want, and plan to charge future clients for. – Tim Santeford May 18 at 23:13
14  
@Tim Santeford - Way to kill the funny! – Richard Szalay May 20 at 14:17
show 2 more comments
up vote 140 down vote

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|flag
149  
Is that related to the legendary Bugfoot? – Iceman Mar 15 at 20:02
2  
I'm going to create a "bug" and remove it just so I can say that – KThompson Mar 19 at 17:12
12  
"WHAT YOU WANT, BUG?" "Oh, bout tree fiddy." – Will May 11 at 15:35
4  
Wouldn't "Nessiebug" sound better? – peterchen May 27 at 15:23
show 2 more comments
up vote 137 down vote

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|flag
3  
The important part of this game is the part where you define the term. – Dolph Mar 15 at 14:35
11  
+ 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 at 22:35
2  
Prayer Driven Development is closely related to FDD, by the way. – Erik van Brakel May 20 at 23:32
show 2 more comments
up vote 125 down vote

Baklava code

Code with too many layers.

alt text

link|flag
3  
Most of these answers gave me a 'meh' response, but after this, I find myself giggling uncontrollably. Thanks! – Dean J May 10 at 13:49
20  
also known as "lasagna code" to keep with a common pasta-based theme... – Brian Postow May 11 at 13:46
show 4 more comments
up vote 118 down vote

Bicrement - Adding 2 to a variable

link|flag
222  
I always thought "excrement" should have been the opposite of increment. – Jimmy Mar 1 at 6:16
2  
Anyone who upvotes Jimmy's comment knows what the correct opposite of "excrement" is? – BeowulfOF Mar 1 at 13:20
7  
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 at 11:02
22  
@BeowulfOF: food? – RegDwight Mar 12 at 14:34
11  
@Nick Bedford: Don't worry, that feature is coming in C++++. – dreamlax Mar 24 at 5:49
show 4 more comments
up vote 114 down vote

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|flag
3  
Perl has Many, Many of these. In fact, it's policy that most unintentional bugs be kept as features. – Robert P May 11 at 21:01
8  
Isn't this why a lot of Windows programs don't work in wine? – Brendan Long May 12 at 0:55
3  
@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 at 11:51
1  
@Brendan One of the reasons – kts May 18 at 16:05
2  
@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 at 16:36
show 4 more comments
up vote 107 down vote

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

Programmer fuel - Mountain Dew, coffee, 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|flag
5  
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 at 18:18
14  
+1 for "banana banana banana"... I ♥ Futurama – Mike Stone Mar 17 at 2:26
63  
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 at 3:08
2  
@Aaronaught: put me down for 2 – Ty W Apr 30 at 19:06
3  
+1 for hot potato(es) – Zsolt Török May 10 at 11:11
show 9 more comments
up vote 103 down vote

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|flag
47  
Is that a hard 'g' or a soft 'g' because it makes a big difference in hilarity if nothing else. – jdk Mar 1 at 2:41
15  
I kinda like squizzle-jizz better (or soft g). – Mark Mar 1 at 3:48
64  
@mark that sounds like a personal problem – Woot4Moo Mar 1 at 4:35
15  
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 at 22:34
10  
How about squirrel-giz? If that's not a straight line... – outis Mar 13 at 19:06
show 7 more comments
up vote 99 down vote

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|flag
38  
fracking Jimmy! – Eric Johnson May 10 at 2:31
7  
Goes down often ! Excellent funny sir! – Mark May 10 at 19:09
3  
a.k.a. Yo Momma Code – kibibu May 11 at 0:31
11  
And they say programming is male-dominated. – dclowd9901 May 12 at 4:46
show 3 more comments
up vote 97 down vote

Ninja Comments - I did not coin this term but I am sure every one agrees

explanation : Ninja comments (or no comments)

-Edited to put some real comments as my Ninja comments were not enough

link|flag
9  
The code I inherited has Ninja Comments. (a geeky way of saying no comments) – schar Mar 16 at 19:18
3  
I like this one. I like it a lot. – Paul Nathan Mar 16 at 20:57
50  
// – TokenMacGuy May 12 at 2:06
1  
@TokenMacGuy exactly – schar May 12 at 17:01
2  
There are 21 ninjas hiding in the following image: Can you spot them? – thSoft May 21 at 9:00
show 6 more comments
up vote 97 down vote

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|flag
4  
This happens to me so often – Sukasa Mar 3 at 0:30
7  
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 at 0:25
12  
@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 at 18:23
1  
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 at 21:14
show 11 more comments
up vote 94 down vote

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|flag
10  
that would be most of the web :P – George Profenza May 12 at 11:17
7  
Seriously, is there a prototype that doesn't go into production? – Jim Leonardo May 21 at 0:03
1  
Basically, a protoduct... that noun should be used more often. – Marcus Lindblom May 21 at 9:24
show 4 more comments
up vote 94 down vote

Hydra Code

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

link|flag
45  
I call that kind of code "perfect" because it can't be improved. – xan May 18 at 20:28
show 4 more comments
up vote 87 down vote

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|flag
33  
If in Python, over five screens in width. – rlb.usa Mar 19 at 18:16
14  
Project contains one file: main.cpp. – Nick Bedford Mar 23 at 0:29
8  
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 at 17:08
12  
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 at 7:40
35  
@G B: Serial killers are proud of their work as well. – BlueRaja - Danny Pflughoeft May 10 at 17:20
show 13 more comments
up vote 86 down vote

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|flag
26  
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 at 18:52
1  
4  
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 at 5:47
1  
@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 at 1:53
4  
Round my place we call ask someone to "be my teddybear" in this context. Snuggling is optional. – Ben May 26 at 20:27
show 11 more comments
up vote 82 down vote

apt-got and wgot for files installed using apt-get or downloaded using wget.

"I apt-got 100MB of updates this morning"

 

"Once this loop has wgot that file, it takes the md5 hash"

link|flag
37  
I think you mean "has wgotten". :) – JimN Mar 18 at 2:41
13  
+1 for declining tool names! – sum1stolemyname May 5 at 5:50
4  
Am I the only one who says "apt-getted" or "wgetted"? – rascher May 10 at 5:26
9  
@rascher: yes.. – Mark May 10 at 19:03
2  
If a package is apt-gotten, then are its children apt-begotten? – Jon Purdy May 18 at 11:47
show 7 more comments
up vote 82 down vote

Hocus Focus problem - unexpected behavior in Windows caused by changes in focus, or incorrect setting of focus.

link|flag
3  
... or inappropriate (intentional) stealing of focus – Bob Kaufman Mar 15 at 4:27
31  
There should be some sort of capital punishment for that. (Oh yes, I love the fact that I just typed half of my mail in a popup window) – ldigas Mar 15 at 18:51
2  
@Bob Kaufman: YES! I hate it when I'm trying to type and something steals the focus. Bonus points if it takes me longer than 5 seconds to even find where the new focus is. – Dinah Mar 16 at 18:15
11  
Double bonus points if it's a crash notification that has the "Press OK to shutdown" button selected so that when you press <space> while typing your email you actually end up shutting down. – Blair McMillan May 10 at 16:16
1  
Yet more bonus points for when focus shenanigans lead to posting passwords on public websites… – Donal Fellows May 17 at 8:24
show 9 more comments
1 2 3 4 5 12

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