User lagerdalek - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T23:55:30Z http://stackoverflow.com/feeds/user/5302 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/550702/at-what-point-does-using-a-stringbuilder-become-insignificant-or-an-overhead 3 At what point does using a StringBuilder become insignificant or an overhead? lagerdalek 2009-02-15T10:55:34Z 2009-12-01T14:47:46Z <p>Recently I have found myself using StringBuilder for all string concatenations, big and small, however in a recent performance test I swapped out a colleague's <em>stringOut = string1 + "." string2</em> style concatenation (being used in a 10000x + loop with the StringBuilder being newed each time) for a StringBuilder just to see what difference it would make in a minor concatenation.</p> <p>I found, over many runs of the performance test, the change was both insignificantly higher or lower regardless of concatenation or StringBuilder (restating this was for <em>small</em> concatenations).</p> <p>At what point does the 'newing up' of a StringBuilder object negate the benefits of using one?</p> http://stackoverflow.com/questions/55517/very-slow-compile-times-on-visual-studio 15 Very slow compile times on Visual Studio lagerdalek 2008-09-10T23:56:00Z 2009-12-01T14:26:41Z <p>We are getting very slow compile times, which can take upwards of 20+ minutes on dual core 2GHz, 2G Ram machines.</p> <p>A lot of this is due to the size of our solution which has grown to 70+ projects, as well as VSS which is a bottle neck in itself when you have a lot of files. (swapping out VSS is not an option unfortunately, so I don't want this to descend into a VSS bash)</p> <p>We are looking at combing projects (not nice, as we like the separation of concerns, but is a good opportunity to refactor away some dead wood). </p> <p>We are also looking at having multiple solutions to achieve greater separation of concerns and quicker compile times for each element of the application. This I can see will become a dll hell as we try to keep things in synch.</p> <p>I am interested to know how other teams have dealt with this scaling issue, what do you do when your code base reaches a critical mass that you are wasting half the day watching the status bar deliver compile messages</p> <p><strong>UPDATE</strong> Apologies, I neglected to mention this is a C# solution. Thanks for all the cpp suggestions, but it's been a few years since I've had to worry about headers. At a distance I say I miss C++, but I'm not sure I want to go back</p> <p><strong>EDIT:</strong></p> <p>Nice suggestions that have helped so far (not saying there aren't other nice suggestions below, just what has helped)</p> <ul> <li>New 3GHz laptop - the power of lost utilization works wonders when whinging to management <li>Disable Anti Virus during compile <li>'Disconnecting' from VSS (actually the network) during compile - I may get us to remove VS-VSS integration altogether and stick to using the VSS UI </ul> <p>Still not rip-snorting through a compile, but every bit helps.</p> <p>Orion did mention in a comment that generics may have a play also. From my tests there does appear to be a minimal performance hit, but not high enough to sure - compile times can be inconsistent due to disc activity. Due to time limitations, my tests didn't include as many Generics, or as much code, as would appear in live system, so that may accumulate. I wouldn't avoid using generics where they are supposed to be used, just for compile time performance</p> <p><strong>WORKAROUND</strong></p> <p>We are testing the practice of building new areas of the application in new solutions, importing in the latest dlls as required, them integrating them into the larger solution when we are happy with them.</p> <p>We may also do them same to existing code by creating temporary solutions that just encapsulate the areas we need to work on, and throwing them away after reintegrating the code. We need to weigh up the time it will take to reintegrate this code against the time we gain by not having Rip Van Winkle like experiences with rapid recompiling during development.</p> http://stackoverflow.com/questions/164896/limitations-in-running-ruby-rails-on-windows 11 Limitations in running Ruby/Rails on windows lagerdalek 2008-10-02T22:26:38Z 2009-11-17T23:48:32Z <p>In the installation documentation to RoR it mentions that there are many limitations to running Ruby on Rails on Windows, and in some cases, whole libraries do not work.</p> <p>How bad are these limitations, should I always default to Linux to code / run RoR, and is Iron Ruby expected to fix these limitations or are they core to the OS itself?</p> <p><strong><em>EDIT</em></strong> Thanks for the answer around installation and running on Linux, but I am really trying to understand the limitations in functionality as referenced in the installation documentation, and non-working libraries - I am trying to find a link to the comment, but it was referenced in an installation read me when I installed the msi package I think</p> http://stackoverflow.com/questions/1746390/file-changed-watcher-tool/1746525#1746525 1 Answer by lagerdalek for File changed watcher Tool lagerdalek 2009-11-17T04:10:50Z 2009-11-17T04:10:50Z <p>It may fall under the banner of reinventing the wheel, but if you are using .NET, the <a href="http://msdn.microsoft.com/en-us/library/system.io.filesystemwatcher.aspx" rel="nofollow">FileSystemWatcher</a> class, albeit without a UI, is pretty much as comprehensive as you can get, out of the box. </p> <p>I'm sure you could knock something up with it in a very short time.</p> http://stackoverflow.com/questions/510709/tutorials-for-net-remoting 1 Tutorials for .NET Remoting lagerdalek 2009-02-04T09:48:02Z 2009-11-12T09:29:44Z <p>I've been looking around for some decent tutorials on .NET remoting (old style MarshallByRef), and have come across a couple, but nothing that I'm happy with. Does anyone know of any decent tutorials around?</p> http://stackoverflow.com/questions/437882/c-equivalent-of-nan-or-isnumeric 7 C# equivalent of NaN or IsNumeric lagerdalek 2009-01-13T03:32:07Z 2009-11-09T21:12:39Z <p>This seems like a fairly simple question, and I'm surprised not to have required it before.</p> <p>What is the most efficient way of testing a string input is a numeric (or conversely Not A Number).</p> <p>I guess I can do a Double.Parse or a regex (see below)</p> <pre><code>public static bool IsNumeric(this string value) { return Regex.IsMatch(value, "^\\d+$"); } </code></pre> <p>but I was wondering if there was a implemented way to do it, such as javascript's NaN() or IsNumeric() (was that VB, I can't remember).</p> http://stackoverflow.com/questions/1677516/c-int-parse-issue-with-leading-zeros/1677546#1677546 2 Answer by lagerdalek for C# int.parse issue with leading zeros lagerdalek 2009-11-05T00:07:05Z 2009-11-05T00:07:05Z <p><a href="http://msdn.microsoft.com/en-us/library/system.int32.tryparse.aspx" rel="nofollow">TryParse</a> will allow you to confirm the result of the parse without throwing an exception. To quote MSDN</p> <blockquote> <p>Converts the string representation of a number to its 32-bit signed integer equivalent. A return value indicates whether the operation succeeded.</p> </blockquote> <p>To use their example</p> <pre><code> private static void TryToParse(string value) { int number; bool result = Int32.TryParse(value, out number); if (result) { Console.WriteLine("Converted '{0}' to {1}.", value, number); } else { if (value == null) value = ""; Console.WriteLine("Attempted conversion of '{0}' failed.", value); } </code></pre> <p>}</p> http://stackoverflow.com/questions/1658812/adobe-flex-transparency-not-working-on-button-icon 0 Adobe Flex Transparency not working on Button icon lagerdalek 2009-11-01T23:44:27Z 2009-11-02T01:57:19Z <p>I am fairly inexperienced with Flex, but my googling has retrieved nothing to suggest this is an obvious question.</p> <p>I have an mx:Button with an Icon on it that is a png file with a transparent background, as below, however the transparency is not working, and the icon is painted with a white background.</p> <pre><code>&lt;mx:Button label="Button" icon="@Embed(source='images/clearTracks.png')"/&gt; </code></pre> <p>I have seen how to use a <a href="http://dougmccune.com/blog/2007/01/31/problem-with-transparent-pngs-in-flex-using-embed/" rel="nofollow">ByteArrayImage</a> to get a transparency working on an image, but this technique doesn't appear available for a button's icon property.</p> http://stackoverflow.com/questions/1658551/my-database-doesnt-insert-immediately/1658605#1658605 1 Answer by lagerdalek for My database doesn't insert immediately lagerdalek 2009-11-01T22:29:38Z 2009-11-01T22:29:38Z <p>It does sound like your insert is happening inside a transaction that has not yet been committed when you attempt the test. </p> <p>Can you give some sample code?</p> http://stackoverflow.com/questions/1633255/good-net-application-installer/1633280#1633280 2 Answer by lagerdalek for Good .NET Application Installer lagerdalek 2009-10-27T19:53:43Z 2009-10-27T19:53:43Z <p>I've been using <a href="http://www.jrsoftware.org/isinfo.php" rel="nofollow">Inno Setup</a> for a while. It's free and very comprehensive.</p> http://stackoverflow.com/questions/1586166/career-killer-nhibernate-oop-design-patterns-domain-driven-design-test-driv/1586179#1586179 0 Answer by lagerdalek for Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC lagerdalek 2009-10-18T22:18:28Z 2009-10-18T22:18:28Z <p>Unless you are coming in as the architect of the project you are on, I agree, there is very little use for technologies that are not accepted by the team, or are seen as unnecessary confusions.</p> <p>That being said, use the technologies you want for your own projects, or start an open source project, that way you can get real experience on the tools you like, ready for when you get the opportunity to make these decisions.</p> <p>And, rest assured, there are companies that use these technologies.</p> http://stackoverflow.com/questions/1586093/working-with-offshore-teams/1586120#1586120 2 Answer by lagerdalek for Working with Offshore Teams. lagerdalek 2009-10-18T21:46:53Z 2009-10-18T21:53:01Z <p>The one rule you must observe if you offshore, is that you have to be very <strong>precise and unambiguous</strong> with your requirements. </p> <p>You can not manage this project locally, so you MUST be clear with what you want. Do not assume a thing!</p> <p>In a former role at a large US vendor, we offshored an LDAP adapter to one of our flagship products to India, with the requirements simply specifying the adapter interface, and whilst the resulting library we received was functional, it was a beautiful analogy of Indian bureaucracy, you had to call it at least 5 times with exactly the same parameters, then the output was sourced from 4 (yes, count them, 4!) different accessors that had to be joined, then the resulting text had to be parsed with a regex to make any sense!</p> <p>It was a wonderful work of art, but a royal PITA to work with.</p> http://stackoverflow.com/questions/966039/which-companies-are-using-f-internally-and-what-are-they-using-it-for/1563224#1563224 1 Answer by lagerdalek for Which companies are using F# internally and what are they using it for? lagerdalek 2009-10-13T22:09:32Z 2009-10-13T22:46:35Z <p>You've probably never heard of our company, but we write trucking / logistics software. We are using it as a part of a greater, largely C#, project for its Lex/Yacc functionality to help with interpreting a proprietary language in a rules engine, as well as pattern matching for the rules themselves. </p> <p>It works very well for both these tasks.</p> http://stackoverflow.com/questions/348530/show-tooltip-when-selecting-item-on-aspdropdownlist 0 Show tooltip when selecting item on asp:DropDownList lagerdalek 2008-12-08T02:17:04Z 2009-10-12T21:00:02Z <p>I have an asp:DropDownList on a page that, due to the 1024x768 development standard can truncate some of the text values in the dropdown (not enough of them, apparently, to redesign the layout ), so I need to display a tooltip of the selected value <em>when</em> a dropdown item is being selected (i.e. when the dropdown is shown and an item is being hovered over), preferably only when the text for that item is being truncated.</p> <p>Is this possible by default, javascript hacking or only my imagination?</p> http://stackoverflow.com/questions/1550294/help-with-another-mysql-query/1550322#1550322 1 Answer by lagerdalek for Help with another mysql query lagerdalek 2009-10-11T10:02:42Z 2009-10-11T10:07:48Z <p>If you only want 'newly added' records, you will have to indicate somehow what a newly added record is. Your dbms may support dating by default on all records (I have an inkling that Ingres may do this, but I may be imagining it - it's been a while since I've used it), but you will probably need to add something to the row yourself.</p> <p>You could add a datetime field to filter on, then you can do as Zed has done:</p> <pre><code>SELECT Filename, COUNT(Filename) as Count FROM Table WHERE DateAdded &gt; (FilterDate) GROUP BY Filename </code></pre> <p>(<strong>EDIT</strong> where FilterDate is the DateTime after which you deem a record to be new, for example you could set this to Now minus 60 minutes - the syntax will change depending on DBMS)</p> <p>or you could add a 'new' flag bit column and set it to true for each new record, them turn it off after it is read or some arbitary interval.</p> http://stackoverflow.com/questions/454726/including-a-generic-class-in-unity-app-config-file 0 Including a generic class in Unity App.Config file lagerdalek 2009-01-18T06:01:41Z 2009-10-05T10:20:50Z <p>I have a class of type ISimpleCache&lt;IBrokeredDataObject&gt; that I want to add as a type alias (then a type) in the App.Config file</p> <p>the line</p> <pre><code>&lt;typeAlias alias="ISimpleCacheOfIBrokeredDataObject" type="MyApplication.ISimpleCache&lt;IBrokeredDataObject&gt;, MyApplication" /&gt; </code></pre> <p>is obviously wrong due to the &lt;>, however I'm not convinced escaping them;</p> <pre><code>&lt;typeAlias alias="ISimpleCacheOfIBrokeredDataObject" type="MyApplication.ISimpleCache&amp;lt;IBrokeredDataObject&amp;gt;, MyApplication" /&gt; </code></pre> <p>is correct either. </p> <p>I am currently ripping my code apart to use Unity, so am too far from a compilable code base to test this quickly, and was hoping to get some confirmation here.</p> http://stackoverflow.com/questions/13827/what-already-invented-algorithm-did-you-invent/342770#342770 0 Answer by lagerdalek for What "already invented" algorithm did you invent? lagerdalek 2008-12-05T02:51:05Z 2009-10-02T20:09:05Z <p>I couldn't believe it when I researched IoC that I had 'invented' it 6 months earlier for an object engine in our local metadata repository.</p> http://stackoverflow.com/questions/151472/what-is-the-difference-between-string-empty-and 23 What is the difference between String.Empty and "" lagerdalek 2008-09-30T01:59:47Z 2009-09-29T19:17:22Z <p>In .NET, what is the difference between String.Empty and "", and are they interchangable, or is there some underlying reference or Localization issues around equality that String.Empty will ensure are not a problem?</p> http://stackoverflow.com/questions/61699/adding-assemblies-to-the-gac-from-inno-setup 1 Adding assemblies to the GAC from Inno Setup lagerdalek 2008-09-14T22:39:04Z 2009-09-25T11:47:49Z <p>Until recently we were using Inno Setup for our installations, something I would like to continue doing, unless we can get an <a href="http://beta.stackoverflow.com/questions/61691/how-to-add-uninstall-option-in-net-setup-project" rel="nofollow">uninstall option in the start menu</a> (thanks Giovanni Galbo), however we now need to GAC some external libraries, something I suspect is only doable (or at least only supported) though the .NET Setup Project.</p> <p>Is it possible to call a GAC'ing library from another setup application?</p> http://stackoverflow.com/questions/106340/what-is-your-favorite-visual-studio-add-in-setting/1474823#1474823 0 Answer by lagerdalek for What is your favorite Visual Studio add-in/setting? lagerdalek 2009-09-25T00:20:34Z 2009-09-25T00:20:34Z <p>I'm surprised <a href="http://geekswithblogs.net/SoftwareDoneRight/archive/2007/12/12/coolcommands-in-visual-studio-2008.aspx" rel="nofollow">Cool Commands</a> hasn't been mentioned yet. Can't do without them!</p> http://stackoverflow.com/questions/1442095/c-navigate-to-anchors-in-webbrowser-control 0 C# Navigate to Anchors in WebBrowser control lagerdalek 2009-09-18T00:47:45Z 2009-09-18T02:02:18Z <p>We have a web browser in our Winforms app to nicely display history of a selected item rendered by xslt.</p> <p>The xslt is writing out &lt;a&gt; tags in the outputted html to allow the webBrowser control to navigate to the selected history entry. </p> <p>As we are not 'navigating' to the html in the strict web sense, rather setting the html by the DocumentText, I can't 'navigate' to desired anchors with a #AnchorName, as the webBrowser's Url is null (edit: actually on completion it is about:blank).</p> <p>How can I dynamically navigate to Anchor tags in the html of the Web Browser control in this case?</p> <p><strong>EDIT:</strong></p> <p>Thanks sdolphion for the tip, this is the eventual code I used</p> <pre><code>void _history_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { _completed = true; if (!string.IsNullOrEmpty(_requestedAnchor)) { JumpToRequestedAnchor(); return; } } private void JumpToRequestedAnchor() { HtmlElementCollection elements = _history.Document.GetElementsByTagName("A"); foreach (HtmlElement element in elements) { if (element.GetAttribute("Name") == _requestedAnchor) { element.ScrollIntoView(true); return; } } } </code></pre> http://stackoverflow.com/questions/1424684/is-sql-server-timestamp-deprecated-and-what-to-use-in-replacement 1 Is SQL Server Timestamp deprecated and what to use in replacement lagerdalek 2009-09-15T01:30:10Z 2009-09-15T01:33:43Z <p>The <a href="http://msdn.microsoft.com/en-us/library/ms182776.aspx" rel="nofollow">T-SQL MSDN</a> page states</p> <blockquote> <p>The timestamp syntax is deprecated. This feature will be removed in a future version of Microsoft SQL Server. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.</p> </blockquote> <p>Does this mean to suggest that the SQL Server Timestamp data type is also deprecated as well? If so, what should be used to replace it, as the SQL Server DateTime data type is not granular enough to ensure high transactional records can be stamped with a unique value.</p> http://stackoverflow.com/questions/1419209/insert-once-but-two-records-created-in-mysql/1419338#1419338 1 Answer by lagerdalek for Insert once, but two records created in MySQL lagerdalek 2009-09-14T01:35:14Z 2009-09-14T01:35:14Z <p>To answer the last part of your question, no it has nothing to do with AUTO_INCREMENT, which is an <a href="http://dev.mysql.com/doc/refman/4.1/en/example-auto-increment.html" rel="nofollow">attribute to auto-id new rows</a>, in this case starting at 3</p> http://stackoverflow.com/questions/357233/what-dead-programming-languages-do-you-know/1419052#1419052 0 Answer by lagerdalek for What dead programming languages do you know? lagerdalek 2009-09-13T22:56:14Z 2009-09-13T22:56:14Z <p>Computer Associates' OpenROAD (if it ain't dead, it sure should be)</p> http://stackoverflow.com/questions/1355647/what-is-the-bubbling-concept/1355654#1355654 2 Answer by lagerdalek for What is the bubbling concept? lagerdalek 2009-08-31T03:18:05Z 2009-08-31T03:34:03Z <p>If you are asking about the term, I guess it is an analogy to an event 'bubbling' up to the top, like an air bubble does in liquid.</p> <p>If you are asking what event bubbling is it is an event that is caught by one object that will refire it to any other objects that are listening to it.</p> <p>To quote a good article <a href="http://msdn.microsoft.com/en-us/library/aa719644%28VS.71%29.aspx" rel="nofollow">here</a></p> <blockquote> <p>... a technique called event bubbling that allows a child control to propagate events up its containment hierarchy. Event bubbling enables events to be raised from a more convenient location in the controls hierarchy and allows event handlers to be attached to the original control as well as to the control that exposes the bubbled event.</p> </blockquote> http://stackoverflow.com/questions/1355062/audio-generation-software-or-net-library/1355130#1355130 2 Answer by lagerdalek for Audio generation software or .NET library lagerdalek 2009-08-30T22:44:39Z 2009-08-30T22:44:39Z <p>You might like to take a look at my question <a href="http://stackoverflow.com/questions/203890/creating-sine-or-square-wave-in-c">Creating sine or square wave in C#</a></p> <p>Using <a href="http://codeplex.com/naudio" rel="nofollow">NAudio</a> in particular was a great choice</p> http://stackoverflow.com/questions/1352587/code-golf-morse-code/1352599#1352599 28 Answer by lagerdalek for Code Golf: Morse code lagerdalek 2009-08-29T23:01:07Z 2009-08-29T23:01:07Z <p>Using a <a href="http://www.fontmenu.com/site/%5FMorse.html" rel="nofollow">Morse Code Font</a>?</p> <pre><code>Console.Write(params[0]); </code></pre> http://stackoverflow.com/questions/1332451/listlistviewitem/1332491#1332491 3 Answer by lagerdalek for List<ListviewItem> lagerdalek 2009-08-26T05:22:29Z 2009-08-26T05:32:55Z <p>According to <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.listviewitem.aspx" rel="nofollow">MSDN</a> a ListViewItem is an object that </p> <blockquote> <p>"Represents an item in a ListView control."</p> </blockquote> <p>The List&lt;ListViewItem&gt; is a (non-UI related) List of ListViewItems. </p> <p>See the <a href="http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx" rel="nofollow">List&lt;T&gt; documentation</a> at MSDN for an explanation of those, but it's essentially a useful .NET collection of a specified type of item (in this case ListViewItem).</p> http://stackoverflow.com/questions/1332084/how-can-you-return-a-collectiont-as-a-collectioninterface/1332098#1332098 0 Answer by lagerdalek for How can you return a Collection<T> as a Collection<Interface>? lagerdalek 2009-08-26T02:41:05Z 2009-08-26T02:41:05Z <p>you could use the Cast extension</p> <pre><code>nails.Cast&lt;INail&gt;() </code></pre> <p>I can't test it here to provide a more comprehensive example, as we are using .NET 2.0 at work (gripe gripe), but I did have a similar question <a href="http://stackoverflow.com/questions/53395/suggestions-wanted-with-lists-or-enumerators-of-t-when-inheriting-from-generic-cl">here</a></p> http://stackoverflow.com/questions/55517/very-slow-compile-times-on-visual-studio/57817#57817 0 Answer by lagerdalek for Very slow compile times on Visual Studio lagerdalek 2008-09-11T22:35:20Z 2009-08-24T03:54:07Z <p>Nice suggestions that have helped so far (not saying there aren't other nice suggestions below, if you are having issues, I recommend reading then, just what has helped us)</p> <ul> <li>New 3GHz laptop - the power of lost utilization works wonders when whinging to management <li>Disable Anti Virus during compile <li>'Disconnecting' from VSS (actually the network) during compile - I may get us to remove VS-VSS integration altogether and stick to using the VSS UI </ul> <p>Still not rip-snorting through a compile, but every bit helps.</p> <p>We are also testing the practice of building new areas of the application in new solutions, importing in the latest dlls as required, them integrating them into the larger solution when we are happy with them. </p> <p>We may also do them same to existing code by creating temporary solutions that just encapsulate the areas we need to work on, and throwing them away after reintegrating the code. We need to weigh up the time it will take to reintegrate this code against the time we gain by not having Rip Van Winkle like experiences with rapid recompiling during development.</p> <p>Orion did mention in a comment that generics may have a play also. From my tests there does appear to be a minimal performance hit, but not high enough to sure - compile times can be inconsistent due to disc activity. Due to time limitations, my tests didn't include as many Generics, or as much code, as would appear in live system, so that may accumulate. I wouldn't avoid using generics where they are supposed to be used, just for compile time performance</p> http://stackoverflow.com/questions/55517/very-slow-compile-times-on-visual-studio/1826513#1826513 Comment by lagerdalek on Very slow compile times on Visual Studio lagerdalek 2009-12-01T21:11:19Z 2009-12-01T21:11:19Z Drive speed is certainly a contributing factor http://stackoverflow.com/questions/1759668/internet-connection-problem Comment by lagerdalek on Internet Connection Problem lagerdalek 2009-11-18T22:40:41Z 2009-11-18T22:40:41Z this should probably be moved to superuser http://stackoverflow.com/questions/510709/tutorials-for-net-remoting/1721017#1721017 Comment by lagerdalek on Tutorials for .NET Remoting lagerdalek 2009-11-12T23:46:31Z 2009-11-12T23:46:31Z No worries, thanks http://stackoverflow.com/questions/1698197/system-type-implicit-cast-to-string/1698205#1698205 Comment by lagerdalek on System.Type; implicit cast to string lagerdalek 2009-11-08T22:52:09Z 2009-11-08T22:52:09Z Love the Tony reference http://stackoverflow.com/questions/1658812/adobe-flex-transparency-not-working-on-button-icon Comment by lagerdalek on Adobe Flex Transparency not working on Button icon lagerdalek 2009-11-04T01:10:57Z 2009-11-04T01:10:57Z I'll have to run that past our lead architect, but great suggestion http://stackoverflow.com/questions/1633426/what-is-the-operator-in-javascript Comment by lagerdalek on What is the >>>= operator in Javascript? lagerdalek 2009-10-27T20:34:44Z 2009-10-27T20:34:44Z @ Tinister Your search - &gt;&gt;&gt;= - did not match any documents. http://stackoverflow.com/questions/1633255/good-net-application-installer Comment by lagerdalek on Good .NET Application Installer lagerdalek 2009-10-27T19:54:57Z 2009-10-27T19:54:57Z Why has this been flagged as not a real question? http://stackoverflow.com/questions/1586166/career-killer-nhibernate-oop-design-patterns-domain-driven-design-test-driv/1586179#1586179 Comment by lagerdalek on Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVC lagerdalek 2009-10-20T20:39:36Z 2009-10-20T20:39:36Z @ itowlson - &quot;and not only with the MS implementations&quot; - Very true, for example, we're using Castle MonoRail, LLBL and MBUnit, and love all 3 http://stackoverflow.com/questions/1586093/working-with-offshore-teams Comment by lagerdalek on Working with Offshore Teams. lagerdalek 2009-10-18T21:57:02Z 2009-10-18T21:57:02Z @michael, that is a valid criticism http://stackoverflow.com/questions/1586093/working-with-offshore-teams Comment by lagerdalek on Working with Offshore Teams. lagerdalek 2009-10-18T21:52:11Z 2009-10-18T21:52:11Z I think it's a perfectly valid question, though you are probably pressing a lot of emotional buttons, hence the down votes http://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1557206#1557206 Comment by lagerdalek on Most horrifying line of code you have ever seen? lagerdalek 2009-10-13T01:53:26Z 2009-10-13T01:53:26Z <i>brain starts to fizz</i> http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/169030#169030 Comment by lagerdalek on What's the least useful comment you've ever seen? lagerdalek 2009-10-12T21:27:12Z 2009-10-12T21:27:12Z grandgranchildren? http://stackoverflow.com/questions/1534450/c-or-python-for-c-programmer Comment by lagerdalek on C++ or Python for C# programmer? lagerdalek 2009-10-07T22:51:03Z 2009-10-07T22:51:03Z Whilst I agree with you in some regards, I'm surprised you've been flamed for the child-play comment :) http://stackoverflow.com/questions/118341/how-to-debug-a-linq-statement Comment by lagerdalek on How to debug a LINQ Statement lagerdalek 2009-10-05T20:54:23Z 2009-10-05T20:54:23Z 42. Actually if you read my edit, it's that I did have a null reference, despite my assurance to the contrary http://stackoverflow.com/questions/1490622/remove-telerik-cache-and-release-memory Comment by lagerdalek on Remove Telerik Cache and Release Memory lagerdalek 2009-09-29T04:55:10Z 2009-09-29T04:55:10Z Just a warning, from my experience, Telerik questions tend to get (unfairly) downvoted here, sometimes with suggestions to contact support and formus