User stusmith - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T02:18:18Z http://stackoverflow.com/feeds/user/6604 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1888202/i-need-some-tool-to-view-http-request/1888405#1888405 1 Answer by stusmith for I need some tool to view Http Request. stusmith 2009-12-11T14:25:23Z 2009-12-11T14:25:23Z <p>If using Firefox, Live HTTP Headers is a nice add-on:</p> <p><a href="https://addons.mozilla.org/en-US/firefox/addon/3829" rel="nofollow">https://addons.mozilla.org/en-US/firefox/addon/3829</a></p> http://stackoverflow.com/questions/1789408/can-doubles-be-used-to-represent-a-64-bit-number-without-loss-of-precision/1789429#1789429 12 Answer by stusmith for Can doubles be used to represent a 64 bit number without loss of precision stusmith 2009-11-24T11:19:23Z 2009-11-24T11:19:23Z <p><strong>No</strong></p> <p>At least some bits of a 64-bit double must be used to represent the exponent (position of the binary point), and hence there are fewer than 64-bits available for the actual number. So no, a 64-bit double can't represent all the values a 64-bit integer can (and vice-versa).</p> http://stackoverflow.com/questions/1762088/common-reasons-for-bugs-in-release-version-not-present-in-debug-mode/1762130#1762130 4 Answer by stusmith for Common reasons for bugs in release version not present in debug mode stusmith 2009-11-19T09:52:42Z 2009-11-19T11:35:07Z <p>Other differences might be:</p> <ul> <li>In a garbage-collected language, the collector is usually more aggressive in release mode;</li> <li>Layout of memory may often be different;</li> <li>Memory may be initialized differently (eg could be zeroed in debug mode, or re-used more aggressively in release);</li> <li>Locals may be promoted to register values in release, which can cause issues with floating point values.</li> </ul> http://stackoverflow.com/questions/1749901/how-can-code-in-a-try-catch-block-throw-an-unhandled-exception/1749984#1749984 0 Answer by stusmith for How can code in a "try...catch" block throw an unhandled exception? stusmith 2009-11-17T16:17:59Z 2009-11-17T16:17:59Z <p>Without knowing the language it's difficult to say, but many languages have the concept of exceptions that cannot be caught - for example in .NET, OutOfMemoryException and ExecutionEngineException (amongst others) cannot be caught, since they are essentially non-recoverable.</p> http://stackoverflow.com/questions/1728360/finding-asp-net-source-code/1728403#1728403 1 Answer by stusmith for Finding ASP.NET source code stusmith 2009-11-13T10:31:04Z 2009-11-13T10:31:04Z <p>I'm not sure whether ASP.NET is included, but some parts of the .NET framework are linked to Source Server - you can then step into the framework code, almost as if it were your own. Here's an article to get you started:</p> <p><a href="http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx" rel="nofollow">http://blogs.msdn.com/sburke/archive/2008/01/16/configuring-visual-studio-to-debug-net-framework-source-code.aspx</a></p> http://stackoverflow.com/questions/1671984/how-can-you-dynamically-put-different-patterns-on-images-in-a-webpage/1713929#1713929 1 Answer by stusmith for How can you dynamically put different patterns on images in a webpage . . stusmith 2009-11-11T09:03:21Z 2009-11-11T09:03:21Z <p>GDI+ works fine under ASP.NET. (WPF used to, but then was broken with a service pack. Not sure if it's working again now).</p> <p>Building images server-side is pretty easy - the trick is linking them to client-side requests. I made use of a stack representation - my article here:</p> <p><a href="http://www.hackification.com/2008/10/29/stack-based-processing-part-2/" rel="nofollow">http://www.hackification.com/2008/10/29/stack-based-processing-part-2/</a></p> http://stackoverflow.com/questions/1623906/programmatically-inspect-net-code/1623925#1623925 7 Answer by stusmith for Programmatically inspect .NET code stusmith 2009-10-26T09:44:32Z 2009-10-26T09:44:32Z <p><a href="http://www.ndepend.com/" rel="nofollow">NDepend</a> gives a SQL-like query language for querying .NET code structure.</p> http://stackoverflow.com/questions/1577477/are-there-any-significant-changes-in-localization-features-between-vs2005-net-2 1 Are There Any Significant Changes in Localization Features Between VS2005/.NET 2.0, and VS2008/.NET 3.5? stusmith 2009-10-16T11:18:37Z 2009-10-16T12:03:06Z <p>We have a non-localized WebForms app written in VS2005/.NET 2.0, and are looking to localize it.</p> <p>Are there any significant changes between .NET 2.0 and .NET 3.5 in the area of localization (either framework features or Visual Studio tools) that would make it worthwhile for us to upgrade the project?</p> http://stackoverflow.com/questions/1559763/how-to-argue-that-if-we-could-solve-the-halting-problem-then-we-could-solve-busy/1559820#1559820 3 Answer by stusmith for How to argue that if we could solve the halting problem, then we could solve busy beaver? stusmith 2009-10-13T12:10:32Z 2009-10-13T12:10:32Z <p>The BB function is defined to be the maximum number of steps a Turing machine of a particular size can carry out and still halt. (Another way of putting it is that all Turing machines of size x will either halt in less than BB(x) steps, or run forever).</p> <p>Assuming you have a Turing machine of complexity x, then you could determine whether it would halt or not by letting it run for BB(x) time-steps - if it hadn't halted by then, then by definition it never will.</p> <p>Equally, if you could solve the halting problem, you could evaluate all possible Turing machines of size x, eliminate those that don't halt, and take BB(x) to be the maximum of the run times of the remainders.</p> <p>Of course, BB(x) is non-computable - and in fact grows faster than any possible computable function you could name - hence it cannot even be approximated.</p> http://stackoverflow.com/questions/26301/your-favourite-algorithm-and-the-lesson-it-taught-you/1538367#1538367 0 Answer by stusmith for Your favourite algorithm and the lesson it taught you. stusmith 2009-10-08T14:57:18Z 2009-10-08T14:57:18Z <p>Map/Reduce. Two simple concepts that fit together to make a load of data-processing tasks easier to parallelize.</p> <p>Oh... and it's only the basis of massively-parallel indexing:</p> <p><a href="http://labs.google.com/papers/mapreduce.html" rel="nofollow">http://labs.google.com/papers/mapreduce.html</a></p> http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/1513885#1513885 0 Answer by stusmith for What is the one programming skill you have always wanted to master but haven't had time? stusmith 2009-10-03T14:35:43Z 2009-10-03T14:35:43Z <p>Time management. Just never had the time to learn it.</p> http://stackoverflow.com/questions/1509442/c-linq-style-for-each/1509478#1509478 1 Answer by stusmith for C#: Linq style "For Each" stusmith 2009-10-02T13:21:32Z 2009-10-02T13:21:32Z <p>The official MS line is "because it's not a functional operation" (ie it's a stateful operation).</p> <p>Couldn't you do something like:</p> <pre><code>list.Select( x =&gt; x+1 ) </code></pre> <p>or if you really need it in a List:</p> <pre><code>var someValues = new List&lt;int&gt;( list.Select( x =&gt; x+1 ) ); </code></pre> http://stackoverflow.com/questions/1506086/asp-net-image-resizing/1506235#1506235 0 Answer by stusmith for ASP.NET Image Resizing stusmith 2009-10-01T20:20:10Z 2009-10-01T20:20:10Z <p>GDI+ works fine in ASP.NET. (WPF used to, but doesn't now).</p> <p>The algorithm for fitting an image into a given rectangle isn't too tricky: work out the ratios of width/height for both the image and the target, then resize based on either width or height. Obviously which you choose depends on whether you want to fit in the target, or cover the target.</p> <p>Also, I found that a stack-based approach worked nicely for representing the transforms:</p> <p><a href="http://www.hackification.com/2008/10/29/stack-based-processing-part-2/" rel="nofollow">http://www.hackification.com/2008/10/29/stack-based-processing-part-2/</a></p> http://stackoverflow.com/questions/1499015/linq-caching-data-values-major-concurrency-problem/1499141#1499141 2 Answer by stusmith for Linq caching data values - major concurrency problem? stusmith 2009-09-30T16:09:18Z 2009-09-30T16:09:18Z <p>This isn't an issue I've come across before (since I don't tend to keep DataContexts open for long periods of time), but it looks like someone else has:</p> <p><a href="http://www.rocksthoughts.com/blog/archive/2008/01/14/linq-to-sql-caching-gotcha.aspx" rel="nofollow">http://www.rocksthoughts.com/blog/archive/2008/01/14/linq-to-sql-caching-gotcha.aspx</a></p> http://stackoverflow.com/questions/1485088/would-you-trust-mono-as-a-platform-to-build-an-startup/1486399#1486399 2 Answer by stusmith for Would you trust mono as a platform to build an startup? stusmith 2009-09-28T10:43:01Z 2009-09-28T10:43:01Z <p>I've worked on Mono for a cross-platform commercial Windows/Linux project.</p> <ul> <li>The core of Mono (the runtime) is pretty solid - it's amazing how you can compile on Windows and run on Linux.</li> <li>MonoDevelop is pretty flaky. Hopefully that will change, but for now it's painful. If all you need is Linux runtime support (not Linux dev), you will reduce your problems. I wouldn't want to code a sizable project in it.</li> <li>Cross-test regularly. Don't do a week's work on Windows, then find you have to re-write for Linux (or vice-versa). Try to build and test on both environments every day.</li> <li>Some .NET things don't work on Mono. Obviously you shouldn't start a WinForms on WPF app and expect it to work. Plan your features: don't get half-way through and find Mono doesn't support a particular technology you need.</li> <li>Plan ahead and test every single language and framework feature you think you'll need. The Mono libraries are incomplete and you can't assume you have a full framework.</li> </ul> http://stackoverflow.com/questions/1431397/firefox-engine-library/1431611#1431611 0 Answer by stusmith for Firefox engine library stusmith 2009-09-16T08:07:36Z 2009-09-16T08:07:36Z <p>If you just want the DOM from a webpage - say for scraping purposes, and not for display - you might find the Crowbar project useful:</p> <p><a href="http://simile.mit.edu/wiki/Crowbar" rel="nofollow">http://simile.mit.edu/wiki/Crowbar</a></p> http://stackoverflow.com/questions/1420707/array-of-ids-how-to-select-with-jquery/1420771#1420771 3 Answer by stusmith for Array of IDs - how to select with JQuery? stusmith 2009-09-14T10:35:11Z 2009-09-14T11:12:13Z <p>(NB - I haven't tried this - this is off the top of my head)</p> <p>Let's say your array is "arr".</p> <p>Couldn't you map your array of string identifiers into an array of jQuery objects, then concantenate them all using the usual jQuery selector?</p> <pre><code>$($.map(arr, function(id) { return $('#' + id); })) </code></pre> http://stackoverflow.com/questions/1373381/jquery-reduce-the-adoption-of-silverlight/1373427#1373427 2 Answer by stusmith for jquery reduce the adoption of Silverlight? stusmith 2009-09-03T13:31:12Z 2009-09-03T13:31:12Z <p>Well, I think so... but I have no figures to prove it and no crystal ball.</p> <p>You could look at it this way: learning Silverlight won't help with any other kind of web development (except in general terms), whereas whatever web technology you use, you'll likely need JavaScript skills.</p> <p>I think another nail in the Silverlight coffin will be the powerful new CSS techniques being developed by Safari and the other browser vendors, for example:</p> <p><a href="http://www.the-art-of-web.com/css/css-animation/" rel="nofollow">http://www.the-art-of-web.com/css/css-animation/</a></p> <p>If every browser supported that, would you even consider Silverlight?</p> <p>Having said that, if you want to use video or massive amounts of animation on the web, Silverlight could be a sensible choice.</p> http://stackoverflow.com/questions/662341/using-margin-0-auto-in-internet-explorer-8 3 Using "margin: 0 auto;" in Internet Explorer 8 stusmith 2009-03-19T14:05:40Z 2009-08-19T12:26:27Z <p>I'm in the process of doing some advance IE8 testing, and it seems that the old technique of using "margin: 0 auto;" doesn't work in all cases in IE8.</p> <p>The following piece of HTML gives a centered button in FF3, Opera, Safari, Chrome, IE7, and IE8 compat, but <strong>NOT</strong> in IE8 standard:</p> <p> </p> <pre><code>&lt;div style="height: 500px; width: 500px; background-color: Yellow;"&gt; &lt;input type="submit" style="display: block; margin: 0 auto;" /&gt; &lt;/div&gt; </code></pre> <p> </p> <p>(As a work-around I can add an explicit width to the button).</p> <p>So the question is: which browsers are correct? Or is this one of those cases where the behaviour is undefined?</p> <p>(My thinking is that <strong>all</strong> the browsers are incorrect - shouldn't the button be 100% width if it's "display: block"?)</p> <p><em>UPDATE: I'm being a dunce. Since input isn't a block-level element, I should have just contained it within a div with "text-align: center". Having said that, for curiosity's sake, I'd still like to know whether the button should or shouldn't be centered in the example above.</em></p> <p><strong>FOR THE BOUNTY: I know I'm doing odd things in the example, and as I point out in the update, I should have just aligned it center. For the bounty, I'd like references to the specs that answer:</strong></p> <ol> <li><p><strong>If I set "display: block", should the button be width 100%? Or is this undefined?</strong></p></li> <li><p><strong>Since the display is block, should "margin: 0 auto;" center the button, or not, or undefined?</strong></p></li> </ol> http://stackoverflow.com/questions/1124968/most-harmful-misconception-of-beginners-about-programming/1126004#1126004 0 Answer by stusmith for Most harmful misconception of beginners about programming? stusmith 2009-07-14T15:03:42Z 2009-07-14T15:03:42Z <p>That the difference between a successful project, and a failure, is due to technical issues or choices.</p> <p>In fact, the difference is almost always due to social (people-based / team-based) factors.</p> http://stackoverflow.com/questions/1077900/how-do-you-manage-your-own-small-project/1121876#1121876 1 Answer by stusmith for How do you manage your own small project? stusmith 2009-07-13T20:34:28Z 2009-07-13T20:34:28Z <ol> <li>If it's a small project you should be able to keep track of the overview in your head. If you can't, it's too big. Having said that, a bug and feature list (say in Excel) is a good idea.</li> <li>Work out how long you generally get to work in a single strecth, and prepare a list of tasks that fit well within that time. For example, if you get (say) an hour in the evenings after work but before tea, make a list of half-hour tasks. They should be tiny (eg "line up these controls", "refactor this single class", "add one extra input field"). It's better to cross off one tiny task than say "I've made 1% progess on this big task".</li> <li>Keep it small. Trim, trim, and trim some more. Work out what's the absolute minimum v1. Even if that has no hope of making money, it could generate ad revenue or at least some web discussion. Once you've done v1, you can worry about v2. If you manage one hour a night, then a six-man-month project will take nearly three years.</li> <li>Use source control, and use backups. Got more than one machine? I use a laptop as an SVN server, and work on my main machine. I use a batch file to save a dump of the repository to Dropbox once a week. Free and easy.</li> <li>Don't dump your girlfriend - get buy-in. Can they help on the project? Write the docs? Promote it? Graphic design? Test? Code?</li> </ol> http://stackoverflow.com/questions/90971/how-do-i-use-inotifypropertychanged-to-update-an-array-binding 6 How do I use INotifyPropertyChanged to update an array binding? stusmith 2008-09-18T08:36:28Z 2009-04-28T16:22:53Z <p>Let's say I have a class:</p> <pre><code>class Foo { public string Bar { get { ... } } public string this[int index] { get { ... } } } </code></pre> <p>I can bind to these two properties using "{Binding Path=Bar}" and "{Binding Path=[x]}". Fine.</p> <p>Now let's say I want to implement INotifyPropertyChanged:</p> <pre><code>class Foo : INotifyPropertyChanged { public string Bar { get { ... } set { ... if( PropertyChanged != null ) { PropertyChanged( this, new PropertyChangedEventArgs( "Bar" ) ); } } } public string this[int index] { get { ... } set { ... if( PropertyChanged != null ) { PropertyChanged( this, new PropertyChangedEventArgs( "????" ) ); } } } public event PropertyChangedEventHandler PropertyChanged; } </code></pre> <p>What goes in the part marked ????? (I've tried string.Format("[{0}]", index) and it doesn't work). Is this a bug in WPF, is there an alternative syntax, or is it simply that INotifyPropertyChanged isn't as powerful as normal binding?</p> http://stackoverflow.com/questions/781626/how-to-know-the-size-of-callbacks-in-asp-net-ajax/781780#781780 1 Answer by stusmith for How to know the size of callbacks in ASP.NET AJAX? stusmith 2009-04-23T13:46:41Z 2009-04-23T13:46:41Z <p><a href="https://addons.mozilla.org/en-US/firefox/addon/3829" rel="nofollow">Live HTTP Headers</a> (Firefox) or <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler 2</a> (IE) might be useful - they both show all headers including content size.</p> http://stackoverflow.com/questions/646974/is-there-a-standard-technique-for-packing-binary-data-into-a-utf-16-string/669285#669285 2 Answer by stusmith for Is there a standard technique for packing binary data into a UTF-16 string? stusmith 2009-03-21T13:16:40Z 2009-03-21T13:16:40Z <p><strong>Firstly, remember that Unicode doesn't mean 16 bits.</strong> The fact that System.String uses UTF-16 internally is neither here nor there. Unicode characters are abstract - they only gain bit representations through encodings.</p> <p>You say "my storage is a System.String" - if that's the case, you cannot talk about bits and bytes, only Unicode characters. System.String certainly has it's own internal encoding, but (in theory) that could be different.</p> <p>Incidentally, if you believe that the internal representation of System.String is too memory-inefficient for Base64-encoded data, why aren't you also worrying about Latin/Western strings?</p> <p>If you want to store binary data in a System.String, you need a mapping between collections of bits and characters.</p> <p>Option A: There's a pre-made one in the shape of Base64 encoding. As you've pointed out, this encodes six bits of data per character.</p> <p>Option B: If you want to pack more bits per character, then you'll need to make an array (or encoding) of 128, 256, 512, etc Unicode characters, and pack 7, 8, 9, etc bits of data per character. Those characters need to be real Unicode characters.</p> <p>To answer your question simply, yes there is a standard, it's Base64-encoding.</p> <p>Is this a real problem? Do you have perf data to support your idea of not using Base64?</p> http://stackoverflow.com/questions/650351/your-first-c-compiler/650508#650508 0 Answer by stusmith for Your first C compiler? stusmith 2009-03-16T13:53:34Z 2009-03-16T13:53:34Z <p>"Easy C" on the Acorn Archimedes, back in about 1995. It was pretty broken (eg, would only compile loops if you had the body as a block {...}, rather than a single statement). It also tried to "optimize" certain 'for' loops to go backwards... but broke them too.</p> <p>Soooo... in '98 I decided to port LCC to emit ARM code, having written an assembler and linker to support it. I actually managed to get it all working in the end, minus floating point stuff (for which I didn't have the info).</p> <p>I guess I had too much time on my hands back in those days. Wish I still had a copy of the code.</p> http://stackoverflow.com/questions/614784/pdf-wrong-error-in-ie6-and-ie7-with-https/615123#615123 0 Answer by stusmith for PDF wrong error in IE6 and IE7 with https stusmith 2009-03-05T14:56:53Z 2009-03-05T14:56:53Z <p>You'd be better off using a generic handler (.ASHX) to serve this sort of content, rather than trying to force a web-page to serve content other than HTML.</p> http://stackoverflow.com/questions/610080/using-gethashcode-to-secure-users-passwords/610100#610100 2 Answer by stusmith for Using GetHashCode to "secure" users passwords stusmith 2009-03-04T10:58:09Z 2009-03-04T10:58:09Z <p>It's not just insecure, but also subject to change:</p> <p><a href="http://netrsc.blogspot.com/2008/08/gethashcode-differs-on-systems.html" rel="nofollow">http://netrsc.blogspot.com/2008/08/gethashcode-differs-on-systems.html</a></p> <p>The value returned by GetHashValue for a given input has changed in the past.</p> <p>There's no guarantee it will even be the same between different executions of the app.</p> http://stackoverflow.com/questions/609789/help-i-am-a-javascript-illiterate/609997#609997 1 Answer by stusmith for Help, i am a Javascript illiterate stusmith 2009-03-04T10:23:54Z 2009-03-04T10:30:11Z <p>I'm going to use jQuery to simplify things, hope that's OK...</p> <p>Perform the database look-ups on the server-side, and emit data into the HTML. You should be looking to produce something like this:</p> <pre><code>&lt;div id="maps-table"&gt; &lt;div class="map-entry"&gt; &lt;span class="map-title"&gt;Title 1&lt;/span&gt; &lt;span class="map-text"&gt;Text 1&lt;/span&gt; &lt;span class="map-coordinates"&gt;Coordinates 1&lt;/span&gt; &lt;/div&gt; &lt;div class="map-entry"&gt; &lt;span class="map-title"&gt;Title 2&lt;/span&gt; &lt;span class="map-text"&gt;Text 2&lt;/span&gt; &lt;span class="map-coordinates"&gt;Coordinates 2&lt;/span&gt; &lt;/div&gt; ... &lt;/div&gt; </code></pre> <p>If you're using something like ASP.NET you can use an asp:Repeater.</p> <p>Once you have the data rendered in your HTML, you can query and iterate over it:</p> <pre><code>$('#maps-table .map-entry').each(function() { var title = $(this).find('.map-title').text(); var text = $(this).find('.map-text').text(); var coordinates = $(this).find('.map-coordinates').text(); // Add map markers here, eg: var marker = new GMarker(new GLatLng(coordinates)); var html = title + "&lt;br/&gt;" + text; map.addOverlay(marker); marker.openInfoWindowHtml(html); }); </code></pre> http://stackoverflow.com/questions/594891/where-does-one-begin-when-designing-and-implementing-an-application/594996#594996 2 Answer by stusmith for Where does one begin when designing and implementing an application? stusmith 2009-02-27T14:33:06Z 2009-02-27T14:33:06Z <p>Quoting Linus Torvalds:</p> <blockquote> <p>"Nobody should start to undertake a large project. You start with a small trivial project, and you should never expect it to get large. If you do, you’ll just overdesign and generally think it is more important than it likely is at that stage. Or worse, you might be scared away by the sheer size of the work you envision. So start small, and think about the details. Don’t think about some big picture and fancy design. If it doesn’t solve some fairly immediate need, it’s almost certainly over-designed. And don’t expect people to jump in and help you. That’s not how these things work. You need to get something half-way useful first, and then others will say “hey, that almost works for me”, and they’ll get involved in the project."</p> </blockquote> <p>Basically, don't try to make the finished app all in one go. Implement just one feature, and complete that. Then start another feature, and so forth. Otherwise, you'll never get there.</p> <p>I'd also add, "keep it clean" - if at any stage your code gets a little messy, refactor it before adding any more features. Don't accumulate a large development debt.</p> http://stackoverflow.com/questions/594562/c-dynamic-trees-for-genetic-programming/594674#594674 1 Answer by stusmith for C# Dynamic Trees for Genetic Programming stusmith 2009-02-27T13:11:18Z 2009-02-27T13:11:18Z <p>Breeding programs represented in languages such as C# is very tricky - they simply aren't designed to be malleable - you will find that the vast majority of changes you make simply cause the program to fail.</p> <p>I would recommend one of two alternative approaches:</p> <ol> <li>Pseudo-machine language, using pattern-matching on two kinds of NOPs to allow branching or looping;</li> <li>A LISP-link language, using recursion on named functions to allow iteration.</li> </ol> <p>(1) is representable using a linear sequence of instructions and some form of virtual register or stack machine. (2) is representable using a tree, and evaluated using some form of "reduce" algorithm.</p> <p>Whatever approach you use, you'll need to execute the programs in a sandbox - infinite loops will be common, so you'll need to be able to stop them after a set number of cycles.</p> http://stackoverflow.com/questions/1789408/can-doubles-be-used-to-represent-a-64-bit-number-without-loss-of-precision/1789429#1789429 Comment by stusmith on Can doubles be used to represent a 64 bit number without loss of precision stusmith 2009-11-24T14:59:29Z 2009-11-24T14:59:29Z Even the impractical solution might not work - for instance a signalling NaN (SNaN) value might trigger an exception if handled within Lua (no idea if that's true - but it might). http://stackoverflow.com/questions/1790204/in-c-is-i1-atomic/1790217#1790217 Comment by stusmith on In C is "i+=1;" atomic? stusmith 2009-11-24T14:43:12Z 2009-11-24T14:43:12Z Not sure if I'm being thick, but how can you even assume this is a memory operation? &quot;i&quot; could be in a register, surely? (Unless we're assuming volatile). http://stackoverflow.com/questions/1761347/the-jquery-displays-20-099999999999998-instead-of-20-1 Comment by stusmith on The Jquery displays $20.099999999999998 instead of $20.1 stusmith 2009-11-19T12:22:56Z 2009-11-19T12:22:56Z It's a floating point problem, nothing to do with JavaScript. 1/10 can't be represented in a fixed number of binary digits, in the same way 1/3 can't be represented with a fixed number of decimal digits. http://stackoverflow.com/questions/1762088/common-reasons-for-bugs-in-release-version-not-present-in-debug-mode Comment by stusmith on Common reasons for bugs in release version not present in debug mode stusmith 2009-11-19T11:38:30Z 2009-11-19T11:38:30Z Agreed, it's a good question. So many subtleties involved, and they bite you in the behind at the worst possible moment (i.e. when you no longer have full debug support to solve the problem, by definition). http://stackoverflow.com/questions/1749901/how-can-code-in-a-try-catch-block-throw-an-unhandled-exception Comment by stusmith on How can code in a "try...catch" block throw an unhandled exception? stusmith 2009-11-17T16:08:05Z 2009-11-17T16:08:05Z What language/framework are you using? http://stackoverflow.com/questions/98354/whats-the-best-api-youve-ever-used/98600#98600 Comment by stusmith on What's the best API you've ever used? stusmith 2009-11-17T10:59:48Z 2009-11-17T10:59:48Z Although, when things go wrong, debugging is a nightmare. Some of the binding syntax is a little obscure too. http://stackoverflow.com/questions/1742665/array-more-efficient-than-dictionary Comment by stusmith on Array more Efficient than Dictionary stusmith 2009-11-16T15:23:33Z 2009-11-16T15:23:33Z You can save some time and just use System.Globalization.DateTimeFormatInfo.CurrentInfo.MonthNames. http://stackoverflow.com/questions/1698154/force-break-on-any-exception-thrown-in-program/1698165#1698165 Comment by stusmith on Force break on any exception thrown in program stusmith 2009-11-08T22:40:46Z 2009-11-08T22:40:46Z It's a real shame this isn't the default behaviour. http://stackoverflow.com/questions/377133/how-to-kindly-ask-your-users-to-upgrade-from-ie6 Comment by stusmith on How to (kindly) ask your users to upgrade from IE6? stusmith 2009-11-04T13:30:45Z 2009-11-04T13:30:45Z I would disagree with your statement &quot;90% of my IE6-using visitors are in the the mums and dads category&quot; - most home users will have updates applied automatically. I would say that 90% of IE6 users are corporate. Obviously, we're both guessing here though... http://stackoverflow.com/questions/1637903/odd-performance-degradation-in-application/1637925#1637925 Comment by stusmith on Odd performance degradation in application... stusmith 2009-10-28T15:24:43Z 2009-10-28T15:24:43Z I'll second the use of the Memory Profiler. It lets you take snapshots and compare them - so you can take a snapshot on one iteration, take another on the next one, and diff them - you can see exactly what is growing between common iterations of your app. http://stackoverflow.com/questions/1631670/why-is-there-a-conflict-between-variables-and-functions-of-the-same-name-in-jscri Comment by stusmith on Why is there a conflict between variables and functions of the same name in JScript? stusmith 2009-10-27T15:58:13Z 2009-10-27T15:58:13Z JavaScript becomes a lot easier to understand if you stop using the &quot;function foo() {...}&quot; syntax, and start using the &quot;var foo = function() {...}&quot; form. Suddenly the fact that functions are objects that you reference in the same way as anything becomes clear, and opens up lambda-style coding. http://stackoverflow.com/questions/1577477/are-there-any-significant-changes-in-localization-features-between-vs2005-net-2/1577656#1577656 Comment by stusmith on Are There Any Significant Changes in Localization Features Between VS2005/.NET 2.0, and VS2008/.NET 3.5? stusmith 2009-10-16T12:17:17Z 2009-10-16T12:17:17Z Unfortunately, much as I might want to move to .NET 4, that's probably too new. Many thanks for the info however. http://stackoverflow.com/questions/1485088/would-you-trust-mono-as-a-platform-to-build-an-startup/1486399#1486399 Comment by stusmith on Would you trust mono as a platform to build an startup? stusmith 2009-09-28T16:22:51Z 2009-09-28T16:22:51Z Not sure... I guess I assumed that it didn't... but that just underlines the point: don't assume, find out, and find out early. http://stackoverflow.com/questions/1485088/would-you-trust-mono-as-a-platform-to-build-an-startup/1486399#1486399 Comment by stusmith on Would you trust mono as a platform to build an startup? stusmith 2009-09-28T12:09:59Z 2009-09-28T12:09:59Z I probably ought to qualify my points - I think Mono is an amazing piece of development, and I think MonoDevelop /will/ be amazing in the future. I hope no-one thought I was bashing it! http://stackoverflow.com/questions/1458969/-ajax-and-webmethod-pagemethods Comment by stusmith on $.ajax and webmethod/pagemethods. stusmith 2009-09-22T13:37:31Z 2009-09-22T13:37:31Z I would suggest using a generic handler (.ASHX) rather than trying to get a web-page (.ASPX) to return JSON data.