User Jeff Atwood - Stack Overflowmost recent 30 from stackoverflow.com2009-11-09T08:43:24Zhttp://stackoverflow.com/feeds/user/1http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1686023/the-ultimate-fffffuuuuuuuuu-programming-moment/1689092#1689092109Answer by Jeff Atwood for The ultimate "FFFFFUUUUUUUUU" programming moment ?Jeff Atwood2009-11-06T17:30:08Z2009-11-06T17:48:56Z<p>Courtesy of <a href="http://stackoverflow.com/users/87234/gman">GMan</a>:</p>
<p><img src="http://imgur.com/zC84q.png"></p>
http://stackoverflow.com/questions/1667029/what-was-the-biggest-mental-leap-hurdle-you-had-to-overcome-in-your-career/1673796#16737962Answer by Jeff Atwood for What was the biggest mental leap/hurdle you had to overcome in your career?Jeff Atwood2009-11-04T13:38:26Z2009-11-04T13:38:26Z<p>I used to <a href="http://www.codinghorror.com/blog/archives/000962.html" rel="nofollow">think my job as a programmer was to write code</a>.</p>
<blockquote>
<p>Software developers think their job is writing code. But it's not. Their job is to solve the customer's problem. Sure, our preferred medium for solving problems is software, and that does involve writing code. But let's keep this squarely in context: writing code is something you have to do to deliver a solution. It is not an end in and of itself. </p>
</blockquote>
http://stackoverflow.com/questions/11/how-do-i-calculate-relative-time50How do I calculate relative time?Jeff Atwood2008-07-31T23:55:37Z2009-10-30T03:27:52Z
<p>Given a specific DateTime value, how do I display relative time, like</p>
<ul>
<li>2 hours ago</li>
<li>3 days ago</li>
<li>a month ago</li>
</ul>
<p>etc, etc...?</p>
http://stackoverflow.com/questions/275878/firefox-and-ssl-secerrorunknownissuer/1639022#16390221Answer by Jeff Atwood for Firefox and SSL: sec_error_unknown_issuerJeff Atwood2009-10-28T18:05:20Z2009-10-28T18:05:20Z<p>We had this problem and it was very much Firefox specific -- could only repro in that browser, Safari, IE8, Chrome, etc were all fine.</p>
<p>Fixing it required <strong>getting an updated cert from Comodo</strong> and installing it.</p>
<p>No idea what magic they changed, but it was definitely something in the cert that Firefox did NOT like.</p>
http://stackoverflow.com/questions/8472/practical-non-image-based-captcha-approaches87Practical non-image based CAPTCHA approaches?Jeff Atwood2008-08-12T04:59:35Z2009-10-22T21:20:42Z
<p>It looks like we'll be adding <a href="http://en.wikipedia.org/wiki/Captcha" rel="nofollow">CAPTCHA</a> support to Stack Overflow. This is necessary to prevent bots, spammers, and other malicious scripted activity. We only want human beings to post or edit things here!</p>
<p>We'll be using a JavaScript (JQuery) CAPTCHA as a first line of defense</p>
<p><a href="http://docs.jquery.com/Tutorials:Safer_Contact_Forms_Without_CAPTCHAs" rel="nofollow">http://docs.jquery.com/Tutorials:Safer_Contact_Forms_Without_CAPTCHAs</a></p>
<p>The advantage of this approach is that, <strong>for most people, the CAPTCHA won't ever be visible!</strong></p>
<p>However, for people with JavaScript disabled, we still need a fallback -- and this is where it gets tricky.</p>
<p>I have written a <a href="http://www.codeproject.com/KB/custom-controls/CaptchaControl.aspx" rel="nofollow">traditional CAPTCHA control for ASP.NET</a> which we can re-use.</p>
<p><img src="http://www.codeproject.com/KB/custom-controls/CaptchaControl/CaptchaImage-medium.jpg"/></p>
<p>However, I'd prefer to go with something textual to avoid the overhead of creating all these images on the server with each request.</p>
<p>I've seen things like..</p>
<ul>
<li>ASCII text captcha: <code>\/\/(_)\/\/</code></li>
<li>math puzzles: what is 7 minus 3 times 2?</li>
<li>trivia questions: what tastes better, a toad or a popsicle?</li>
</ul>
<p>Maybe I'm just tilting at windmills here, but I'd like to have a less resource intensive, non-image based <code><noscript></code> compatible CAPTCHA if possible.</p>
<p>Ideas?</p>
http://stackoverflow.com/questions/9/how-do-i-calculate-someones-age-in-c49How do I calculate someone's age in C#?Jeff Atwood2008-07-31T23:40:59Z2009-10-20T15:07:22Z
<p>Given a DateTime representing their birthday, how do I calculate someone's age? </p>
http://stackoverflow.com/questions/1379156/how-to-configure-dotnetopenid-in-an-session-less-load-balancing-environment/1574165#15741653Answer by Jeff Atwood for How to configure dotNetOpenId in an session less load balancing environmentJeff Atwood2009-10-15T18:21:25Z2009-10-15T18:21:25Z<p>Here's how we're enabling stateless mode:</p>
<pre><code>var uri = new Uri(Request.Url, Request.RawUrl);
var openid = new OpenIdRelyingParty(null, uri,
Request.HttpMethod == "GET" ? Request.QueryString : Request.Form);
</code></pre>
<p>Seems to work so far, though per Andrew there's a small performance hit. Not sure that matters since login is a fairly rare activity.</p>
http://stackoverflow.com/questions/1561242/should-i-pay-out-of-pocket-to-attend-a-conference/1562821#15628215Answer by Jeff Atwood for Should I pay out of pocket to attend a conference?Jeff Atwood2009-10-13T20:50:52Z2009-10-13T20:50:52Z<p>In my humble opinions, conferences are <em>only</em> worth it if you use them for <strong>networking first</strong> and <strong>learning second</strong>.</p>
<p>In this era of pervasive internet, you can learn anywhere. The unique opportunity here is having so many of your peers in the same room, and that's what you should be capitalizing on!</p>
http://stackoverflow.com/questions/1545256/why-does-mvc-think-multiple-different-addresses-to-the-same-page-are-seo-friendly/1546441#15464411Answer by Jeff Atwood for Why does MVC think multiple different addresses to the same page are SEO friendly?Jeff Atwood2009-10-09T22:53:50Z2009-10-09T22:53:50Z<p>So rewrite your URLs to be all lower case.</p>
<p><a href="http://ruslany.net/2009/04/10-url-rewriting-tips-and-tricks/" rel="nofollow">http://ruslany.net/2009/04/10-url-rewriting-tips-and-tricks/</a></p>
<pre><code><rule name="Convert to lower case" stopProcessing="true">
<match url=".*[A-Z].*" ignoreCase="false" />
<action type="Redirect" url="{ToLower:{R:0}}" redirectType="Permanent" />
</rule>
</code></pre>
<p>Problem solved!</p>
http://stackoverflow.com/questions/1536120/rewriting-urls-from-https-to-http-in-iis73Rewriting URLs from https:// to http:// in IIS7Jeff Atwood2009-10-08T07:21:04Z2009-10-08T08:11:06Z
<p>I'm trying to rewrite urls from the form:</p>
<pre><code>https://example.com/about
</code></pre>
<p>to the form</p>
<pre><code>http://example.com/about
</code></pre>
<p>using <a href="http://www.iis.net/extensions/URLRewrite" rel="nofollow">IIS7 URL rewriting</a>: </p>
<pre><code> <!-- http:// to https:// rule -->
<rule name="ForceHttpsBilling" stopProcessing="true">
<match url="(.*)billing/(.*)" ignoreCase="true" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="false" />
</conditions>
<action type="Redirect" redirectType="Found" url="https://{HTTP_HOST}{REQUEST_URI}" />
</rule>
<!-- https:// to http:// rule -->
<rule name="ForceNonHttps" stopProcessing="true">
<match url="(.*)billing/(.*)" ignoreCase="true" negate="true" />
<conditions>
<add input="{SERVER_PORT}" pattern="^443$" />
</conditions>
<action type="Redirect" redirectType="Found" url="http://{HTTP_HOST}{REQUEST_URI}" />
</rule>
</code></pre>
<p><s>I'm at a loss; I've been browsing the web for examples and trying every syntax I can think of. The rewrite rules I specify simply don't appear to work <i>at all</i> for any https requests, as if all the <code>https://</code> requests are flat out invisible to the rewrite engine. </s></p>
<p>rules work fine; see answer below.</p>
http://stackoverflow.com/questions/1536120/rewriting-urls-from-https-to-http-in-iis7/1536342#15363425Answer by Jeff Atwood for Rewriting URLs from https:// to http:// in IIS7Jeff Atwood2009-10-08T08:11:06Z2009-10-08T08:11:06Z<p>Turns out that <strong>I had port :443 bound to a different website!</strong></p>
<p>The above rewrite rules work fine for http:// to https:// rewriting and vice-versa -- though there might be more optimal or simple ways to do it.</p>
<p>Leaving this question here for future voyagers to find, as I didn't see many good examples of the https:// to http:// rewriting scenario on the web.</p>
http://stackoverflow.com/questions/136443/why-doesnt-ie7-copy-precode-blocks-to-the-clipboard-correctly18Why doesn't IE7 copy <pre><code> blocks to the clipboard correctly?Jeff Atwood2008-09-25T21:58:05Z2009-09-11T23:29:41Z
<p>We've noticed that IE7 has an odd behavor with code blocks posted on Stack Overflow. For example, this little code block:</p>
<pre><code>public PageSizer(string href, int index)
{
HRef = href;
PageIndex = index;
}
</code></pre>
<p>Copy and pasted from IE7, ends up like this:</p>
<pre>
public PageSizer(string href, int index){ HRef = href; PageIndex = index; }
</pre>
<p>Not exactly what we had in mind.. the underlying HTML source actually looks fine; if you View Source, you'll see this:</p>
<pre><code><pre><code>public PageSizer(string href, int index)
{
HRef = href;
PageIndex = index;
}
</code></pre>
</code></pre>
<p>So what are we doing wrong? Why can't IE7 copy and paste this HTML in a rational way?</p>
<blockquote>
<p>Update: <strong>this specifically has to do with <code><pre></code> <code><code></code> blocks that are being modified at runtime via JavaScript.</strong> The native HTML does render and copy correctly; it's the JavaScript modified version of that HTML which doesn't behave as expected. Note that copying and pasting into WordPad or Word works because IE is putting different content in the rich text clipboard compared to the plain text clipboard that Notepad gets its data from.</p>
</blockquote>
http://stackoverflow.com/questions/1351074/escaping-single-quote-in-string-format4Escaping single quote in String.Format()Jeff Atwood2009-08-29T10:24:55Z2009-08-29T14:56:23Z
<p>I have been all over the 'tubes and I can't figure this one out. Might be simple.</p>
<p>The following <code>String.Format</code> call:</p>
<pre><code>return dt.ToString("MMM d yy 'at' H:mmm");
</code></pre>
<p>Correctly returns this:</p>
<blockquote>
<p>Sep 23 08 at 12:57</p>
</blockquote>
<p>Now let's say I want to add a single quote before the year, to return this:</p>
<blockquote>
<p>Sep 23 '08 at 12:57</p>
</blockquote>
<p>Since the single quote is a reserved escape character, <strong>how do I escape the single quote to get it to display?</strong></p>
<p>I have tried double, triple, and quad single quotes, with no luck.</p>
http://stackoverflow.com/questions/642954/iis7-cache-control/1304839#13048393Answer by Jeff Atwood for IIS7 Cache-Control Jeff Atwood2009-08-20T08:42:17Z2009-08-20T08:42:17Z<p>If you want to set the Cache-Control header, there's nothing in the IIS7 UI to do this, sadly.</p>
<p>You can however drop this web.config in the root of the folder or site where you want to set it:</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
</staticContent>
</system.webServer>
</configuration>
</code></pre>
<p>That will inform the client to cache content for 7 days in that folder and all subfolders. </p>
<p>You can also do this by editing the IIS7 metabase via <code>appcmd.exe</code>, like so:</p>
<pre>
\Windows\system32\inetsrv\appcmd.exe
set config "Default Web Site/folder"
-section:system.webServer/staticContent
-clientCache.cacheControlMode:UseMaxAge
\Windows\system32\inetsrv\appcmd.exe
set config "Default Web Site/folder"
-section:system.webServer/staticContent
-clientCache.cacheControlMaxAge:"7.00:00:00"
</pre>
http://stackoverflow.com/questions/337704/parameterizing-a-sql-in-clause50Parameterizing a SQL IN clause?Jeff Atwood2008-12-03T16:16:43Z2009-08-19T21:59:00Z
<p>How do I parameterize a query containing an IN clause with a variable number of arguments, like this one?</p>
<pre><code>select * from Tags
where Name in ('ruby','rails','scruffy','rubyonrails')
order by Count desc
</code></pre>
<p>In this query, the number of arguments could be anywhere from 1 to 5.</p>
<p>I would prefer not to use a dedicated stored procedure for this (or XML), but if there is some fancy SQL Server 2008 specific way of doing it elegantly, I am open to that.</p>
http://stackoverflow.com/questions/1051847/why-does-tokyo-tyrant-slow-down-exponentially-even-after-adjusting-bnum/1253792#12537920Answer by Jeff Atwood for Why does tokyo tyrant slow down exponentially even after adjusting bnum?Jeff Atwood2009-08-10T08:48:28Z2009-08-10T08:48:28Z<p><a href="http://bjclark.me/2009/08/04/nosql-if-only-it-was-that-easy/" rel="nofollow">Conclusion: Doesn't Scale</a>:</p>
<blockquote>
<p>We tried to insert 160mil 2k -20k documents into a single Tokyo Tyrant server, and performance quickly dropped off and kept going down. You could have had a nice holiday skiing on the graph of inserts/sec. This is pretty typical of anything that you write to a disk. The more you write, the slower it goes. We could distribute the write easily, because Tokyo doesn’t scale.</p>
</blockquote>
http://stackoverflow.com/questions/477913/how-do-i-remove-etag-headers-from-iis7/1250987#12509872Answer by Jeff Atwood for How do I remove eTag headers from IIS7?Jeff Atwood2009-08-09T09:06:39Z2009-08-09T09:06:39Z<p>You would think doing this in the web.config would work to disable ETags in IIS7</p>
<pre><code><httpProtocol>
<customHeaders>
<remove name="ETag" />
</customHeaders>
</httpProtocol>
</code></pre>
<p>But, sadly, sniffer trace confirms that it does not...</p>
<p>Nor does setting the ETag to blank quotes as other sites have suggested. That doesn't work either:</p>
<pre><code><httpProtocol>
<customHeaders>
<add name="ETag" value="&quot;&quot;" />
</customHeaders>
</httpProtocol>
</code></pre>
<p>That just causes this to be sent down</p>
<pre><code>ETag: "8ee1ce1acf18ca1:0",""
</code></pre>
<p>Which is, er.. not what I had in mind.</p>
http://stackoverflow.com/questions/1058783/regular-expression-to-find-and-remove-duplicate-words/1212118#12121181Answer by Jeff Atwood for Regular expression to find and remove duplicate wordsJeff Atwood2009-07-31T11:52:01Z2009-07-31T13:50:47Z<p>This seems to work for me</p>
<pre><code>(\b\S+\b)(?=.*\1)
</code></pre>
<p>Matches like so</p>
<pre>
<b>apple</b> apple orange
<b>orange</b> red <b>blue</b> <b>green</b> orange green blue
<b>pirates</b> <b>ninjas</b> cowboys ninjas pirates
</pre>
http://stackoverflow.com/questions/1182251/auto-converting-numbers-to-comma-fied-versions0Auto-converting numbers to comma-fied versionsJeff Atwood2009-07-25T14:59:15Z2009-07-26T00:55:26Z
<p>Given the following text</p>
<pre>
/feeds/tag/remote-desktop 1320 17007 22449240
/feeds/tag/terminal-server 1328 15805 20989040
/foo/23211/test 1490 11341 16898090
</pre>
<p>Let's say we want to convert those numbers to their comma-fied forms, like so</p>
<pre>
/feeds/tag/remote-desktop 1,320 17,007 22,449,240
/feeds/tag/terminal-server 1,328 15,805 20,989,040
/foo/23211/test 1,490 11,341 16,898,090
</pre>
<p>(don't worry about fixing the fixed-width ASCII spacing, that's a problem for another day)</p>
<p>This is the best regex I could come up with; it's based on <a href="http://blog.stevenlevithan.com/archives/commafy-numbers" rel="nofollow">this JavaScript regex solution</a> from Regex Ninja Steven Levithan:</p>
<pre><code>return Regex.Replace(s, @"\b(?<!\/)\d{4,}\b(?<!\/)",
delegate(Match match) {
string output = "";
string m = match.Value;
int len = match.Length;
for (int i = len - 1; i >= 0 ; i--)
{
output = m[i] + output;
if ((len - i) % 3 == 0) output = "," + output;
}
if (output.StartsWith(","))
output = output.Substring(1, output.Length-1);
return output;
});
</code></pre>
<p>In a <a href="http://stackoverflow.com/questions/721304/insert-commas-into-number-string/721415#721415">related question</a>, there is a very clever number comma insertion regex proposed:</p>
<pre><code>text = Regex.Replace(text, @"(?<=\d)(?=(\d{3})+$)", ",")
</code></pre>
<p>However this requires <strong>an end anchor <code>$</code></strong> which, as you can see, I don't have in the above text -- the numbers are "floating" in the rest of the text.</p>
<p><strong>I suspect there is a cleaner way to do this than my solution?</strong> After writing this, I just realized I could combine them, and put one Regex inside the other, like so:</p>
<pre><code>return Regex.Replace(s, @"\b(?<!\/)\d{4,}\b(?<!\/)",
delegate(Match match) {
return Regex.Replace(match.Value, @"(?<=\d)(?=(\d{3})+$)", ",");
});
</code></pre>
http://stackoverflow.com/questions/9/how-do-i-calculate-someones-age-in-c/10#1018Answer by Jeff Atwood for How do I calculate someone's age in C#?Jeff Atwood2008-07-31T23:42:31Z2009-07-25T23:04:09Z<p>Here is one solution I found:</p>
<pre><code>DateTime dt = new DateTime( bday.Year,
DateTime.Now.Month, DateTime.Now.Day);
int age = (dt.Date
</code></pre>
http://stackoverflow.com/questions/1176011/sql-to-determine-minimum-sequential-days-of-access50SQL to determine minimum sequential days of access?Jeff Atwood2009-07-24T06:21:17Z2009-07-24T20:40:16Z
<p>The following User History table contains <strong>one record for every day a given user has accessed a website</strong> (in a 24 hour UTC period). It has many thousands of records, but only one record per day per user. If the user has not accessed the website for that day, no record will be generated.</p>
<pre>
Id UserId CreationDate
------ ------ ------------
750997 12 2009-07-07 18:42:20.723
750998 15 2009-07-07 18:42:20.927
751000 19 2009-07-07 18:42:22.283
</pre>
<p>What I'm looking for is a SQL query on this table <em>with good performance</em>, that tells me which userids have accessed the website for (n) continuous days without missing a day.</p>
<p>In other words, <strong>how many users have (n) records in this table with sequential (day-before, or day-after) dates</strong>? If any day is missing from the sequence, the sequence is broken and should restart again at 1; we're looking for users who have achieved a continuous number of days here with no gaps.</p>
<p>Any resemblance between this query and <a href="http://stackoverflow.com/badges/71/woot-enthusiast">a particular Stack Overflow badge</a> is purely coincidental, of course.. :)</p>
http://stackoverflow.com/questions/958997/frame-buster-buster-buster-code-needed41Frame Buster Buster ... buster code neededJeff Atwood2009-06-06T04:29:58Z2009-07-22T09:17:09Z
<p>Let's say you don't want other sites to "frame" your site in an <code><iframe></code>:</p>
<pre><code><iframe src="http://yourwebsite.com"></iframe>
</code></pre>
<p>So you insert anti-framing, frame busting JavaScript into all your pages:</p>
<pre><code>/* break us out of any containing iframes */
if (top != self) { top.location.replace(self.location.href); }
</code></pre>
<p>Excellent! Now you "bust" or break out of any containing iframe automatically. Except for one small problem.</p>
<p>As it turns out, <strong>your frame-busting code can be busted</strong>, <a href="http://coderrr.wordpress.com/2009/02/13/preventing-frame-busting-and-click-jacking-ui-redressing/" rel="nofollow">as shown here</a>:</p>
<pre><code><script type="text/javascript">
var prevent_bust = 0
window.onbeforeunload = function() { prevent_bust++ }
setInterval(function() {
if (prevent_bust > 0) {
prevent_bust -= 2
window.top.location = 'http://server-which-responds-with-204.com'
}
}, 1)
</script>
</code></pre>
<p>This code does the following:</p>
<ul>
<li>increments a counter every time the browser attempts to navigate away from the current page, via the <code>window.onbeforeonload</code> event handler</li>
<li>sets up a timer that fires every millisecond via <code>setInterval()</code>, and if it sees the counter incremented, changes the current location to a server of the attacker's control</li>
<li>that server serves up a page with HTTP status code <strong>204</strong>, which does not cause the browser to nagivate anywhere</li>
</ul>
<p>My question is -- and this is more of a JavaScript puzzle than an actual <em>problem</em> -- how can you defeat the frame-busting buster? </p>
<p>I had a few thoughts, but nothing worked in my testing:</p>
<ul>
<li>attempting to clear the <code>onbeforeunload</code> event via <code>onbeforeonload = null</code> had no effect</li>
<li>adding an <code>alert()</code> stopped the process let the user know it was happening, but did not interfere with the code in any way; clicking OK lets the busting continue as normal</li>
<li>I can't think of any way to clear the <code>setInterval()</code> timer</li>
</ul>
<p>I'm not much of a JavaScript programmer, so here's my challenge to you: <strong>hey buster, can you bust the frame-busting buster?</strong></p>
http://stackoverflow.com/questions/1149270/google-search-api-versus-ms-sql-server-full-text-indexing/1149284#11492843Answer by Jeff Atwood for Google search API versus MS SQL Server Full Text Indexing?Jeff Atwood2009-07-19T05:09:02Z2009-07-19T05:09:02Z<p>We use SQL Server full text indexing here on Stack Overflow and it works reasonably well -- but I can <em>only</em> recommend it for 2005 and 2008, the versions we use it on. I heard it's much worse in 2000. There are quirks (stopword lists, etc) but nothing serious. It's fast and does what it says on the tin, mostly.</p>
<p>The problem you run into with <code>contains()</code> and <code>freetext()</code> is that <strong>users often expect to search at the "whole page" level, ala Google</strong>, where anything that's written to the page / screen is searchable. That's not really how databases work, but users don't care about that. They care about results and have (arguably reasonable) expectations based on years of web searching.</p>
<p>If you expect to need the "whole page" search level, I'd strongly recommend looking at the <a href="http://code.google.com/apis/ajaxsearch/" rel="nofollow">Google Search API</a>, or <a href="http://incubator.apache.org/lucene.net/" rel="nofollow">Lucene.NET</a> (assuming you're a Microsoft stack based on use of SQL).</p>
http://stackoverflow.com/questions/1102118/how-to-manage-multiple-different-view-layers/1107891#11078910Answer by Jeff Atwood for How to manage multiple (different) view layersJeff Atwood2009-07-10T05:44:43Z2009-07-10T05:44:43Z<p>We use the <code>App_GlobalResources</code> folder to do this</p>
<ul>
<li>App_GlobalResources\ServerFault.resx</li>
<li>App_GlobalResources\StackOverflow.resx</li>
<li>App_GlobalResources\MetaStackOverflow.resx</li>
</ul>
<p>with a helper class:</p>
<pre><code>public static class Resources
{
public static string TeamEmail { get { return GetString("TeamEmail"); } }
public static string GetString(string key)
{
return HttpContext.GetGlobalResourceObject(
GlobalApplication.CurrentSite.ToString(), key).ToString();
}
}
</code></pre>
<p>and it appears in the view like so:</p>
<pre><code><a href="mailto:<%= Resources.TeamEmail %>">contact us</a>
</code></pre>
<p>For more total replacements (e.g., the /faq), we have multiple copies of the faq like so:</p>
<ul>
<li><code>Faq-ServerFault.aspx</code></li>
<li><code>Faq-StackOverflow.aspx</code></li>
<li><code>Faq-StackOverflowMeta.aspx</code></li>
</ul>
<p>The build renames the file appropriately for each server.</p>
<p>(Note that these are content views, so they are literally just the faq CONTENT itself, the master page determines the rest of the layout)</p>
http://stackoverflow.com/questions/786638/how-can-i-get-gzip-compression-in-iis7-working/1093637#10936371Answer by Jeff Atwood for How can I get gzip compression in IIS7 working?Jeff Atwood2009-07-07T17:24:04Z2009-07-07T17:24:04Z<p>We had a similar problem and it turns out that IIS7 does some dynamic CPU based throttling here..</p>
<p><a href="http://www.iis.net/ConfigReference/system.webServer/httpCompression" rel="nofollow">http://www.iis.net/ConfigReference/system.webServer/httpCompression</a></p>
<blockquote>
<p><code>dynamicCompressionDisableCpuUsage</code></p>
<p>Optional uint attribute.</p>
<p>Specifies the percentage of CPU utilization at which dynamic compression will be disabled.</p>
<p>Note: This attribute acts as an upper CPU limit at which dynamic compression is turned off. When CPU utilization falls below the value specified in the dynamicCompressionEnableCpuUsage attribute, dynamic compression will be reenabled.</p>
<p><strong>The default value is 90.</strong></p>
<p><hr /></p>
<p>dynamicCompressionEnableCpuUsage</p>
<p>Optional uint attribute.</p>
<p>Specifies the percentage of CPU utilization below which dynamic compression will be enabled. The value must be between 0 and 100. Average CPU utilization is calculated every 30 seconds.</p>
<p>Note: This attribute acts as a lower CPU limit below which dynamic compression is turned on. When CPU utilization rises above the value specified in the dynamicCompressionDisableCpuUsage attribute, dynamic compression will be disabled.</p>
<p><strong>The default value is 50.</strong></p>
</blockquote>
<p>Note the defaults -- if your IIS7 hits 90% CPU usage, it will <em>disable all dynamic gzipped content</em> until CPU usage dips back below 50%!</p>
<p>Also, some great recommendations and benchmarks here on the real CPU cost of GZIP.</p>
<p><a href="http://weblogs.asp.net/owscott/archive/2009/02/22/iis-7-compression-good-bad-how-much.aspx" rel="nofollow">http://weblogs.asp.net/owscott/archive/2009/02/22/iis-7-compression-good-bad-how-much.aspx</a></p>
<p>Long story short, unless you regularly have dynamic pages well in excess of 200kb, it's a non-issue.</p>
http://stackoverflow.com/questions/1073412/javascript-validation-issue-with-international-characters2JavaScript validation issue with international charactersJeff Atwood2009-07-02T09:31:44Z2009-07-02T10:58:32Z
<p>We use the excellent <a href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/" rel="nofollow">validator plugin for jQuery</a> here on Stack Overflow to do client-side validation of input before it is submitted to the server.</p>
<p>It generally works well, however, this one has us scratching our heads.</p>
<p>The following validator method is used on the ask/answer form for the user name field (note that you must be <strong>logged out</strong> to see this field on the live site; it's on every <code>/question</code> page and the <code>/ask</code> page)</p>
<pre><code>$.validator.addMethod("validUserName",
function(value, element) {
return this.optional(element) ||
/^[\w\-\s\dÀÈÌÒÙàèìòùÁÉÍÓÚÝáéíóúýÂÊÎÔÛâêîôûÃÑÕãñõÄËÏÖÜäëïöüçÇߨøÅ寿ÞþÐð]+$/.test(value); },
"Can only contain A-Z, 0-9, spaces, and hyphens.");
</code></pre>
<p>Now this regex looks weird but it's pretty simple:</p>
<ul>
<li>match the beginning of the string (^)</li>
<li>match any of these..
<ul>
<li>word character (\w)</li>
<li>dash (-)</li>
<li>space (\s)</li>
<li>digit (\d)</li>
<li>crazy moon language characters (àèìòù etc)</li>
</ul></li>
<li>now match the end of the string ($)</li>
</ul>
<p>Yes, we ran into the <a href="http://www.hanselman.com/blog/InternationalizedRegularExpressions.aspx" rel="nofollow">Internationalized Regular Expressions</a> problem. JavaScript's definition of "word character" does not include international characters.. at all.</p>
<p>Here's the weird part: even though we've gone to the trouble of manually adding tons of the valid international characters to the regex, it <em>doesn't work</em>. You cannot enter these international characters in the input box for user name without getting the..</p>
<blockquote>
<p>Can only contain A-Z, 0-9, spaces, and hyphens</p>
</blockquote>
<p>.. validation return!</p>
<p>Obviously <strong>the validation <em>is</em> working for the other parts of the regex</strong>.. so.. what gives?</p>
<p>The other strange part is that this validation works in the browser's JavaScript console but not when executed as a part of our standard *.js includes.</p>
<blockquote>
<p>/^[\w-\sÀÈÌÒÙàèìòùÁÉÍÓÚÝáéíóúýÂÊÎÔÛâêîôûÃÑÕãñõÄËÏÖÜäëïöüçÇߨøÅ寿ÞþÐð]+$/
.test('ÓBill de hÓra') = true</p>
</blockquote>
<p>We've run into some really bizarre international character issues in JavaScript code before, resulting in some very, very nasty hacks. We'd like to understand what's going on here and why. Please enlighten us!</p>
http://stackoverflow.com/questions/1041623/develop-iphone-app-without-a-mac/1041817#10418172Answer by Jeff Atwood for Develop iPhone app without a Mac?Jeff Atwood2009-06-25T01:51:38Z2009-06-25T01:51:38Z<p>The only reliable info I could find is at the always-excellent MetaFilter</p>
<p><a href="http://ask.metafilter.com/110466/Anyway-to-develop-iPhoneiTouch-apps-without-investing-in-a-Mac" rel="nofollow">http://ask.metafilter.com/110466/Anyway-to-develop-iPhoneiTouch-apps-without-investing-in-a-Mac</a></p>
<p>The answer is apparently no.</p>
<blockquote>
<p><strong>You absolutely need an Intel Mac of some description.</strong></p>
<p>The entire iPhone build process is too deeply ingrained in XCode to build elsewhere; and the only other Objective-C compiler I know is gcc, which doesn't support any Apple's additions to the language (nor their libraries).</p>
<p>And, in direct opposition to what people are saying above, Objective-C is absolutely my favorite native, compiled language. Elegant, small (only a few changes from C), late-binding, dynamic, straightforward. It's what C++ should have been.</p>
</blockquote>
<p>Lots of people recommend picking up a secondhand Intel (remember, must be Intel!) Mac Mini as the cheapest "port of entry".</p>
http://stackoverflow.com/questions/397250/unicode-regex-invalid-xml-characters/961504#9615040Answer by Jeff Atwood for Unicode Regex; Invalid XML charactersJeff Atwood2009-06-07T08:30:38Z2009-06-07T08:30:38Z<p>I know this isn't exactly an answer to your question, but it's helpful to have it here:</p>
<p>Regular Expression to match <strong>valid</strong> XML Characters:</p>
<pre><code>[\u0009\u000a\u000d\u0020-\uD7FF\uE000-\uFFFD]
</code></pre>
<p>So to remove <strong>invalid</strong> chars from XML, you'd do something like</p>
<pre><code>var xml;
xml = Regex.Replace("[^\u0009\u000A\u000D\u0020-\uD7FF\uE000-\uFFFD]", "");
</code></pre>
<p>(note the not ^ operator at the beginning)</p>
<p>However, I can't figure out a way to define that crazy [#x10000-#x10FFFF] range, above...</p>
http://stackoverflow.com/questions/357219/whats-your-favourite-character/889781#88978148Answer by Jeff Atwood for What's your favourite character?Jeff Atwood2009-05-20T19:29:06Z2009-05-20T19:29:06Z<p>As it turns out, you can search Charmap <strong>by name</strong> to find some of these odder / cooler characters! Joel showed this to me:</p>
<p><img src="http://img40.imageshack.us/img40/3122/charmap.png"></p>
<p>Notice the "search for" at the bottom, if you turn on Advanced View -- I searched for "snowman".</p>
http://stackoverflow.com/questions/7707/ie8-overflowauto-with-max-height/881597#8815970Answer by Jeff Atwood for IE8 overflow:auto with max-heightJeff Atwood2009-05-19T08:34:12Z2009-05-19T08:34:12Z<p>This is a really nasty bug as it affects us heavily on Stack Overflow with <code><pre></code> code blocks, which have <code>max-height:600</code> and <code>width:auto</code>.</p>
<p>It is logged as a bug in the final version of IE8 with no fix.</p>
<p><a href="http://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=408759" rel="nofollow">http://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=408759</a></p>
<p>There is a really, really hacky CSS workaround:</p>
<p><a href="http://my.opera.com/dbloom/blog/2009/03/11/css-hack-for-ie8-standards-mode" rel="nofollow">http://my.opera.com/dbloom/blog/2009/03/11/css-hack-for-ie8-standards-mode</a></p>
<pre><code>/*
SUPER nasty IE8 hack to deal with this bug
*/
pre
{
max-height: none\9
}
</code></pre>
<p>and of course conditional CSS as others have mentioned, but I dislike that because it means you're serving up extra HTML cruft in every page request.</p>
http://stackoverflow.com/questions/1679088/java-applets-failing-to-load-in-mac-osx-10-5-4-firefox-3-5-java-1-5Comment by Jeff Atwood on Java Applets failing to load in Mac OSX 10.5.4 / Firefox 3.5 / Java 1.5Jeff Atwood2009-11-05T11:51:42Z2009-11-05T11:51:42Zthis is for a java applet you've written?http://stackoverflow.com/questions/683646/asp-net-mvc-donut-caching-and-tempdata/694946#694946Comment by Jeff Atwood on ASP.NET MVC "Donut caching" and TempDataJeff Atwood2009-11-04T14:08:41Z2009-11-04T14:08:41Zvery nice, thanks for sharing this code!http://stackoverflow.com/questions/1631414/what-is-the-best-battleship-ai/1654919#1654919Comment by Jeff Atwood on What is the best Battleship AI?Jeff Atwood2009-11-03T06:19:22Z2009-11-03T06:19:22ZI guess you should make your battleship AI multithreaded, then, to calculate the max # of shots per that time interval.http://stackoverflow.com/questions/1623013/the-book-for-each-programming-language/1623116#1623116Comment by Jeff Atwood on "The" book for each programming language.Jeff Atwood2009-10-26T04:55:29Z2009-10-26T04:55:29Zyes, also the author of Coders at Work!!http://stackoverflow.com/questions/1166236/light-gray-background-in-bounce-area-of-a-uitableviewComment by Jeff Atwood on Light gray background in "bounce area" of a UITableViewJeff Atwood2009-10-25T06:52:10Z2009-10-25T06:52:10Zrelated: <a href="http://stackoverflow.com/questions/1114587/different-background-colors-for-the-top-and-bottom-of-a-uitableview" rel="nofollow" title="different background colors for the top and bottom of a uitableview">stackoverflow.com/questions/1114587/…</a>http://stackoverflow.com/questions/1618440/methods-of-simplifying-ugly-nested-if-else-trees-in-c/1619360#1619360Comment by Jeff Atwood on Methods of simplifying ugly nested if-else trees in C#Jeff Atwood2009-10-25T00:28:59Z2009-10-25T00:28:59Zthis code doesn't even compile. -1http://stackoverflow.com/questions/1616392/why-does-an-empty-loop-use-so-much-processor-time/1616413#1616413Comment by Jeff Atwood on Why does an empty loop use so much processor time?Jeff Atwood2009-10-23T23:28:24Z2009-10-23T23:28:24Zthe hidden advantage of having more than one CPU core -- it protects you from badly written code! seriously!http://stackoverflow.com/questions/1598846/position-fixed-in-css-within-a-bounding-boxComment by Jeff Atwood on Position Fixed in CSS within a bounding box?Jeff Atwood2009-10-21T05:27:09Z2009-10-21T05:27:09Zyou could try <a href="http://doctype.com" rel="nofollow">doctype.com</a> ; it really depends how much of your question is visual/pixels versus ascii/code.http://stackoverflow.com/questions/139238/session-id-in-url-and-or-cookieComment by Jeff Atwood on Session Id in url and/or cookie?Jeff Atwood2009-10-16T16:26:48Z2009-10-16T16:26:48Zclosed question for now as this question has become a spam magnet somehow. Revisit later.http://stackoverflow.com/questions/1564077/how-would-i-implement-a-community-account-like-data-structure-on-stackoverflowComment by Jeff Atwood on How would I implement a "Community" account-like data structure on StackOverflow?Jeff Atwood2009-10-14T03:36:15Z2009-10-14T03:36:15Zclose votes age away automatically after 2 days so no need to do anythinghttp://stackoverflow.com/questions/1547562/google-chrome-consider-your-site-as-malwareComment by Jeff Atwood on google chrome consider your site as malwareJeff Atwood2009-10-10T10:58:22Z2009-10-10T10:58:22ZI don't think this fits in the trilogy anywhere; it's really SEO and webmaster specific.http://stackoverflow.com/questions/545858/imap-how-to-validate-that-complete-message-was-transferred/1536092#1536092Comment by Jeff Atwood on imap - how to validate that complete message was transferred?Jeff Atwood2009-10-08T07:29:09Z2009-10-08T07:29:09Zthis should be asked as a question, you have incorrectly posted it as an answer.http://stackoverflow.com/questions/1524029/socket-connection-with-coldfusionComment by Jeff Atwood on Socket connection with coldfusionJeff Atwood2009-10-06T09:45:21Z2009-10-06T09:45:21Zdo not post duplicate questions; I deleted the duplicate.http://stackoverflow.com/questions/1523961/how-to-change-the-username-in-iphone-real-device-settingsComment by Jeff Atwood on how to change the UserName in Iphone Real Device settings?Jeff Atwood2009-10-06T08:44:26Z2009-10-06T08:44:26Zno computer involved, not even appropriate for SUhttp://stackoverflow.com/questions/13786/should-we-support-ie6-anymore/13796#13796Comment by Jeff Atwood on Should we support IE6 anymore?Jeff Atwood2009-10-03T06:18:28Z2009-10-03T06:18:28ZOne year later it's down to under half of that -- 12.1% now.