up vote 579 down vote favorite
1353
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(/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

Jenga Code

When the whole thing collapses when you alter a block of code.

link
1  
Maybe it shouldn't collapse, but it definitely shouldn't work. – Matt Joiner Sep 18 '10 at 6:11
14  
Commonly happens during refactoring. "Remove code block A....remove code block B.....remove code block C....oh, god! Put it back! Put it back!" – lunchmeat317 Aug 31 '11 at 20:05
show 2 more comments
feedback

Baseball Exception Handling This is a pattern wherein when application logic is implemented via a deeply nested set of try/catch/throw blocks. Specific application logic is implemented in catch blocks and correct program behavior depends on exceptions being thrown at the right time. In the canonical example, the throwing and catching happens within a single, very long, method.

Example:

try
{
    // 10-1000 lines of code
    if (someCondition)
         throw new SomeConditionException();

    // 10-1000 lines of code
    if (someOtherCondition)
         throw new SomeOtherConditionException();

}
catch (SomeConditionException)
{
    // 10-1000 lines of code, preferably with nested baseball exception handling
}
catch (SomeOtherConditionException)
{
    // 10-1000 lines of code, preferably with nested baseball exception handling
}

Advanced Baseball Exception Handling The same as Baseball Exception Handling but with the addition of added state held in the Exception class so that the catch block can logically branch based on where the throw was. This is useful when a single Exception type is used but catch logic needs to know where in the process it was thrown from.

try
{
    // 10-1000 lines of code
    if (someCondition)
         throw new SomeConditionException("early in the process");

    // 10-1000 lines of code
    if (someCondition)
         throw new SomeConditionException("late in the process");

}
catch (SomeConditionException e)
{
    // execute shared logic

    if (e.State == "early in the process")
         // execute early in the process logic

    if (e.State == "late in the process")
         // execute late in the process logic
}

link
20  
Oh that I could give this +2. – detly May 12 '10 at 6:04
9  
If your code ever gets to the point you have to do something like this, you're doing something very wrong. – Ubersoldat May 13 '10 at 11:54
9  
+1 as I've seen this. Maybe once too many. I suggest calling outsourced code like this "Cricket Exception Handling" – sal May 14 '10 at 17:12
3  
@Finbarr: I'm not sure the problem is speed (and exceptions are not slow in every language) – R. Martinho Fernandes May 17 '10 at 10:44
2  
This is the scariest thing i have ever heard. – acidzombie24 May 26 '10 at 2:15
show 8 more comments
feedback

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
56  
I think you mean "has wgotten". :) – JimN Mar 18 '10 at 2:41
22  
+1 for declining tool names! – sum1stolemyname May 5 '10 at 5:50
5  
Am I the only one who says "apt-getted" or "wgetted"? – poundifdef May 10 '10 at 5:26
15  
@rascher: yes.. – Mark May 10 '10 at 19:03
5  
If a package is apt-gotten, then are its children apt-begotten? – Jon Purdy May 18 '10 at 11:47
show 8 more comments
feedback

Blogware

Code that looks great in a blog post, but doesn't work well in a full application.

link
24  
Checked exceptions? – Fraser May 12 '10 at 1:24
show 1 more comment
feedback

MAXIT - Talk to Max about the problem. I had a real life manager named Max, when we had code we could not figure out, we would talk to Max. He would just ask us to tell him about it, describe what it is supposed to do and then walk through what it IS doing - most of the time (all?) we would figure it out from that. Max actually died a few years ago. I still talk to Max.

link
69  
+1 for the last sentence. – Erik Forbes May 10 '10 at 20:45
3  
This is one of my favorites here – Victor Farazdagi May 15 '10 at 3:37
19  
A form of Rubberducking. – Andrew Grimm May 18 '10 at 7:35
feedback

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

link
7  
... or inappropriate (intentional) stealing of focus – Bob Kaufman Mar 15 '10 at 4:27
45  
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 '10 at 18:51
3  
@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 '10 at 18:15
29  
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 '10 at 16:16
4  
Yet more bonus points for when focus shenanigans lead to posting passwords on public websites… – Donal Fellows May 17 '10 at 8:24
show 11 more comments
feedback

SOGO When you look for answers on Google and your Stack Overflow questions come up as first place within 5 minutes.

