User Hibri - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T21:21:32Zhttp://stackoverflow.com/feeds/user/15946http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1673380/verifying-contents-of-nhibernate-criteria/1673475#16734751Answer by Hibri for Verifying contents of NHibernate CriteriaHibri2009-11-04T12:25:03Z2009-11-04T12:25:03Z<p>A co-worker recently did this</p>
<p>encapsulate each criteria query in it's own class (specification).
built an expression builder that will spit out the query to the string.
tested that the generated expression string matches the expected expression string.</p>
<p>the expression builder walked the criteria tree in a specification in a recursive fashion to generate the expression string. </p>
<p>that's the general idea, don't have the code with me right now :) sorry.</p>
<p>However, I've found that it's much easier to write db integration tests to test Nh criteria.
Does the criteria really return the data I expect.</p>
http://stackoverflow.com/questions/666577/multiple-scrums-code-integration/669622#6696220Answer by Hibri for multiple scrums code integrationHibri2009-03-21T17:31:02Z2009-03-21T17:31:02Z<p>have a look at this article, explains these issues succinctly. <a href="http://www.infoq.com/news/2008/04/kniberg-agile-version-control" rel="nofollow">http://www.infoq.com/news/2008/04/kniberg-agile-version-control</a></p>
<p>Continuous Integration. Integrate all the time, at every check-in, don't wait till the end of the day or end of an iteration to integrate. Have unit tests, and automated acceptance tests that run on every check-in to ensure that no one breaks the code.</p>
<p>Plan smaller features, work on smaller pieces of work. Smaller chunks are easier to fix when things break.
Are all the teams working on the same product / code line ?
You can try planning the features so that the features don't affect the features another team is working on.
Try attending the other team's stand-ups so you can resolve integration conflicts earlier. Share the work if features conflict.</p>
http://stackoverflow.com/questions/544915/how-to-deal-with-code-coverage/545055#5450551Answer by Hibri for How to deal with code coverage?Hibri2009-02-13T07:28:11Z2009-02-13T07:28:11Z<p>Code coverage tells you how big your "bug catching" net is, but it doesn't tell you how big the holes are in your net. </p>
<p>Use it as an indicator to gauge your testing efforts but not as an absolute metric.</p>
<p>It is possible to write code that will give you 100% coverage and does not test anything at all.</p>
http://stackoverflow.com/questions/145951/what-is-the-first-thing-you-do-when-you-install-visual-studio/146436#14643617Answer by Hibri for What is the first thing you do when you install Visual Studio?Hibri2008-09-28T18:32:19Z2009-02-12T22:06:37Z<ul>
<li>Install Consolas </li>
<li>Install Resharper</li>
<li>Install TestDriven .Net </li>
<li>Set to show empty environment on startup. </li>
<li>Set max recent file list to 24 (max).</li>
<li>Set to a Visual Studio Dark theme</li>
<li>Set project default paths.</li>
<li>Set virus scanners to ignore my project directories</li>
</ul>
http://stackoverflow.com/questions/213214/scrum-burndown-patterns/222310#2223101Answer by Hibri for Scrum Burndown PatternsHibri2008-10-21T15:33:16Z2008-10-21T15:33:16Z<p>My view is not to take burndown charts too seriously. They are an indicator. In the end it is about if you completed a story or not. </p>
<p>Are you having effective retrospectives at the end of your sprints ? </p>
<p>Are retrospective actions followed up on ?</p>
<p>If you find that people don't write unit tests religiously make them do it ( if that is your team standard).
Agree on a common definition of done and stick to it. See <a href="http://stackoverflow.com/questions/170009/your-scrum-definition-of-done#170181">definition of done</a></p>
<p>Having an agile process like SCRUM needs constant inspection and adapting.</p>
<p>To me it looks like there are problems but your team is not addressing those problems. If the product owner is less than ideal, issues related to this should come up in your retrospectives so you can avoid it in the next sprint.</p>
<p>if you have epics you can always break them down, re-prioritise and re-plan them. </p>
http://stackoverflow.com/questions/194760/what-requirements-refining-techniques-have-worked-best-for-you/195241#1952410Answer by Hibri for What requirements refining techniques have worked best for you?Hibri2008-10-12T08:45:03Z2008-10-12T08:45:03Z<p>The best requirements refining technique, is to actually build something. Build a little, this can be a prototype, a concept or a raw version. Demo it quickly to the customer, get feedback. </p>
<p>Repeat. </p>
<p>Look at Agile methodologies like SCRUM.</p>
<p>The process of handing off from one group to another rarely works. Requirements change all the time, and you should be prepared and ready to accept that.</p>
<p>Have someone from the customer group embedded in your team, or even better an actual customer if possible.</p>
http://stackoverflow.com/questions/170009/your-scrum-definition-of-done/170181#1701814Answer by Hibri for Your Scrum definition of DoneHibri2008-10-04T11:39:33Z2008-10-04T15:55:04Z<p>I'd say it is up to your team to decide. Talk with the product owner. Ideally done would be when a story is in Production and being used. However, there is a time gap between when a story is development complete and in Live. Makes it hard to track how long a story took to develop.</p>
<p>In my team, our definition of done is, when the developer completes a story,and does a "show and tell" to the rest of the team(testers, product owner), and if everyone is happy it goes into the subversion trunk. </p>
<p>Further testing is done off a automated build from trunk.</p>
http://stackoverflow.com/questions/160514/partial-classes-in-c/161750#1617500Answer by Hibri for Partial Classes in C#Hibri2008-10-02T10:59:44Z2008-10-02T10:59:44Z<p>As mentioned earlier, I too think this is a code smell.</p>
<p>If a class is so big that it needs to be split into more files, means that it is breaking the single responsibility principle and doing too many things.
The large class could be broken down into smaller classes that cooperate together.</p>
<p>If you have to use partial classes or regions to organize code, consider if they should be in their own classes. It increases readability and you'd get more code reuse.</p>
http://stackoverflow.com/questions/153260/scrum-software/153444#1534444Answer by Hibri for Scrum SoftwareHibri2008-09-30T15:00:44Z2008-09-30T15:00:44Z<p>I recommend a white board and excel spreadsheets. The whiteboard has story cards (index cards) , where the work in progress is tracked. The story card starts out with say 8 hours, and as the work progresses decrement the number on the card. At the end of the day, put the numbers in the cards to a spreadsheet.</p>
<p>The whiteboard is visible all the time, and gives the whole team visibility on how the work is progressing.</p>
http://stackoverflow.com/questions/145508/do-you-think-a-software-company-should-impose-developers-a-coding-style/145531#1455315Answer by Hibri for Do you think a software company should impose developers a coding-style?Hibri2008-09-28T09:10:50Z2008-09-28T09:10:50Z<p>The company should impose that some style should be followed. What style that is and how deep the guidelines are should be decided collectively by the developer community in the company. </p>
<p>I'd definitely lay down guidelines on braces, indentation, naming etc...
You write code for readability and maintainability. Always assume someone else is going to read your code.
There are tools that will auto magically format your code , and you can mandate that everyone uses the tool.</p>
<p>If you are on .Net look at stylecop, fxcop and Resharper</p>
http://stackoverflow.com/questions/139365/handling-tdd-interface-changes/145500#1455000Answer by Hibri for Handling TDD interface changesHibri2008-09-28T08:52:15Z2008-09-28T08:52:15Z<p>When interfaces change, you should expect tests to break. If too many tests break, this means that your system is too tightly coupled and too many things depend on that interface. You should expect a few tests to break, but not a lot. </p>
<p>Having tests break is a good thing, any change in your code should break tests.</p>
http://stackoverflow.com/questions/91617/generating-classes-automatically-from-unit-tests/91693#91693-2Answer by Hibri for Generating classes automatically from unit tests?Hibri2008-09-18T11:15:23Z2008-09-18T11:15:23Z<p>I use Rhino Mocks for this, when I just need a simple stub.</p>
<p><a href="http://www.ayende.com/wiki/Rhino+Mocks+-+Stubs.ashx" rel="nofollow">http://www.ayende.com/wiki/Rhino+Mocks+-+Stubs.ashx</a></p>
http://stackoverflow.com/questions/90726/how-do-you-do-team-building/91545#915451Answer by Hibri for How do you do team-building?Hibri2008-09-18T10:44:29Z2008-09-18T10:44:29Z<p>If this is a development team,</p>
<p>Pair with other team members. Try to pair programme with each member at least once a week. This helps to find out how they work, their strengths and weaknesses. </p>
<p>Let team members own actions from meetings. Let them own code quality metrics/standards and champion them in the team.</p>
<p>Remove blocking issues, protect the team and keep them focused.</p>
<p>If you are using scrum, rotate the scrum master role each week. </p>
<p>Allow them to make decisions, arbitrate not dictate</p>
<p>Be there for the team, answer questions, be ready to drop everything to help. Over time everyone helps each other.</p>
<p>Sit with the team, keeps you on top of things and the team has access to you.</p>
<p>Most of all have food/snacks in the team area. Chocolates, sweets.. Doughnut Fridays.</p>
http://stackoverflow.com/questions/81677/whats-your-motto-as-a-developer-programmer/90640#906400Answer by Hibri for What's Your Motto As A Developer/Programmer?Hibri2008-09-18T07:07:16Z2008-09-18T07:07:16Z<p>Do the simplest thing, write the simplest code.</p>
http://stackoverflow.com/questions/1673380/verifying-contents-of-nhibernate-criteria/1673475#1673475Comment by Hibri on Verifying contents of NHibernate CriteriaHibri2009-11-04T12:43:49Z2009-11-04T12:43:49ZYes, that's what it is. Haven't found any other approach yet.