User t3mujin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T08:20:09Zhttp://stackoverflow.com/feeds/user/15968http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/484135/select-where-clause-evaluation-order2Select "where clause" evaluation ordert3mujin2009-01-27T16:38:33Z2009-11-04T06:46:38Z
<p>In Sql Server 2005 when I have multiple parameters do I have the guarantee that the evaluation order will <strong>always</strong> be from left to right?</p>
<p>Using an example:</p>
<blockquote>
<p><code>select a from table where c=1 and d=2</code></p>
</blockquote>
<p>In this query if the "c=1" condition fails the "d=2" condition will never be evaluated?</p>
<p>PS- "c" is an integer indexed column, d is a large varchar and non indexable column that requires a full table scan</p>
<p><strong>update</strong> I was trying to avoid performing two queries or conditional statements, I just need something like: if "c condition" fails there's a way to avoid performing the heavy "d condition", since it's not needed in my case.</p>
http://stackoverflow.com/questions/1427797/advice-for-managing-a-difficult-client/1525722#15257220Answer by t3mujin for Advice for Managing a difficult client.t3mujin2009-10-06T13:51:05Z2009-10-06T13:51:05Z<p>I agree with Schneider and most of the rest written here, there are lots of things to make and an having people badly involved is one of them. I've been doing Scrum for some years and I use Agile whenever possible, but Agile does not fit to all projects. In my current project we're in the process of dropping Scrum completely (and I'm the one who wants to axe it), because it gradually became a burden, and one of the reasons for that is a Product Owner not doing his role properly.</p>
<p>Maybe you shouldn't tell your clients about Agile, because it sounds you "force" Agile to them, maybe you should see if Agile fits in your project and your clients and their product, which means also having a Product Manager commited to the process. If not why don't you drop Agile entirely or adapt it to a smaller scale, and transparent to the client?</p>
<p>On a footnote I'd suggest to watch this: <a href="http://www.infoq.com/presentations/Fail-Scrum-Henrik-Kniberg" rel="nofollow">http://www.infoq.com/presentations/Fail-Scrum-Henrik-Kniberg</a></p>
http://stackoverflow.com/questions/924756/what-am-i-missing-about-wcf/1524924#15249240Answer by t3mujin for What am I missing about WCF?t3mujin2009-10-06T11:01:16Z2009-10-06T11:01:16Z<p>Biggest advantage of using WCF from a programmer's point of view: separates the definition of exposed services (operations, contracts, etc.) from the protocol's specific details, unlike ASMX where you expose a class as a web service directly in the code using attributes. Using a real example of mine: we where able to easily switch the transport protocol between web services and named pipes, whatever suited better the deployment and performance needs, without changing a line of code.</p>
http://stackoverflow.com/questions/480286/best-practices-for-ioc-container/768968#7689680Answer by t3mujin for Best Practices for IOC Containert3mujin2009-04-20T16:13:45Z2009-04-20T16:13:45Z<p>Another option would be using the <a href="http://commonservicelocator.codeplex.com/" rel="nofollow">CommonServiceLocator</a>, although it may be a pointless indirection, you may use the <code>ServiceLocator.Current</code> as the instance known by all classes </p>
http://stackoverflow.com/questions/515028/setter-property-injection-in-unity-without-attributes/536594#5365941Answer by t3mujin for Setter / property injection in Unity without attributest3mujin2009-02-11T12:37:39Z2009-02-11T12:43:09Z<p>I don't like those attributes also</p>
<p>You can do all using the <strong>Configure</strong> method of the unity container:</p>
<p>First register the type</p>
<pre><code>unityContainer.RegisterType<MyInterface,MyImpl>(
new ContainerControlledLifetimeManager());
</code></pre>
<p>If you have multiple constructors you'll have to to this so Unity invokes the parameterless constructor (if none set Unity will go for the fattest one)</p>
<pre><code>unityContainer.Configure<InjectedMembers>()
.ConfigureInjectionFor<MyImpl>(
new InjectionConstructor());
</code></pre>
<p>Setting property dependency</p>
<pre><code>unityContainer.Configure<InjectedMembers>()
.ConfigureInjectionFor<MyImpl>(
new InjectionProperty(
"SomePropertyName",
new ResolvedParameter<MyOtherInterface>()));
</code></pre>
<p>Configuring method dependency</p>
<pre><code>unityContainer.Configure<InjectedMembers>()
.ConfigureInjectionFor<MyImpl>(
new InjectionMethod(
"SomeMethodName",
new ResolvedParameter<YetAnotherInterface>()));
</code></pre>
http://stackoverflow.com/questions/483122/how-do-you-do-version-numbering-in-an-agile-project/484037#4840371Answer by t3mujin for How do you do version numbering in an agile project?t3mujin2009-01-27T16:17:02Z2009-01-27T16:17:02Z<p>I prefer to separate the build and release process from the team development process, so I would hardly add the the iteration, sprint or similar to the version. Your case is a fine example on how having both things mixed is not easy to manage. What if you change methodology in the middle of the project (whatever the reason may be)?</p>
<p>Answering to you question, we've been using Scrum for two years and our version format is the classic Major.Minor.Upgrade.Build (we only use Upgrade on bugfixes). In the end it's not mandatory to use the Build number, as you only need it to disambiguate different packages from the same version, but you can use another symbol that represents some kind of Private Version.</p>
http://stackoverflow.com/questions/473964/which-management-tools-would-you-recommend-for-software-development/483955#4839551Answer by t3mujin for Which management tools would you recommend for software development?t3mujin2009-01-27T15:56:18Z2009-01-27T15:56:18Z<p>Depends on what your language and framework will be. If you want an agnostic approach a combination of Subversion and Trac with the <a href="http://trac-hacks.org/" rel="nofollow">needed plugins</a> (Agile, etc...) can do the trick.</p>
<p>But more important than the tools is defining the various processes: versioning policies (building the habit of defining version roadmaps, etc), how to use source control strategies (when and how to branch etc.), which methodologies will be used and how be used (Agile or not, etc). Getting and installing tools is easy, but tools should be used within a process; defining and applying a process is the important part where people usually don't spend that much time.</p>
<p>The bottom line is: with a defined and stable process tools should come easy</p>
http://stackoverflow.com/questions/479081/am-i-limited-with-c-and-asp/483896#4838960Answer by t3mujin for Am i limited with C# and ASP ?t3mujin2009-01-27T15:40:41Z2009-01-27T15:40:41Z<p>.Net is growing in the enterprise market but C# still is a static, type-safe, compile based language. Despite MS is moving towards the dynamic languages (like Iron Ruby), in the future the Common Language Runtime (the core of .Net) will be a type-safe wrapper to a Dynamic Language Runtime, but for now the development paradigm is quite different.</p>
<p>And since you're mentioned ASP.Net, in the future you'll be facing two options: ASP.Net Web Forms, which is the classic platform, and ASP.Net MVC, a Model-View-Controller based platform closer of how Ruby On Rails is structured. </p>
http://stackoverflow.com/questions/481319/whats-the-best-design-pattern-for-formatting-numbers/483846#4838460Answer by t3mujin for What's the best design pattern for formatting numbers?t3mujin2009-01-27T15:26:59Z2009-01-27T15:26:59Z<p>Assuming there's no existing implementation that suits your needs there are different options other than Decorator:</p>
<p>If you can decompose the formatting in rules (decimal separator, thousand separator, currency) then a Chain of Responsibility (<a href="http://www.dofactory.com/Patterns/PatternChain.aspx" rel="nofollow">http://www.dofactory.com/Patterns/PatternChain.aspx</a>) where each block handles is rule can be an option, and you can run it on a specific order.</p>
http://stackoverflow.com/questions/420546/export-a-unity-container-information-to-xml-configuration0Export a Unity container information to xml configuration t3mujin2009-01-07T14:46:17Z2009-01-27T15:13:53Z
<p>In Microsoft Unity you can configure a container from an existing XML configuration but is there a way to do the opposite? From an initialized container export the corresponding XML configuration?</p>
http://stackoverflow.com/questions/420546/export-a-unity-container-information-to-xml-configuration/483786#4837860Answer by t3mujin for Export a Unity container information to xml configuration t3mujin2009-01-27T15:13:53Z2009-01-27T15:13:53Z<p>After "diving" the Unity source code my conclusion is it ain't possible for now. </p>
http://stackoverflow.com/questions/443575/what-measurement-do-you-use-in-your-development-process-to-determine-doneness-o/483767#4837670Answer by t3mujin for What measurement do you use in your development process to determine *Doneness* of your software?t3mujin2009-01-27T15:09:55Z2009-01-27T15:09:55Z<p>Each project will have it's own definition of done, ours is code complete (compiles successfully, etc), unit tested (or some kind of local testing if not possible) and released within one of our packages (so it's available to the other teams). </p>
<p>But the MOST important thing in DoD is every parties should agree on what it is (team, product owner, manager, etc) and it should be some kind of public contract, published in a team portal is a good idea.</p>
http://stackoverflow.com/questions/343625/looking-for-scrum-related-articles/424069#4240690Answer by t3mujin for Looking for Scrum related articlest3mujin2009-01-08T12:26:07Z2009-01-08T12:26:07Z<p>I keep a few of the in my delicious</p>
<p><a href="http://delicious.com/temujin/scrum" rel="nofollow">http://delicious.com/temujin/scrum</a></p>
http://stackoverflow.com/questions/417108/why-are-there-dashes-in-a-net-guid/417228#4172281Answer by t3mujin for Why are there dashes in a .NET GUID?t3mujin2009-01-06T16:33:53Z2009-01-06T16:33:53Z<p>The Guid class of .Net recognizes a bunch of different formats: dashes as separators, no separators, brackets as delimiters, parenthesis as delimiters, no delimiters, etc</p>
http://stackoverflow.com/questions/386535/c-code-your-own-ioc-container/386667#3866670Answer by t3mujin for C# - Code your own IOC Containert3mujin2008-12-22T16:25:56Z2008-12-22T16:25:56Z<p>Unless there's a very good reason I wouldn't go reinvent the wheel and implement a IoC container myself, specially because there are are a lot of good options like <a href="http://msdn.microsoft.com/en-us/library/cc468366.aspx" rel="nofollow">Unity</a>, Ninject or <a href="http://www.springframework.net" rel="nofollow">Spring.net</a>. </p>
<p>If you need/want to remove the dependency to any of these IoC containers you may try out the <a href="http://www.codeplex.com/CommonServiceLocator" rel="nofollow">Common Service Locator</a> interface.</p>
http://stackoverflow.com/questions/325514/code-reusability-is-it-worth-it/325595#3255950Answer by t3mujin for Code Reusability: Is it worth it?t3mujin2008-11-28T11:56:37Z2008-11-28T11:56:37Z<p>One of the reasons why SOA has been failing, or hasn't lifted of yet, is that it's difficult to reuse a service: either it's too specific and it can't be used elsewhere, or too generic (and usually very complex) and doesn't meet the needs of different clients.</p>
<p>This ain't "code reuse", it's "service reuse", but there are some common concepts.</p>
http://stackoverflow.com/questions/265601/what-ide-editor-do-you-use-for-ruby-on-linux/265681#2656815Answer by t3mujin for What IDE / Editor do you use for Ruby on Linux?t3mujin2008-11-05T16:21:56Z2008-11-05T16:21:56Z<p>There's also Netbeans: <a href="http://ruby.netbeans.org/" rel="nofollow">http://ruby.netbeans.org/</a> </p>
http://stackoverflow.com/questions/265601/what-ide-editor-do-you-use-for-ruby-on-linux/265616#2656161Answer by t3mujin for What IDE / Editor do you use for Ruby on Linux?t3mujin2008-11-05T16:04:06Z2008-11-05T16:04:06Z<p>I use Eclipse with Aptana RadRails: <a href="http://aptana.com/rails" rel="nofollow">http://aptana.com/rails</a></p>
<p>but if you need only Ruby you can use RDT instead: <a href="http://rubyeclipse.sourceforge.net/" rel="nofollow">http://rubyeclipse.sourceforge.net/</a></p>
http://stackoverflow.com/questions/214988/whats-the-best-strategy-for-team-room-music/265424#2654241Answer by t3mujin for What's the best strategy for team room music?t3mujin2008-11-05T15:11:44Z2008-11-05T15:11:44Z<p>A pair of good noise-cancelling headphones</p>
http://stackoverflow.com/questions/35760/best-scrum-tools/265418#2654181Answer by t3mujin for Best Scrum toolst3mujin2008-11-05T15:09:16Z2008-11-05T15:09:16Z<p>Around here we've also been using Cochango plugin for TFS, but whatever the chosen tool may be the important thing is visibility. Around here we started to print our Burndown chart and take it to each Daily Scrum so that everybody sees it, because when you have an "electronic only" chart people tend to miss it for days. </p>
http://stackoverflow.com/questions/265332/sprint-lengths-2-week-vs-30-days/265369#2653690Answer by t3mujin for Sprint Lengths - 2 week vs 30 dayst3mujin2008-11-05T14:54:44Z2008-11-05T14:54:44Z<p>Sprint lengths may vary from project to project but should remain constant throughout the same project. The best thing to do is trying to find the most confortable sprint length for your team, I've been using Scrum for two years and now we settled for twenty work days sprints. </p>
<p>My experience tells me that in projects that need fast deliverables and relatively simple programming (CRUD operations, simple grids and forms, etc) it's wiser to go for shorter sprints, like two weeks. For things with higher complexity (like frameworks) probably it's probably better to go for longer sprints, such as four weeks sprints. My current project leans towards the last option.</p>
<p>But the important is choosing the length confortable for both the team and the product owner.</p>
http://stackoverflow.com/questions/264881/can-there-ever-be-a-silver-bullet-for-software-development/264890#2648900Answer by t3mujin for Can there ever be a "silver bullet" for software development?t3mujin2008-11-05T11:28:24Z2008-11-05T11:28:24Z<p>In one word: No. Even if you limit yourself to a particular scenario (web development,etc) there are too many use case variations, business needs or technical restrictions for that to happen.</p>
http://stackoverflow.com/questions/264846/how-can-i-make-a-non-programming-person-recognize-a-good-programmer/264877#2648771Answer by t3mujin for How can I make a non-programming person recognize a good programmer?t3mujin2008-11-05T11:22:16Z2008-11-05T11:22:16Z<p>Just like Nick Baldwin wrote, a non-programmer can't evaluate someone's technical skills and that's why we around here always have some kind of technical expert for interviews. </p>
http://stackoverflow.com/questions/264823/whats-the-proper-naming-convention-for-a-property-id-id-or-id/264863#2648630Answer by t3mujin for What's the proper naming convention for a property 'ID' : ID or Id ?t3mujin2008-11-05T11:12:50Z2008-11-05T11:12:50Z<p>We around here see things like "Id" or other acronyms as a word, and "Id" is the easy one because in the banking business we do get lots of strange letter combinations. So we treat it as a word, only with the first letter capitalized, and that's how we ended up being defined in our internal coding conventions paper.</p>
<p>But the bottom line is: choose what convention is more comfortable for the developer team and other people that look at the source code and stick with it. </p>
http://stackoverflow.com/questions/262990/can-my-web-server-be-at-one-hosting-company-and-my-email-hosted-by-a-3rd-party/263045#2630450Answer by t3mujin for Can my web server be at one hosting company, and my email hosted by a 3rd party?t3mujin2008-11-04T19:18:44Z2008-11-04T19:18:44Z<p>Google Apps does just that.</p>
http://stackoverflow.com/questions/262810/agile-40-hour-week/263012#2630121Answer by t3mujin for Agile 40-hour weekt3mujin2008-11-04T19:10:13Z2008-11-04T19:10:13Z<p>Adding to all of the above (inaccurate estimates, badly implemented Scrum, etc.), the problem could to be the lack of understanding of your team's <a href="http://www.scrumalliance.org/articles/39-glossary-of-scrum-terms#1110" rel="nofollow">Velocity</a>, something as simple as "how much work a team can accomplish", but which is not that <a href="http://jan-so.blogspot.com/2007/11/velocity-not-so-simple-value.html" rel="nofollow">easy to find as it may seem</a>.</p>
http://stackoverflow.com/questions/262727/how-do-you-measure-the-quality-of-your-unit-tests/262797#2627979Answer by t3mujin for How do you measure the quality of your unit tests?t3mujin2008-11-04T18:15:57Z2008-11-04T18:15:57Z<p>Code coverage is a useful metric but should be used carefully. Some people take code coverage, specially the percentage covered, a bit too seriously and see it as THE metric for good unit testing. </p>
<p>My experience tells me that more important than trying to get 100% coverage, which is not that easy, people should focus on checking the critical sections are covered. But even then you may get false positives.</p>
http://stackoverflow.com/questions/246710/how-to-implement-a-singleton-in-c/249881#2498810Answer by t3mujin for How to implement a singleton in C#?t3mujin2008-10-30T11:37:06Z2008-10-30T11:37:06Z<p>Personally I would go for a dependency injection framework, like Unity, all of them are able to configure singleton items in the container and would improve coupling by moving from a class dependency to interface dependency.</p>
http://stackoverflow.com/questions/62153/reasons-not-to-build-your-own-bug-tracking-system/249859#2498590Answer by t3mujin for Reasons not to build your own bug tracking systemt3mujin2008-10-30T11:26:58Z2008-10-30T11:26:58Z<p>I don't think building a in-house tracking system is relatively easy to build, and certainly it won't match a paid or open source solution. Most of the times I would go for "programmer ego" or just having an IT department that really can't use third-party software and has to build literally every piece of software used. Once I worked on a telco that their <strong>own in-house version control system</strong>, and it was pretty crappy but kept a whole team busy...</p>
http://stackoverflow.com/questions/208183/how-do-you-make-time-to-read-technical-books/208614#2086140Answer by t3mujin for How do you make time to read technical books?t3mujin2008-10-16T13:40:45Z2008-10-16T13:40:45Z<p>Before managing time to read technical books it's important to manage time to read books of any kind. If you have some kind of reading habit you can easily fit all kinds of books: technical, novels, etc.</p>
http://stackoverflow.com/questions/484135/select-where-clause-evaluation-order/484160#484160Comment by t3mujin on Select "where clause" evaluation ordert3mujin2009-01-27T17:33:57Z2009-01-27T17:33:57ZAlthough not explicit in my question the "search non-indexed column among the found items in the indexed column" issue was also in my mind. In my case it completely suits my needs, because querying the indexed column first will leave only a small amount of records to filter, which isn't an problem http://stackoverflow.com/questions/484135/select-where-clause-evaluation-order/484148#484148Comment by t3mujin on Select "where clause" evaluation ordert3mujin2009-01-27T16:52:42Z2009-01-27T16:52:42ZI updated my questionhttp://stackoverflow.com/questions/463511/what-is-continuous-integration/463533#463533Comment by t3mujin on What is continuous integration?t3mujin2009-01-27T15:43:55Z2009-01-27T15:43:55ZNo need write on other's words are greathttp://stackoverflow.com/questions/481319/whats-the-best-design-pattern-for-formatting-numbers/481326#481326Comment by t3mujin on What's the best design pattern for formatting numbers?t3mujin2009-01-27T15:20:36Z2009-01-27T15:20:36ZSometimes you have implement these things, banking business can be very pickyhttp://stackoverflow.com/questions/409342/is-it-ok-to-have-more-than-one-role-in-a-scrum-process/409444#409444Comment by t3mujin on Is it OK to have more than one role in a SCRUM processt3mujin2009-01-08T12:36:29Z2009-01-08T12:36:29ZFor me that's very dangerous because there's a thin line dividing the two roles. I would strongly advice that those roles should be played different persons, mostly because the Scrum Master should be close to the team, unlike the Product Ownerhttp://stackoverflow.com/questions/204603/nightly-builds-why-should-i-do-it/204628#204628Comment by t3mujin on Nightly Builds: Why should I do it?t3mujin2009-01-06T16:27:07Z2009-01-06T16:27:07ZNightly Builds and Continuous Integration aren't exclusive, you can use the nightly build as use one of the pieces of your continuous build process.http://stackoverflow.com/questions/204603/nightly-builds-why-should-i-do-it/204626#204626Comment by t3mujin on Nightly Builds: Why should I do it?t3mujin2009-01-06T16:26:31Z2009-01-06T16:26:31ZNightly Builds and Continuous Integration aren't exclusive, you can use the nightly build as use one of the pieces of your continuous build process.http://stackoverflow.com/questions/82611/is-there-textmate-like-editor-for-windows/82615#82615Comment by t3mujin on Is there TextMate-like editor for Windows?t3mujin2008-11-28T11:42:06Z2008-11-28T11:42:06ZI'm a fan of notepad++http://stackoverflow.com/questions/82611/is-there-textmate-like-editor-for-windows/82636#82636Comment by t3mujin on Is there TextMate-like editor for Windows?t3mujin2008-11-28T11:40:52Z2008-11-28T11:40:52ZIndeed,they've had an alpha version for ageshttp://stackoverflow.com/questions/81144/trac-in-a-scrum-team-what-are-the-best-plugins-hacks/81208#81208Comment by t3mujin on Trac in a Scrum team : What are the best plugins / hacks ?t3mujin2008-11-26T01:24:02Z2008-11-26T01:24:02ZAgilo only seems to work with python 2.4http://stackoverflow.com/questions/267030/why-doesnt-msbuild-copy-as-i-would-expectComment by t3mujin on Why doesn't MSBuild copy as I would expectt3mujin2008-11-05T22:52:56Z2008-11-05T22:52:56ZYou could have a much more suggestive title...http://stackoverflow.com/questions/265726/what-is-the-best-virtualization-tool-available/265735#265735Comment by t3mujin on What is the best virtualization tool available?t3mujin2008-11-05T16:59:17Z2008-11-05T16:59:17ZSame here, I used Virtualbox for some time and I'm quite happy with ithttp://stackoverflow.com/questions/265601/what-ide-editor-do-you-use-for-ruby-on-linux/265616#265616Comment by t3mujin on What IDE / Editor do you use for Ruby on Linux?t3mujin2008-11-05T16:20:39Z2008-11-05T16:20:39ZYes, but I think you still can install RDT separately from Aptana Rails, which makes sense if you're only using rubyhttp://stackoverflow.com/questions/265332/sprint-lengths-2-week-vs-30-days/265369#265369Comment by t3mujin on Sprint Lengths - 2 week vs 30 dayst3mujin2008-11-05T15:42:51Z2008-11-05T15:42:51ZBecause it means having constant Scrum Velocity (work rate) so it's easier to manage work items because it's easier to keep the focus on product backlog item: a sprint too short will "cut" the team's performance, a sprint too long will seem endless and performance will drop.
http://stackoverflow.com/questions/264846/how-can-i-make-a-non-programming-person-recognize-a-good-programmer/264877#264877Comment by t3mujin on How can I make a non-programming person recognize a good programmer?t3mujin2008-11-05T15:31:02Z2008-11-05T15:31:02ZI took Nick's answer to add my own experience: in my company there's always someone with a technical background in interviews.