link
51  
This has happened with surprising frequency. – Sam152 May 10 '10 at 14:19
16  
Done that. :/ What's worse is why your Question is unanswered. After 6 months. :-/ Double boo. – Chris Kaminski May 10 '10 at 22:57
2  
@Chris: At least then you get the tumbleweed badge B-) (But yeah, been there done that, got the badge, decided it wasn't worth it B-) – Brian Postow May 11 '10 at 13:52
2  
Within a day? That usually happens today within <5 minutes when i continue to google in the vain hope of sudden enlightenment. – Georg Fritzsche May 24 '10 at 18:26
show 2 more comments
feedback

Try, Catch, Forget - An empty catch block, no tracing, not even a comment. No attempt to resolve the error and of course the catch block is not at all specific on the exception type.

link
12  
Unfortunately there are people who think this is error handling and how it is supposed to be done. – AaronLS May 9 '10 at 18:59
50  
To be fair, some APIs encourage this by throwing bullshit exceptions. – wds May 10 '10 at 12:58
23  
I like to wrap main in a Try,Catch,Forget block. I find it fixes most bugs. – Joel May 15 '10 at 17:36
6  
Another name for this mechanism is : swallow-all. You can see this here and there, especially in some demo code where the exception is just swallowed, and ignored on purpose. – Michael Mao May 25 '10 at 9:27
show 6 more comments
feedback

can-has

alias of apt-get

sudo can-has php5
link
7  
Do people who use this eat cheezburgers? :-) – JBRWilkinson May 13 '10 at 10:33
12  
Is there a cheezburger package? – Donal Fellows May 18 '10 at 12:27
29  
to adopt this: alias can-has='sudo apt-get install'. – Trey Hunner May 23 '10 at 22:58
1  
lol, I think i'll put this in my next build. – WalterJ89 May 26 '10 at 21:05
3  
edit /etc/sudoers and add ,passprompt="WUT IZ %uZ PASWORD?" to the end of the line that starts with Defaults to make the sudo prompt more lolcatty. – Ben Page May 19 '11 at 15:01
show 3 more comments
feedback

Mortgage Code

Code purposely so terrible that only you can maintain it, forcing your employer to keep you; thus providing job security ( so you can pay your mortgage).

Someone did a web application in Mortgage Code : every page was returned as HTML built entirely by SQL queries.

link
19  
More like Mortuary Code - you'll be stuck with the same crappy app for all time, or be victim to a drive-by shooting by the developer who had to take over after you left. – DevSolar May 14 '10 at 18:12
6  
@jdk You're really on an image rampage aren't ya, buddy : P – rlb.usa May 20 '10 at 14:29
1  
3  
I used to call this Job Security. – ridecar2 May 21 '10 at 13:09
2  
I've heard this as Mortgage Driven Development – Jonny Cundall Sep 9 '10 at 9:14
show 3 more comments
feedback

XMHell : When your project contains only 92 classes but has 243 Spring xml configuration files and every object relationship is mapped through a DI framework.

Props to Daniel for this one.

alt text

link
6  
Hmm, sounds like Magento! – Harold1983- May 10 '10 at 21:19
11  
MAGENTO? HULK SMASH. – eyelidlessness May 10 '10 at 21:55
1  
Genius. Having worked with Spring.Net and NHibernate, I dropped to my knees and thanked the good Lord for Autofac and FluentNH. – KeithS Feb 16 '11 at 23:58
show 1 more comment
feedback

Hope Driven Development - a software development technique in which an application is developed in a long unplanned development cycle, with minimal "Steve Irwin-style testing", all with the hope that everything will work as intended when released.

Steve Irwin-Style Testing - testing that consists of poking around in an application hoping that you will not have a "Crikey!" moment.

link
10  
+1 for the reference to Steve Irwin, AFAIK no programmer has ever died as a result of poking about in code... – Jazza May 19 '10 at 10:47
show 3 more comments
feedback

Natural Selection - The act of replacing someone else's code with your own.

link
35  
Oh look, daddy, that lion is giving the cow a hug! – GalacticCowboy May 27 '10 at 17:43
1  
Is the lion attempting interspecies breeding? – Blessed Geek Jun 6 '10 at 5:24
8  
umm, dudes, thats a steak. He's eating a steak, properly rare the way it should be. I have a friend likes it that way... (is that a yak steak...?) – AviD Jun 7 '10 at 18:43
show 5 more comments
feedback

