User David Negron - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T03:00:37Zhttp://stackoverflow.com/feeds/user/981http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2767/do-you-have-any-recommended-add-ons-plugins-for-microsoft-visual-studio/75338#7533833Answer by David Negron for Do you have any recommended add-ons/plugins for Microsoft Visual Studio?David Negron2008-09-16T18:17:49Z2009-10-16T09:26:48Z<p><a href="http://weblogs.asp.net/alex%5Fpapadimoulis/archive/2004/05/25/Smart-Paster-1.1-Add-In---StringBuilder-and-Better-C%5F2300%5F-Handling.aspx" rel="nofollow">SmartPaster</a> - (FREE) Copy/Paste code generator for strings</p>
<p><a href="http://ankhsvn.open.collab.net/" rel="nofollow">AnkhSvn</a> - (FREE) SVN Source Control Integration for VS.NET</p>
<p><a href="http://www.visualsvn.com/server/" rel="nofollow">VisualSVN Server</a> - (FREE) Source Control</p>
<p><a href="http://www.jetbrains.com/resharper/index.html" rel="nofollow">ReSharper</a> - IDE enhancement that helps with refactoring and productivity</p>
<p><a href="http://www.devexpress.com/Products/Visual%5FStudio%5FAdd-in/Coding%5FAssistance/" rel="nofollow">CodeRush</a> - Code gen macros on steroids</p>
<p><a href="http://www.devexpress.com/Products/Visual%5FStudio%5FAdd-in/Refactoring/" rel="nofollow">Refactor</a> - Code refactoring aid</p>
<p><a href="http://www.codesmithtools.com/" rel="nofollow">CodeSmith</a> - Code Generator</p>
<p><a href="http://www.roland-weigelt.de/ghostdoc/" rel="nofollow">GhostDoc</a> - (FREE) Simple code commenting tool</p>
<p><a href="http://www.devexpress.com/Downloads/Visual%5FStudio%5FAdd-in/DXCore/" rel="nofollow">DXCore</a> (FREE) and its many awesome plugins: <a href="http://code.google.com/p/dxcorecommunityplugins/" rel="nofollow">DxCore Community Plugins</a>, <a href="http://code.google.com/p/cr-documentor/" rel="nofollow">CR_Documentor</a>, <a href="http://joel.fjorden.se/static.php?page=CodeStyleEnforcer" rel="nofollow">CodeStyleEnforcer</a>, <a href="http://www.rorybecker.me.uk/DevExpress/Plugins/Community/RedGreen/" rel="nofollow">RedGreen</a></p>
<p><a href="http://www.testdriven.net/" rel="nofollow">TestDriven.Net</a> - (FREE/PAY) Unit Testing Aid</p>
<p><a href="http://www.red-gate.com/products/reflector/" rel="nofollow">Reflector</a> - (FREE) Feature rich .Net Disassembler <a href="http://www.codeplex.com/reflectoraddins" rel="nofollow">Reflector AddIn's</a></p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=0AA30AE8-C73B-4BDD-BB1B-FE697256C459&displaylang=en" rel="nofollow">Web Deployment Projects</a> - Provides additional functionality to build and deploy Web sites and Web applications (<a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=0AA30AE8-C73B-4BDD-BB1B-FE697256C459&displaylang=en" rel="nofollow">source</a>).</p>
<p><a href="http://www.exactmagic.com/products/studiotools/index.html" rel="nofollow">StudioTools</a> - (FREE) Navigation assistant, code metrics tool, incremental search, file explorer in visual studio and tear off editor windows</p>
http://stackoverflow.com/questions/837686/visual-studio-jquery-intellisense-fix-kb958502-does-not-recognize-visual-studio-20Visual Studio jQuery IntelliSense fix KB958502 does not recognize visual studio 2008 install on windows server 2008 x64.David Negron2009-05-08T00:24:27Z2009-09-08T20:59:10Z
<p>So just this week I had the opportunity to re-build my development machine and I opted to use <strong>Windows Server 2008 x64</strong> version for my operating system. I re-installed <strong>Visual Studio 2008</strong> along with all of my other development tools. I surprised to see that the <a href="http://code.msdn.microsoft.com/KB958502/Release/ProjectReleases.aspx?ReleaseId=1736" rel="nofollow"><strong>KB958502 hot fix</strong></a> did not recognize my installation of <strong>Visual Studio 2008</strong>. I wonder if there is a solution to this or if there is an alternative means of manually enabling <strong>jQuery</strong> intellisense.</p>
<p>Thank you.</p>
<p><strong>Update</strong>:
<a href="http://stackoverflow.com/users/43846/stuart-dunkeld">Stuart Dunkeld</a> was correct I forgot to install <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=FBEE1648-7106-44A7-9649-6D9F6D58056E&displaylang=en" rel="nofollow"><strong>Visual Studio 2008 SP1</strong></a></p>
http://stackoverflow.com/questions/516615/validation-in-a-domain-driven-design/990668#9906682Answer by David Negron for Validation in a Domain Driven DesignDavid Negron2009-06-13T13:28:05Z2009-06-13T13:28:05Z<p>I like Jimmy Bogard's solution to this problem. He has a post on his blog titled <a href="http://www.lostechies.com/blogs/jimmy%5Fbogard/archive/2007/10/24/entity-validation-with-visitors-and-extension-methods.aspx" rel="nofollow">"Entity validation with visitors and extension methods"</a> in which he presents a very elegant approach to entity validation that suggest the implementation of a separate class to store validation code.</p>
<pre><code>public interface IValidator<T>
{
bool IsValid(T entity);
IEnumerable<string> BrokenRules(T entity);
}
public class OrderPersistenceValidator : IValidator<Order>
{
public bool IsValid(Order entity)
{
return BrokenRules(entity).Count() > 0;
}
public IEnumerable<string> BrokenRules(Order entity)
{
if (entity.Id < 0)
yield return "Id cannot be less than 0.";
if (string.IsNullOrEmpty(entity.Customer))
yield return "Must include a customer.";
yield break;
}
}
</code></pre>
http://stackoverflow.com/questions/656308/is-there-a-good-cms-to-use-with-asp-net-mvc/656337#6563374Answer by David Negron for Is There a Good CMS to Use with ASP.Net MVCDavid Negron2009-03-17T22:51:49Z2009-03-17T22:51:49Z<p>Here is a list of a few ASP.NET MVC based CMS's. However these are not based on the current release candidate but I think they are a pretty good start.</p>
<p><strong>N2 Open Source ASP.NET CMS</strong>
<a href="http://n2cms.com/" rel="nofollow">http://n2cms.com/</a></p>
<p><strong>Oxite</strong>
<a href="http://www.visitmix.com/Lab/Oxite" rel="nofollow">http://www.visitmix.com/Lab/Oxite</a></p>
<p><strong>Hydrogen CMS</strong>
<a href="http://www.hydrogencms.net/Home.aspx" rel="nofollow">http://www.hydrogencms.net/Home.aspx</a></p>
http://stackoverflow.com/questions/60859/where-can-i-find-a-ftp-server-with-an-api1Where can I find a FTP Server with an API?David Negron2008-09-13T20:46:22Z2009-03-17T20:02:55Z
<p>I am looking for a FTP Server that has a decent API. It would be great if I could code use the .NET Framework. I am currently using Secure FTP from GlobalSCAPE but I have had less than plesant experiences working with it.</p>
http://stackoverflow.com/questions/78955/what-are-the-best-programming-and-development-related-blogs/78997#7899733Answer by David Negron for What are the best programming and development related Blogs?David Negron2008-09-17T01:38:48Z2008-09-17T01:38:48Z<p><a href="http://www.hanselman.com/blog/" rel="nofollow">Scott Hanselman's ComputerZen.com</a></p>
http://stackoverflow.com/questions/78909/jscript-debugging/78975#789751Answer by David Negron for JScript debuggingDavid Negron2008-09-17T01:35:22Z2008-09-17T01:35:22Z<p><a href="http://www.aptana.com/studio" rel="nofollow">Aptana Studio</a> provides JavaScript debugging for Firefox and IE</p>
http://stackoverflow.com/questions/78850/publishing-vs-copying/78906#789060Answer by David Negron for Publishing vs CopyingDavid Negron2008-09-17T01:23:59Z2008-09-17T01:23:59Z<p>I believe you are correct in your assumption. It has been my experience that the only difference is that published files are compiled. <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=0AA30AE8-C73B-4BDD-BB1B-FE697256C459&displaylang=en" rel="nofollow">Visual Studio® 2008 Web Deployment Projects</a> is a nice enhancement for customizing your build scripts for both your Websites and Web Applications.</p>
http://stackoverflow.com/questions/78756/what-do-you-use-to-keep-notes-as-a-developer/78767#7876758Answer by David Negron for What do you use to keep notes as a developer?David Negron2008-09-17T00:56:45Z2008-09-17T00:56:45Z<p>Use a Wiki. I personally use <a href="http://www.screwturn.eu/DesktopEdition.ashx" rel="nofollow">ScrewTurn Wiki - Desktop Edition</a></p>
http://stackoverflow.com/questions/78639/what-should-a-conference-newbie-bring-to-make-the-most-out-of-their-first-confere/78657#786572Answer by David Negron for What should a conference newbie bring to make the most out of their first conference?David Negron2008-09-17T00:27:32Z2008-09-17T00:27:32Z<p>I personally like going lo-tech legal pad and a pen. Comfortable clothes. I find that to get the most out of any conference session its best to be void of distractions. Also meal breaks are great opportunities to mingle and network with fellow attendees.</p>
http://stackoverflow.com/questions/78548/passing-data-to-master-page-in-asp-net-mvc/78594#785943Answer by David Negron for Passing data to Master Page in ASP.NET MVCDavid Negron2008-09-17T00:15:18Z2008-09-17T00:15:18Z<p>I did some research and came across these two sites. Maybe they could help.</p>
<p><a href="http://weblogs.asp.net/stephenwalther/archive/2008/08/12/asp-net-mvc-tip-31-passing-data-to-master-pages-and-user-controls.aspx" rel="nofollow">ASP.NET MVC Tip #31 – Passing Data to Master Pages and User Controls</a></p>
<p><a href="http://geekswithblogs.net/scarpenter/archive/2007/12/14/117724.aspx" rel="nofollow">Passing Data to Master Pages with ASP.NET MVC</a></p>
http://stackoverflow.com/questions/177/how-do-i-programmatically-create-a-pdf-in-my-net-application/77752#777523Answer by David Negron for How do I programmatically create a PDF in my .NET application?David Negron2008-09-16T22:07:23Z2008-09-16T22:07:23Z<p><a href="http://www.componentone.com/SuperProducts/PDFNET/" rel="nofollow">ComponentOne PDF™ for .NET</a></p>
<p><a href="http://www.syncfusion.com/products/pdf/web/default.aspx" rel="nofollow">Essential PDF</a></p>
<p><a href="http://www.pdf4net.com/" rel="nofollow">PDF4NET</a></p>
<p><a href="http://www.html-to-pdf.net/" rel="nofollow">ExpertPDF Pdf Creator</a></p>
<p><a href="http://www.pdf-technologies.com/pdf-library-entedition.aspx" rel="nofollow">PDFTechLib</a></p>
<p><a href="http://www.gnostice.com/PDFOneNETOverview.asp" rel="nofollow">PDFOne .NET</a></p>
<p><a href="http://www.dynamicpdf.com/" rel="nofollow">Dynamic PDF</a></p>
<p><a href="http://www.pdflib.com/" rel="nofollow">PDFLib</a> - As you can see there are several vendors in this space. I think that it all depends on how you intend to integrate it in your application. For instance a few years a go I developed and application in .Net utilizing PDFLib on account that the client wanted to create a web based application that created design proofs and also provided optimization for their digital print services. Looking back at the project I wish I would have known about <a href="http://www.dynamicpdf.com/" rel="nofollow">Dynamc PDF's suite of products</a>.</p>
http://stackoverflow.com/questions/74800/what-is-your-favorite-visual-studio-plugin/74981#749811Answer by David Negron for What is your favorite visual studio plugin?David Negron2008-09-16T17:45:27Z2008-09-16T17:45:27Z<ol>
<li><p><a href="http://weblogs.asp.net/alex_papadimoulis/archive/2004/05/25/Smart-Paster-1.1-Add-In---StringBuilder-and-Better-C_2300_-Handling.aspx" rel="nofollow">SmartPaster</a> </p></li>
<li><p><a href="http://ankhsvn.open.collab.net/" rel="nofollow">AnkhSVN</a></p></li>
</ol>
http://stackoverflow.com/questions/60857/modrewrite-equivalent-for-iis-7-0/60866#608662Answer by David Negron for mod_rewrite equivalent for IIS 7.0David Negron2008-09-13T20:54:43Z2008-09-13T20:54:43Z<p>If you have $99.00 to spare you may want to take a look at <a href="http://www.isapirewrite.com/" rel="nofollow">http://www.isapirewrite.com/</a> </p>
<p>[Excerpt from thier website]</p>
<p><strong>Product overview</strong></p>
<p>ISAPI_Rewrite is a powerful URL manipulation engine based on regular expressions. It acts mostly like Apache's mod_Rewrite, but is designed specifically for Microsoft's Internet Information Server (IIS). ISAPI_Rewrite is an ISAPI filter written in pure C/C++ so it is extremely fast. ISAPI_Rewrite gives you the freedom to go beyond the standard URL schemes and develop your own scheme.</p>
<p>[Example of use] available at <a href="http://www.helicontech.com/articles/provocative_SEF_URLs.htm" rel="nofollow">http://www.helicontech.com/articles/provocative_SEF_URLs.htm</a></p>
http://stackoverflow.com/questions/40902/looking-for-mysql-ide5Looking for MySQL IDE?David Negron2008-09-02T23:18:41Z2008-09-03T10:12:31Z
<p>I've recently been tasked with developing a web application that will use a MySQL database on the back end. I for most of my career I have worked with MS-SQL Manager. My greatest weakness is in defining foreign key constraints I usually use MS-SQL Manager's diagramming tool to draw my relationship lines between tables. </p>
http://stackoverflow.com/questions/40816/styling-html-helpers-mvc-net/40877#408772Answer by David Negron for Styling Html Helpers MVC.NetDavid Negron2008-09-02T23:02:35Z2008-09-02T23:02:35Z<p>I did some research and came across this article that seems to have a solution to your question.</p>
<p><strong>Ajax Control Toolkit with ASP.NET MVC#</strong></p>
<p>source: jimzimmerman</p>
<p><strong>ARTICLE LINK</strong></p>
<p><a href="http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=330" rel="nofollow">http://www.ajaxprojects.com/ajax/tutorialdetails.php?itemid=330</a></p>
<p><strong>QUOTE</strong></p>
<blockquote>
<p>So basically if you put the class name
TextboxWatermark on any textbox input
with the title you like to show as the
watermark like this:</p>
<pre><code><input type="text" class"TextboxWatermark" name="username" id="username" title="Must be at least 6 chars" />
</code></pre>
<p>or</p>
<pre><code><%= Html.TextBox("username", new { @class = "TextboxWatermark", @title = "Must be at least 6 chars" }) %>
</code></pre>
<p>What is nice about the second option
is that you get the added benefit of
getting the View Engine to fill out
the value of the textbox if there is
an item in ViewData of the
ViewData.Model that has a var named
'username'.</p>
</blockquote>
http://stackoverflow.com/questions/486158/best-practices-ide-code-color-scheme-and-font/486225#486225Comment by David Negron on Best Practices: IDE Code Color Scheme and FontDavid Negron2009-11-23T14:38:27Z2009-11-23T14:38:27ZThe folks over at Elegant code also have a version of the "Ruby Blue" theme that they blogged about at <a href="http://elegantcode.com/2009/11/22/visual-studio-color-scheme/" rel="nofollow">elegantcode.com/2009/11/…</a> http://stackoverflow.com/questions/486158/best-practices-ide-code-color-scheme-and-font/486225#486225Comment by David Negron on Best Practices: IDE Code Color Scheme and FontDavid Negron2009-11-22T13:37:09Z2009-11-22T13:37:09ZI was just looking for it myself and luckily I just found it at <a href="http://gist.github.com/236449" rel="nofollow">gist.github.com/236449</a> it is hosted there by Dylan Thomas from <a href="http://dylandoesdigits.blogspot.com/2009/11/visual-studio-theme-ruby-blue-knockoff.html" rel="nofollow">dylandoesdigits.blogspot.com/2009/11/…</a> http://stackoverflow.com/questions/2767/do-you-have-any-recommended-add-ons-plugins-for-microsoft-visual-studio/75338#75338Comment by David Negron on Do you have any recommended add-ons/plugins for Microsoft Visual Studio?David Negron2009-10-16T09:29:23Z2009-10-16T09:29:23Z@Yassir great point. I recently switched from CodeRush to ReSharper. I'm totally digging how it helps with TDD (Test Driven Development) and refactoring.http://stackoverflow.com/questions/837686/visual-studio-jquery-intellisense-fix-kb958502-does-not-recognize-visual-studio-2/837735#837735Comment by David Negron on Visual Studio jQuery IntelliSense fix KB958502 does not recognize visual studio 2008 install on windows server 2008 x64.David Negron2009-05-08T11:33:45Z2009-05-08T11:33:45ZDoh, sure enough you were correct I thought I had installed Visual Studio SP1.http://stackoverflow.com/questions/60859/where-can-i-find-a-ftp-server-with-an-apiComment by David Negron on Where can I find a FTP Server with an API?David Negron2008-09-13T21:14:02Z2008-09-13T21:14:02ZI will definately keep an eye out for that. Thank you.http://stackoverflow.com/questions/60859/where-can-i-find-a-ftp-server-with-an-api/60867#60867Comment by David Negron on Where can I find a FTP Server with an API?David Negron2008-09-13T21:12:31Z2008-09-13T21:12:31ZThat would be great unfortunately I'm stuck using a Windows 2003 server. :(