User warren_s - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T22:11:05Z http://stackoverflow.com/feeds/user/6255 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/207306/monthcalendar-control-selection-range-with-enablevisualstyles 1 MonthCalendar control selection range with EnableVisualStyles? warren_s 2008-10-16T03:07:00Z 2009-09-11T11:40:33Z <p>I'm using the MonthCalendar control and want to programmatically select a date range. When I do so the control doesn't paint properly if <code>Application.EnableVisualStyles()</code> has been called. This is a known issue according to MSDN. </p> <blockquote> <p>Using the MonthCalendar with visual styles enabled will cause a selection range for the MonthCalendar control to not paint correctly (from: <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.monthcalendar.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.windows.forms.monthcalendar.aspx</a>)</p> </blockquote> <p>Is there really no fix for this other than not calling <code>EnableVisualStyles</code>? This seems to make that particular control entirely useless for a range of applications and a rather glaring oversight from my perspective.</p> http://stackoverflow.com/questions/208302/managing-the-maintenance-burden-of-unit-tests/208327#208327 3 Answer by warren_s for Managing the maintenance burden of unit tests warren_s 2008-10-16T12:24:09Z 2008-10-16T12:24:09Z <p>Unit tests should be fairly immutable. </p> <p>If you're writing a test, writing code to get that test to pass, and breaking your other tests, then your new code should be considered "wrong". </p> <p>Now obviously, in some cases, you may need to rewrite a test if you change an API contract, but for the most part, you should not consider "rewrite the test" as a valid way to do TDD.</p> http://stackoverflow.com/questions/199799/is-code-complete-first-edition-still-relevant/199880#199880 5 Answer by warren_s for Is Code Complete (first edition) still relevant? warren_s 2008-10-14T03:02:45Z 2008-10-14T03:02:45Z <p>Even though it's now 15 years old, most of the advice is fairly timeless and so still quite relevant. The chapters on software craftsmanship alone are worth the price of the book.</p> <p>This was the prescribed text in my first year introductory software engineering subjects, and one of the few texts in which I found myself consistently reading and re-reading throughout the course.</p> http://stackoverflow.com/questions/142928/image-recognition/142931#142931 0 Answer by warren_s for Image Recognition warren_s 2008-09-27T03:51:24Z 2008-09-27T03:51:24Z <p>Short answer? I'd say C++, you have far more flexibility in manipulating raw chunks of memory than Python or Java.</p> http://stackoverflow.com/questions/142895/advice-changing-careers-towards-programming/142922#142922 0 Answer by warren_s for Advice changing careers TOWARDS programming. warren_s 2008-09-27T03:47:11Z 2008-09-27T03:47:11Z <p>Go the degree, especially if you can pick up a part-time programming job or freelance at the same time. If you can talk your way into a junior position without a degree, but on the understanding that your employer is willing to accomodate your classes, this is probably the ideal situation.</p> <p>In some cases, if you're confident in your ability, you will be more likely to succeed in freelancing without formal qualifications - most clients are results oriented, so if you have a history of delivering, they tend not to fixate on qualifications the way some employers will.</p> http://stackoverflow.com/questions/112372/net-can-you-over-interface-and-when-shouldnt-you-interface/112436#112436 1 Answer by warren_s for .NET - Can you over interface, and when shouldn't you interface. warren_s 2008-09-21T22:50:02Z 2008-09-21T22:50:02Z <p>This isn't solely a .NET thing, the same problem occurs in Java quite often.</p> <p>Unless it's a completely obvious requirement, I vote for not using interfaces and simply refactoring when the need becomes clear.</p> <p>The pragmatic approach says to just do the <em>simplest thing that could possibly work</em>, and don't get caught in architecture astronautics.</p> http://stackoverflow.com/questions/88318/whats-the-single-biggest-reason-senior-executives-tolerate-poorly-performing-sof/88543#88543 1 Answer by warren_s for What's the single biggest reason Senior Executives tolerate poorly-performing software development projects and teams? warren_s 2008-09-17T23:04:42Z 2008-09-17T23:04:42Z <p>I'm not sure that you can make a blanket statement that it's "Many" (unless you have research to back this up) but I think it definitely does happen.</p> <p>If I had to guess, I would say that the biggest factor is ignorance. Much like how sausage is tasty, but you don't want to see what goes into making it, many non-technical execs are only capable of judging these things on their outputs and prefer to remain ignorant of the process.</p> <p>If the tech team gets something out that works to such a degree that it's better having a slightly dysfunctional solution, rather than no solution, and that spending another 50% of the dev budget won't result in at least a 50% improvement in output, most accountants will be happy to make do with the dysfunctional part-solution.</p> <p>See also <a href="http://en.wikipedia.org/wiki/Satisficing" rel="nofollow">Satisficing</a>.</p> http://stackoverflow.com/questions/83789/what-is-the-best-git-gui-on-osx/83804#83804 1 Answer by warren_s for What is the best Git GUI on OSX? warren_s 2008-09-17T14:27:13Z 2008-09-17T14:27:13Z <p>Terminal.app? :-)</p> http://stackoverflow.com/questions/80919/what-are-your-weakness-points/80953#80953 0 Answer by warren_s for What are your weakness points? warren_s 2008-09-17T07:56:46Z 2008-09-17T07:56:46Z <p>I agree with Raithlin, try to find a "positive" weakness, eg stubborn could be "I can be too persistent - sometimes I don't know when to quit and try a different approach."</p> http://stackoverflow.com/questions/80693/what-type-of-application-utilization-is-yaml-best-suited-for/80732#80732 6 Answer by warren_s for What type of application/utilization is YAML best suited for? warren_s 2008-09-17T07:14:43Z 2008-09-17T07:14:43Z <p><a href="http://www.yaml.org/" rel="nofollow">YAML</a>'s main advantages are human readability and compactness. Oh, and it's widely supported across various platforms and languages.</p> <p>YAML is very popular in the Ruby community, where it's mainly used in preference to XML for configuration files in Rails and Merb for example.</p> http://stackoverflow.com/questions/70124/how-do-you-find-your-way-around-a-new-codebase/70166#70166 4 Answer by warren_s for How do you find your way around a new codebase warren_s 2008-09-16T07:48:28Z 2008-09-16T07:48:28Z <p>Generally, if I have an idea of what functionality I'm supposed to be fixing/extending, I will follow through the use case for that feature, set a few breakpoints here and there and just try to get a feel for what's going on in the back end. </p> <p>Reverse engineering class diagrams and DB schemas is handy, especially if it's automated, but at the end of the day, you just have to read, read and read some more code.</p> <p>Heaven forbid you should actually find comments that are both relevant AND up to date with the source. If there's a test suite, that's great, but if not, I try to write some tests for code <strong>before</strong> I start changing it, and always use a light touch wherever I can.</p> <p>Depending on the size of a project, it can take days or even weeks to get a real handle on part of the codebase, my view is that in any decent sized project you can never <strong>really</strong> know any part of the code the way the original author did, so the best you can hope for is little more than a passing familiarity with it.</p> http://stackoverflow.com/questions/70038/best-budget-soa-web-application-platform-for-mac-linux-windows/70112#70112 1 Answer by warren_s for Best Budget SOA Web Application Platform For Mac + Linux + Windows? warren_s 2008-09-16T07:39:20Z 2008-09-16T07:39:20Z <p>If you haven't tried to scale a Rails site yourself, then I'd avoid putting a lot of stock in the "Rails doesn't scale" arguments. There are plenty of large Rails installs out there that aren't called twitter.com and have scaled without issue. Scribd.com is a commonly cited example.</p> <p>All you can do is give Rails a go and see if it suits your needs.</p> http://stackoverflow.com/questions/62617/whats-the-best-way-to-separate-php-code-and-html/62956#62956 38 Answer by warren_s for What's the best way to separate PHP Code and HTML? warren_s 2008-09-15T13:40:51Z 2008-09-15T13:40:51Z <p>Sheer, iron-willed discipline.</p> http://stackoverflow.com/questions/62784/should-you-design-websites-that-require-javascript-in-this-day-age/62830#62830 18 Answer by warren_s for Should you design websites that require JavaScript in this day & age? warren_s 2008-09-15T13:24:04Z 2008-09-15T13:24:04Z <p>Just as long as you're aware of the accessibility limitations you might be introducing, ie for users of screen-reading software, etc.</p> <p>It's one thing to exclude people because they choose to turn off JS or use a browser which doesn't support it, it's entirely another to exclude them because of a disability.</p> http://stackoverflow.com/questions/62625/how-do-you-know-what-to-test-when-writing-unit-tests/62715#62715 2 Answer by warren_s for How do you know what to test when writing unit tests? warren_s 2008-09-15T13:12:21Z 2008-09-15T13:12:21Z <p>Testing boilerplate code is a waste of time, but as Slavo says, if you add a side effect to your getters/setters, then you should write a test to accompany that functionality.</p> <p>If you're doing test-driven development, you should write the contract (eg interface) first, then write the test(s) to exercise that interface which document the expected results/behaviour. <strong>Then</strong> write your methods themselves, without touching the code in your unit tests. Finally, grab a code coverage tool and make sure your tests exercise all the logic paths in your code.</p> http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61834#61834 11 Answer by warren_s for What should I learn next after VB and C# warren_s 2008-09-15T03:45:32Z 2008-09-15T03:45:32Z <p>Learn a functional language, like Lisp, Scheme, Haskell, Erlang. Otherwise, you're not really doing anything other than learning how to write the same code in a different dialect. </p> <p>Functional programming requires a shift in how you think about solving problems.</p> <p>Alternatively, spend more time on using the languages you do know. With 2 years experience, you've barely scratched the surface to be honest.</p> http://stackoverflow.com/questions/3232/how-far-should-one-take-e-mail-address-validation/61765#61765 1 Answer by warren_s for How far should one take e-mail address validation? warren_s 2008-09-15T00:46:31Z 2008-09-15T00:46:31Z <p>Whatever you choose, I think you need to err on the side of believing that 99% of the time, the user <strong>does</strong> actually know what their email address is. As someone from Australia, I still find very occasionally an oh-so-clever email validation that tells me that I can't possibly have a .com.au domain. It used to happen a lot more in the early days of the internet mind you.</p> <p>Sending a confirmation email these days is acceptable to users, and is also useful in terms of opt-in as well as validating their supplied address.</p> http://stackoverflow.com/questions/61320/svn-plugins-for-eclipse-subclipse-vs-subversive/61758#61758 3 Answer by warren_s for SVN plugins for Eclipse - Subclipse vs. Subversive warren_s 2008-09-15T00:34:25Z 2008-09-15T00:34:25Z <p>Subclipse, because at least it works. Subversive has been a bucket of fail for me so far, wouldn't play nice with all of my old projects I had checked out with Subclipse.</p> http://stackoverflow.com/questions/61559/is-net-mono-or-java-the-better-choice-for-cross-platform-development/61724#61724 4 Answer by warren_s for Is .Net/Mono or Java the better choice for cross-platform development? warren_s 2008-09-14T23:39:06Z 2008-09-14T23:39:06Z <p>I'm going to say Java as well. If you look at it in terms of maturity, a lot more time and effort has been expended by Sun (and others) in getting the JVM to work on non-Windows platforms. </p> <p>In contrast, Mono is definitely a second class citizen in the .Net ecosystem.</p> <p>Depending on who your target customers are, you may also find there is real pushback against using Mono - does Novell offer the same kind of vendor support for Mono that you would get for Java or .Net on Windows?</p> <p>If you were primarily targeting hosting your service on Windows, it would make sense to be considering this choice, but since you're targeting Linux primarily, it seems like kind of a no-brainer to me.</p> http://stackoverflow.com/questions/58640/great-programming-quotes/60458#60458 4 Answer by warren_s for Great programming quotes warren_s 2008-09-13T10:24:20Z 2008-09-13T10:24:20Z <p>Another Nathaniel Borenstein one for me:</p> <p><em>"The most likely way for the world to be destroyed, most experts agree, is by accident. That's where we come in; we're computer professionals. We cause accidents."</em></p> <p>Particularly apropos considering some of the LHC doomsday hysteria this week...</p> http://stackoverflow.com/questions/208302/managing-the-maintenance-burden-of-unit-tests/208344#208344 Comment by warren_s on Managing the maintenance burden of unit tests warren_s 2008-10-16T12:37:35Z 2008-10-16T12:37:35Z &quot;Fragile Tests&quot; is the term I was looking for. Here, have a cookie! http://stackoverflow.com/questions/208293/when-to-throw-out-old-programming-books/208321#208321 Comment by warren_s on When to Throw Out Old Programming Books? warren_s 2008-10-16T12:35:42Z 2008-10-16T12:35:42Z Chance of me using this Visual J++ book I have? fairly slim I'd say... :-) http://stackoverflow.com/questions/112372/net-can-you-over-interface-and-when-shouldnt-you-interface/112465#112465 Comment by warren_s on .NET - Can you over interface, and when shouldn't you interface. warren_s 2008-09-21T23:08:39Z 2008-09-21T23:08:39Z Yep, if you find yourself writing essentially the same method to implement an interface on two classes, you need an abstract base class. http://stackoverflow.com/questions/110600/making-the-most-of-below-average-team-members Comment by warren_s on Making the most of below-average team members warren_s 2008-09-21T10:27:16Z 2008-09-21T10:27:16Z well, if you assume a normal distribution... <i>ducks</i> :-) http://stackoverflow.com/questions/80693/what-type-of-application-utilization-is-yaml-best-suited-for/80747#80747 Comment by warren_s on What type of application/utilization is YAML best suited for? warren_s 2008-09-17T07:18:28Z 2008-09-17T07:18:28Z As it says &quot;YAML aint markup language!&quot; ;-) http://stackoverflow.com/questions/70124/how-do-you-find-your-way-around-a-new-codebase/70160#70160 Comment by warren_s on How do you find your way around a new codebase warren_s 2008-09-16T07:51:18Z 2008-09-16T07:51:18Z Blackboxing is the way to go, especially if you can write unit tests that don't currently exist for those parts in the process. http://stackoverflow.com/questions/5383/best-zip-compression-application-for-windows/61940#61940 Comment by warren_s on Best Zip\Compression Application for windows? warren_s 2008-09-15T06:46:54Z 2008-09-15T06:46:54Z sure, 7zip is butt ugly, but aesthetics are pretty low on my list of priorities when it comes to choosing a compression utility. http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61834#61834 Comment by warren_s on What should I learn next after VB and C# warren_s 2008-09-15T04:00:32Z 2008-09-15T04:00:32Z The only &quot;benefit&quot; to choosing F# i can see would be that it's part of the .Net ecosystem. The other languages I mentioned are far more mature and have plenty of existing learning material out there.