User - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T06:01:09Zhttp://stackoverflow.com/feeds/user/17222http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/99707/whats-the-best-way-to-do-a-code-review-with-subversion-svn15What's the best way to do a code review with Subversion (SVN)?gabosgab2008-09-19T04:48:27Z2009-07-23T07:14:52Z
<p>I want to be able to do a peer code review with Subversion, but what's the easiest way to do this without installing a server application or paying for an online service?</p>
<p>PS: This is a .Net project in Visual Studio.</p>
http://stackoverflow.com/questions/217433/is-there-a-good-graph-not-charting-visualization-api-for-net4Is there a good graph (not charting) visualization API for .Net?gabosgab2008-10-20T03:15:11Z2009-05-12T22:15:08Z
<p>I've looked at <a href="http://blogs.msdn.com/powershell/archive/2007/11/27/graphing-with-glee.aspx" rel="nofollow">Microsoft GLEE</a> (non-commerical use) and other libraries for drawing graphs, but I need a good commercial use graph API to show complex routes through the Internet.</p>
<p>I need to be able to show a large number of nodes and vertexes. Any Ideas?</p>
http://stackoverflow.com/questions/156584/build-deployment-using-cruisecontrol-net2Build deployment using CruiseControl.netgabosgab2008-10-01T07:34:38Z2008-10-26T16:03:34Z
<p>I've seen a few examples on how to do build deployment, however I have something unique that I'd like to do:</p>
<ol>
<li>Deploy the build to a folder that has the build number (eg. Project\Builds\8423)</li>
<li>Alter the version number in the .NET AssmblyInfo.cs to match the build number</li>
</ol>
<p>Has anyone done this before with .NET projects using NAnt + CruiseControl.net?</p>
http://stackoverflow.com/questions/220340/how-do-i-check-sql-replication-status-via-t-sql1How do I check SQL replication status via T-SQL?gabosgab2008-10-20T23:47:40Z2008-10-21T03:51:08Z
<p>I want to be able to check the status of a publication and subscription in SQL Server 2008 T-SQL. I want to be able to determine if its okay, when was the last successful, sync, etc.. Is this possible?</p>
http://stackoverflow.com/questions/220340/how-do-i-check-sql-replication-status-via-t-sql/220349#2203492Answer by gabosgab for How do I check SQL replication status via T-SQL?gabosgab2008-10-20T23:52:15Z2008-10-20T23:52:15Z<p>Got it</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms147874.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms147874.aspx</a></p>
http://stackoverflow.com/questions/156575/what-the-best-rollover-log-file-tracelistener-for-net3What the best rollover log file tracelistener for .NETgabosgab2008-10-01T07:29:54Z2008-10-01T07:56:42Z
<p>I'm looking for a good TraceListener for .Net that supports rolling over the log file based on size limits. </p>
<p><strong>Constraints</strong></p>
<ul>
<li>Uses .Net built in Trace logging</li>
<li>Independent class or binary that's not part of some gigantic library</li>
<li>Allows rolling over a log file based on size</li>
</ul>
http://stackoverflow.com/questions/156585/can-dns-gethostentry-ever-return-an-iphostentry-with-an-empty-addresslist/156598#1565980Answer by gabosgab for Can Dns.GetHostEntry ever return an IPHostEntry with an empty AddressList?gabosgab2008-10-01T07:43:19Z2008-10-01T07:43:19Z<p>You have three possible situations here:</p>
<ol>
<li><p>The hostname exists (DNS has an A Record) and resolves to an IP Address</p>
<ul>
<li>Condition is never hit</li>
</ul></li>
<li><p>The hostname exists (DNS knows about the domain) however no A records exists.</p>
<ul>
<li>This is an extremely unlikely scenario, and I think this can never happen in the first place.</li>
</ul></li>
<li><p>The hostname doesn't exist</p>
<ul>
<li>Exception is thrown, you never get there.</li>
</ul></li>
</ol>
<p>So no, I don't think that can ever happen.</p>
http://stackoverflow.com/questions/152302/what-happened-to-nunit0What happened to NUnit?gabosgab2008-09-30T08:58:56Z2008-09-30T09:05:45Z
<p>Why isn't this project maintained anymore? I love this app, however not updating it seems like a crime against all .Net developers. There are several items that I would love to add to it given the chance of a future release. </p>
<p>Can anyone share something I don't know?</p>
http://stackoverflow.com/questions/152278/track-http-request-and-response/152294#1522940Answer by gabosgab for Track HTTP Request and Responsegabosgab2008-09-30T08:55:13Z2008-09-30T08:55:13Z<p>Are you thinking of <a href="http://www.fiddlertool.com/fiddler/" rel="nofollow">Fiddler</a>? That allows you to monitor WinHTTP requests. However if you are looking for security information, ASP.net has a ton of contextual information when you process a request.</p>
http://stackoverflow.com/questions/147714/good-html-templates-for-form-based-web-applications/152272#1522720Answer by gabosgab for Good HTML Templates for form based Web Applicationsgabosgab2008-09-30T08:45:37Z2008-09-30T08:45:37Z<p>I personally like <a href="http://themeforest.net/" rel="nofollow">ThemeForest</a>. They have a large selection and includes the raw markup and css scripts so you can make your forms app look like the template in no time.</p>
http://stackoverflow.com/questions/152205/how-to-handle-functions-deprecation-in-library/152267#152267-2Answer by gabosgab for How to handle functions deprecation in library?gabosgab2008-09-30T08:44:08Z2008-09-30T08:44:08Z<p>too bad you are not using .Net :(</p>
<p>The built in <a href="http://msdn.microsoft.com/en-us/library/22kk2b44(VS.80).aspx" rel="nofollow">Obsolete</a> attribute generates compiler warnings.</p>
http://stackoverflow.com/questions/122784/hidden-net-base-class-library-classes/124716#1247169Answer by gabosgab for Hidden .NET Base Class Library Classes?gabosgab2008-09-24T00:23:57Z2008-09-24T00:23:57Z<p>String.Format(). Allows you to get rid of the wonkiness of "This" + " is" + " my favorite " + " Application";</p>
http://stackoverflow.com/questions/99707/whats-the-best-way-to-do-a-code-review-with-subversion-svn/100182#1001824Answer by gabosgab for What's the best way to do a code review with Subversion (SVN)?gabosgab2008-09-19T07:11:43Z2008-09-19T07:11:43Z<p>I actually figured out another easier way to do this.</p>
<p>Creating the Diff Pack</p>
<ol>
<li>Make the changes that you want to have reviewed.</li>
<li>Goto the root of your project in Windows Explorer and right click,
1. Click Tortoise SVN -> Create Patch</li>
<li>Select the files you want to appear in the review. Click OK</li>
<li>Save your diff pack to a file name that describes the changes.</li>
</ol>
<p>Viewing the Diff Pack Against Local Changes</p>
<ol>
<li>Copy the pack to the project root, if it's already there.</li>
<li>Right click on the file
1. Click Tortoise SVN -> Apply Patch</li>
<li>Double click the file that you want to view in the File Patches pane</li>
<li>When finished, close the window to avoid applying the patch to your local store.</li>
</ol>
<p>Viewing the Raw Changes</p>
<ol>
<li>Just double click the patch file.</li>
</ol>
http://stackoverflow.com/questions/90117/how-do-i-use-net-generics-to-inherit-a-template-parameter1How do I use .Net Generics to inherit a template parameter?gabosgab2008-09-18T04:46:39Z2008-09-18T05:13:11Z
<p><strong>I want to be able to do this.</strong></p>
<pre><code>MyInterface interface = new ServiceProxyHelper<ProxyType>();
</code></pre>
<p><strong>Here's the object structure</strong></p>
<pre><code>MyTypeThatImplementsMyInterface : MyInterface
</code></pre>
<p><strong>Will this work?</strong></p>
<pre><code>public class ProxyType : MyInterface {}
public class ServiceProxyHelper<ProxyType> : IDisposable, MyInterface {}
</code></pre>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/90141#901410Answer by gabosgab for What is a reasonable code coverage % for unit tests (and why)?gabosgab2008-09-18T04:53:45Z2008-09-18T04:53:45Z<p>Generally speaking, from the several engineering excellence best practices papers that I have read, 80% for new code in unit tests is the point that yields the best return. Going above that CC% yields a lower amount of defects for the amount of effort exerted. This is a best practice that is used by many major corporations.</p>
<p>Unfortunately, most of these results are internal to companies, so there are no public literatures that I can point you to.</p>
http://stackoverflow.com/questions/152302/what-happened-to-nunit/152316#152316Comment by on What happened to NUnit?2008-10-01T07:38:05Z2008-10-01T07:38:05ZHeh. 16 days is soooo long. Guess it was stagnant for a long time.http://stackoverflow.com/questions/156575/what-the-best-rollover-log-file-tracelistener-for-net/156592#156592Comment by on What the best rollover log file tracelistener for .NET2008-10-01T07:36:53Z2008-10-01T07:36:53Zproblem is I prefer to use the integrated .Net trace logginghttp://stackoverflow.com/questions/152302/what-happened-to-nunitComment by on What happened to NUnit?2008-09-30T09:08:36Z2008-09-30T09:08:36Zhrmm. last time I checked it hadn't had a release for quite some time. Glad it's updated now!http://stackoverflow.com/questions/99707/whats-the-best-way-to-do-a-code-review-with-subversion-svn/99721#99721Comment by on What's the best way to do a code review with Subversion (SVN)?2008-09-19T04:55:20Z2008-09-19T04:55:20ZSorry, this is all .Net development in Visual Studio.
http://stackoverflow.com/questions/90117/how-do-i-use-net-generics-to-inherit-a-template-parameter/90131#90131Comment by on How do I use .Net Generics to inherit a template parameter?2008-09-18T04:56:54Z2008-09-18T04:56:54ZYah, that's what I'm trying to do, thanks!