Source of the famous "Now you have two problems" quote

http://regex.info/blog/2006-09-15/247

As I mentioned in my previous post, my Mastering Regular Expressions book was just reviewed on Slashdot. One thing that struck me in reading all the resulting comments was the (several different copies of an) apparently famous quote that goes something like:

Some people, when confronted with a problem, think
“I know, I'll use regular expressions.”   Now they have two problems.

It's apparently quite well known, so it floors me that this is the first I've seen it. Despite being a manifestation of the ignorance discussed in my previous post, I can certainly appreciate it for its wit.

This quote is generally attributed to Jamie Zawinski (an early Netscape engineer) from a post on the comp.lang.emacs Usenet newsgroup. Unfortunately, there's never been a comp.lang.emacs newsgroup, which renders the whole attribution suspect. Oddly curious about it, I did some digging...

It turns out that the source of the mistaken comp.lang.emacs reference was a May 1998 comp.lang.python post by Fredrik Lundh, who used it as a cute quote in his sig. He's a prolific writer so the sig appeard wide and far, and many people picked up on it and started using it themselves, and the fame of the quote (along with an incorrect attribution) spread.

But it was indeed Jamie Zawinski who first said it, in a Usenet post on August 12, 1997. Unfortunately, it seems that Google Groups, which holds a repository of Usenet postings going back a thousand years, does not have this particular post in its database. If it would, the post would be at the end of this broken link.

