vote up 359 vote down
star
425

What is the best comment in source code you have ever encountered?

add / show 3 more comments

locked by Jeff Atwood Apr 28 at 8:55

closed as "no longer relevant" by Jeff Atwood Apr 28 at 8:51

533 Answers

1 2 3 4 5 18 next
vote up 637 vote down
//Code sanitized to protect the foolish.
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Web.UI;

namespace Mobile.Web.Control
{
    /// <summary>
    /// Class used to work around Richard being a fucking idiot
    /// </summary>
    /// <remarks>
    /// The point of this is to work around his poor design so that paging will 
    /// work on a mobile control. The main problem is the BindCompany() method, 
    /// which he hoped would be able to do everything. I hope he dies.
    /// </remarks>
    public abstract class RichardIsAFuckingIdiotControl : MobileBaseControl, ICompanyProfileControl
    {
        protected abstract Pager Pager { get; }

        public void BindCompany(int companyId) { }

        public RichardIsAFuckingIdiotControl()
        {
            MakeSureNobodyAccidentallyGetsBittenByRichardsStupidity();
        }

        private void MakeSureNobodyAccidentallyGetsBittenByRichardsStupidity()
        {
            // Make sure nobody is actually using that fucking bindcompany method
            MethodInfo m = this.GetType().GetMethod("BindCompany", BindingFlags.DeclaredOnly | 
                BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic);
            if (m != null)
            {
                throw new RichardIsAFuckingIdiotException("No!! Don't use the fucking BindCompany method!!!");
            }
            // P.S. this method is a joke ... the rest of the class is fucking serious
        }

        /// <summary>
        /// This returns true if this control is supposed to be doing anything
        /// at all for this request. Richard thought it was a good idea to load
        /// the entire website during every request and have things turn themselves
        /// off. He also thought bandanas and aviator sunglasses were "fuckin' 
        /// gnarly, dude."
        /// </summary>
        protected bool IsThisTheRightPageImNotSureBecauseRichardIsDumb()
        {
            return Request.QueryString["Section"] == this.MenuItemKey;
        }

        protected override void OnLoad(EventArgs e)
        {
            if (IsThisTheRightPageImNotSureBecauseRichardIsDumb())
            {
                Page.LoadComplete += new EventHandler(Page_LoadComplete);
                Pager.RowCount = GetRowCountBecauseRichardIsDumb();
            }
            base.OnLoad(e);
        }

        protected abstract int GetRowCountBecauseRichardIsDumb();
        protected abstract void BindDataBecauseRichardIsDumb();

        void Page_LoadComplete(object sender, EventArgs e)
        {
            BindDataBecauseRichardIsDumb();
        }

        // the rest of his reduh-ndant interface members
        public abstract string MenuItemName { get; set; }
        public abstract string MenuItemKey { get; set; }
        public abstract bool IsCapable(CapabilityCheck checker, int companyId);
        public abstract bool ShowInMenu { get; }
        public virtual Control CreateHeaderControl()
        {
            return null;
        }
    }
}
link|flag
15 
That's riddled with obscenities, but I literally laughed in my cube the entire time reading it. – Abyss Knight Oct 8 at 20:25
137 
censorship sucks. bring back the original! – Dana Oct 9 at 1:12
33 
Rolled back. We're all adults here. If the original code had been "sanitized", you would never have remembered it enough to post it here. – JosephStyons Oct 9 at 3:48
22 
+1 revert. Manipulating others through arbitrary personal offenses is lame. It's just a word. – Daddy Warbox Oct 9 at 22:28
20 
Will be even funnier if a customer sees the class name in a stack trace. – finnw Oct 10 at 2:47
add / show 61 more comments
vote up 561 vote down
stop(); // Hammertime!
link|flag
3 
I like it. Da da da DA, da DA, da DA, It's over (David Spade, SNL, Weekend Update) – __ Oct 11 at 18:37
10 
And the German version: tasty.soylentsoft.com/images/halt_hammerzeit.jpeg/… :) – roosteronacid Oct 12 at 13:00
24 
stop(); // collaborate, listen! – Erik Dec 10 at 0:32
3 
addons.mozilla.org/en-US/firefox/… – Laserallan Feb 2 at 12:09
1 
Search on YouTube for "MC Hammer" – Charlie Flowers Mar 27 at 7:04
add / show 7 more comments
vote up 462 vote down
// sometimes I believe compiler ignores all my comments
link|flag
3 
That is really pitiful. I hope to god this person was kidding. – stalepretzel Oct 11 at 22:11
3 
I hope the compiler ignores this person's comments. – Windows programmer Oct 14 at 6:18
10 
// Since I never heard back from the compiler, I believe this is true. – Liwen Dec 18 at 13:59
10 
I think it's supposed to be ironic... – Neil Barnwell Dec 19 at 15:57
8 
laughter, that's the future, compilers reading comments just to make sure they haven't misunderstood ;-D – R.A Jan 28 at 12:03
add / show 10 more comments
vote up 452 vote down