Floater: The case in the bug tracking system that seems to always be sitting near the top of the queue but never gets claimed. It just floats there while developers work around it.

link
show 1 more comment
feedback

svn vomit
I usually alias the 'svn commit' command to simply 'vomit'... Reminds me of teammates who messed up repositories by committing files anywhere...

link
3  
"svn ci" is less keystrokes though :P – Harold1983- May 10 '10 at 21:09
3  
There's also svn blame for seeing who commited what rubbish. Though they also have a proper command svn annotate which does exactly the same thing. – staticsan May 13 '10 at 5:11
3  
@staticsan And svn praise for seeing who commited that genius solution. – bjarkef May 24 '10 at 10:56
show 1 more comment
feedback

Scar Tissue - Any code that is commented out but still included in the current and/or checked-in version. This definition only gives a name, it does not pass judgment on the value of the code in question, i.e. whether its acceptable to check in scar tissue.

enter image description here

public class JDBCDBServlet extends HttpServlet {
    private String      className = "JDBCDBServlet: " ;
    private JDBConnectionPool   connPool ;
    //static JDBCConnectionManager connMgr;

   public void init(ServletConfig config) {

    int maxConns = Integer.parseInt(config.getInitParameter("MAX_CONNECTIONS")) ;
    connPool = new JDBConnectionPool(maxConns) ;
    //connMgr = new JDBCConnectionManager(driverListStr, maxConns) ;
    JDBCConnectionManager.initialize();
    }

It was one of the first topics I blogged about. See "The Scars We Bear". I remember coming up with this term in college back in the late 80's/early 90's when version control wasn't discussed or really available.

My wife (also a programmer) had a good one. When programs send email or post log/console messages at the drop of a hat, they are 'twittering'. I'd add it as a separate answer except the question is locked.

link
show 2 more comments
feedback

Object Oriented Pasta - Used to describe spaghetti code wrapped in classes to make it look like an object. Not mine, but a commonly used term at my office.

Festive - A bug causes a window or the entire screen to produce a visually stunning result.

link
19  
OO Pasta is also referred to as "ravioli code" (c2.com/cgi-bin/wiki?RavioliCode) – Roger Lipscombe Mar 19 '10 at 17:12
5  
Would that make the developer responsible for it a "Chef Boyardee"? – PalmCoaster Mar 22 '10 at 23:51
1  
@Roger Ravioli code is supposed to be a good thing - spaghetti ain't. – Konerak May 10 '10 at 8:04
13  
On the "festive" side, a bug in a RayTracer I wrote resulted in it rendering spheres as penises. – ZoFreX May 24 '10 at 7:04
show 5 more comments
feedback

The future is not implemented yet

Derived from a misspelled comment that originally meant "the feature is not implemented yet". Now used in various other scenarios, whenever a feature is not yet implemented.

link
7  
I used that in my blogging engine when I didn't support delaying posts yet. It was an error that showed up when the DateTime was beyond today. – Arda Xi May 25 '10 at 5:33
show 1 more comment
feedback

Click it Harder - Developer response to QA testing the developer's software when the button doesn't function, or doesn't function completely.

Vaneshia: PJack. The save button doesn't save.

PJack: What? No way. Works on my machine... show me.

<Vaneshia.click>fail</Vaneshia.click>

Vaneshia: See.

PJack: Ohh, you've got to click it harder.

link
15  
The sad part is there are GUI toolboxes (GTK+ being a notorious one) where clicking a widget lightly, on a slow machine, makes it focus (so the computer noticed the click!) but not actually activate/click. You need to click harder (longer) for it to work. What's worse, if you tap on a touchpad, you can't tap "longer" because it won't register at all. So you must use the "mouse keys" instead... argh. – SF. May 21 '10 at 7:41
1  
+1 for the image... – staticsan May 25 '10 at 0:26
9  
As I termed it: Push with authority. – Thanatos May 26 '10 at 5:34
1  
This makes me want to include error messages that say 'Pensive mouse click detected, click harder' that spawn randomly – slf Jul 26 '11 at 2:23
show 3 more comments
feedback

Ghetto code - a particularly inelegant and obviously suboptimal section of code that still meets the requirements.

link
67  
You didn't come up with Ghetto ______. Ghetto when used before anything is an aphorism for something half-assed, unprofessional, bad, not following convention. – Omar Mar 1 '10 at 4:33
51  
Except for ghetto bootay. – PaulG Mar 16 '10 at 19:40
3  
I started using it for code, and then everyone else stole it. And I didn't get a dime! – Kaleb Brasee Mar 17 '10 at 3:44
show 6 more comments
feedback

n-gleton - a class that only allows a fixed number of instances of itself. I've recently seen another (perhaps official) term for this; something like multiton or polyton.

link
5  
so thats said engleton? – RCIX Mar 22 '10 at 6:00
1  
@RCIX - Yup. That's how I pronounce it. – Scott Smith Mar 22 '10 at 16:00
7  
Some book referred to this as a "Fewton". – Oliver Weiler May 11 '10 at 14:58
5  
I'm a square. I like to call it an object pool. – Will May 11 '10 at 15:41
2  
Multiton is an official pattern, AFAIK – John May 14 '10 at 15:27
show 10 more comments
feedback

NAME_OF_MY_FORMER_BOSS-switch
Generally in hardware, a very impressive looking adjustable dial that isn't connected to anything but lets them feel that they are involved by giving them something to fiddle with - without any risk to the carefully calibrated instrument.

In software it would be a page of advanced configuration settings that don't do anything except make the software more 'enterprisey'

link
46  
In my former life as an audio engineer, we had an unattached knob on the desk for precisely this purpose, when the client (read 'precious musician') wanted 'oh I don't know, just that little bit extra, that sort of oomph'. – johnc May 10 '10 at 22:11
16  
We once removed a box from in the chassis, but left the switch on the front-plate because otherwise there'd have been a hole. We all knew we'd done it. And we found ourselves slipping into this crazy world where we'd go flip that switch when something was wrong and it seemed to help. – Will May 21 '10 at 8:43
12  
An interesting read: retrologic.com/jargon/magic-story.html – Will May 21 '10 at 8:43
5  
@johnc - I hope it went upto 11 ! – Martin Beckett May 21 '10 at 16:15
6  
That kid looks a little psychotic – adam0101 Aug 6 '10 at 14:50
show 10 more comments
feedback

Automanually

The term is used to refer to a batch job or application that should be scheduled or triggered automatically, but due to unspecified reasons (typically, bugs), requires manual intervention every time. (Note: This is not the same as automagically.)

"The data is stale because the synchronization job is scheduled to happen automanually and I've been on vacation."

link
1  
Love it! Been there many times. – j_random_hacker May 23 '10 at 5:00
2  
The word you're looking for is "manumatic". Old train sets used to have electric switches, but if you were cheap, they also had switches that you had to run over and flip by hand. These were marketed as "Manumatic!" – Alex Feinman Sep 21 '11 at 15:42
2  
"Automanual" seems like a better (and funnier) fit than "manumatic." – MDRoz Oct 31 '11 at 15:39
show 2 more comments
feedback

IRQed = annoyed by interruptions

Example: The phone IRQed me so much today I couldn't get anything done.

The distinction between "IRQed" and "irked" is subtle and only obvious in written form or by context.

Related: IRQload

Example: "The poor slob who runs the switchboard has an IRQload you wouldn't believe."

link
15  
Depending on who is interrupting you, sometimes it's a Non-Maskable Interrupt. – Benoit Miller May 11 '10 at 17:37
show 2 more comments
feedback

Code Slush

for the date after which no changes will be accepted, except, of course, all the changes that management will ask for at the last minute. Like Code Freeze but accepting of the fact that some changes will still get in.

Memo to developers, Code Slush is March 31 so get your fixes in.

link
1  
I've used this one at a previous job. Code checkins were still possible, but only for serious bug fixes and they'd get a heightened level of scrutiny. – Mark Ransom Mar 16 '10 at 20:38
2  
Used /consistently/ at Corel when I was there (late 90s). After beta and before code freeze...variable-level bug bar triage. – Jedidja Mar 21 '10 at 22:01
show 1 more comment
feedback

RIT's Society of Software Engineers has a name for this diagram I created a while back:

The Rob Busack Waterfall Model.

http://yfrog.com/a5waterfallp

Named after the Rob Busack Memorial Rapid Development Weekend, a yearly event where in one single, caffeine-fueled weekend, an unnecessarily large number of developers congregate for the purpose of failing to complete an overly ambitious programming challenge.

link
22  
an unnecessarily large number of developers congregate for the purpose of failing to complete an overly ambitious programming challenge. < my office then? – runrunraygun May 13 '10 at 12:52
feedback

Scare the bug when you call another developer to help you spot some trivial and obvious bug you spent way longer than reasonable trying to find.

Often mere presence of the other person allows you to spot the bug, i.e. as you begin to explain the piece of code (without the other person ever getting to say anything of value) - "the code got scared of two people at once working on it and revealed itself without a fight."

A request of Could you come over and scare the bug for me, please? is the traditional interrupt request of this kind of assistance.

link
2  
Often referred to as the "rubber ducky method", wherein you avoid bringing in another programmer into it by explaining the bug to a rubber ducky sitting on your desk (or any other trinket) this revealing the bug to yourself by the act of explaining it as you would to another coder. – Neil N May 10 '10 at 20:10
10  
But nicely and creatively worded, especially in the request form. +1. – DevSolar May 14 '10 at 18:42
show 4 more comments
feedback

Barnacle method A function implemented as a method of some class for lack of a better place.

If you don't have a "generic toolbox" class and don't tolerate functions outside a class or a namespace, you sometimes attach simple, generic, stateless functions like "dec2hex", "crc16file" or "JSONtimestamp" to a specialized class because that class often uses them or they somewhat resemble its functionality, but you often call them from other classes (which don't need the "host" class for any other purpose).

link
4  
@Andrew: a classic utility method is usually attached to a utility class. But finding no atoi() (int->string conversion) in stdlib, and implementing it as a method of a class that generates a screen of specific info about output device instead is a classing example of barnaclization. – SF. May 18 '10 at 10:24
1  
In a non-obligatory-oop (object Pascal) or semi-oop (C++) language, the idea that this should have been in a class would be ludicrous to some people, and an article of faith to others. This term is a rather good example of where developers differ on acceptable practices. I would use this term. "This is a barnacle, start a new utility class, now." – Warren P Jun 25 '10 at 17:09
show 4 more comments
feedback

Carpet Logging

The act of completely riddling a piece of source code with debug log calls, until pretty much every single line of the code is followed by a call of the form log.debug("After my_killer_function_call, var1=....");

This is done in lieu of using a debugger to step through the code, typically by l33t certification-prodigies who think that only noobs use debuggers.

link
14  
Maybe they think only people writing single-threaded code use debuggers. Some heisenbugs are not effected by logging but will not appear with a debugger attached. – Pete Kirkham May 14 '10 at 12:35
1  
Granted some occasions may warrant it, but its not something that should be done consistently, and THEN have the code checked into source control with all the logging included. Then again, I have implemented lots of concurrent algorithms and rarely have I had to do this. – Il-Bhima May 19 '10 at 7:51
3  
eh. I have a long section of code with every single line prefixed with _DB, which is #define _DB printf("F: %s, Ln: %d\r\n",__FILE__,__LINE__); – SF. May 20 '10 at 10:50
8  
Sometimes it's the best answer. When you have something that fails on the 500th pass through the loop due to something that went wrong before it's easier to run off a big logfile and look it over--that way when you find where it blew up you can look backwards and see how it got there. – Loren Pechtel May 25 '10 at 4:43
1  
How about "vacuuming the code" for someone who has to clean the carpet up after it's been bombed? – Warren P Jun 25 '10 at 17:15
show 11 more comments
feedback

Bug Bait

Programming practices that encourage, rather than discourage, program flaws.

enter image description here

link
11  
Almost like jailbait ;) – Gacek Mar 12 '10 at 17:39
16  
Only less enticing... – Nate Mar 18 '10 at 19:31
8  
What I call bug bait is the practice of willingly putting debug code into production, for the sole purpose of bringing out a hard-to-find bug (so it can be exterminated properly). Related to Heisenbug. – Benoit Miller May 11 '10 at 17:41
1  
@Benoit Miller - so is that Heisenbait? – Mark Schultheiss May 18 '10 at 12:26
5  
Reminds me of PHP – Charlie Somerville May 21 '10 at 8:17
show 1 more comment
feedback
1 2 3 4 5 12

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