User lagerdalek - Stack Overflowmost recent 30 from stackoverflow.com2009-12-04T23:55:30Zhttp://stackoverflow.com/feeds/user/5302http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/550702/at-what-point-does-using-a-stringbuilder-become-insignificant-or-an-overhead3At what point does using a StringBuilder become insignificant or an overhead?lagerdalek2009-02-15T10:55:34Z2009-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-studio15Very slow compile times on Visual Studiolagerdalek2008-09-10T23:56:00Z2009-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-windows11Limitations in running Ruby/Rails on windowslagerdalek2008-10-02T22:26:38Z2009-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#17465251Answer by lagerdalek for File changed watcher Toollagerdalek2009-11-17T04:10:50Z2009-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-remoting1Tutorials for .NET Remotinglagerdalek2009-02-04T09:48:02Z2009-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-isnumeric7C# equivalent of NaN or IsNumericlagerdalek2009-01-13T03:32:07Z2009-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#16775462Answer by lagerdalek for C# int.parse issue with leading zeroslagerdalek2009-11-05T00:07:05Z2009-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-icon0Adobe Flex Transparency not working on Button iconlagerdalek2009-11-01T23:44:27Z2009-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><mx:Button label="Button" icon="@Embed(source='images/clearTracks.png')"/>
</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#16586051Answer by lagerdalek for My database doesn't insert immediately lagerdalek2009-11-01T22:29:38Z2009-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#16332802Answer by lagerdalek for Good .NET Application Installerlagerdalek2009-10-27T19:53:43Z2009-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#15861790Answer by lagerdalek for Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVClagerdalek2009-10-18T22:18:28Z2009-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#15861202Answer by lagerdalek for Working with Offshore Teams. lagerdalek2009-10-18T21:46:53Z2009-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#15632241Answer by lagerdalek for Which companies are using F# internally and what are they using it for?lagerdalek2009-10-13T22:09:32Z2009-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-aspdropdownlist0Show tooltip when selecting item on asp:DropDownListlagerdalek2008-12-08T02:17:04Z2009-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#15503221Answer by lagerdalek for Help with another mysql querylagerdalek2009-10-11T10:02:42Z2009-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 > (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-file0Including a generic class in Unity App.Config filelagerdalek2009-01-18T06:01:41Z2009-10-05T10:20:50Z
<p>I have a class of type ISimpleCache<IBrokeredDataObject> that I want to add as a type alias (then a type) in the App.Config file</p>
<p>the line</p>
<pre><code><typeAlias alias="ISimpleCacheOfIBrokeredDataObject" type="MyApplication.ISimpleCache<IBrokeredDataObject>, MyApplication" />
</code></pre>
<p>is obviously wrong due to the <>, however I'm not convinced escaping them;</p>
<pre><code><typeAlias alias="ISimpleCacheOfIBrokeredDataObject" type="MyApplication.ISimpleCache&lt;IBrokeredDataObject&gt;, MyApplication" />
</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#3427700Answer by lagerdalek for What "already invented" algorithm did you invent?lagerdalek2008-12-05T02:51:05Z2009-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-and23What is the difference between String.Empty and ""lagerdalek2008-09-30T01:59:47Z2009-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-setup1Adding assemblies to the GAC from Inno Setup lagerdalek2008-09-14T22:39:04Z2009-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#14748230Answer by lagerdalek for What is your favorite Visual Studio add-in/setting?lagerdalek2009-09-25T00:20:34Z2009-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-control0C# Navigate to Anchors in WebBrowser controllagerdalek2009-09-18T00:47:45Z2009-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 <a> 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-replacement1Is SQL Server Timestamp deprecated and what to use in replacementlagerdalek2009-09-15T01:30:10Z2009-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#14193381Answer by lagerdalek for Insert once, but two records created in MySQLlagerdalek2009-09-14T01:35:14Z2009-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#14190520Answer by lagerdalek for What dead programming languages do you know?lagerdalek2009-09-13T22:56:14Z2009-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#13556542Answer by lagerdalek for What is the bubbling concept?lagerdalek2009-08-31T03:18:05Z2009-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#13551302Answer by lagerdalek for Audio generation software or .NET librarylagerdalek2009-08-30T22:44:39Z2009-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#135259928Answer by lagerdalek for Code Golf: Morse codelagerdalek2009-08-29T23:01:07Z2009-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#13324913Answer by lagerdalek for List<ListviewItem>lagerdalek2009-08-26T05:22:29Z2009-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<ListViewItem> 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<T> 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#13320980Answer by lagerdalek for How can you return a Collection<T> as a Collection<Interface>?lagerdalek2009-08-26T02:41:05Z2009-08-26T02:41:05Z<p>you could use the Cast extension</p>
<pre><code>nails.Cast<INail>()
</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#578170Answer by lagerdalek for Very slow compile times on Visual Studiolagerdalek2008-09-11T22:35:20Z2009-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#1826513Comment by lagerdalek on Very slow compile times on Visual Studiolagerdalek2009-12-01T21:11:19Z2009-12-01T21:11:19ZDrive speed is certainly a contributing factorhttp://stackoverflow.com/questions/1759668/internet-connection-problemComment by lagerdalek on Internet Connection Problemlagerdalek2009-11-18T22:40:41Z2009-11-18T22:40:41Zthis should probably be moved to superuserhttp://stackoverflow.com/questions/510709/tutorials-for-net-remoting/1721017#1721017Comment by lagerdalek on Tutorials for .NET Remotinglagerdalek2009-11-12T23:46:31Z2009-11-12T23:46:31ZNo worries, thankshttp://stackoverflow.com/questions/1698197/system-type-implicit-cast-to-string/1698205#1698205Comment by lagerdalek on System.Type; implicit cast to stringlagerdalek2009-11-08T22:52:09Z2009-11-08T22:52:09ZLove the Tony referencehttp://stackoverflow.com/questions/1658812/adobe-flex-transparency-not-working-on-button-iconComment by lagerdalek on Adobe Flex Transparency not working on Button iconlagerdalek2009-11-04T01:10:57Z2009-11-04T01:10:57ZI'll have to run that past our lead architect, but great suggestionhttp://stackoverflow.com/questions/1633426/what-is-the-operator-in-javascriptComment by lagerdalek on What is the >>>= operator in Javascript?lagerdalek2009-10-27T20:34:44Z2009-10-27T20:34:44Z@ Tinister Your search - >>>= - did not match any documents.http://stackoverflow.com/questions/1633255/good-net-application-installerComment by lagerdalek on Good .NET Application Installerlagerdalek2009-10-27T19:54:57Z2009-10-27T19:54:57ZWhy 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#1586179Comment by lagerdalek on Career Killer? Nhibernate, OOP, Design Patterns, Domain Driven Design, Test Driven Development, IoC, MVClagerdalek2009-10-20T20:39:36Z2009-10-20T20:39:36Z@ itowlson - "and not only with the MS implementations" - Very true, for example, we're using Castle MonoRail, LLBL and MBUnit, and love all 3http://stackoverflow.com/questions/1586093/working-with-offshore-teamsComment by lagerdalek on Working with Offshore Teams. lagerdalek2009-10-18T21:57:02Z2009-10-18T21:57:02Z@michael, that is a valid criticismhttp://stackoverflow.com/questions/1586093/working-with-offshore-teamsComment by lagerdalek on Working with Offshore Teams. lagerdalek2009-10-18T21:52:11Z2009-10-18T21:52:11ZI think it's a perfectly valid question, though you are probably pressing a lot of emotional buttons, hence the down voteshttp://stackoverflow.com/questions/1556672/most-horrifying-line-of-code-you-have-ever-seen/1557206#1557206Comment by lagerdalek on Most horrifying line of code you have ever seen?lagerdalek2009-10-13T01:53:26Z2009-10-13T01:53:26Z<i>brain starts to fizz</i>http://stackoverflow.com/questions/143429/whats-the-least-useful-comment-youve-ever-seen/169030#169030Comment by lagerdalek on What's the least useful comment you've ever seen?lagerdalek2009-10-12T21:27:12Z2009-10-12T21:27:12Zgrandgranchildren?http://stackoverflow.com/questions/1534450/c-or-python-for-c-programmerComment by lagerdalek on C++ or Python for C# programmer?lagerdalek2009-10-07T22:51:03Z2009-10-07T22:51:03ZWhilst 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-statementComment by lagerdalek on How to debug a LINQ Statementlagerdalek2009-10-05T20:54:23Z2009-10-05T20:54:23Z42. Actually if you read my edit, it's that I did have a null reference, despite my assurance to the contraryhttp://stackoverflow.com/questions/1490622/remove-telerik-cache-and-release-memoryComment by lagerdalek on Remove Telerik Cache and Release Memorylagerdalek2009-09-29T04:55:10Z2009-09-29T04:55:10ZJust a warning, from my experience, Telerik questions tend to get (unfairly) downvoted here, sometimes with suggestions to contact support and formus