I am particularly guilty of this, embedding non-constructive comments, code poetry and little jokes into most of my projects (although I usually have enough sense to remove anything directly offensive before releasing the code). Here's one I'm particulary fond of, placed far, far down a poorly-designed 'God Object':

/**
* For the brave souls who get this far: You are the chosen ones,
* the valiant knights of programming who toil away, without rest,
* fixing our most awful code. To you, true saviors, kings of men,
* I say this: never gonna give you up, never gonna let you down,
* never gonna run around and desert you. Never gonna make you cry,
* never gonna say goodbye. Never gonna tell a lie and hurt you.
*/

I'M SORRY!!!! I just couldn't help myself.....!

And another, which I'll admit I haven't actually released into the wild, even though I am very tempted to do so in one of my less intuitive classes:

// 
// Dear maintainer:
// 
// Once you are done trying to 'optimize' this routine,
// and have realized what a terrible mistake that was,
// please increment the following counter as a warning
// to the next guy:
// 
// total_hours_wasted_here = 16
//
link|flag
4 
How am I supposed to get Rick A. out of my head. You better start running... – EricSchaefer Feb 2 at 12:39
61 
I love that "total_hours_wasted_here = 16." I'm going to have to use that in my code :) – Bernard Feb 2 at 20:56
3 
rickrolled awesome – in.spite Apr 6 at 11:43
25 
+1 for the total hours wasted flag – lagerdalek Apr 14 at 21:30
7 
The counter is the best thing ever. It should be at the top of this thread. In fact I'm voting for this reply and no other. – dasil003 Apr 15 at 19:47
add / show 8 more comments
vote up 407 vote down
// I dedicate all this code, all my work, to my wife, Darlene, who will 
// have to support me and our three children and the dog once it gets 
// released into the public.
link|flag
30 
Is this somewhere on the Duke Nukem Forever source code? ;) – Adhip Gupta Oct 10 at 20:43
3 
I wish I could vote twice! – keithwarren7 Feb 2 at 21:08
1 
I don't get it, what's so funny? – hasen j Mar 5 at 19:33
5 
He's dedicating the code below to his wife, even though he knows it's so bad that it's going to either get him fired or make his company go out of business. :) – Robert P Mar 26 at 16:44
add / show 2 more comments
vote up 363 vote down
// Magic. Do not touch.
link|flag
4 
Magic = fragile, perhaps? – __ Oct 11 at 18:31
11 
Reminds me of this: catb.org/esr/jargon/html/magic-story.html – Simon Howard Oct 16 at 19:31
5 
I've had to write that so many times - mostly to remind myself that "If you touch the following code without really knowing what you're doing, bad things will happen!" – scraimer Jan 20 at 14:43
1 
@Simon Howard, I'd only not touch it if it said "More Magic" – devinb Mar 6 at 14:31
2 
I still remember being taught CS in high school, where our stupid questions were answered with "Magic!" and the most sinister smile. – nevets1219 Apr 19 at 4:06
add / show 7 more comments
vote up 358 vote down
// drunk, fix later

Wish I were kidding. And knowing the developer who wrote the code, I think he meant it literally.

