User Joel Spolsky - Stack Overflow most recent 30 from stackoverflow.com 2009-11-08T22:47:25Z http://stackoverflow.com/feeds/user/4 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo 131 How do I move the turtle in LOGO? Joel Spolsky 2009-06-16T20:42:06Z 2009-11-06T04:07:08Z <p>How do I move the <a href="http://en.wikipedia.org/wiki/Turtle%5Fgraphics" rel="nofollow">turtle</a> in <a href="http://en.wikipedia.org/wiki/Logo%5F%28programming%5Flanguage%29" rel="nofollow">LOGO</a>?</p> http://stackoverflow.com/questions/1452653/html-character-entity-for-equal-character/1452661#1452661 2 Answer by Joel Spolsky for HTML character entity for equal character "=" Joel Spolsky 2009-09-21T02:46:37Z 2009-09-21T02:46:37Z <p>You can use <code>&amp;#61;</code>, but it's not really necessary to escape = in HTML.</p> http://stackoverflow.com/questions/1450121/is-there-any-sync-algorithm-reference-available-for-syncing-a-directory/1450368#1450368 2 Answer by Joel Spolsky for is there any sync algorithm/reference available for syncing a directory? Joel Spolsky 2009-09-20T05:31:26Z 2009-09-20T05:31:26Z <p>The example you gave is exactly why synchronization is considered a hard problem.</p> <p>Computer A has deleted a file which computer B still has. Now: how do you know if the file was added on B, and should be copied to A, or deleted on A, and should be deleted on B? You don't, really. Many synchronization systems have the possibility of conflicting changes which need to be resolved by a human.</p> <p>Many tools have already been built to do synchronization, including:</p> <ul> <li>version control systems, like CVS, Subversion, Mercurial, git, Perforce, etc.</li> <li>standalone, one-directional synchronization programs. They cannot handle changes on either side, but they can make the destination directory look exactly like the source directory. This is better than a complete COPY because it's faster, but it's really basically the same thing. Examples include rsync, ROBOCOPY and XCOPY /MIR on Windows.</li> <li>easy to use internet synchronization tools that synchronize folders on multiple machines. Examples include Windows Live Folder and Dropbox. These apps often resolve conflicts by making extra copies of both versions in subdirectories so that you can sort it out later. They really assume that there will be very very few conflicts.</li> <li>built-in synchronization in sophisticated applications, for example, email/contact/calendar synchronization in Microsoft Exchange, Lotus Notes, etc.</li> </ul> http://stackoverflow.com/questions/136/is-there-a-site-that-can-track-all-the-domain-names-i-own 33 Is there a site that can track all the domain names I own? [closed] Joel Spolsky 2008-08-01T16:37:51Z 2009-09-03T16:38:08Z <p>I've been using a spreadsheet to keep track of domain names. Is there a web service anywhere that maintains a domain name database and tracks all the domains we own? The most important feature is that it would have to remind me when it's time to renew, but it would also keep track of all the registrars in my life.</p> http://stackoverflow.com/questions/969761/vbscript-asp-classic-stop-statement-not-breaking-into-debugger/1159452#1159452 1 Answer by Joel Spolsky for VBScript/ASP-Classic "Stop" Statement Not Breaking Into Debugger Joel Spolsky 2009-07-21T14:11:36Z 2009-07-21T14:11:36Z <p>Try this instead of <code>Stop</code>:</p> <pre><code>Dim I I = 1 / 0 </code></pre> http://stackoverflow.com/questions/426609/asp-net-membership-how-to-assign-profile-values/1111714#1111714 13 Answer by Joel Spolsky for ASP.NET Membership: how to assign Profile values? Joel Spolsky 2009-07-10T20:10:29Z 2009-07-10T20:10:29Z <p>I had the same problem today, and learned a lot.</p> <p>There are two kinds of project in Visual Studio -- "Web Site Projects" and "Web Application Projects." For reasons which are a complete mystery to me, Web Application Projects cannot use <strong>Profile.</strong> directly... the strongly-typed class is not magically generated for you from the Web.config file, so you have to roll your own.</p> <p>The sample code in MSDN assumes you are using a Web Site Project, and they tell you just to add a <code>&lt;profile&gt;</code> section to your <code>Web.config</code> and party on with <code>Profile.</code><em>property</em>, but that doesn't work in Web Application Projects.</p> <p>You have two choices to roll your own:</p> <p>(1) Use the <a href="http://code.msdn.microsoft.com/WebProfileBuilder" rel="nofollow">Web Profile Builder</a>. This is a custom tool you add to Visual Studio which automatically generates the Profile object you need from your definition in Web.config.</p> <p>I chose not to do this, because I didn't want my code to depend on this extra tool to compile, which could have caused problems for someone else down the line when they tried to build my code without realizing that they needed this tool.</p> <p>(2) Make your own class that derives from <code>ProfileBase</code> to represent your custom profile. This is easier than it seems. Here's a very very simple example that adds a "FullName" string profile field:</p> <p><em>In your web.config:</em></p> <pre><code>&lt;profile defaultProvider="SqlProvider" inherits="YourNamespace.AccountProfile"&gt; &lt;providers&gt; &lt;clear /&gt; &lt;add name="SqlProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="sqlServerMembership" /&gt; &lt;/providers&gt; &lt;/profile&gt; </code></pre> <p><em>In a file called AccountProfile.cs:</em></p> <pre><code>using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Profile; using System.Web.Security; namespace YourNamespace { public class AccountProfile : ProfileBase { static public AccountProfile CurrentUser { get { return (AccountProfile) (ProfileBase.Create(Membership.GetUser().UserName)); } } public string FullName { get { return ((string)(base["FullName"])); } set { base["FullName"] = value; Save(); } } // add additional properties here } } </code></pre> <p><em>To set a profile value:</em></p> <pre><code>AccountProfile.CurrentUser.FullName = "Snoopy"; </code></pre> <p><em>To get a profile value</em></p> <pre><code>string x = AccountProfile.CurrentUser.FullName; </code></pre> http://stackoverflow.com/questions/405288/sql-server-after-insert-trigger-doesnt-see-the-just-inserted-row 14 SQL Server "AFTER INSERT" trigger doesn't see the just-inserted row Joel Spolsky 2009-01-01T18:50:01Z 2009-06-30T19:12:57Z <p>Consider this trigger:</p> <pre><code>ALTER TRIGGER myTrigger ON someTable AFTER INSERT AS BEGIN DELETE FROM someTable WHERE ISNUMERIC(someField) = 1 END </code></pre> <p>I've got a table, someTable, and I'm trying to prevent people from inserting bad records. For the purpose of this question, a bad record has a field "someField" that is all numeric.</p> <p>Of course, the right way to do this is NOT with a trigger, but I don't control the source code... just the SQL database. So I can't really prevent the insertion of the bad row, but I can delete it right away, which is good enough for my needs.</p> <p>The trigger works, with one problem... when it fires, it never seems to delete the just-inserted bad record... it deletes any OLD bad records, but it doesn't delete the just-inserted bad record. So there's often one bad record floating around that isn't deleted until somebody else comes along and does another INSERT.</p> <p>Is this a problem in my understanding of triggers? Are newly-inserted rows not yet committed while the trigger is running?</p> http://stackoverflow.com/questions/1018942/using-imagelist-from-vb6-application-causes-crash-on-windows-7-0-64-bit 2 Using ImageList from VB6 application causes crash on Windows 7.0 64-bit Joel Spolsky 2009-06-19T16:47:09Z 2009-06-19T19:28:29Z <p>I have an old VB6 application that uses an ImageList control from COMCTL32.OCX ("Microsoft Windows Common Controls 5.0 (SP2)") to provide icons for TreeViews and ListViews.</p> <p>The app won't even launch on Windows 7.0 64 bit. The minute it tries to load the form that has the ImageList on it, it crashes (well, actually, the app winks out, exiting without a trace).</p> <p>Removing the ImageList from the form solves the problem.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1018942/using-imagelist-from-vb6-application-causes-crash-on-windows-7-0-64-bit/1019673#1019673 6 Answer by Joel Spolsky for Using ImageList from VB6 application causes crash on Windows 7.0 64-bit Joel Spolsky 2009-06-19T19:28:29Z 2009-06-19T19:28:29Z <p>I resolved this problem by replacing all instances of COMCTL32.OCX, which came with VB5, with MSCOMCTL.OCX, which came with VB6.</p> <p>Microsoft KB article <a href="http://support.microsoft.com/kb/190952" rel="nofollow">190952</a> has instructions for doing this. It was pretty much just a global-search-and-replace operation.</p> http://stackoverflow.com/questions/292254/vb6-how-do-i-make-a-random-string-of-0-9-and-a-z-of-x-characters/292283#292283 8 Answer by Joel Spolsky for Vb6 How do I make a Random String of 0-9 and a-z of x characters Joel Spolsky 2008-11-15T07:52:32Z 2009-05-31T16:35:09Z <pre><code>Function RandomString(cb As Integer) As String Randomize Dim rgch As String rgch = "abcdefghijklmnopqrstuvwxyz" rgch = rgch &amp; UCase(rgch) &amp; "0123456789" Dim i As Long For i = 1 To cb RandomString = RandomString &amp; Mid$(rgch, Int(Rnd() * Len(rgch) + 1), 1) Next End Function </code></pre> <p>Please be aware that the built-in random number generator is not cryprographically secure so a function like this should not be used to generate passwords.</p> http://stackoverflow.com/questions/357219/whats-your-favourite-character/889583#889583 21 Answer by Joel Spolsky for What's your favourite character? Joel Spolsky 2009-05-20T18:50:25Z 2009-05-20T18:50:25Z <p>Snowman: ☃ (U+2603)</p> <p>I like Airplane too ✈ (U+2708)</p> http://stackoverflow.com/questions/871405/why-do-i-need-an-ioc-container-as-opposed-to-straightforward-di-code/871420#871420 -22 Answer by Joel Spolsky for Why do I need an IoC container as opposed to straightforward DI code? Joel Spolsky 2009-05-16T01:21:30Z 2009-05-16T01:21:30Z <p>I'm with you, Vadim. IoC containers take a simple, elegant, and useful concept, and make it something you have to study for two days with a 200-page manual.</p> <p>I personally am perplexed at how the IoC community took a beautiful, <a href="http://www.martinfowler.com/articles/injection.html" rel="nofollow">elegant article by Martin Fowler</a> and turned it into a bunch of complex frameworks typically with 200-300 page manuals.</p> <p>I try not to be judgemental (HAHA!), but I think that people who use IoC containers are (A) very smart and (B) lacking in empathy for people who aren't as smart as they are. Everything makes perfect sense to them, so they have trouble understanding that many ordinary programmers will find the concepts confusing. It's the <a href="http://www.nytimes.com/2007/12/30/business/30know.html" rel="nofollow">curse of knowledge</a>. The people who understand IoC containers have trouble believing that there are people who don't understand it.</p> <p>The most valuable benefit of using an IoC container is that you can have a configuration switch in one place which lets you change between, say, test mode and production mode. For example, suppose you have two versions of your database access classes... one version which logged aggressively and did a lot of validation, which you used during development, and another version without logging or validation that was screamingly fast for production. It is nice to be able to switch between them in one place. On the other hand, this is a fairly trivial problem easily handled in a simpler way without the complexity of IoC containers.</p> <p>I believe that if you use IoC containers, your code becomes, frankly, a lot harder to read. The number of places you have to look at to figure out what the code is trying to do goes up by at least one. And somewhere in heaven an angel cries out.</p> http://stackoverflow.com/questions/809725/multiplying-multiple-cells-by-a-number/810052#810052 2 Answer by Joel Spolsky for Multiplying multiple cells by a number Joel Spolsky 2009-05-01T03:21:15Z 2009-05-01T23:46:14Z <ol> <li>Enter the multiplier in a cell</li> <li>Copy that cell to the clipboard</li> <li>Select the range you want to multiply by the multiplier</li> <li><p>(Excel 2003 or earlier) Choose <strong>Edit</strong> | <strong>Paste Special</strong> | <strong>Multiply</strong></p> <p>(Excel 2007 or later) Click on the Paste down arrow | <strong>Paste Special</strong> | <strong>Multiply</strong></p></li> </ol> http://stackoverflow.com/questions/787484/how-to-keep-excel-interop-from-stealing-focus-while-inserting-images/810042#810042 2 Answer by Joel Spolsky for How to keep Excel interop from stealing focus while inserting images Joel Spolsky 2009-05-01T03:15:50Z 2009-05-01T03:15:50Z <p>I suspect this is caused by a component that Microsoft licensed that is badly behaved.</p> <p>The only way to deal with situations like this is by intercepting the appropriate low-level Windows message and blocking it using a <a href="http://msdn.microsoft.com/en-us/library/ms997537.aspx" rel="nofollow">Win32 hook</a></p> <p>The easiest way to do this, and, believe me, it's not pretty, is to use the CBT hook. CBT stands for "Computer Based Training." It is an ancient and nearly obsolete technology intended to make it possible to create training apps which watch what you're doing and respond accordingly. The only thing it's good for any more is hooking and preventing window activation in code you don't have access to. You could intercept the HCBT_ACTIVATE code and prevent a window from activating.</p> <p>This would probably need to be done in C or C++.</p> http://stackoverflow.com/questions/795397/haskell-cons-operator/795412#795412 1 Answer by Joel Spolsky for Haskell Cons Operator (:) Joel Spolsky 2009-04-27T21:44:46Z 2009-04-27T21:44:46Z <p>Haskell uses lazy evaluation... nothing gets evaluated until it's needed, which is why order_list is stored as a cons containing CashOnDelivery and another, unevaluated cell referencing order_list again.</p> http://stackoverflow.com/questions/712470/vb6-silently-deleting-huge-chunks-of-control-data-from-forms/715772#715772 3 Answer by Joel Spolsky for VB6 silently deleting huge chunks of control data from forms Joel Spolsky 2009-04-03T21:21:58Z 2009-04-03T21:21:58Z <p>Create a UserControl for each tab. That makes editing MUCH easier. It also allows you to nicely modularize the code, so each tab lives in its own file, and it'll allow you to reuse tabs elsewhere if you want.</p> http://stackoverflow.com/questions/708339/bug-fixed-with-four-nops-in-an-if0-world-no-longer-makes-sense/708410#708410 12 Answer by Joel Spolsky for Bug fixed with four nops in an if(0), world no longer makes sense. Joel Spolsky 2009-04-02T05:25:40Z 2009-04-03T04:40:08Z <p>It's faulty pointer arithmetic, either directly (through a pointer) or indirectly (by going past the end of an array). Check all your arrays. Don't forget that if your array is</p> <pre><code> int a[4]; </code></pre> <p>then a[4] doesn't exist.</p> <p>What you're doing is overwriting something on the stack accidentally. The stack contains both locals, parameters, and the return address from your function. You might be damaging the return address in a way that the extra noops cures. </p> <p>For example, if you have some code that is adding something to the return address, inserting those extra 16 bytes of noops would cure the problem, because instead of returning past the next line of code, you return into the middle of some noops. </p> <p>One way you might be adding something to the return address is by going past the end of a local array or a parameter, for example</p> <pre><code> int a[4]; a[4]++; </code></pre> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652802#652802 73 Answer by Joel Spolsky for What is the worst real-world macros/pre-processor abuse you've ever come across? Joel Spolsky 2009-03-17T02:04:27Z 2009-03-17T02:04:27Z <pre><code>#define ever (;;) for ever { ... } </code></pre> http://stackoverflow.com/questions/642192/simple-tool-for-shipping-dates-estimates-without-uncertainty/644927#644927 2 Answer by Joel Spolsky for Simple tool for shipping dates estimates without uncertainty Joel Spolsky 2009-03-13T23:04:39Z 2009-03-13T23:04:39Z <p>FogBugz will show you the sum of estimates at the bottom of the LIST page, labelled "Total estimated time remaining". This is the raw sum of estimates, without any EBS calculations.</p> http://stackoverflow.com/questions/616936/how-to-get-last-active-cell-in-excel-2007/633337#633337 1 Answer by Joel Spolsky for How to get Last Active Cell in Excel 2007 Joel Spolsky 2009-03-11T04:33:33Z 2009-03-11T04:33:33Z <p>The Excel 4 API? Really?</p> <p>There's a command xlcSelectEnd which you can use to jump to the last cell with text entered in it in any direction from a given cell.</p> http://stackoverflow.com/questions/633232/asp-how-to-import-data-from-a-merged-cell-in-excel/633242#633242 3 Answer by Joel Spolsky for ASP: How to import data from a merged cell in Excel? Joel Spolsky 2009-03-11T03:35:15Z 2009-03-11T03:35:15Z <p>The merging of cells is just a formatting thing. It won't show up in the data. If you are accessing the Excel file through ADO and the Excel driver, you are just looking at the data, not the formatting.</p> <p>If you really, really have to do this, you may have to create an Excel.Application object and use the Excel object model to inspect the cells and their formatting. This works ok on the desktop but can't really be done reliably on a server, so, for example, if you're trying to do this in a web application, you may have problems.</p> http://stackoverflow.com/questions/548520/how-can-i-configure-mercurial-to-use-winmerge-for-merges-under-cygwin 1 How can I configure Mercurial to use WinMerge for merges, under cygwin? Joel Spolsky 2009-02-14T05:01:07Z 2009-02-14T05:06:26Z <p>When Mercurial is running under cygwin, it's a bit tricky to figure out how to spawn <a href="http://winmerge.org/" rel="nofollow">WinMerge</a> to resolve merge conflicts. How can I do this?</p> http://stackoverflow.com/questions/548520/how-can-i-configure-mercurial-to-use-winmerge-for-merges-under-cygwin/548525#548525 2 Answer by Joel Spolsky for How can I configure Mercurial to use WinMerge for merges, under cygwin? Joel Spolsky 2009-02-14T05:06:26Z 2009-02-14T05:06:26Z <p>The trick is that cygwin paths are not the same as Windows paths, so you need a little script that converts the cygwin paths to Windows paths before passing them as arguments to WinMerge.</p> <p>Here's how to do it:</p> <p>(1) Create a shell script in <code>/usr/bin/winmerge</code> as follows:</p> <pre><code>#!/bin/sh "/cygdrive/c/Program Files/WinMerge/WinMergeU.EXE" /e /ub /dl other /dr local `cygpath -aw $1` `cygpath -aw $2` `cygpath -aw $3` </code></pre> <p>Note: <code>cygpath</code> converts path names. If WinMerge isn't in the default location, change the path here.</p> <p>(2) Make that file executable</p> <pre><code> chmod +x /usr/bin/winmerge </code></pre> <p>(3) Add the following to your <code>~/.hgrc</code> file:</p> <pre><code>[ui] merge = winmerge [merge-tools] winmergeu.executable=/usr/bin/winmerge winmergeu.args=$other $local $output winmergeu.fixeol=True winmergeu.checkchanged=True winmergeu.gui=False </code></pre> <p>Note! You probably already have a [ui] section with your name in it. Remember to merge my changes with yours, don't just add a new [ui] section. For example, my .hgrc looks like this:</p> <pre><code>[ui] username = Joel Spolsky &lt;spolsky@example.com&gt; merge = winmergeu [extensions] fetch = [merge-tools] winmergeu.executable=/usr/bin/winmerge winmergeu.args=$other $local $output winmergeu.fixeol=True winmergeu.checkchanged=True winmergeu.gui=False </code></pre> http://stackoverflow.com/questions/517989/select-top-all-but-10-from-in-microsoft-access 7 Select Top (all but 10) from ... in Microsoft Access Joel Spolsky 2009-02-05T21:22:15Z 2009-02-12T14:50:01Z <p>Say I've got a query</p> <pre><code>SELECT TOP 10 ... FROM ... ORDER BY ... </code></pre> <p>in Access (well, really Jet). The question is: how can I get all the other rows... everything <em>except</em> the top 10?</p> http://stackoverflow.com/questions/531001/running-server-side-function-as-browser-closes/531007#531007 7 Answer by Joel Spolsky for Running server-side function as browser closes Joel Spolsky 2009-02-10T03:54:34Z 2009-02-10T03:54:34Z <p>I suspect you are barking up the wrong tree. Remember, it is possible for the user to suddenly lose their internet connection, their browser could crash, or switch off their computer using the big red switch. There will be cases where the server simply never hears from the browser again.</p> <p>The best way to do this is with a "dead man's switch." Since you said that they are pulling information from the database every few seconds, use that opportunity to store (in the database) a timestamp for the last time you heard from a given client.</p> <p>Every minute or so, on the server, do a query to find clients that have not polled for a couple of minutes, and set the user offline... all on the server.</p> http://stackoverflow.com/questions/524275/code-critique-am-i-creating-a-rube-goldberg-machine/524681#524681 4 Answer by Joel Spolsky for code critique - am I creating a Rube Goldberg machine? Joel Spolsky 2009-02-07T22:01:11Z 2009-02-07T22:01:11Z <p>There's nothing wrong with doing it your way. The ADO libraries were not really all that well designed, and using them directly takes too many lines of code, so I always have a few utility functions that make it easier to do common stuff. For example, it's very useful to make yourself an "ExecuteScalar" function that runs SQL that happens to return exactly one value, for all those SELECT COUNT(*)'s that you might do.</p> <p><strong>BUT</strong> - your <code>myPush</code> function is extremely inefficient. <code>ReDim Preserve</code> takes a LONG time because it has to reallocate memory and copy everything. This results in O(n<sup>2</sup>) performance, or what I call a <a href="http://www.joelonsoftware.com/articles/fog0000000319.html" rel="nofollow">Shlemiel the Painter</a> algorithm. The recommended best practice would be to start by dimming, say, an array with room for 16 values, and double it in size whenever you fill it up. That way you won't have to call <code>ReDim Preserve</code> more than Lg<sub>2</sub><em>n</em> times.</p> http://stackoverflow.com/questions/523181/cmd-exe-batch-script-to-display-last-10-lines-from-a-txt-file/523301#523301 2 Answer by Joel Spolsky for CMD.EXE batch script to display last 10 lines from a txt file. Joel Spolsky 2009-02-07T06:30:21Z 2009-02-07T06:30:21Z <p>You should probably just find a good implementation of <code>tail</code>. But if you really really insist on using CMD batch files and want to run on any NT machine unmolested, this will work:</p> <pre><code>@echo off setLocal EnableDelayedExpansion for /f "tokens=* delims= " %%a in (c:\tmp\foo.txt) do ( set var9=!var8! set var8=!var7! set var7=!var6! set var6=!var5! set var5=!var4! set var4=!var3! set var3=!var2! set var2=!var1! set var1=!var! set var=%%a ) echo !var9! echo !var8! echo !var7! echo !var6! echo !var5! echo !var4! echo !var3! echo !var2! echo !var1! echo !var! </code></pre> http://stackoverflow.com/questions/523227/intercepting-email-to-add-text/523256#523256 5 Answer by Joel Spolsky for Intercepting email to add text Joel Spolsky 2009-02-07T06:05:26Z 2009-02-07T06:05:26Z <p>If this is Exchange Server 2007 you can add a thing called a <a href="http://technet.microsoft.com/en-us/library/aa996585.aspx" rel="nofollow">Transport Rule</a> (in the Exchange Management Console) to do this. What you're looking for is called a "disclaimer" since most companies do this so that they can add a legal disclaimer to the bottom of outgoing email.</p> http://stackoverflow.com/questions/523148/excel-formula-to-display-a-string-of-text-and-numbers/523241#523241 1 Answer by Joel Spolsky for Excel formula to display a string of text and numbers Joel Spolsky 2009-02-07T05:55:43Z 2009-02-07T05:55:43Z <pre><code> ="prxyz,"&amp;TEXT(A1,"00000")&amp;",0699,ABCD"&amp;IF(LEN(B1)=9,B1*10,B1)&amp;",xxx" </code></pre> http://stackoverflow.com/questions/516228/vba-getting-value-of-a-cell-across-all-tabs/517855#517855 1 Answer by Joel Spolsky for vba: getting value of a cell across all tabs Joel Spolsky 2009-02-05T20:52:22Z 2009-02-05T20:52:22Z <p>Your code says</p> <pre><code> Reviewers(N) = Sheets(N+1).Range("B7:C7").Value </code></pre> <p>Range B7:C7 consists of two cells, not one, and therefore the value is an array, not a single value. Use a range of one cell.</p> http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652864#652864 Comment by Joel Spolsky on What is the worst real-world macros/pre-processor abuse you've ever come across? Joel Spolsky 2009-08-13T21:09:28Z 2009-08-13T21:09:28Z rotfl... this one just made me splort milk outta my nose http://stackoverflow.com/questions/454497/iis7-sql-2008-and-asp-net-mvc-security/454698#454698 Comment by Joel Spolsky on IIS7, SQL 2008 and ASP.NET MVC security Joel Spolsky 2009-07-01T19:26:58Z 2009-07-01T19:26:58Z not an answer -- please put these questions in the comments http://stackoverflow.com/questions/1003841/how-do-i-move-the-turtle-in-logo Comment by Joel Spolsky on How do I move the turtle in LOGO? Joel Spolsky 2009-06-16T21:26:35Z 2009-06-16T21:26:35Z This will be mentioned in podcast 58. http://stackoverflow.com/questions/81991/a-potentially-dangerous-request-form-value-was-detected-from-the-client/82170#82170 Comment by Joel Spolsky on A potentially dangerous Request.Form value was detected from the client Joel Spolsky 2009-05-23T01:25:12Z 2009-05-23T01:25:12Z excellent answer ! http://stackoverflow.com/questions/809725/multiplying-multiple-cells-by-a-number/810052#810052 Comment by Joel Spolsky on Multiplying multiple cells by a number Joel Spolsky 2009-05-01T23:43:43Z 2009-05-01T23:43:43Z Not correct... I'll expand on my answer http://stackoverflow.com/questions/787484/how-to-keep-excel-interop-from-stealing-focus-while-inserting-images Comment by Joel Spolsky on How to keep Excel interop from stealing focus while inserting images Joel Spolsky 2009-05-01T03:10:44Z 2009-05-01T03:10:44Z It sure sounds like a misbehaving component that Microsoft licensed. http://stackoverflow.com/questions/613678/in-tsql-how-would-you-convert-from-an-int-to-a-datetime-and-give-the-age/613716#613716 Comment by Joel Spolsky on In TSQL, how would you convert from an int to a datetime and give the age? Joel Spolsky 2009-03-17T02:10:40Z 2009-03-17T02:10:40Z Learning: He's right. Read the docs for DATEDIFF carefully http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/652802#652802 Comment by Joel Spolsky on What is the worst real-world macros/pre-processor abuse you've ever come across? Joel Spolsky 2009-03-17T02:08:45Z 2009-03-17T02:08:45Z only if you're a valley girl http://stackoverflow.com/questions/649130/how-to-disconnect-from-the-domain Comment by Joel Spolsky on How to disconnect from the domain Joel Spolsky 2009-03-16T03:25:40Z 2009-03-16T03:25:40Z Did you try joining it to a workgroup? http://stackoverflow.com/questions/633232/asp-how-to-import-data-from-a-merged-cell-in-excel/633242#633242 Comment by Joel Spolsky on ASP: How to import data from a merged cell in Excel? Joel Spolsky 2009-03-11T04:29:41Z 2009-03-11T04:29:41Z I like Marge just the way she is. Wouldn't want her to change one bit. http://stackoverflow.com/questions/611455/excel-pivot-chart-linear-time-scale/612980#612980 Comment by Joel Spolsky on Excel pivot chart linear time-scale Joel Spolsky 2009-03-06T23:16:15Z 2009-03-06T23:16:15Z oh... sorry... didn't notice the &quot;pivot table&quot; bit. http://stackoverflow.com/questions/254958/how-can-i-forward-an-email-to-fogbugz-and-have-it-make-it-into-a-bug/254966#254966 Comment by Joel Spolsky on How can I Forward an Email to FogBugz and Have it Make it into a Bug? Joel Spolsky 2009-02-24T16:10:32Z 2009-02-24T16:10:32Z It will handle attachments. Who the email gets assigned to depends on how the mailbox is set up in FogBugz. http://stackoverflow.com/questions/548520/how-can-i-configure-mercurial-to-use-winmerge-for-merges-under-cygwin/548525#548525 Comment by Joel Spolsky on How can I configure Mercurial to use WinMerge for merges, under cygwin? Joel Spolsky 2009-02-14T05:30:16Z 2009-02-14T05:30:16Z i have to wait 48 hours. http://stackoverflow.com/questions/42980/how-to-use-p4merge-as-the-merge-diff-tool-for-mercurial/399092#399092 Comment by Joel Spolsky on How to use p4merge as the merge/diff tool for Mercurial? Joel Spolsky 2009-02-14T05:10:09Z 2009-02-14T05:10:09Z I edited Ry4an's answer to incorporate your fix. Thanks! http://stackoverflow.com/questions/531001/running-server-side-function-as-browser-closes/531007#531007 Comment by Joel Spolsky on Running server-side function as browser closes Joel Spolsky 2009-02-10T04:11:42Z 2009-02-10T04:11:42Z probably worth another question... &quot;how to run periodic processes on asp.net server&quot; ...