User Denis Connolly - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T09:07:00Zhttp://stackoverflow.com/feeds/user/2734http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/605913/top-developer-skills/606188#6061881Answer by Denis Connolly for Top Developer SkillsDenis Connolly2009-03-03T12:22:38Z2009-03-03T12:22:38Z<p>Joel Spolsky has an interesting version of this kind of skills matrix: <a href="http://joelonsoftware.com/articles/Ladder.html" rel="nofollow">Fog Creek Professional Ladder</a> (mentioned on a recent StackOverflow podcast). Joel's matrix is broken down into experience, scope and skills and is used to determine an employee's base salary in FogCreek</p>
<p>I don't think it's exactly what you're looking for, but I found it very interesting.</p>
http://stackoverflow.com/questions/191950/how-to-resolve-incorrect-ambiguous-reference-from-resharper-on-class-inheritanc/606123#6061230Answer by Denis Connolly for How to resolve incorrect "Ambiguous reference" from Resharper on class inheritance? Denis Connolly2009-03-03T12:00:02Z2009-03-03T12:00:02Z<p>I encountered the same problem. The issue I had was caused by a custom build provider (from an open source library I'm using called <a href="http://www.codeplex.com/PageMethods" rel="nofollow">PageMethods</a>) and the fact that all my .aspx pages inherit from a BasePage class which lives in the App_Code folder.</p>
<p>I couldn't get any build of Resharper to work with my project (4.1.933, 4.1.943 (latest) or 4.5). The fix in the latest Resharper build fixes the "Ambiguous Reference" problem but breaks the custom build provider.</p>
<p>The only way I could get both the build provider and base classes to work with Resharper was to put the Base Classes into a separate class library. </p>
<p>The following are the logged Jira bugs that seem to relate to this issue:</p>
<ul>
<li><a href="http://www.jetbrains.net/jira/browse/RSRP-92804" rel="nofollow">False "Ambiguous reference" for
symbols from App_Code</a> </li>
<li><a href="http://www.jetbrains.net/jira/browse/RSRP-68028" rel="nofollow">Custom build provider may generate partial
class with second part residing in
app_code</a></li>
</ul>
http://stackoverflow.com/questions/40531/why-should-i-use-feature-driven-development3Why should I use Feature Driven Development?Denis Connolly2008-09-02T20:26:49Z2008-11-24T20:31:22Z
<p>Extreme Programming, Scrum and Test Driven Development definitely seem to be the most popular Agile methods at the moment. But someone recently suggested that I take a look at Feature Driven Development.</p>
<p>Have you ever used this method with any success? What are the advantages of using it?</p>
http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/39427#39427149Answer by Denis Connolly for What non-programming books should programmers read?Denis Connolly2008-09-02T12:53:37Z2008-09-21T17:06:55Z<h2><a href="http://en.wikipedia.org/wiki/Peopleware" rel="nofollow">Peopleware: Productive Projects and Teams</a></h2>
<p>by Tom DeMarco and Timothy Lister</p>
<p><img src="http://ecx.images-amazon.com/images/I/51MlUgcSICL._SL500_BO2,-64_OU01_AA240_SH20_.jpg" alt="alt text" /></p>
<p>This classic book encourages us to think about the people instead of the process. It's full of practical advice on team building, productivity and office environments. It's a must read, not just for managers, but anyone related to software development. </p>
<p>Get two copies, one for you and one for your manager.</p>
http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/40150#401501Answer by Denis Connolly for How do I programmatically create a PDF in my .NET application?Denis Connolly2008-09-02T17:50:25Z2008-09-02T17:50:25Z<p>I haven't used it myself, but I've heard good things about <a href="http://www.princexml.com/overview/" rel="nofollow">Prince</a>. There's a .Net interface available for it.</p>
http://stackoverflow.com/questions/8885/best-references-for-secure-coding-practices-in-asp-net-and-classic-asp/39456#394560Answer by Denis Connolly for Best references for secure coding practices in ASP.NET and classic ASP.Denis Connolly2008-09-02T13:09:00Z2008-09-02T13:09:00Z<p>I found the <a href="http://msdn.microsoft.com/en-us/library/ms998249.aspx" rel="nofollow">Security Checklist: ASP.NET 2.0</a> article on MSDN very useful for the ASP.NET projects I worked on. It's a quick and practical way of getting some security practices into your application. </p>