User GertGregers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T20:05:14Zhttp://stackoverflow.com/feeds/user/19889http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170009/your-scrum-definition-of-done13Your Scrum definition of DoneGertGregers2008-10-04T08:52:42Z2008-10-05T22:31:45Z
<p>While Scrum is easy in theory and hard in practice, I wanted to hear your definition of Done; i.e. what are the gates (unit test, code coverage > 80%, code reviews, load tests, perf.test, functional tests, etc.) your product has to go through before you can label the product "Done"</p>
http://stackoverflow.com/questions/162366/is-there-any-way-to-create-a-patch-for-an-asp-net-web-application-installer/170016#1700160Answer by GertGregers for Is there any way to create a patch for an ASP.Net web application installer?GertGregers2008-10-04T09:05:27Z2008-10-04T09:05:27Z<p>Sorry for not helping, I can however tell you how we use WIX to create the installation for our web-site. </p>
<p>We have created a WIX template (Plan Old XML), and we then traverse the build output folder using an utility we wrote our-selves to get the list of folders and files that need to go into the resulting WIX file. This process is rolled into the build (MSBuild) for the web-site, so the MSI creation is automatic.</p>
http://stackoverflow.com/questions/162366/is-there-any-way-to-create-a-patch-for-an-asp-net-web-application-installer/169320#1693200Answer by GertGregers for Is there any way to create a patch for an ASP.Net web application installer?GertGregers2008-10-03T23:31:50Z2008-10-03T23:31:50Z<p>The WIX (Windows Installer XML) documentation has a section on Patch Building using a Patch Creation Properties (PCP) authoring file for creating a delta patch file.</p>
http://stackoverflow.com/questions/169195/does-scrum-alone-agile/169279#1692796Answer by GertGregers for Does SCRUM alone = agile?GertGregers2008-10-03T23:17:34Z2008-10-03T23:17:34Z<p>Bad managers will be outed by the transparency that SCRUM promotes. Companies truely embracing SCRUM are definitely worth a look.</p>
http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha/128987#12898742Answer by GertGregers for What is the one programming skill you have always wanted to master but haven't had time?GertGregers2008-09-24T18:39:23Z2008-09-24T18:39:23Z<p>10-finger keyboard typing</p>
http://stackoverflow.com/questions/123430/installing-tfs-2008-workgroup-edition-on-windows-server-2003-with-sql-server-2008/123500#1235001Answer by GertGregers for Installing TFS 2008 Workgroup Edition on Windows Server 2003 with SQL Server 2008GertGregers2008-09-23T20:05:16Z2008-09-23T20:05:16Z<p>You need the Tfs 2008 Sp1 for support for SQL Server 2008. See this post <a href="http://geekswithblogs.net/etiennetremblay/archive/2008/08/11/sql-2008--tfs-2008-sp1-the-lowdownhellip.aspx" rel="nofollow">http://geekswithblogs.net/etiennetremblay/archive/2008/08/11/sql-2008--tfs-2008-sp1-the-lowdownhellip.aspx</a></p>
<p>Hth.,
/Gert</p>
http://stackoverflow.com/questions/41039/find-in-files-search-all-code-in-team-foundation-server/110572#1105722Answer by GertGregers for Find in Files: Search all code in Team Foundation ServerGertGregers2008-09-21T08:57:25Z2008-09-21T08:57:25Z<p>We have set up a solution for Team Foundation Server Source Control (not SourceSafe as you mention) similar to what Grant suggests; scheduled TF Get, Search Server Express. However the IFilter used for C# files (text) was not giving the results we wanted, so we convert source files to .htm files. We can now add additional meta-data to the files such as:</p>
<ul>
<li>Author (we define it as the person that last checked in the file)</li>
<li>Color coding (on our todo-list)</li>
<li>Number of changes indicating potential design problems (on our todo-list)</li>
<li>Integrate with the VSTS IDE like Koders SmartSearch feature</li>
<li>etc.</li>
</ul>
<p>We would however prefer a protocolhandler for TFS Source Control, and a dedicated source code IFilter for a much more targeted solution.</p>
http://stackoverflow.com/questions/175256/what-is-the-best-way-to-use-assembly-versioning-attributes/175259#175259Comment by GertGregers on What is the best way to use assembly versioning attributes?GertGregers2008-10-06T17:52:54Z2008-10-06T17:52:54ZNice idea, but will probably blow up after changeset-id reaches 0xfffe if you only confine it to one of the version fields, major, minor, build, revisionhttp://stackoverflow.com/questions/170009/your-scrum-definition-of-done/170017#170017Comment by GertGregers on Your Scrum definition of DoneGertGregers2008-10-04T09:11:54Z2008-10-04T09:11:54ZThanks, but I really wanted to what your own definition is; we have discussed it a lot in our own shop, and I wanted to hear other takes on Done :-)