[UPDATE Feb 2013: it seems now that the link is no longer broken; Jamie's original post is there]

[UPDATE Jan 2007: Jamie Zawinski added a comment to this post]

Actually, it seems that none of Jamie Zawinski's posts in the threads that spawned from this initial post are in Google's database. This is quite odd. I have been able to find parts of his posts quoted in the replies of others. It was a heated thread, so there's plenty to go on.

There was a thread in comp.emacs.xemacs and alt.religion.emacs in which the idea of embedding Perl into Emacs was proposed. (My first-thoughts comment on this idea is that it's fairly silly, since Emacs already has a powerful lisp interpreter in it. Lisp is odd, though, in that it's a vastly more regular language than Perl, yet arguably less readable. But I digress...).

The main goal of the guy making the original suggestion was to get better regular-expression handling into Emacs. Perl treats regular expressions as first-class language features, making them a breeze to work with. They're not that hard to work with in Emacs Lisp, but in any case, Emacs's regular expressions are much less powerful and have a syntax that's even less readable than that of Perl's, if that's possible. (If you look up “toothpicks, scattered” in the index of my book, it brings you to a page about Emacs regular-expression syntax. :-))

Two things must be understood about Jamie Zawinski when evaluating his comments about this idea: he despised Perl, and he spent a nontrivial chunk of his life tending to Emacs and its lisp system, to the point that he considered it a religion. I can understand and appreciate having that kind of passion about something. In any case, talk about embedding Perl into Emacs would be heresy of the highest order.

It seems that during the course of this thread, Jamie referenced a three-month-old post by Kelly Murray in which Kelly sarcastically suggests something even more outlandishly silly (treating all data simply as a stream of bytes). Apparently, Jamie didn't realize that it was meant to be humorous or sarcastic. Combining this with the idea of embedding Perl into Emacs just for its regular-expression handling, and it was enough to put him over the edge, and Jamie lashed out:

Jamie Zawinski <[email protected]> wrote on Tue, 12 Aug 1997 13:16:22 -0700:

You are trying to shoehorn your existing preconceptions of how one
should program onto a vastly different (and older, and more internally
consistent) model.  I suggest your time would be better spent learning
and understanding that other model, and learn to use it properly, and
learn what it can and cannot do, rather than infecting it with this new
cancer out of ignorance.
The notion that everything is a stream of bytes is utterly braindead.
The notion that regexps are the solution to all problems is equally
braindead.
Just like Perl.
Some people, when confronted with a problem, think “I know,
I'll use regular expressions.”  Now they have two problems.

Jamie really disliked Perl, and in the ensuing discussion had a few other comments about it. In this snippet he responds to a “what's wrong with Perl?” question:

> What's wrong with perl?
It combines all the worst aspects of C and Lisp: a billion different
sublanguages in one monolithic executable.  It combines the power of
C with the readability of PostScript.

(I also appreciate that last sentence for its wit.)

A few days later it became clear that it's not only Perl itself, that he's upset with, but how he perceives it's often used:

Perl's nature encourages the use of regular expressions almost to the
exclusion of all other techniques; they are far and away the most
“obvious” (at least, to people who don't know any better) way to get
from point A to point B.

Mind you, he's keeping a fair mind about himself, allowing that Perl has some merit:

Perl is not *all* bad; just mostly

I find that the next statement is quite telling:

Maybe Java will save the day, once someone straps a Java front end onto
the gcc back end.

Later, he says:

The heavy use of regexps in Perl is due to them being far and
away the most obvious hammer in the box.
The heavy use of regexps in Emacs is due almost entirely to
performance issues: because of implementation details, Emacs
code that uses regexps will almost always run faster than
code that uses more traditional control structures.
Based solely on how lame the syntax is, and how generally
unmaintainable regexp-based code is, Perl would be very close
to the bottom of my list of choices for most tasks.

I'd agree with that first paragraph if the “most obvious hammer” phrase were changed to “most appropriate hammer”, because Perl is often used for advanced text processing, and that's exactly where regular expressions shine. That being said, I've written plenty of system tools in Perl that are mostly or completely devoid of regular expressions. I use them when they're the best tool, and don't when they're not.

Anyway, it was a colossal waste of time for me to track this all down (and for you to read this far :-)), but once I got on the trail it was hard to get off.

As cute as the “now you have two problems” quote is, it seems that Jamie wasn't the first to come up with the idea. The same quote (but with AWK rather than regular expressions as the punch line) shows up in the sig of John Myers post from 1988, where he credits a “D. Tilbrook” for it:

“Whenever faced with a problem, some people say `Lets use AWK.'
  Now, they have two problems.” -- D. Tilbrook

I've also seen the AWK quote credited to a “Zalman Stern” (in this 1993 post of quotations on alt.quotations). [Update Dec 2020: see below for more on D. Tilbrook and Zalman Stern]

As Mark Bessey notes in a post on his blog, it's an all-purpose joke. I can imagine that it was first used in by servicemen during WW2, along the lines of “Some people think `Let's ask the officers'....”.

UPDATES:

January 10th, 2007: this post made it high enough on reddit that it made my pageview jump by a factor of 10, and in doing so, brought in comments with more details on the history of the phrase than I had been able to unearth myself. Excellent! See the comment section for details.


January 15th, 2007: Jamie Zawinski himself commented on this post.


December 16th, 2020: This post was referenced on Hacker News, and in those comments users Jim Westergren and dang referenced other times this post has come up and resulted in interesting comments (in 2010, 2013, and 2015). The middle reference was supplemented with a with a great top comment note, so I took a look and indeed the top comment by Mike Schiraldi is interesting:

There's actually a little more to the story than that. On 2007-01-09, I wrote to David Tilbrook:

    Hi David .. I came across a web page
    (https://regex.info/blog/2006-09-15/247) investigating the source of the
    following quotation:
        "Whenever faced with a problem, some people say `Lets use _____.'
        Now, they have two problems."
    The author of the site seems to have gone through a lot of trouble to
    hunt down the original author of the quote. The best he was able to do
    was discover a Usenet sig from 1988 attributed to "D. Tilbrook."
    I was wondering if this was you -- if so, I think you should contact the
    author to set the record straight. His post was recently linked from the
    news aggregator site Reddit, at
    http://programming.reddit.com/info/xlov/comments and quite a few people
    have been reading the story and discussing the quote.
  

He wrote back:

    I can lay claim to being the author, but I cannot remember when or where
    I first used it.
    Zalman Stern worked for me at CMU so may have quoted me, hence the
    attribution to him.
    Actually one of the funnier incidents regarding my "famous" quotes was:
        "Software is the only business in which adding extra lanes to the
        Golden Gate bridge would be called maintenance" -- David Tilbrook -
        circa 1981
    I was at a meeting when the speaker used this quote and attributed it to
    David Parnas -- I was appropriately indignant.
    -- david
    P.S.: Do we know each other?
  

The answer to his postscript was no. 🙂

And he later replied again to add:

    By the way, I think I coined the phrase at a European conference in
    Dublin circa 1985.
    I was talking about the difficulty maintaining portable software when
    supposedly "standard" tools (e.g., awk(1)) differed from system to
    system.
    Then later someone pointed out to me that it was appearing in various
    signature lines which I suppose led to its being spread.
  

I forwarded it all to Jeffrey Friedl (the author of the linked post), but I guess he figured the comments already did a good job covering the story, or maybe he wanted to get explicit permission from David to repost the emails but never got it. But I think David's reply is interesting and compuhistoric enough that I don't want it to die in my GMail archives -- and so I'm posting it again here.

My initial reaction to reading this comment in 2020, 13 years after it was written, was that I must not have received that email, but there it is in my archives, with permission from Mike to repost it here. I guess I didn't get around to it then, doh! Uh, better late than never?


{
"by": "not_a_boat",
"descendants": 0,
"id": 40246508,
"score": 1,
"time": 1714736379,
"title": "Source of the famous \"Now you have two problems\" quote",
"type": "story",
"url": "http://regex.info/blog/2006-09-15/247"
}
{
"author": "yakugo",
"date": "2020-12-16T12:00:00.000Z",
"description": null,
"image": null,
"logo": null,
"publisher": null,
"title": "Jeffrey Friedl’s Blog » Source of the famous “Now you have two problems” quote",
"url": "https://regex.info/blog/2006-09-15/247"
}
{
"url": "http://regex.info/blog/2006-09-15/247",
"title": "Jeffrey Friedl's Blog » Source of the famous “Now you have two problems” quote",
"description": "As I mentioned in my previous post, my Mastering Regular Expressions book was just reviewed on Slashdot. One thing that struck me in reading all the resulting comments was the (several different copies of an)...",
"links": [
"https://regex.info/blog/2006-09-15/247",
"http://regex.info/blog/2006-09-15/247"
],
"image": "",
"content": "<div>\n<p>\nAs I mentioned in my <a target=\"_blank\" href=\"http://regex.info/blog/2006-09-14/246\">previous post</a>, my <a target=\"_blank\" href=\"http://shop.oreilly.com/product/9780596528126.do\"><i>Mastering Regular Expressions</i></a> book was\njust <a target=\"_blank\" href=\"http://books.slashdot.org/article.pl?sid=06/09/13/147213\">reviewed\non Slashdot</a>. <span>One thing</span> that struck me in reading all the\nresulting comments was the (several different copies of an) apparently\nfamous quote that goes something like:</p>\n<p><b>\nSome people, when confronted with <span>a problem,</span> think\n<br />“I know, I'll use regular expressions.”\n  Now they have two problems.\n</b></p>\n<p>It's apparently quite well known, so it floors me that this is the first\nI've seen it. Despite being <span>a manifestation</span> of the ignorance discussed in\nmy <a target=\"_blank\" href=\"http://regex.info/blog/2006-09-14/246\">previous\npost</a>, <span>I can certainly</span> appreciate it for its wit.</p>\n<p>This quote is generally attributed to <a target=\"_blank\" href=\"http://www.jwz.org/\">Jamie Zawinski</a> (an early Netscape engineer) from\n<span>a post</span> on the <b>comp.lang.emacs</b> Usenet newsgroup. Unfortunately,\nthere's never been a <b>comp.lang.emacs</b> newsgroup, which renders the\nwhole attribution suspect. Oddly curious about it, <span>I did some</span>\ndigging...</p>\n<p>It turns out that the source of the mistaken comp.lang.emacs reference\nwas <span>a May</span> 1998 <b>comp.lang.python</b> <a target=\"_blank\" href=\"http://groups.google.com/group/comp.lang.python/msg/85d15c93e56c5236?hl=en\">post\nby Fredrik Lundh</a>, who used it as <span>a cute</span> quote in his <a target=\"_blank\" href=\"http://en.wikipedia.org/wiki/Signature_block\">sig</a>. <span>He's a prolific</span> writer so the sig appeard wide and far, and many people picked up on it and started using it\nthemselves, and the fame of the quote (along with an incorrect attribution)\nspread.</p>\n<p>But it was indeed Jamie Zawinski who first said it, in <span>a Usenet</span> post on\n<span>August 12,</span> 1997. Unfortunately, it seems that Google Groups, which holds <span>a\nrepository</span> of Usenet postings going back <span>a thousand</span> years, does not have\nthis particular post in its database.\n<span>If it would</span>, the post would be at the\nend of this <a target=\"_blank\" href=\"http://groups.google.com/group/alt.religion.emacs/msg/b59f4a602fb68f0a?hl=en\">broken link</a>.</p>\n<p>[<b>UPDATE Feb 2013:</b> it seems now that the link is no longer broken; Jamie's original post is there]</p>\n<p>[<b>UPDATE Jan 2007:</b> Jamie Zawinski <a target=\"_blank\" href=\"http://regex.info/blog/2006-09-15/247#comment-3085\">added <span>a comment</span></a> to this post]</p>\n<p>Actually, it seems that none of Jamie Zawinski's posts in the threads\nthat spawned from this initial post are in Google's database. This is quite\nodd. <span>I have been</span> able to find parts of his posts quoted in the replies of\nothers. <span>It was a</span> heated thread, so there's plenty to go on.</p>\n<p>There was <a target=\"_blank\" href=\"http://groups.google.com/group/comp.emacs.xemacs/browse_frm/thread/b21dbf075be84ab/989698966fb25e7a?hl=en#989698966fb25e7a\"><span>a\nthread</span></a> in <b>comp.emacs.xemacs</b> and <b>alt.religion.emacs</b> in\nwhich the idea of embedding Perl into Emacs was proposed. (My first-thoughts\ncomment on this idea is that it's fairly silly, since Emacs already has <span>a\npowerful</span> lisp interpreter in it. Lisp is odd, though, in that it's <span>a vastly</span>\nmore regular language than Perl, yet arguably less readable. <span>But I digress</span>...).</p>\n<p>The main goal of the guy making the original suggestion was to get\nbetter regular-expression handling into Emacs. Perl treats regular\nexpressions as first-class language features, making them <span>a breeze</span> to work\nwith. They're not that hard to work with in Emacs Lisp, but in any case,\nEmacs's regular expressions are much less powerful and have <span>a syntax</span> that's\neven less readable than that of Perl's, if that's possible. (If you look up\n“toothpicks, scattered” in the index of my book, it brings you to <span>a page</span>\nabout Emacs regular-expression syntax. :-))</p>\n<p>Two things must be understood about Jamie Zawinski when evaluating his\ncomments about this idea: he despised Perl, and he spent <span>a nontrivial</span> chunk\nof his life tending to Emacs and its lisp system, to the point that he <a target=\"_blank\" href=\"http://www.jwz.org/hacks/\">considered it <span>a religion</span></a>. <span>I can understand</span> and appreciate having that kind of passion about something. <span>In any case</span>, talk about embedding Perl into Emacs would be heresy of the\nhighest order.</p>\n<p>It seems that during the course of this thread, Jamie referenced <span>a\nthree</span>-month-old <a target=\"_blank\" href=\"http://groups.google.com/group/comp.lang.functional/msg/84763c6d9185178b?dmode=source&amp;hl=en\">post\nby Kelly Murray</a> in which Kelly sarcastically suggests something even\nmore outlandishly silly (treating all data simply as <span>a stream</span> of bytes).\nApparently, Jamie didn't realize that it was meant to be humorous or\nsarcastic. Combining this with the idea of embedding Perl into Emacs just\nfor its regular-expression handling, and it was enough to put him over the\nedge, and Jamie lashed out:</p>\n<div>\n<p><b>Jamie Zawinski &lt;[email protected]&gt; wrote on Tue, 12 Aug 1997 13:16:22 -0700:</b></p><div>\n<pre>You are trying to shoehorn your existing preconceptions of how one\nshould program onto a vastly different (and older, and more internally\nconsistent) model. I suggest your time would be better spent learning\nand understanding that other model, and learn to use it properly, and\nlearn what it can and cannot do, rather than infecting it with this new\ncancer out of ignorance.\nThe notion that everything is a stream of bytes is utterly braindead.\nThe notion that regexps are the solution to all problems is equally\nbraindead.\nJust like Perl.\nSome people, when confronted with a problem, think “I know,\nI'll use regular expressions.” Now they have two problems.\n</pre></div></div>\n<p>Jamie really disliked Perl, and in the ensuing discussion had <span>a few</span>\nother comments about it. In this <a target=\"_blank\" href=\"http://groups.google.com/group/comp.emacs.xemacs/msg/3cd6d41ace570ac9?hl=en&amp;\">snippet</a>\nhe responds to a “what's wrong with Perl?” question:</p>\n<div>\n<pre>&gt; What's wrong with perl?\nIt combines all the worst aspects of C and Lisp: a billion different\nsublanguages in one monolithic executable. It combines the power of\nC with the readability of PostScript.\n</pre></div>\n<p>(I also appreciate that last sentence for its wit.)</p>\n<p>A few days later it <a target=\"_blank\" href=\"http://groups.google.com/group/alt.religion.emacs/msg/991308e21103bb76?utoken=y6jr3TIAAAAHNAhXg1IfVuilpJeccStLGAmrE6vypPa-ZuYI0HTVtv3oCXeNlLzgllDXfF-UfC4p_tUz1V7g4RazWzRxYDBn\">became\nclear</a> that it's not only Perl itself, that he's upset with, but how he\nperceives it's often used:</p>\n<div>\n<pre>Perl's nature encourages the use of regular expressions almost to the\nexclusion of all other techniques; they are far and away the most\n“obvious” (at least, to people who don't know any better) way to get\nfrom point A to point B.\n</pre></div>\n<p>Mind you, he's keeping a fair mind about himself, allowing that Perl has some merit:</p>\n<div>\n<pre>Perl is not *all* bad; just mostly\n</pre></div>\n<p>I find that the next statement is quite telling:</p>\n<div>\n<pre>Maybe Java will save the day, once someone straps a Java front end onto\nthe gcc back end.\n</pre></div>\n<p>Later, <a target=\"_blank\" href=\"http://groups.google.com/group/comp.emacs.xemacs/msg/2d0462d725c19d16?hl=en\">he says</a>:</p>\n<div>\n<pre>The heavy use of regexps in Perl is due to them being far and\naway the most obvious hammer in the box.\nThe heavy use of regexps in Emacs is due almost entirely to\nperformance issues: because of implementation details, Emacs\ncode that uses regexps will almost always run faster than\ncode that uses more traditional control structures.\nBased solely on how lame the syntax is, and how generally\nunmaintainable regexp-based code is, Perl would be very close\nto the bottom of my list of choices for most tasks.\n</pre></div>\n<p>I'd agree with that first paragraph if the “most obvious\nhammer” phrase were changed to “most appropriate hammer”,\nbecause Perl is often used for advanced text processing, and that's exactly\nwhere regular expressions shine. That being said, I've written plenty of\nsystem tools in Perl that are mostly or completely devoid of regular\nexpressions. <span>I use them</span> when they're the best tool, and don't when they're\nnot.</p>\n<p>Anyway, it was a colossal waste of time for me to track this all down\n(and for you to read this far :-)), but once <span>I got</span> on the trail it was hard\nto get off.</p>\n<p>As cute as the “now you have two problems” quote is, it seems that Jamie wasn't the first to come up with the idea. <span>The same quote</span> (but with <b>AWK</b> rather than <b>regular expressions</b> as the punch line) shows up in the sig\nof <a target=\"_blank\" href=\"http://groups.google.com/group/comp.sys.ibm.pc.rt/msg/8c9ba376ae1c250c?hl=en\">John Myers post from 1988</a>,\nwhere he credits a “D. Tilbrook” for it:</p>\n<p><b>\n“Whenever faced with <span>a problem,</span> some people say `Lets use AWK.'\n<br />  Now, they have two problems.” -- D. Tilbrook\n</b></p>\n<p>I've also seen the AWK quote credited to a “Zalman Stern”\n(in this 1993 <a target=\"_blank\" href=\"http://groups.google.com/group/alt.quotations/msg/dcee3d3682dd0470?hl=en\">post\nof quotations</a> on <b>alt.quotations</b>). <b>[Update Dec 2020</b>: <a target=\"_blank\" href=\"http://regex.info/blog/2006-09-15/247#update-3\">see below</a> for more on <span>“</span>D. Tilbrook<span>”</span> and <span>“</span>Zalman Stern<span>”</span><b>]</b></p>\n<p> <span>As Mark Bessey</span> notes in a <a target=\"_blank\" href=\"http://codemines.blogspot.com/2006/08/now-they-have-two-problems.html\">post\non his blog</a>, it's an all-purpose joke. <span>I can imagine</span> that it was first used in by servicemen during WW2, along the\nlines of “Some people think `Let's ask the officers'....”.\n</p>\n<div><p><b>UPDATES:</b></p><p><b>January 10th, 2007</b>: this post made\nit high enough on <a target=\"_blank\" href=\"http://reddit.com/\">reddit</a> that it made my\npageview jump by <span>a factor</span> of 10, and in doing so, brought in comments with\nmore details on the history of the phrase than <span>I had</span> been able to unearth\nmyself. Excellent! <span>See the comment</span> section for details.\n</p>\n<hr />\n<p>\n<b>January 15th, 2007</b>: Jamie Zawinski himself <a target=\"_blank\" href=\"http://regex.info/blog/2006-09-15/247#comment-3085\">commented</a> on this post.</p>\n<hr />\n<p><b>December 16th, 2020</b>: This post was referenced on <a target=\"_blank\" href=\"https://news.ycombinator.com/item?id=25415441\">Hacker News</a>, and in those comments\nusers <a target=\"_blank\" href=\"https://news.ycombinator.com/user?id=JimWestergren\">Jim Westergren</a>\nand <a target=\"_blank\" href=\"https://news.ycombinator.com/user?id=dang\">dang</a> referenced other times this post has come up and resulted in interesting\ncomments (in <a target=\"_blank\" href=\"https://news.ycombinator.com/item?id=1195704\">2010</a>, <a target=\"_blank\" href=\"https://news.ycombinator.com/item?id=5187686\">2013</a>,\nand <a target=\"_blank\" href=\"https://news.ycombinator.com/item?id=10083420\">2015</a>). <span>The middle</span> reference was supplemented with a <span>“</span>with <span>a great</span> top comment<span>”</span>\nnote, so <span>I took</span> <span>a look</span> and indeed the <a target=\"_blank\" href=\"https://news.ycombinator.com/item?id=5188060\">top comment</a> by <a target=\"_blank\" href=\"https://news.ycombinator.com/user?id=raldi\">Mike Schiraldi</a> is interesting:</p>\n<div>\n <p>There's actually a little more to the story than that. On 2007-01-09, <span>I wrote</span> to David Tilbrook:</p><pre><code> Hi David .. I came across a web page\n (https://regex.info/blog/2006-09-15/247) investigating the source of the\n following quotation:\n \"Whenever faced with a problem, some people say `Lets use _____.'\n Now, they have two problems.\"\n The author of the site seems to have gone through a lot of trouble to\n hunt down the original author of the quote. The best he was able to do\n was discover a Usenet sig from 1988 attributed to \"D. Tilbrook.\"\n I was wondering if this was you -- if so, I think you should contact the\n author to set the record straight. His post was recently linked from the\n news aggregator site Reddit, at\n http://programming.reddit.com/info/xlov/comments and quite a few people\n have been reading the story and discussing the quote.\n </code></pre>\n<p>He wrote back:</p><pre><code> I can lay claim to being the author, but I cannot remember when or where\n I first used it.\n Zalman Stern worked for me at CMU so may have quoted me, hence the\n attribution to him.\n Actually one of the funnier incidents regarding my \"famous\" quotes was:\n \"Software is the only business in which adding extra lanes to the\n Golden Gate bridge would be called maintenance\" -- David Tilbrook -\n circa 1981\n I was at a meeting when the speaker used this quote and attributed it to\n David Parnas -- I was appropriately indignant.\n -- david\n P.S.: Do we know each other?\n </code></pre>\n<p>The answer to his postscript was no. 🙂</p>\n<p>And he later replied again to add:</p><pre><code> By the way, I think I coined the phrase at a European conference in\n Dublin circa 1985.\n I was talking about the difficulty maintaining portable software when\n supposedly \"standard\" tools (e.g., awk(1)) differed from system to\n system.\n Then later someone pointed out to me that it was appearing in various\n signature lines which I suppose led to its being spread.\n </code></pre>\n<p>I forwarded it all to Jeffrey Friedl (the author of the linked post), but <span>I\nguess</span> he figured the comments already did <span>a good</span> job covering the story, or\nmaybe he wanted to get explicit permission from David to repost the emails\nbut never got it. <span>But I think</span> David's reply is interesting and compuhistoric\nenough that <span>I don't</span> want it to die in my GMail archives -- and so I'm\nposting it again here.</p>\n</div>\n<p>My initial reaction to reading this comment in 2020, 13 years after it was written, was that <span>I must</span> not have received that email,\nbut there it is in my archives, with permission from Mike to repost it here. <span>I guess</span> <span>I didn't</span> get around to it then, doh!\nUh, better late than never?</p>\n</div>\n <br />\n </div>",
"author": "https://plus.google.com/+JeffreyFriedl/",
"favicon": "",
"source": "regex.info",
"published": "",
"ttr": 375,
"type": ""
}