User t3mujin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T08:20:09Z http://stackoverflow.com/feeds/user/15968 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/484135/select-where-clause-evaluation-order 2 Select "where clause" evaluation order t3mujin 2009-01-27T16:38:33Z 2009-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#1525722 0 Answer by t3mujin for Advice for Managing a difficult client. t3mujin 2009-10-06T13:51:05Z 2009-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#1524924 0 Answer by t3mujin for What am I missing about WCF? t3mujin 2009-10-06T11:01:16Z 2009-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#768968 0 Answer by t3mujin for Best Practices for IOC Container t3mujin 2009-04-20T16:13:45Z 2009-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#536594 1 Answer by t3mujin for Setter / property injection in Unity without attributes t3mujin 2009-02-11T12:37:39Z 2009-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&lt;MyInterface,MyImpl&gt;( 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&lt;InjectedMembers&gt;() .ConfigureInjectionFor&lt;MyImpl&gt;( new InjectionConstructor()); </code></pre> <p>Setting property dependency</p> <pre><code>unityContainer.Configure&lt;InjectedMembers&gt;() .ConfigureInjectionFor&lt;MyImpl&gt;( new InjectionProperty( "SomePropertyName", new ResolvedParameter&lt;MyOtherInterface&gt;())); </code></pre> <p>Configuring method dependency</p> <pre><code>unityContainer.Configure&lt;InjectedMembers&gt;() .ConfigureInjectionFor&lt;MyImpl&gt;( new InjectionMethod( "SomeMethodName", new ResolvedParameter&lt;YetAnotherInterface&gt;())); </code></pre> http://stackoverflow.com/questions/483122/how-do-you-do-version-numbering-in-an-agile-project/484037#484037 1 Answer by t3mujin for How do you do version numbering in an agile project? t3mujin 2009-01-27T16:17:02Z 2009-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#483955 1 Answer by t3mujin for Which management tools would you recommend for software development? t3mujin 2009-01-27T15:56:18Z 2009-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#483896 0 Answer by t3mujin for Am i limited with C# and ASP ? t3mujin 2009-01-27T15:40:41Z 2009-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#483846 0 Answer by t3mujin for What's the best design pattern for formatting numbers? t3mujin 2009-01-27T15:26:59Z 2009-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-configuration 0 Export a Unity container information to xml configuration t3mujin 2009-01-07T14:46:17Z 2009-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#483786 0 Answer by t3mujin for Export a Unity container information to xml configuration t3mujin 2009-01-27T15:13:53Z 2009-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#483767 0 Answer by t3mujin for What measurement do you use in your development process to determine *Doneness* of your software? t3mujin 2009-01-27T15:09:55Z 2009-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#424069 0 Answer by t3mujin for Looking for Scrum related articles t3mujin 2009-01-08T12:26:07Z 2009-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#417228 1 Answer by t3mujin for Why are there dashes in a .NET GUID? t3mujin 2009-01-06T16:33:53Z 2009-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#386667 0 Answer by t3mujin for C# - Code your own IOC Container t3mujin 2008-12-22T16:25:56Z 2008-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#325595 0 Answer by t3mujin for Code Reusability: Is it worth it? t3mujin 2008-11-28T11:56:37Z 2008-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#265681 5 Answer by t3mujin for What IDE / Editor do you use for Ruby on Linux? t3mujin 2008-11-05T16:21:56Z 2008-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#265616 1 Answer by t3mujin for What IDE / Editor do you use for Ruby on Linux? t3mujin 2008-11-05T16:04:06Z 2008-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#265424 1 Answer by t3mujin for What's the best strategy for team room music? t3mujin 2008-11-05T15:11:44Z 2008-11-05T15:11:44Z <p>A pair of good noise-cancelling headphones</p> http://stackoverflow.com/questions/35760/best-scrum-tools/265418#265418 1 Answer by t3mujin for Best Scrum tools t3mujin 2008-11-05T15:09:16Z 2008-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#265369 0 Answer by t3mujin for Sprint Lengths - 2 week vs 30 days t3mujin 2008-11-05T14:54:44Z 2008-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#264890 0 Answer by t3mujin for Can there ever be a "silver bullet" for software development? t3mujin 2008-11-05T11:28:24Z 2008-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#264877 1 Answer by t3mujin for How can I make a non-programming person recognize a good programmer? t3mujin 2008-11-05T11:22:16Z 2008-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#264863 0 Answer by t3mujin for What's the proper naming convention for a property 'ID' : ID or Id ? t3mujin 2008-11-05T11:12:50Z 2008-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#263045 0 Answer by t3mujin for Can my web server be at one hosting company, and my email hosted by a 3rd party? t3mujin 2008-11-04T19:18:44Z 2008-11-04T19:18:44Z <p>Google Apps does just that.</p> http://stackoverflow.com/questions/262810/agile-40-hour-week/263012#263012 1 Answer by t3mujin for Agile 40-hour week t3mujin 2008-11-04T19:10:13Z 2008-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#262797 9 Answer by t3mujin for How do you measure the quality of your unit tests? t3mujin 2008-11-04T18:15:57Z 2008-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#249881 0 Answer by t3mujin for How to implement a singleton in C#? t3mujin 2008-10-30T11:37:06Z 2008-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#249859 0 Answer by t3mujin for Reasons not to build your own bug tracking system t3mujin 2008-10-30T11:26:58Z 2008-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#208614 0 Answer by t3mujin for How do you make time to read technical books? t3mujin 2008-10-16T13:40:45Z 2008-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#484160 Comment by t3mujin on Select "where clause" evaluation order t3mujin 2009-01-27T17:33:57Z 2009-01-27T17:33:57Z Although not explicit in my question the &quot;search non-indexed column among the found items in the indexed column&quot; 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#484148 Comment by t3mujin on Select "where clause" evaluation order t3mujin 2009-01-27T16:52:42Z 2009-01-27T16:52:42Z I updated my question http://stackoverflow.com/questions/463511/what-is-continuous-integration/463533#463533 Comment by t3mujin on What is continuous integration? t3mujin 2009-01-27T15:43:55Z 2009-01-27T15:43:55Z No need write on other's words are great http://stackoverflow.com/questions/481319/whats-the-best-design-pattern-for-formatting-numbers/481326#481326 Comment by t3mujin on What's the best design pattern for formatting numbers? t3mujin 2009-01-27T15:20:36Z 2009-01-27T15:20:36Z Sometimes you have implement these things, banking business can be very picky http://stackoverflow.com/questions/409342/is-it-ok-to-have-more-than-one-role-in-a-scrum-process/409444#409444 Comment by t3mujin on Is it OK to have more than one role in a SCRUM process t3mujin 2009-01-08T12:36:29Z 2009-01-08T12:36:29Z For 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 Owner http://stackoverflow.com/questions/204603/nightly-builds-why-should-i-do-it/204628#204628 Comment by t3mujin on Nightly Builds: Why should I do it? t3mujin 2009-01-06T16:27:07Z 2009-01-06T16:27:07Z Nightly 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#204626 Comment by t3mujin on Nightly Builds: Why should I do it? t3mujin 2009-01-06T16:26:31Z 2009-01-06T16:26:31Z Nightly 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#82615 Comment by t3mujin on Is there TextMate-like editor for Windows? t3mujin 2008-11-28T11:42:06Z 2008-11-28T11:42:06Z I'm a fan of notepad++ http://stackoverflow.com/questions/82611/is-there-textmate-like-editor-for-windows/82636#82636 Comment by t3mujin on Is there TextMate-like editor for Windows? t3mujin 2008-11-28T11:40:52Z 2008-11-28T11:40:52Z Indeed,they've had an alpha version for ages http://stackoverflow.com/questions/81144/trac-in-a-scrum-team-what-are-the-best-plugins-hacks/81208#81208 Comment by t3mujin on Trac in a Scrum team : What are the best plugins / hacks ? t3mujin 2008-11-26T01:24:02Z 2008-11-26T01:24:02Z Agilo only seems to work with python 2.4 http://stackoverflow.com/questions/267030/why-doesnt-msbuild-copy-as-i-would-expect Comment by t3mujin on Why doesn't MSBuild copy as I would expect t3mujin 2008-11-05T22:52:56Z 2008-11-05T22:52:56Z You could have a much more suggestive title... http://stackoverflow.com/questions/265726/what-is-the-best-virtualization-tool-available/265735#265735 Comment by t3mujin on What is the best virtualization tool available? t3mujin 2008-11-05T16:59:17Z 2008-11-05T16:59:17Z Same here, I used Virtualbox for some time and I'm quite happy with it http://stackoverflow.com/questions/265601/what-ide-editor-do-you-use-for-ruby-on-linux/265616#265616 Comment by t3mujin on What IDE / Editor do you use for Ruby on Linux? t3mujin 2008-11-05T16:20:39Z 2008-11-05T16:20:39Z Yes, but I think you still can install RDT separately from Aptana Rails, which makes sense if you're only using ruby http://stackoverflow.com/questions/265332/sprint-lengths-2-week-vs-30-days/265369#265369 Comment by t3mujin on Sprint Lengths - 2 week vs 30 days t3mujin 2008-11-05T15:42:51Z 2008-11-05T15:42:51Z Because 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 &quot;cut&quot; 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#264877 Comment by t3mujin on How can I make a non-programming person recognize a good programmer? t3mujin 2008-11-05T15:31:02Z 2008-11-05T15:31:02Z I took Nick's answer to add my own experience: in my company there's always someone with a technical background in interviews.