link|flag
47 
That is ridiculous, who writes comments when they're drunk. – Jiminy Mar 16 at 0:23
12 
@Jiminy: Seriously! When I code drunk, I woke up with magnificent code that I, unfortunately, do not understand. – JoshJordan Mar 31 at 6:49
7 
Ohh... If you don't understand it, it has to be magnificent! – Subtwo Apr 6 at 11:08
3 
haha!!! I made this just for fun: grepped my local subversion repo for 'drunk', and found one commit comment I wouldn't remember: "Works again, somehow. Well... I'm drunk!" – ivan_ivanovich_ivanoff Apr 15 at 8:33
3 
Jiminy: Not only do I deign to write comments when I'm drunk, but I've even been known to write a (gasp) unit test or two when I'm merry. – Rob Apr 19 at 4:23
add / show 4 more comments
vote up 354 vote down
//When I wrote this, only God and I understood what I was doing
//Now, God only knows
link|flag
29 
That's a phrase from Karl Weierstrass, the mathematician who gave us the wonderful epsilon and delta continuity definition. – Augusto Radtke Dec 5 at 18:32
1 
It's still great. – Friedrich Dec 20 at 9:21
1 
ROFL! ROFL! ROFL! – Trap Mar 1 at 1:50
add / show 4 more comments
vote up 300 vote down
return 1; # returns 1
link|flag
1 
Classic! But i like this one even better: "i++; // increase i by 1" – steffenj Oct 12 at 17:10
5 
Who knows if he #DEFINE 1 as something else... – icelava Dec 18 at 4:20
2 
What language is that? :) – ShreevatsaR Jan 9 at 4:35
3 
I wish comments like that were unfamiliar to me. – Shmoopty Feb 14 at 19:26
add / show 6 more comments
vote up 290 vote down
Exception up = new Exception("Something is really wrong.");
throw up;  //ha ha
link|flag
9 
haha awesome! +10 – hasen j Mar 16 at 11:01
5 
Literally did LOL at the combined cleverness and childishness of this one. – David Apr 22 at 15:07
add / show 6 more comments
vote up 284 vote down
long john; // silver
link|flag
3 
Pure corn. That's why I like it. – __ Oct 11 at 18:41
1 
Totally cracked up as well. I think my code now is too boring. – wonderchook Nov 8 at 21:45
9 
en.wikipedia.org/wiki/Long_John_Silver – chakrit Nov 21 at 21:52
add / show 2 more comments
vote up 280 vote down
// I'm sorry.
link|flag
43 
(The code that followed made me cry.) – Greg D Oct 8 at 20:23
5 
man, I wanna see the code that followed... – Erik Oct 8 at 20:59
4 
// You are forgiven. Go in peace my son. – Mark Allen Oct 8 at 21:51
16 
This should be a standard comment in the default templates generated by MSFT – Alexandre Brisebois Oct 9 at 13:40
4 
You're not a real developer if you've never left an apology comment for the next person! :P – Slace Feb 5 at 11:02
add / show 6 more comments
vote up 276 vote down
/* This is O(scary), but seems quick enough in practice. */

followed by four nested for-loops

link|flag
7 
pfft, that's only N^4 most likely, no where near as bad as 4^N or N! – tloach Oct 9 at 13:23
5 
I once hit a situation with loops nested 8 deep. The runtime was measured in hours. – Loren Pechtel Oct 19 at 19:51
3 
I had a O(n) algorithm with a 500ms network RTT in its inner loop. n > 100k. Ouch. – geofftnz Feb 13 at 0:48
1 
There is a redeeming quality: they know what big O terminology is at least. Hopefully each loop is running over very small N :-D – Jon Smock Apr 4 at 18:51
add / show 2 more comments
vote up 251 vote down
/*
 * You may think you know what the following code does.
 * But you dont. Trust me.
 * Fiddle with it, and youll spend many a sleepless
 * night cursing the moment you thought youd be clever
 * enough to "optimize" the code below.
 * Now close this file and go play with something else.
 */
link|flag
12 
Reminds me of a fellow who swore he could optimize a mechanical theorem-proving algorithm I wrote years ago in an AI project. He did improve performance but then the code didn't work...which he swore was my fault. – Mark Brittingham Dec 15 at 15:39
12 
If it doesn't have to work, I can optimize any code to a runtime of zero. – Michael Borgwardt Apr 3 at 16:04
add / show 5 more comments
vote up 218 vote down
Catch (Exception e) {
 //who cares?
}
link|flag
3 
This one had me laughing like a mental – Shahin Oct 20 at 23:31
7 
I saw the same thing with // move along, nothing to see here. – Ferruccio Nov 6 at 23:41
2 
I laughed so hard at this one. – sork Nov 20 at 21:52
2 
Have to admit that I've done this on more than one occasion because sometimes it just doesn't matter. – Chris Lively Dec 18 at 23:31
2 
Catch if you must ;-) – Friedrich Dec 20 at 9:13
add / show 11 more comments
vote up 218 vote down

