User Jim Burger - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T01:37:51Z http://stackoverflow.com/feeds/user/20164 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/137975/what-is-so-bad-about-singletons/138012#138012 71 Answer by Jim Burger for What is so bad about Singletons Jim Burger 2008-09-26T06:13:44Z 2009-10-15T13:57:41Z <p>Paraphrased from <a href="http://www.agilesolutionsgroup.com/" rel="nofollow">Brian Button</a>:</p> <ol> <li><p>They are generally used as a global instance, why is that so bad? Because you hide the dependencies of your application in your code, instead of exposing them through the interfaces. Making something global to avoid passing it around is a code smell.</p></li> <li><p>They violate the Single Responsibility Principle: by virtue of the fact that they control their own creation and lifecycle. </p></li> <li><p>They inherently cause code to be tightly coupled. This makes faking them out under test rather difficult in many cases.</p></li> <li><p>They carry state around for the lifetime of the app. Another hit to testing since you can end up with a situation where tests need to be ordered which is a big no no for unit tests. Why? Because each unit test should be independent from the other.</p></li> </ol> http://stackoverflow.com/questions/576456/log4net-versus-tracesource/929682#929682 0 Answer by Jim Burger for log4net versus TraceSource Jim Burger 2009-05-30T12:45:00Z 2009-05-30T13:24:42Z <p>While Im only privy to the way log4net works, an obvious bonus to using that framework is immediate familiarity for those used to using log4j. </p> <p>Another small benefit is that test driving logging using log4net is extremely simple; loggers implement log4net.ILog. Again Im not familiar with the Microsoft solution, but Im wondering how one would do this without first writing a facade to the System.Diagnostics.Trace class.</p> <p>With a cursory look at the trace sources documentation, I could not find an equivalent to layouts, and would be interested to know if such an equivalent exists. The PatternLayout is quite handy for formatting log entries with common data like datestamps, thread info, log context etc. Log4net PatternLayout docs: <a href="http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html" rel="nofollow">http://logging.apache.org/log4net/release/sdk/log4net.Layout.PatternLayout.html</a></p> <p>Additionally, given that writing extensions to a logging framework is probably a classic 'meta-problem', log4net does bring a grand list of pluggable listener equivalents to the table. </p> <p>List of appenders: <a href="http://logging.apache.org/log4net/release/config-examples.html" rel="nofollow">http://logging.apache.org/log4net/release/config-examples.html</a></p> http://stackoverflow.com/questions/728747/how-to-use-tdd-when-the-fix-involves-changing-the-method-under-tests-signature/728780#728780 4 Answer by Jim Burger for How to use TDD when the fix involves changing the method under test's signature? Jim Burger 2009-04-08T06:39:20Z 2009-04-08T06:39:20Z <p>There is absolutely nothing wrong with bombing your tests, when you discover that the intended behaviour of the unit changes.</p> <pre><code>//Up front [Test] public void should_remove_correct_token_from_string() { var text = "do.it.correctly.."; var expected = "doitcorrectly"; Assert.AreEqual(StaticClass.RemoveTokenFromString(text, "."), expected); } //After finding that it doesn't do the right thing //Delete the old test and *design* a new function that //Does what you want through a new test //Remember TDD is about design, not testing! [Test] public void should_remove_correct_token_from_string() { var text = "do.it.correctly.."; var expected = "doitcorrectly"; Assert.AreEqual( StaticClass.RemoveTokenFromString( text, ".", System.Text.Encoding.UTF8), expected); } //This will force you to add a new parameter to your function //Obviously now, there are edge cases to deal with your new parameter etc. //So more test are required to further design your new function </code></pre> http://stackoverflow.com/questions/147189/how-do-you-keep-a-balance-between-working-training-health-and-family 25 How do you keep a balance between working, training, health and family? Jim Burger 2008-09-29T01:26:41Z 2009-01-28T08:58:25Z <p>One trend I see in the awesome developers I've met, is that they devote inordinate amounts of time to coding at the expense of (usually) their health. Personally, I also find it hard to motivate myself to keep healthy.</p> <p>Every now and again, I meet a fantastic coder who has it clocked; they are up to date with the latest dev news, have time to read about good programming practices, and to finish it off, have happy wives/husbands and families.</p> <p>How do you guys/gals manage it in the short 24 hours a day that we all have?</p> http://stackoverflow.com/questions/379091/automated-testing-net-gallio/438141#438141 1 Answer by Jim Burger for Automated testing .NET (Gallio?) Jim Burger 2009-01-13T06:39:32Z 2009-01-13T06:39:32Z <p>Gallio is actually a framework for the entire testing toolchain. From writing the tests, to running them to post build processes. It provides common facilities and standardized interfaces for each step to allow greater choice and flexibility when putting a build process together. </p> <p>It comes with a version of the MbUnit framework, which it uses by default. It also comes with a GUI runner named Icarus, and a console runner named Echo. They are all well respected tools in the testing community.</p> <p>It is an excellent choice for a large company, since it can allow you to take advantage of many of the popular testing and continuous integration tools with a minimum of integration headaches. </p> <p>Picking a framework and writing tests is only half the battle, Gallio really does help with the other half; gluing up all the other steps in the build process.</p> <p>The only real downside at the moment is the lack of a central repository of examples and information. For some, the fact that its a relatively new initiative may put them off using it right now.</p> <p><a href="http://www.gallio.org/book/GallioBook.pdf" rel="nofollow">Check out the docs here.</a> They are a work in progress and very incomplete but will get you started on the basics of writing tests. Keep your eyes on <a href="http://blog.bits-in-motion.com/" rel="nofollow">Jeff Browns Blog</a> for other information. </p> http://stackoverflow.com/questions/315918/what-is-the-difference-between-an-os-and-a-framework/315951#315951 2 Answer by Jim Burger for What is the difference between an OS and a Framework? Jim Burger 2008-11-25T00:12:45Z 2008-11-25T00:34:51Z <p><a href="http://en.wikipedia.org/wiki/Operating_system" rel="nofollow">Operating System</a>: The infrastructure software component of a computer system</p> <p><a href="http://en.wikipedia.org/wiki/Framework#Software_framework" rel="nofollow">Framework</a>: A re-usable design for a software system (or subsystem).</p> <p>By these definitions it seems to me, that an operating system can be built using a framework, and a framework can be built to interact with an operating system.</p> <p><a href="http://en.wikipedia.org/wiki/Singularity_(operating_system)" rel="nofollow">Singularity</a> is an example of an experimental OS that is built using managed code.</p> <p>Framework is a very broad term, it can be used to describe many types of subsystems. It could even describe an operating system.</p> <p>Operating System is more specific, it implies facilitation of interaction with a computers or group of computers hardware layer, through the use of human user interfaces. I think Azure fits this description.</p> http://stackoverflow.com/questions/307895/what-is-the-most-mature-bdd-framework-for-net/312548#312548 6 Answer by Jim Burger for What is the most mature BDD Framework for .NET? Jim Burger 2008-11-23T14:06:08Z 2008-11-23T14:06:08Z <p>I dont think there is a 'winner' really. Other frameworks include <a href="http://code.google.com/p/specunit-net/" rel="nofollow">SpecUnit.NET</a> project and <a href="http://codebetter.com/blogs/aaron.jensen/archive/2008/05/08/introducing-machine-specifications-or-mspec-for-short.aspx" rel="nofollow">MSpec</a> is also showing promise with the beginnings of a <a href="http://www.gallio.org/" rel="nofollow">Gallio</a> adapter. Technically since IronRuby is on the horizon, <a href="http://www.mattberther.com/2008/03/03/ironruby-and-rspec/" rel="nofollow">rSpec</a> <em>may</em> be an option for those prepared to go bleeding edge. NBehave + NSpec might be the eldest framework with the best automation, though I found myself fighting against the overly verbose syntax.</p> <p>I would check them all out and pick the framework that suits your projects style best. They're all OSS, so its hard to lose, the real benefit is simply in moving to BDD. </p> http://stackoverflow.com/questions/307291/how-does-the-google-did-you-mean-algorithm-work/307341#307341 4 Answer by Jim Burger for How does the Google "Did you mean?" Algorithm work? Jim Burger 2008-11-20T23:57:13Z 2008-11-20T23:57:13Z <p>My guess is that they use a combination of a <a href="http://en.wikipedia.org/wiki/Levenshtein_distance" rel="nofollow">Levenshtein distance</a> algorithm and the masses of data they collect regarding the searches that are run. They could pull a set of searches that have the shortest Levenshtein distance from the entered search string, then pick the one with the most results.</p> http://stackoverflow.com/questions/304103/how-much-math-do-i-need-to-become-productive-in-haskell/304150#304150 2 Answer by Jim Burger for How much math do I need to become productive in Haskell? Jim Burger 2008-11-20T02:14:05Z 2008-11-20T02:14:05Z <p>You'll be fine. The water is warm. Jump on in!</p> http://stackoverflow.com/questions/300671/how-do-i-parse-a-text-file-in-c/300677#300677 0 Answer by Jim Burger for How do i parse a text file in c#. Jim Burger 2008-11-19T00:40:21Z 2008-11-19T23:41:28Z <p>Without really knowing what sort of text file you're on about, its hard to answer. However, the <a href="http://filehelpers.sourceforge.net/" rel="nofollow">FileHelpers</a> library has a broad set of tools to help with fixed length file formats, multirecord, delimited etc.</p> http://stackoverflow.com/questions/300606/in-powershell-how-can-i-convert-a-string-with-a-trailing-sign-to-a-number/300659#300659 5 Answer by Jim Burger for In Powershell how can I convert a string with a trailing 'sign' to a number? Jim Burger 2008-11-19T00:28:53Z 2008-11-19T23:35:39Z <p>EDIT: as per Halr9000's suggestion</p> <pre><code>$foo = "300-"; $bar = 0; $numberStyles = [System.Globalization.NumberStyles]; $cultureInfo = [System.Globalization.CultureInfo]; [int]::TryParse($foo, $numberStyles::AllowTrailingSign, $cultureInfo::CurrentCulture, [ref]$bar); </code></pre> http://stackoverflow.com/questions/300581/better-way-to-build-objects-in-c/300589#300589 4 Answer by Jim Burger for Better way to build objects in C# Jim Burger 2008-11-18T23:49:48Z 2008-11-18T23:49:48Z <p>I guess I would lean towards an Object-Relational Mapper for this. <a href="http://www.hibernate.org/343.html" rel="nofollow">NHibernate</a> is an example of an existing, free, mature ORM solution for the .NET platform.</p> http://stackoverflow.com/questions/283141/best-practices-for-robustness/283155#283155 6 Answer by Jim Burger for Best Practices for Robustness Jim Burger 2008-11-12T06:07:25Z 2008-11-12T06:14:07Z <p>I'm a fan of the techniques described in "<a href="http://www.pragprog.com/the-pragmatic-programmer/extracts/tips" rel="nofollow">The Pragmatic Programmer</a>". I also use <a href="http://en.wikipedia.org/wiki/Test-driven_development" rel="nofollow">TDD</a>, rather than DBC as I find it more flexible and productive. For example some of the techniqes described in 'pragprog' include:</p> <ul> <li>Test Often. Test Early. Test Automatically</li> <li>Dont Repeat Yourself</li> <li>Use Sabotuers to Test your Testing</li> <li>Use Exceptions for exceptional problems</li> <li>Dont live with broken windows</li> <li>Dont use manual procedures</li> </ul> <p>They all seem like common sense, but its amazing how quickly teams deviate from these underpinning principles when faced with deadlines.</p> http://stackoverflow.com/questions/279379/repository-of-code-snippets/279963#279963 1 Answer by Jim Burger for Repository of Code Snippets Jim Burger 2008-11-11T03:59:01Z 2008-11-11T03:59:01Z <p><a href="http://en.wikipedia.org/wiki/Microsoft_Visual_Studio_Express#Extensibility" rel="nofollow">Visual Studio Express is not legally extensible</a> so I doubt there is a tool you can purchase or download that will integrate. However, <a href="http://www.codeplex.com/snippy" rel="nofollow">snippy</a> will help manage and create standard .snippet files for you, without integration.</p> http://stackoverflow.com/questions/279619/whats-your-favorite-implementation-of-producing-the-fibonacci-sequence/279666#279666 3 Answer by Jim Burger for What's your favorite implementation of producing the fibonacci sequence? Jim Burger 2008-11-11T00:27:21Z 2008-11-11T01:59:55Z <p>Produces an infinite list of fibonacci numbers in F# using <a href="http://en.wikipedia.org/wiki/Unfolding" rel="nofollow">unfolding</a>; [EDIT] now supports bigint's</p> <pre><code>#light let fibs = (1I, 1I) |&gt; Seq.unfold(fun (n0, n1) -&gt; Some(n0, (n1, n0 + n1))) </code></pre> http://stackoverflow.com/questions/271224/net-control-to-edit-xml-file/271313#271313 1 Answer by Jim Burger for .NET control to edit xml file Jim Burger 2008-11-07T05:32:17Z 2008-11-07T05:41:22Z <p>One approach would be to create a series of objects that <a href="http://support.microsoft.com/kb/316730" rel="nofollow">serialize</a> into your desired XML structure. </p> <p>Then you can deserialize your XML into objects and then bind them to a <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.propertygrid.aspx" rel="nofollow">PropertyGrid</a></p> http://stackoverflow.com/questions/264004/tools-for-code-snippet-execution/264666#264666 0 Answer by Jim Burger for Tools for code snippet execution Jim Burger 2008-11-05T09:16:45Z 2008-11-05T09:16:45Z <p>In Ruby you can use the <a href="http://en.wikipedia.org/wiki/Interactive_Ruby_Shell" rel="nofollow">Interactive Ruby Shell</a>.</p> <p>It also looks like the guru's at the mono project have gone and made a <a href="http://www.mono-project.com/CsharpRepl" rel="nofollow">C# interactive</a>. YAY</p> http://stackoverflow.com/questions/264249/proper-way-to-write-and-read-an-xml-string/264279#264279 2 Answer by Jim Burger for Proper way to write and read an xml string Jim Burger 2008-11-05T03:32:52Z 2008-11-05T04:08:50Z <p>Using the <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmldocument.load.aspx" rel="nofollow">XmlDocument.Load</a> method you have 4 options: From a Stream, TextReader, URL, or XmlReader.</p> <p>You could use the <a href="http://msdn.microsoft.com/en-us/library/system.net.sockets.networkstream.aspx" rel="nofollow">NetworkStream</a> class to go over a network. You could post your XML up on a website and suck it down via the URL option. You might want to be more specific about the protocol in which you want the transfer to occur.</p> <p>For example, to write to a stream use the XmlWriter.Create overload for a stream. Use an XmlWriterSettings object to provide indentation.</p> <pre><code> Dim settings As XmlWriterSettings = New XmlWriterSettings() settings.Indent = true settings.IndentChars = (ControlChars.Tab) settings.OmitXmlDeclaration = true Dim myNetworkStream As New NetworkStream(mySocket) 'mySocket is a whole other code sample ' Create the XmlWriter object and write some content. writer = XmlWriter.Create(myNetworkStream, settings) XmlDocument.WriteTo(writer) </code></pre> <p>To construct xml documents [the old way] was quite cumbersome, and I'd suggest looking at VB9 XML literals. However here is an example of .NET 2 style XmlDocument manipulation:</p> <pre><code> Dim doc As New XmlDocument() Dim root As XmlElement = doc.CreateElement("xml") Dim author As XmlElement = doc.CreateElement("author") author.Value = "Joe the magnificent" Dim title As XmlElement = doc.CreateElement("title") title.Value = "Joe goes home" root.AppendChild(author) root.AppendChild(title) doc.AppendChild(root) </code></pre> http://stackoverflow.com/questions/264123/vim-key-command/264137#264137 4 Answer by Jim Burger for % VIM Key Command Jim Burger 2008-11-05T01:37:35Z 2008-11-05T02:21:30Z <p>If you want to find opening braces on subsequent lines, without plugins, just enter normal mode and type:</p> <pre><code>/{ [enter] </code></pre> <p>Where { is the type of brace your looking for.</p> <p>You can then browse them all with n and N.</p> <p>To map the F12 key to turn search highlighting on and off <a href="http://ronny.haryan.to/archives/2005/03/03/tip-quick-no-highlight-search-matches-in-vim/" rel="nofollow">use this trick.</a></p> http://stackoverflow.com/questions/261050/required-field-validator-not-firing/261100#261100 2 Answer by Jim Burger for Required Field Validator Not Firing Jim Burger 2008-11-04T06:49:59Z 2008-11-04T07:07:49Z <p>Is it possible this behavior is by design to suppress the appearance of validation controls until user input?</p> <p>Generally speaking, Validate() gets called whenever a control is clicked that has CausesValidation set to true, like a submit button. </p> <p>In any case, a poor mans work around, you <em>could</em> call the page Validate() function from the Load event handler. This will make things clearer to tab happy users that they need to enter something in. E.g.</p> <pre><code>protected void Page_Load(object sender, EventArgs e) { Validate(); } </code></pre> http://stackoverflow.com/questions/260817/design-by-contract-in-c/260837#260837 5 Answer by Jim Burger for 'Design By Contract' in C# Jim Burger 2008-11-04T03:55:50Z 2008-11-04T06:00:15Z <p><a href="http://en.wikipedia.org/wiki/Spec_sharp" rel="nofollow">Spec#</a> is a popular <a href="http://research.microsoft.com/SpecSharp/" rel="nofollow">microsoft research project</a> that allows for some DBC constructs, like checking post and pre conditions. For example a binary search can be implemented with pre and post conditions along with loop invariants. <a href="http://www.rosemarymonahan.com/specsharp/" rel="nofollow">This example and more:</a></p> <pre><code> public static int BinarySearch(int[]! a, int key) requires forall{int i in (0: a.Length), int j in (i: a.Length); a[i] &lt;= a[j]}; ensures 0 &lt;= result ==&gt; a[result] == key; ensures result &lt; 0 ==&gt; forall{int i in (0: a.Length); a[i] != key}; { int low = 0; int high = a.Length - 1; while (low &lt;= high) invariant high+1 &lt;= a.Length; invariant forall{int i in (0: low); a[i] != key}; invariant forall{int i in (high+1: a.Length); a[i] != key}; { int mid = (low + high) / 2; int midVal = a[mid]; if (midVal &lt; key) { low = mid + 1; } else if (key &lt; midVal) { high = mid - 1; } else { return mid; // key found } } return -(low + 1); // key not found. } </code></pre> <p>Note that using the Spec# language yields <em>compile time checking</em> for DBC constructs, which to me, is the best way to take advantage of DBC. Often, relying on runtime assertions becomes a headache in production and people generally elect to <a href="http://stackoverflow.com/questions/117171/design-by-contract-tests-by-assert-or-by-exception">use exceptions</a> instead.</p> <p>There are <a href="http://en.wikipedia.org/wiki/Design_by_contract#Language_support" rel="nofollow">other languages</a> that embrace DBC concepts as first class constructs, namely <a href="http://en.wikipedia.org/wiki/Eiffel_(programming_language)" rel="nofollow">Eiffel</a> which is also available for the .NET platform.</p> http://stackoverflow.com/questions/260716/override-shortcut-keys-on-net-richtextbox/260821#260821 0 Answer by Jim Burger for Override ShortCut Keys on .NET RichTextBox Jim Burger 2008-11-04T03:52:26Z 2008-11-04T03:52:26Z <p>Set the RichtTextBox.ShortcutsEnabled property to true and then handle the shortcuts yourself, using the KeyUp event. E.G.</p> <pre><code>using System; using System.Windows.Forms; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); this.textBox1.ShortcutsEnabled = false; this.textBox1.KeyUp += new KeyEventHandler(textBox1_KeyUp); } void textBox1_KeyUp(object sender, KeyEventArgs e) { if (e.Control == true &amp;&amp; e.KeyCode == Keys.X) MessageBox.Show("Overriding ctrl+x"); } } } </code></pre> http://stackoverflow.com/questions/260531/explaining-nested-arrays-to-a-programmer/260553#260553 1 Answer by Jim Burger for Explaining nested arrays to a programmer Jim Burger 2008-11-04T01:29:12Z 2008-11-04T01:29:12Z <p>Sports can provide appropriate analogies to describe applying nested arrays. A team is an array of people, a competition is an array of teams that play against each other.</p> <p>However its a case of finding the analogy that clicks with the learner. Find the right analogy and you'll get even the slowest of learners to understand. Just ensure you're analogies are water tight. Like abstractions, they are leaky.</p> http://stackoverflow.com/questions/257873/is-it-possible-to-design-and-build-a-procedural-imperative-based-application-su/257890#257890 0 Answer by Jim Burger for Is it possible to design and build a procedural (imperative) based application successfully? Jim Burger 2008-11-03T03:47:09Z 2008-11-03T04:03:23Z <p>While I cant point toward any existing system directly, there are massive amounts of legacy enterprise systems written pre-OO COBOL. Many classic 4GL programs are procedural and are aimed at high integrity systems engineering. Some are well written, others not so much.</p> <p>Books include "COBOL from Micro to Mainframes", "Enterprise COBOL Programming Guide."</p> <p>Structural tips on good imperative code are similar to OO techniques: name things well, seperate your concerns, dont repeat yourself, single responsibility principle, dont leave broken windows unmended. </p> <p>In fact I'd simply suggest reading the "Pragmatic Programmer" would give most people the right idea in any paradigm. </p> <p>As far as a compelling reason for moving to OO for business oriented applications; procedural languages allow for a <a href="http://martinfowler.com/eaaCatalog/transactionScript.html" rel="nofollow">transaction script</a> approach to domain logic, whereas OO languages allow for the <a href="http://martinfowler.com/eaaCatalog/domainModel.html" rel="nofollow">domain model</a> approach.</p> <p>Certainly for simple exercises, there is no real need for the use of OO languages, but as soon as complexity rises, the maintainability of OO languages wins over procedural languages low overhead.</p> http://stackoverflow.com/questions/252256/should-i-first-study-algorithms-or-another-programming-language/252263#252263 4 Answer by Jim Burger for Should I first study algorithms or another programming language? Jim Burger 2008-10-31T00:43:51Z 2008-10-31T00:51:01Z <p>This is a tough call, and it depends on where you want to take your programming career. Learning algorithms is an awesome idea if you plan to research computer science, however the benefit is diminished somewhat if you want to become a web developer. </p> <p>Don't get me wrong, algorithms and how they are derived is very important, but you might want to answer the question "What sort of programming do I want to do?" before planning your skill set.</p> <p>For instance if you want work as an enterprise applications developer, you might want to familiarize yourself with a framework (.NET, CSLA, RoR, J2EE) and a new language instead. Then spend time learning about patterns, rather than algorithms, since most of the hard algorithmic work is taken care of by the framework. </p> <p>You might be enamoured with cryptographics, so a skillset involving mathematics, crypto theory and the like is obviously going to matter more.</p> <p>A budding games developer might want to spend time learning about matrix transformations, game engine design and performance optimization. </p> <p>I guess if you have infinite time and resources, the ideal scenario is to learn as much as you can about all aspects of programming. The fact is all of these things are important to know. The reality is often that we dont have the time, so having some direction first will really help you prioritize which skills are most important to <em>you</em>.</p> http://stackoverflow.com/questions/249266/split-xml-document-into-chunks/249408#249408 2 Answer by Jim Burger for split xml document into chunks Jim Burger 2008-10-30T06:23:16Z 2008-10-30T06:41:23Z <p>Another naive solution; this time for .NET 2.0. It should give you an idea of how to go about what you want. Uses Xpath expressions instead of Linq to XML. Chunks a 100 order docket into 10 dockets in under a second on my devbox.</p> <pre><code> public List&lt;XmlDocument&gt; ChunkDocket(XmlDocument docket, int chunkSize) { List&lt;XmlDocument&gt; newDockets = new List&lt;XmlDocument&gt;(); // int orderCount = docket.SelectNodes("//docket/order").Count; int chunkStart = 0; XmlDocument newDocket = null; XmlElement root = null; XmlNodeList chunk = null; while (chunkStart &lt; orderCount) { newDocket = new XmlDocument(); root = newDocket.CreateElement("docket"); newDocket.AppendChild(root); chunk = docket.SelectNodes(String.Format("//docket/order[position() &gt; {0} and position() &lt;= {1}]", chunkStart, chunkStart + chunkSize)); chunkStart += chunkSize; XmlNode targetNode = null; foreach (XmlNode c in chunk) { targetNode = newDocket.ImportNode(c, true); root.AppendChild(targetNode); } newDockets.Add(newDocket); } return newDockets; } </code></pre> http://stackoverflow.com/questions/249266/split-xml-document-into-chunks/249310#249310 0 Answer by Jim Burger for split xml document into chunks Jim Burger 2008-10-30T04:53:04Z 2008-10-30T05:09:22Z <p>Naive, iterative, but works [EDIT: in .NET 3.5 only]</p> <pre><code> public List&lt;XDocument&gt; ChunkDocket(XDocument docket, int chunkSize) { var newDockets = new List&lt;XDocument&gt;(); var d = new XDocument(docket); var orders = d.Root.Elements("order"); XDocument newDocket = null; do { newDocket = new XDocument(new XElement("docket")); var chunk = orders.Take(chunkSize); newDocket.Root.Add(chunk); chunk.Remove(); newDockets.Add(newDocket); } while (orders.Any()); return newDockets; } </code></pre> http://stackoverflow.com/questions/232116/is-tfss-source-control-just-a-beefed-up-vss-or-is-it-significantly-different/232177#232177 0 Answer by Jim Burger for Is TFS's source control just a beefed up VSS or is it significantly different? Jim Burger 2008-10-24T01:14:26Z 2008-10-24T01:14:26Z <p>I have first hand experience with both TFS and VSS. About the only commonality between TFS and VSS is the icons used in solution explorer to display file status.</p> <p>TFS is an excellent source control and project management solution. It can support agile practices and comes with support for CI and testing. Backed by SQL it is robust and fast. You can have SVN style access if you want using SVNBridge. It scales awesomely, and copes with huge projects. The TFS team actually dogfooded this one to great success. Its main downsides are cost, and learning curve.</p> <p>VSS is probably the worst attempt I've ever seen at source control and I think one would be better off using a nightly zip file backed up on an old tape drive than use VSS.</p> http://stackoverflow.com/questions/229393/how-do-you-control-your-programmer-ego/229411#229411 1 Answer by Jim Burger for How do you control your programmer ego? Jim Burger 2008-10-23T11:36:58Z 2008-10-23T11:36:58Z <p>Treat your code with ruthless contempt in the first place. Use Test Driven Development. Be proud of the tests you write, but understand that requirements change and therefore so does tests. The implementation is irrelevant as long as the tests pass.</p> <p>Decouple your emotion like any other dependancy.</p> http://stackoverflow.com/questions/229324/mac-windows-switching/229356#229356 1 Answer by Jim Burger for Mac/Windows Switching Jim Burger 2008-10-23T11:17:08Z 2008-10-23T11:17:08Z <p>I think the single best thing I've done to maximize productivity is to standardize my text editor across platforms. Personally I use vim as mush as possible. I use viemu to integrate into visual studio on windows, have replaced notepad with gvim, and I use vim on mac and linux alike. </p> <p>You could remap shortcuts, but the simple ones are the same anyhow. Personally I dont have a problem remembering both. I do go through a mental exercise every few minutes to look for OS specific landmarks to remind me Im on Vista or OS X, which helps me to stay focused.</p> <p>I'd also look into Powershell if you're a fan of Linux scripting, its the coolest shell going IMNSHO. Failing that there is always <a href="http://en.wikipedia.org/wiki/Interix" rel="nofollow">Interix</a> </p> http://stackoverflow.com/questions/249314/what-do-you-think-of-multiline-lambdas-in-vb-10/249521#249521 Comment by Jim Burger on What do you think of multiline lambdas in VB 10 Jim Burger 2009-06-16T00:38:17Z 2009-06-16T00:38:17Z +1 from me. I am more excited that F# is now a first class citizen in Visual Studio. http://stackoverflow.com/questions/279619/whats-your-favorite-implementation-of-producing-the-fibonacci-sequence/281733#281733 Comment by Jim Burger on What's your favorite implementation of producing the fibonacci sequence? Jim Burger 2009-06-01T03:39:48Z 2009-06-01T03:39:48Z Thankyou, now I see why brainfuck was invented; to be more readable. http://stackoverflow.com/questions/728747/how-to-use-tdd-when-the-fix-involves-changing-the-method-under-tests-signature/728794#728794 Comment by Jim Burger on How to use TDD when the fix involves changing the method under test's signature? Jim Burger 2009-04-08T07:02:16Z 2009-04-08T07:02:16Z Amen to that, well said. http://stackoverflow.com/questions/348611/what-are-some-situations-where-agile-is-inappropriate/348628#348628 Comment by Jim Burger on What are some situations where Agile is inappropriate? Jim Burger 2008-12-08T04:52:23Z 2008-12-08T04:52:23Z +1 From me - happy 10,000 pts http://stackoverflow.com/questions/348586/microsoft-visual-c-intellisense-has-stopped-working-in-project-referencing-f Comment by Jim Burger on "Microsoft Visual C# IntelliSense has stopped working" in project referencing F# Jim Burger 2008-12-08T04:36:12Z 2008-12-08T04:36:12Z I would strongly suggest sending the F# team a bug report: fsbugs@microsoft.com http://stackoverflow.com/questions/120781/what-should-an-application-controller-do/326083#326083 Comment by Jim Burger on What should an Application Controller do? Jim Burger 2008-12-04T01:52:27Z 2008-12-04T01:52:27Z Great answer, at the time of my answer the OP was less clear as to what he wanted to know about. http://stackoverflow.com/questions/199329/parallel-programming-should-we-throw-out-our-tools-and-start-over-with-new-safe/199423#199423 Comment by Jim Burger on Parallel Programming, should we throw out our tools and start over with new, safer tools? Jim Burger 2008-11-25T01:29:34Z 2008-11-25T01:29:34Z If I could +10 this I would, well said. http://stackoverflow.com/questions/315918/what-is-the-difference-between-an-os-and-a-framework/315971#315971 Comment by Jim Burger on What is the difference between an OS and a Framework? Jim Burger 2008-11-25T00:38:22Z 2008-11-25T00:38:22Z What about operating systems built using a framework? http://stackoverflow.com/questions/315918/what-is-the-difference-between-an-os-and-a-framework/315922#315922 Comment by Jim Burger on What is the difference between an OS and a Framework? Jim Burger 2008-11-25T00:35:45Z 2008-11-25T00:35:45Z A framework is simply a reusable software design. The operating system is itself, software. Who said the two are mutually exclusive? http://stackoverflow.com/questions/315846/why-null-cast/315853#315853 Comment by Jim Burger on Why null cast? Jim Burger 2008-11-24T23:25:21Z 2008-11-24T23:25:21Z Often in unit tests you might pass null to a function http://stackoverflow.com/questions/307294/ie-does-not-render-a-tag-properly/307297#307297 Comment by Jim Burger on IE does not render <A> tag properly Jim Burger 2008-11-20T23:41:45Z 2008-11-20T23:41:45Z The title of the question would appear to indicate the OP is testing a version of IE. Which version is anybodies guess. http://stackoverflow.com/questions/300606/in-powershell-how-can-i-convert-a-string-with-a-trailing-sign-to-a-number/300913#300913 Comment by Jim Burger on In Powershell how can I convert a string with a trailing 'sign' to a number? Jim Burger 2008-11-19T23:33:39Z 2008-11-19T23:33:39Z Seems to me you mean: $type = [System.Globalization.NumberStyles];[enum]::GetValues($type); http://stackoverflow.com/questions/300786/duplicate-returned-by-guid-newguid Comment by Jim Burger on Duplicate returned by Guid.NewGuid()? Jim Burger 2008-11-19T02:10:39Z 2008-11-19T02:10:39Z If you think there is a bug in the IL - use Reflector to track it down. http://stackoverflow.com/questions/300581/better-way-to-build-objects-in-c/300589#300589 Comment by Jim Burger on Better way to build objects in C# Jim Burger 2008-11-19T00:38:12Z 2008-11-19T00:38:12Z Indeed, Oh well... Your reflection approach is an elegant alternative. +1 from me http://stackoverflow.com/questions/300581/better-way-to-build-objects-in-c/300589#300589 Comment by Jim Burger on Better way to build objects in C# Jim Burger 2008-11-19T00:06:31Z 2008-11-19T00:06:31Z Not sure why I got down voted for this answer, its a legitimate course of action is it not?