User Not Sure - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:07:14Z http://stackoverflow.com/feeds/user/63136 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/728067/actionscript-mouseevent-clone-appears-broken 0 ActionScript MouseEvent.clone() appears broken? Not Sure 2009-04-08T00:12:36Z 2009-11-27T16:50:02Z <p>I have run into a problem attempting to <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/events/EventDispatcher.html#dispatchEvent%28%29" rel="nofollow">redispatch</a> mouse events in ActionScript 3, which I am admittedly a bit incredulous about. I have narrowed it down to the <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/events/MouseEvent.html#clone%28%29" rel="nofollow"><code>MouseEvent.clone()</code></a> method appearing, well, completely broken. The following event handler:</p> <pre><code> private function handleMouseMove( evt : MouseEvent ) : void { trace("mousemove", evt.stageX, evt.stageY); var newEvt : MouseEvent = evt.clone() as MouseEvent; trace("mousemoveclone", newEvt.stageX, newEvt.stageY); } </code></pre> <p>Results in the following output, ad infinitum:</p> <pre><code>mousemove 167 206 mousemoveclone 0 0 </code></pre> <p>This matches what the code I was redispatching the MouseEvent to was receiving, hence my hypothesis of the broken clone function.</p> <p>This is directly contradictory to what the linked documentation indicates should happen, unless I have missed something. I am at an entire loss as to what I did (or did not do) that could possibly cause this behavior. Did the AS3 guys really forget to read their own documents on <a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/events/Event.html#clone%28%29" rel="nofollow"><code>Event.clone()</code></a>?</p> <p>I can work around this by instead using function objects for my specific use case, but I'd prefer not to. Any ideas?</p> <p><strong>Edit:</strong> The localX and localY members are being properly cloned it seems, which puts me at even more of a loss as to what is going on here.</p> http://stackoverflow.com/questions/803548/using-numpad-with-modifier-keys-exhibits-curious-behavior 2 Using Numpad with Modifier Keys exhibits curious behavior Not Sure 2009-04-29T18:04:21Z 2009-10-31T18:00:02Z <p>I have a keyboard event listener, and I am listening for the <a href="http://livedocs.adobe.com/flash/9.0/main/00001136.html#wp71525" rel="nofollow">number pad key codes</a> (1 through 9) for when number lock is activated; this works fine. However, in my app I also want to allow usage of a modifier key (CTRL) along with the number pad keys. The strange thing is that when holding CTRL, pressing 1 or 3 does not generate any keyboard event whatsoever, whereas 2 and 4 - 9 do generate the expected events. <del>I have seen other references to this issue after some Googling, so I do not believe this is necessarily Flash-specific, but I have yet to find any answers.</del></p> <p>I tried using SHIFT as a modifier, but that just results in generating the key codes from the number pad as if number lock was off (eg, SHIFT+Numpad1 returns the End keycode, regardless of number lock state) - apparently this is intentional Windows behavior. ALT is not an option with the numpad due to <a href="http://en.wikipedia.org/wiki/Alt%5Fcode" rel="nofollow">altcodes</a>.</p> <p>Any ideas on how to get CTRL+Numpad1 and CTRL+Numpad3 to generate the keyboard events? Or any explanation as to why they don't?</p> <p><strong>Edit:</strong> I tried out using these key combinations in Firefox as enriquein suggests below, and all the key combinations work A-OK, leading me to believe that this is likely a Flash-specific issue, or at least not a hardware issue.</p> http://stackoverflow.com/questions/795678/visual-studio-designer-is-always-trying-to-change-my-control 4 Visual Studio Designer is always trying to change my control Not Sure 2009-04-27T23:24:25Z 2009-10-01T18:27:27Z <p>I have a somewhat complex UserControl, and Visual Studio 2008 is giving me a rather harmless annoyance when working with it. Every single time I open the control with the Designer, it decides to immediately change some of the harmless values set by the designer - namely the initialization of Size properties. If I save those changes, close, and reopen, it almost invariably ends up deciding another component of my control needs its initial size changed, ad infinitum. Luckily these changes are harmless since I'm using automatic sizing everywhere, but this is quite annoying to work with. I haven't the foggiest on where to start figuring out what's going wrong, my only thought right now is that the Designer is assigning the results of auto-sizing back into the initial size fields every time I open the control. Any ideas on causes/fixes?</p> <p><strong>Edit:</strong> Also, I am using Application Settings to save sizes of certain resizable child components across runs of the application, but I really hope the Designer is smart enough to understand that it should only ever be using the defaults. </p> http://stackoverflow.com/questions/946592/acquiring-last-rendered-screen-raster-in-flash 2 Acquiring last rendered screen raster in Flash Not Sure 2009-06-03T19:14:37Z 2009-09-29T06:43:45Z <p>Is there a way in AS3 to access the last render of the stage? Is that render result cached somewhere accessible? I specifically cannot re-render the stage myself to a Bitmap because that would be far too expensive, which is why I'm trying to use the last render.</p> <p>I need this because I'm trying to do some heat-distortion effects within some specific bounds of the screen, and a standard way to do that in 2D is by using a displacement map to jitter the pristine image. Of course, I'm open to other ideas to do heat distortion in Flash.</p> http://stackoverflow.com/questions/1140959/is-there-a-way-to-get-eclipse-to-treat-4-spaces-exactly-as-it-treats-a-tab/1141009#1141009 5 Answer by Not Sure for Is there a way to get Eclipse to treat 4 spaces exactly as it treats a tab? Not Sure 2009-07-17T00:41:38Z 2009-07-17T00:41:38Z <p>Try CTRL+[right,left] arrow key. Certainly one of my most-used combos.</p> http://stackoverflow.com/questions/1139133/whats-the-best-way-to-store-a-version-number-in-a-visual-studio-2008-project/1139152#1139152 4 Answer by Not Sure for Whats the best way to store a version number in a Visual Studio 2008 project? Not Sure 2009-07-16T17:41:03Z 2009-07-16T17:41:03Z <p>Go to Project Properties | Application | Assembly Information.</p> <p>You can access the version via <code>Assembly.GetExecutingAssembly().GetName().Version</code></p> http://stackoverflow.com/questions/1127460/how-to-add-reference-in-c/1127477#1127477 0 Answer by Not Sure for How to "add reference" in C++ Not Sure 2009-07-14T19:27:06Z 2009-07-14T19:27:06Z <p>I suggest looking at <a href="http://msdn.microsoft.com/en-us/library/1ez7dh12.aspx" rel="nofollow">the documentation</a>, specifically the section "Linking an Executable to a DLL."</p> http://stackoverflow.com/questions/1106221/what-type-of-diagram-is-best-suited-for-visualizing-threading-issues-such-as-cont/1106245#1106245 2 Answer by Not Sure for What type of diagram is best suited for visualizing threading issues such as contentions? Not Sure 2009-07-09T20:25:02Z 2009-07-09T20:25:02Z <p>The same way one diagrams network communication at the datagram level.</p> <p>Eg, you draw one timeline for each thread, and then your cross-thread communication consists of lines which connect those timelines at the points of sending on one, and receiving on the other.</p> http://stackoverflow.com/questions/1106083/big-o-question/1106094#1106094 10 Answer by Not Sure for Big O question Not Sure 2009-07-09T19:51:45Z 2009-07-09T19:51:45Z <p>O( n log n )</p> <p>Think about it - you're performing a log n operation n times.</p> http://stackoverflow.com/questions/1094276/strange-memory-problem-of-lokisingleton-lokismartptr-and-stdvector/1094470#1094470 1 Answer by Not Sure for Strange memory problem of Loki::Singleton, Loki::SmartPtr, and std::vector Not Sure 2009-07-07T19:55:19Z 2009-07-07T19:55:19Z <p>IMR, you can't use certain smart pointers in stl containers, and this is the exact problem that occurs. If memory serves, it has to do with how the stl containers copy the values not conforming to how smart pointers expect to be used.</p> http://stackoverflow.com/questions/1094387/why-does-removing-const-give-me-linker-errors/1094441#1094441 4 Answer by Not Sure for Why does removing const give me linker errors? Not Sure 2009-07-07T19:49:14Z 2009-07-07T19:49:14Z <p>The problem is that by defining it in the header file, it is being instantiated in each compilation unit that includes that header file, leading to it being multiply defined for the link stage.</p> <p>What you want to do is declare this in your .h:</p> <pre><code>extern std::string whiteSpaceBeforeLeadingCmntOption; </code></pre> <p>And then in a <em>single</em> cpp, declare:</p> <pre><code>std::string whiteSpaceBeforeLeadingCmntOption = "WhiteSpaceBeforeLeadingComment"; </code></pre> http://stackoverflow.com/questions/1089367/visual-c-2008-intellisense-interprets-clr-keywords-on-non-clr-project 0 Visual C++ 2008 Intellisense interprets CLR keywords on non-CLR project Not Sure 2009-07-06T21:49:27Z 2009-07-06T21:49:27Z <p>I'm using Visual C++ 2008 SP1 Express Edition, and as far as Intellisense goes, it is interpreting CLR keywords (like <code>event</code>), instead of treating them as regular C++ identifiers. This is not a CLR project, so I'm at a bit of a loss - any ideas on what's going wrong / how to fix? I wasn't able to find anything that sounded promising in the preferences nor project windows.</p> http://stackoverflow.com/questions/1088171/c-monte-carlo-incremental-risk-calculation-optimisation-random-numbers-paralle/1088298#1088298 0 Answer by Not Sure for c# Monte Carlo Incremental Risk Calculation optimisation, random numbers, parallel execution Not Sure 2009-07-06T17:43:09Z 2009-07-06T17:43:09Z <p>Being constrained to use .Net in the first place for a large-scale simulation is going to cost you quite a bit of performance right up front...but that said...</p> <p>If you're running a pure C# implementation of the Mersenne Twister, it's likely that you'll have a hard time tweaking all the performance you can out of it. If you check out the Mersenne Twister <a href="http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html" rel="nofollow">reference implementation</a> you'll see they have a C version that is heavily optimized for SSE-capable processors - this is very fast. I don't believe it's possible in C# (or at least, I'm not aware how) to force the usage of SSE instructions with that level of optimization. I'd suggest writing a C++/CLI wrapper (or a P/Invoke wrapper) around the Mersenne Twister libraries, and seeing how that affects your performance. However, you'll have to be careful with managed-unmanaged marhsalling affecting your performance, as I have seen other posts here on SO about that issue (though I can't seem to find them right now...).</p> <p>I may generate some flame for saying this, but if performance is a significant concern in your application, well-written C or C++ is almost always going to be preferable to any managed or interpreted language.</p> http://stackoverflow.com/questions/726967/debugging-axshockwaveflash 3 Debugging AxShockwaveFlash Not Sure 2009-04-07T18:15:22Z 2009-07-04T07:38:08Z <p>I'm building a C# app which contains an interactive Flash control via <code>AxShockwaveFlash</code>. One of the challenges is that while I am using the Eclipse-based Flex Builder to develop the Flash controls, it only seems to give me the ability to debug the Flash control if the movie is being run standalone, directly through the Flash player. I must resort to caveman (trace) debugging if I want to debug my ActionScript code from inside my C# app, which is far less than ideal.</p> <p>I saw that <code>AxShockwaveFlash</code> appears to provide hooks for external profiling support. I was hoping there might also be some hooks for external debugging support as well, so I could hook my Flex Builder debugger directly to AxShockwaveFlash, but nothing jumps out at me. Ideas?</p> http://stackoverflow.com/questions/1080757/why-is-msbuild-and-link-exe-hanging-during-a-build/1080829#1080829 0 Answer by Not Sure for Why is msbuild and link.exe "hanging" during a build? Not Sure 2009-07-03T21:06:51Z 2009-07-03T21:06:51Z <p>Have you tried disabling incremental linking, or alternatively, always forcing a Rebuild All?</p> http://stackoverflow.com/questions/1080449/reverse-a-sentence-in-c/1080497#1080497 1 Answer by Not Sure for Reverse a sentence in C?? Not Sure 2009-07-03T19:06:53Z 2009-07-03T19:31:02Z <pre><code>void ReverseString( char* str, int len ) { if( len &gt; 1 ) { swap( &amp;str[0], &amp;str[len - 1] ); ReverseString( ++str, len - 2 ); } } </code></pre> <p>Or, unrolling the tail-recursion:</p> <pre><code>void ReverseString( char* str, int len ) { while( len &gt; 1 ) { swap( &amp;str[0], &amp;str[len - 1] ); ++str; len -= 2; } } </code></pre> <p>Where swap is defined as:</p> <pre><code>void swap( char* a, char* b ) { *a ^= *b; *b ^= *a; *a ^= *b; } </code></pre> <p>If you use this though, your TA's will definitely know you didn't figure this out yourself :)</p> http://stackoverflow.com/questions/531259/three-dimensional-matrices-practical-usage/1080363#1080363 0 Answer by Not Sure for Three dimensional matrices: practical usage Not Sure 2009-07-03T18:10:32Z 2009-07-03T18:10:32Z <p>Graphics matrices (ie transform matrices) are actually a very narrow use of matrices; the applications of matrix math are quite, quite wide. They have many uses in statistics, from regression solving to stochastic analysis (lookup Markov matrices, I find them quite cool). Many uses in general engineering applications, solving constraint equations and the like. Linear programming too...the list is pretty endless.</p> http://stackoverflow.com/questions/1066462/how-to-implement-auto-complete-with-a-standardvaluescollection-on-a-propertygrid 0 How to implement Auto-Complete with a StandardValuesCollection on a PropertyGrid Not Sure 2009-06-30T22:44:14Z 2009-06-30T22:44:14Z <p>I have a property on an object whose custom <code>TypeConverter</code> specifies an exclusive <code>StandardValuesCollection</code> (let's say "Foo" and "Bar"), so that when editing this property via a <code>PropertyGrid</code>, a drop-down list of these values is displayed. I would also like to be able to directly type in the field on the PropertyGrid, and have it auto-complete to one of the standard values for me (eg, I type "F", and it brings up "Foo"). Currently, what I desire only works if you already have the drop-down editor opened from clicking the drop-down glyph, which is the specific step I would like to avoid.</p> <p>My only option seems to be writing a custom <code>UITypeEditor</code> to auto-complete from the standard values collection in the TypeConverter, but considering other controls with standard value support have auto-complete, I was hoping perhaps I just missed something on the PropertyGrid. Do I have a better option?</p> http://stackoverflow.com/questions/1045630/why-are-the-arguments-to-atan2-y-x-rather-than-x-y/1045652#1045652 7 Answer by Not Sure for Why are the arguments to atan2 Y,X rather than X,Y? Not Sure 2009-06-25T19:04:48Z 2009-06-25T19:04:48Z <p>My assumption has always been that this is because of the trig definition, ie that </p> <pre><code>tan(theta) = opposite / adjacent </code></pre> <p>When working with the canonical angle from the origin, opposite is always Y and adjacent is always X, so:</p> <pre><code>atan2(opposite, adjacent) = theta </code></pre> <p>Ie, it was done that way so there's no ordering confusion with respect to the mathematical definition.</p> http://stackoverflow.com/questions/1014422/performance-which-is-faster-calling-reverse-on-a-stack-or-popping-items-into-an/1014469#1014469 0 Answer by Not Sure for Performance : which is faster calling reverse on a stack or popping items into an array Not Sure 2009-06-18T18:43:09Z 2009-06-18T18:43:09Z <p>I would suggest taking a look at the actual implementation of Reverse() - you may find the <a href="http://www.red-gate.com/products/reflector/" rel="nofollow">.Net Reflector</a> useful for that.</p> http://stackoverflow.com/questions/1009460/winforms-how-to-determine-which-control-is-eating-my-keyboard-events 0 [WinForms] How to determine which control is eating my keyboard events Not Sure 2009-06-17T20:51:52Z 2009-06-17T21:09:45Z <p>In my .Net app, I keep running into the issue of a particular form/control which I expected to receive a keyboard event does not actually receive it. My debugging of this has not progressed much beyond caveman, eg setting breakpoints in all my controls, and seeing who ate a keyboard event that shouldn't have. There must be a better way - is there a tool out there which will help me trace the keyboard event handling?</p> http://stackoverflow.com/questions/989546/will-optimizing-code-become-unnecessary/989572#989572 3 Answer by Not Sure for Will optimizing code become unnecessary? Not Sure 2009-06-13T00:06:29Z 2009-06-13T00:06:29Z <p>Optimization will always be necessary, because the mitigating factor to Moore's Law is <a href="http://en.wikipedia.org/wiki/Software%5Fbloat" rel="nofollow">bloatware</a>.</p> http://stackoverflow.com/questions/988069/in-c-is-const-after-type-id-acceptable/988100#988100 2 Answer by Not Sure for In C++ is "const" after type ID acceptable? Not Sure 2009-06-12T17:55:45Z 2009-06-12T17:55:45Z <p>Putting "const" after the type declaration makes a whole lot more sense once you <strong>train yourself</strong> to read your C++ type declarations from right to left.</p> <p>I'm going to peg your cow-orker at 0-for-3 :)</p> http://stackoverflow.com/questions/983309/flash-actionscript-memory-fragmentation 2 Flash/ActionScript Memory Fragmentation Not Sure 2009-06-11T20:02:32Z 2009-06-12T08:03:32Z <p>In addition to mark-and-sweep, the garbage collectors for .Net and Java both also run a compaction phase to cut down on memory fragmentation. I am not able to find any documentation on a compaction/defragmentation phase for the Flash 9 garbage collector - does Flash not have any compaction phase?</p> http://stackoverflow.com/questions/983999/simple-3x3-matrix-inverse-code-c/984037#984037 1 Answer by Not Sure for Simple 3x3 matrix inverse code (C++) Not Sure 2009-06-11T22:12:22Z 2009-06-11T22:12:22Z <p>You give no details and your question is very generic, so my answer is to use <a href="http://www.netlib.org/blas/" rel="nofollow">BLAS</a>.</p> http://stackoverflow.com/questions/972705/is-there-a-way-to-initialize-an-array-with-non-constant-variables-c/972713#972713 0 Answer by Not Sure for Is there a way to initialize an array with non-constant variables? (C++) Not Sure 2009-06-09T21:58:28Z 2009-06-09T21:58:28Z <p>If you want a dynamically sized array as a class member, you need to array <code>new</code> it and assign that value to a pointer. The <code>char array[size]</code> syntax is <em>only</em> for statically-sized arrays.</p> <p>Better yet, you really should use an <code>std::vector&lt; std::vector&lt;char&gt; &gt;</code>, there are very few good reasons to manually work with dynamically sized arrays these days.</p> http://stackoverflow.com/questions/972152/how-to-create-a-template-function-within-a-class-c/972197#972197 3 Answer by Not Sure for How to create a template function within a class? (C++) Not Sure 2009-06-09T19:59:19Z 2009-06-09T19:59:19Z <p>Your guess is the correct one. The only thing you have to remember is that the member function template <em>definition</em> (in addition to the declaration) should be in the header file, not the cpp, though it does <em>not</em> have to be in the body of the class declaration itself.</p> http://stackoverflow.com/questions/900586/flex-3-disabling-project-refresh-on-build/957148#957148 0 Answer by Not Sure for [Flex 3] Disabling project refresh on build Not Sure 2009-06-05T17:38:28Z 2009-06-05T17:38:28Z <p>I contacted Adobe Support, there is no way in Flex 3 to disable any of the refreshes without breaking Flex. Bummer.</p> http://stackoverflow.com/questions/900586/flex-3-disabling-project-refresh-on-build 0 [Flex 3] Disabling project refresh on build Not Sure 2009-05-23T00:59:16Z 2009-06-05T17:38:28Z <p>In the Flex 3 Perspective in Eclipse, is it possible to disable the refreshing of a project after a build? How so?</p> http://stackoverflow.com/questions/946641/changing-the-speed-of-a-circular-motion/946674#946674 2 Answer by Not Sure for Changing the speed of a circular motion Not Sure 2009-06-03T19:30:28Z 2009-06-03T19:30:28Z <p>You're not using acceleration correctly if you're simply doing <code>speed = speed + 1</code>. More generically, you want to do this:</p> <pre><code>accel = 1; speed = speed + (accel * timeDelta); </code></pre> <p>Also, accel = 1 is quite a large angular velocity change in radians - try a smaller value, say <code>PI / 16</code>. If you need the acceleration to be that large and want to minimize the visibility of jerky movements, you may want to try out using some motion blur.</p> http://stackoverflow.com/questions/1144700/c-mileage-counter Comment by Not Sure on c# mileage counter Not Sure 2009-07-17T17:39:52Z 2009-07-17T17:39:52Z @jarus - we're not going to do your homework for you, how about showing us what you tried http://stackoverflow.com/questions/1133956/is-there-a-difference-in-the-runtime-of-the-following Comment by Not Sure on is there a difference in the runtime of the following: Not Sure 2009-07-16T00:45:18Z 2009-07-16T00:45:18Z They have the same Big-O, but contrary to most claims below, it is impossible to know which will be faster at runtime without knowing what step1, step2, and step3 do. There's code-cache coherency, data-cache coherency, branch prediction accuracy...any number of things that can change the runtime performance. Timing it yourself is the only way to &quot;know,&quot; and even so, the results are still specific to your hardware. http://stackoverflow.com/questions/1128637/using-typedescriptor-in-place-of-tryparse Comment by Not Sure on Using TypeDescriptor in place of TryParse Not Sure 2009-07-14T23:37:43Z 2009-07-14T23:37:43Z Where is it failing? Is converter null? Is the IsValid call returning false? http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237394#237394 Comment by Not Sure on What coding mistakes are a telltale giveaway of an inexperienced programmer? Not Sure 2009-07-13T20:52:01Z 2009-07-13T20:52:01Z If you call yourself a &quot;guru&quot; at anything, you might be an inexperienced developer :) http://stackoverflow.com/questions/1106221/what-type-of-diagram-is-best-suited-for-visualizing-threading-issues-such-as-cont/1106245#1106245 Comment by Not Sure on What type of diagram is best suited for visualizing threading issues such as contentions? Not Sure 2009-07-09T21:26:20Z 2009-07-09T21:26:20Z @John - Yes, I was not aware that was a popular term for such a drawing. http://stackoverflow.com/questions/1106083/big-o-question/1106090#1106090 Comment by Not Sure on Big O question Not Sure 2009-07-09T21:24:20Z 2009-07-09T21:24:20Z @Juozas - Big-O is an estimation for the worst case, not a special case. http://stackoverflow.com/questions/1094276/strange-memory-problem-of-lokisingleton-lokismartptr-and-stdvector/1094470#1094470 Comment by Not Sure on Strange memory problem of Loki::Singleton, Loki::SmartPtr, and std::vector Not Sure 2009-07-08T18:03:22Z 2009-07-08T18:03:22Z If you suspect your objects are getting deleted twice, have you tried sticking breakpoints in your destructor and checking the call stack? http://stackoverflow.com/questions/1094387/why-does-removing-const-give-me-linker-errors/1094421#1094421 Comment by Not Sure on Why does removing const give me linker errors? Not Sure 2009-07-07T19:50:28Z 2009-07-07T19:50:28Z +1 for beating me to it http://stackoverflow.com/questions/1091894/read-xmldocument-node-without-reading-its-child-nodes-in-c/1091902#1091902 Comment by Not Sure on Read XMLDocument node without reading its child nodes in C# Not Sure 2009-07-07T18:32:26Z 2009-07-07T18:32:26Z So I see...you can have your point back :) http://stackoverflow.com/questions/1091894/read-xmldocument-node-without-reading-its-child-nodes-in-c/1091902#1091902 Comment by Not Sure on Read XMLDocument node without reading its child nodes in C# Not Sure 2009-07-07T17:22:55Z 2009-07-07T17:22:55Z -1: If I had a pony... http://stackoverflow.com/questions/1091894/read-xmldocument-node-without-reading-its-child-nodes-in-c/1091981#1091981 Comment by Not Sure on Read XMLDocument node without reading its child nodes in C# Not Sure 2009-07-07T17:21:09Z 2009-07-07T17:21:09Z Sorry, that still loads the entire XML document into memory. See foreachdev's answer. http://stackoverflow.com/questions/1091894/read-xmldocument-node-without-reading-its-child-nodes-in-c/1092556#1092556 Comment by Not Sure on Read XMLDocument node without reading its child nodes in C# Not Sure 2009-07-07T17:20:35Z 2009-07-07T17:20:35Z +1 for the correct answer http://stackoverflow.com/questions/1093579/uninitialised-values-of-heap-and-stack-space Comment by Not Sure on Uninitialised values of heap and stack space Not Sure 2009-07-07T17:19:35Z 2009-07-07T17:19:35Z @Abhijith - How about you look up the Wikipedia pages on heaps and stacks first... http://stackoverflow.com/questions/1080757/why-is-msbuild-and-link-exe-hanging-during-a-build Comment by Not Sure on Why is msbuild and link.exe "hanging" during a build? Not Sure 2009-07-06T22:31:25Z 2009-07-06T22:31:25Z Are you on VS2008 with or without SP1? I did notice that the multi-coring logic of the build process changed after I upgraded to SP1. http://stackoverflow.com/questions/1088171/c-monte-carlo-incremental-risk-calculation-optimisation-random-numbers-paralle Comment by Not Sure on c# Monte Carlo Incremental Risk Calculation optimisation, random numbers, parallel execution Not Sure 2009-07-06T19:34:11Z 2009-07-06T19:34:11Z 8GB of memory is 4 GB of waste on 32 bits...