It speaks volume about our profession that when asked about the "best comment", we all answer with the worst comments we can find...

link|flag
13 
Well my opinion about commenting is that it shouldn't be needed. Reading code that is littered with comments makes me want to stab the offender in the scrotum-area. Refactor to make it readable instead! – korona Oct 9 at 8:50
6 
I completely agree with your comment that comments are rarely needed. – harpo Oct 17 at 5:45
4 
Depends on the comments. Even "self-documenting" languages can benefit from comments, such as Python. I hate having to slog through the code to figure out what is happening, when a simple sentence can tell me. – crystalattice Oct 18 at 15:55
6 
I disagree re: comments being unnecessary. There are times when a simple "framing" comment can make sense of a whole slew of code. For example, if you are using a sophisticated algorithm to escape the time complexity of a brute force algorithm, a reference can be essential. – Mark Brittingham Dec 15 at 15:35
10 
The code says what...the comments say why! – Richard E Dec 19 at 16:06
add / show 8 more comments
vote up 195 vote down

About the middle of a 30 page xslt

<!-- Here be dragons -->
link|flag
2 
I'm still trying to figure out how to comment an XSLT in a way that makes sense. – Rob Oct 9 at 2:47
8 
We really need more dragons in our code. – Jon Smock Apr 4 at 18:53
1 
@annakata you think that's bad, the other day someone was asking for help dealing with a 31GB xml file. I cried out in anguish. – Dana the Sane Apr 21 at 6:17
add / show 5 more comments
vote up 192 vote down
const int TEN=10; // As if the value of 10 will fluctuate...
link|flag
23 
In today's market 10 now has a value of only 9. – Steve Fallows Oct 10 at 16:37
5 
Maybe someday we will evolve more fingers... – Loren Pechtel Oct 19 at 19:52
10 
what about very large values of 10? – Mikeage Feb 23 at 13:45
18 
const int TEN=11; // Mine goes to eleven – dub Mar 6 at 13:25
5 
Calling Fortran from C - Fortran only does call-by-reference so you need variables for all constants. – mgb Apr 20 at 16:43
add / show 8 more comments
vote up 191 vote down
try {

} finally { // should never happen

}
link|flag
10 
++. others in my company write this all the time! – CVertex Dec 2 at 16:34
4 
i've seen that comment (and even written it myself) in the past, for things that relalyt shouldn't ever happen (but just in case, here's code to handle the error). The funniest part is that ti's placed in a finally block, which means it should always happen... – Troy Howard Dec 5 at 19:54
4 
Yes, that was the joke. =) – Erik Dec 10 at 0:41
3 
If you have a System.exit() call in the try block, then YES, the finally should never happen ! – romaintaz Feb 6 at 10:06
2 
Reason #984 to use Debug.Assert(). ;) – Scott Hanselman Apr 28 at 19:43
add / show 6 more comments
vote up 187 vote down

in a completely uncommented 2000 line method

{ 
  { 
    while (.. ){ 
      if (..){
          }
      for (.. ){ 
          }
         .... (just putting in the control flow here, imagine another few hundred ifs)
      if(..)   {
            if(..)     {
                   if(..)   {
                ...
                (another few hundred brackets)
                       }
                  }
         } //endif

(I actually grepped out all the brackets one day just to see how bad it was, and, sans formatting, got this:

{{{{}}{}{}{}{}}{{}{{}{}{}{}{}{}{{}{}}{}{}{{}{}{}{}{}{}{}{}{}{}{}{{}}}{{}{{}}{{{}}}{{}{}{}{}{}{}{}{{}}{}{{{}}{}{{}{}}{{{}}{}{}{}{}}{{}}}{}{{}{}{}{{}{{}}{}}{{}}}{{}}{{}}{{}}{}{{}}{{}}{{}}{{}{}{}}{}{}{{{}}{{}}}{}{}{}{}}{{{}{{}{}{}{{}{}{}{}{}{}}{}}{{}}{{}{}}}{{}}{{}}}{{}}{{}}{}{}{}{}{{}}{{}{}{}{}}}}{}{}}{{}{{{}{}{}{}}}}{{}{{{}}}}{{}{{{}{{}}{}{{}}{}{{}{}}{{}}{}{{}}}{{}}}}{{}{}{}{}{}{{{}    {{{{}}{}{}{}{}}{{}{{}{}{}{}{}{}{{}{}}{}{}{{}{}{}{}{}{}{}{}{}{}{}{{}}}{{}{{}}{{{}}}{{}{}{}{}{}{}{}{{}}{}{{{}}{}{{}{}}{{{}}{}{}{}{}}{{}}}{}{{}{}{}{{}{{}}{}}{{}}}{{}}{{}}{{}}{}{{}}{{}}{{}}{{}{}{}}{}{}{{{}}{{}}}{}{}{}{}}{{{}{{}{}{}{{}{}{}{}{}{}}{}}{{}}{{}{}}}{{}}{{}}}{{}}{{}}{}{}{}{}{{}}{{}{}{}{}}}}{}{}}{{}{{{}{}{}{}}}}{{}{{{}}}}{{}{{{}{{}}{}{{}}{}{{}{}}{{}}{}{{}}}{{}}}}{{}{}{}{}{}{{{}{}{{}}{}}}{}}{{}}{{}{}}{{}{{}{{}}}}{{{}{{{}}}}}{{{{{}}}}}{}{}{}{{{{}}}{}{}}{{}{{}}}}{}{{}}{}}}{}}{{}}{{}{}}{{}{{}{{}}}}{{{}{{{}}}}}{{{{{}}}}}{}{}{}{{{{}}}{}{}}{{}{{}}}}

The endif showed up around line 800)

link|flag
18 
tour-de-france code – Andreas Oct 8 at 21:01
1 
doh' no cascading select statement? – Stephan Oct 8 at 22:07
3 
this is thedailyworsethanfailure.com worthy! – deadbug Oct 9 at 5:50
6 
Looks like Lisp! – endian Oct 9 at 12:15
6 
Cyclomatic complexity level of OH SHIIIIIIIII – Will Mar 5 at 14:45
add / show 9 more comments
vote up 154 vote down
//This code sucks, you know it and I know it. 
//Move on and call me an idiot later.
link|flag
6 
Honestly in comment! – Mitchel Sellers Oct 13 at 21:46
13 
I love the honesty. – Jeff Schumacher Nov 1 at 8:47
add / show 2 more comments
vote up 136 vote down
// If this comment is removed the program will blow up
link|flag
15 
A long time ago, I accidentally fixed a segfault in Java3D by adding a comment. It was 100% reproducible; if I removed the comment, it crashed. As long as the comment was there, it worked fine. I assume it was some bizarre timing issue, but I never did figure out exactly what was happening. – DNS Mar 6 at 14:29
5 
Magic/More Magic – devinb Mar 6 at 14:36
4 
This is sort of like a virus. It contains content meant to protect itself. It is like the junk DNA that is good at getting itself copied. – Charlie Flowers Mar 27 at 7:12
3 
We have a Sybase Powerbuilder app that is dependent on a comment like this. There is something odd in the compiler; it works though, so we don't touch it. – Colin Pickard Apr 6 at 10:07
1 
Yuk. The worst I ever had was some Moto 68K code that worked/didn't based on a asm("NOP"); inserted between functions (jump length changed). I'd hate to deal with a COMMENT causing the same sort of changes. – Michael Kohne Apr 20 at 16:44
add / show 5 more comments
vote up 134 vote down

From Java 1.2 SwingUtilities:

doRun.run();  // ... "a doo run run".
link|flag
add / show 6 more comments
vote up 133 vote down
/**
 * Always returns true.
 */
public boolean isAvailable() {
    return false;
}

Never rely on a comment...

link|flag
13 
I always tell my co-workers. "Comments don't run!!" – Oscar Reyes Mar 27 at 0:43
2 
I believe you meant, "never rely on the code". I'm sure the spec, design and requirements required a return code or true :) – gbjbaanb Mar 29 at 14:28
add / show 5 more comments
vote up 124 vote down

I went through a sleep-deprived coding run and started only writing comments that were quotes from Fight Club.

Still trawling through the code years later I find a comment that makes me laugh. Most of them just random thoughts. I did however keep my comments to lines ratio pretty good!


      // This shouldn't happen. The only way this can happen is if the JFileChooser has returned a File
      // that doesn't exist on the system. If this happens we can't recover, and there is more than likely a
      // rip in the space time continuum that the user is too distracted by to notice anything else.

  /**
   * This method leverages collective synergy to drive "outside of the box" thinking and formulate key
   * objectives into a win-win game plan with a quality-driven approach that focuses on empowering key players
   * to drive-up their core competencies and increase expectations with an all-around initiative to drive down
   * the bottom-line. I really wanted to work the word "mandrolic" in there, but that word always makes me
   * want to punch myself in the face.
   */
  private void updateFileCountLabel() {


link|flag
4 
The second one is great! What, no "paradigm-shifting"? – gnovice Jan 13 at 19:33
6 
Just to be fair, the first clause might happen if in between the user selecting the File, the File disappears, which might in fact happen on a network file system. Assumptions like that have bitten me in the past... – Kirk Wylie Apr 19 at 20:31
add / show 6 more comments
vote up 124 vote down

One of the most classic ones is the comment made by Pierre de Fermat about his well-known "Last theorem": "The margin of this page is a bit too small to write down the proof".

It took more than 350 years before the proof was found...

(According to wikipedia this is the original text:)

Cubum autem in duos cubos, aut quadratoquadratum in duos quadratoquadratos, et generaliter nullam in infinitum ultra quadratum potestatem in duos eiusdem nominis fas est dividere cuius rei demonstrationem mirabilem sane detexi. Hanc marginis exiguitas non caperet.

...and translated into English:

(It is impossible to separate a cube into two cubes, or a fourth power into two fourth powers, or in general, any power higher than the second into two like powers. I have discovered a truly marvellous proof of this, which this margin is too narrow to contain.)

link|flag
6 
It's interesting (to me at least) that the proof found 350 years later relied on mathematical techniques that were unavailable in Fermat's time, and was considerably longer than would fit in Fermat's margin. So, either he was mistaken, or there's a simple proof that remains a mystery. – Martin Oct 13 at 15:10
2 
Maybe Fermat wasn't wrong. If he'd found a simple proof, it would have fit in his margin. – Windows programmer Oct 14 at 6:25
8 
John Skeet would have found room... – annakata Dec 1 at 17:24
2 
Well, I read the (by the way great) book from Simon Singh about him: The guy was a writing a lot of things and said a lot of things without providing proof. Just as other attempted, he probably thought that he had found the proof, but it was also probably incorrect. – Roalt Dec 2 at 20:31
7 
@annakata - and Jon Skeet would kill you for typing the name of his evil twin. – Erik Dec 10 at 0:38
add / show 13 more comments
vote up 121 vote down

Many years ago (about 1994) I was working on a Oracle PRO*C application for a large multi-national software company that you will have heard of. The app I was working on was a massive Oracle application and they had a utility that ran overnight tidying up data and doing all sorts of aggregate calculations. Every time anything needed doing as a batch job, it got shoved into this utility and as you can imagine it became an absolute monstrosity. It was also notable for the tiny number of comments that it had for such a massive program.

One of the few comments it did have remains the finest comment I have ever seen for pure WTF'ness... I was trying to find a bug in a function which was hundreds of lines long and right in the middle of it was the only comment in the function:

/* I did this the other way */

To this day it is still the finest comment I have ever seen.

link|flag
4 
I like that. it's enigmatic, yet useless. – __ Oct 11 at 18:33
1 
It makes me wonder if there was a disagreement about how to do something and the guy very smuggly declares that he decided to do it his way. LOL – aaronls Apr 3 at 13:34
2 
I read it as "there is a right way to do this, a wrong way to do this, and..." – Ry Apr 4 at 18:09
2 
@Ry - ... my way ... – ldigas Apr 21 at 3:56
add / show 1 more comment
vote up 116 vote down
/* You are not meant to understand this */
link|flag
3 
Very reminiscent of the infamous "you are not expected to understand this" comment in the UNIX source code: cm.bell-labs.com/who/dmr/odd.html – Mark Bessey Oct 10 at 0:33
add / show 5 more comments
vote up 99 vote down
// Replaces with spaces the braces in cases where braces in places cause stasis
   $str = str_replace(array("\{","\}")," ",$str);
link|flag
4 
+1 - Pure genius. This should go on a t-shirt or something :-) – ldigas Apr 20 at 3:37
3 
Dr Seuss writes code? +1! – Blorgbeard Apr 22 at 9:29
add / show 3 more comments
vote up 96 vote down
//I am not sure why this works but it fixes the problem.

This was before a set of code that technically did fix the problem it was meant to but broke 3 other things....

link|flag
add / show 2 more comments
1 2 3 4 5 18 next

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