I am working on a project where I going to build a news aggregator which takes certain keywords and searches a predefined set of websites, company statements etc for stories or blog posts that have that keyword in it. The keywords are mostly a combination of company names or stock ticker codes and mood indicators, [...]
Archive for the ‘Cool Tools’ Category
Building a news aggregator module for a trading platform -Introduction
Posted in 2. Application Development, Agile, Architecture, Cool Tools, Problems and Solutions, TDD, Traders Tools, tagged agile, communication, development team, iterations, lifecycle, news aggregator, TDD, trading, uat on December 12, 2011 | 1 Comment »
Phil Haack’s Route Debugger
Posted in Cool Tools, MVC, Problems and Solutions, tagged mvc route debugger, mvc routing on April 1, 2011 | 1 Comment »
Another great tool in the Microsoft space. This tool is absolutely essential when developing MVC sites using .NET. It is extremely simple to use and can be downloaded from the NuGet package handler. (See previous blog post on NuGet). It can of course be downloaded and configured manually (all that seems so 2010 now ) [...]
Converting MVC2 projects to MVC 3
Posted in Cool Tools, MVC, tagged converting mvc2 to mvc3, mvc3 on March 31, 2011 | Leave a Comment »
Now that the MVC 3 RTM is out, I thought it would be a good opportunity to upgrade and do some needed refactoring in one of my projects. I found an excellent post on how to do this manually which gives a good idea of the changes that are being made. And for the lazy [...]
Elmah – Error Logging Modules and Handlers for ASP.NET
Posted in Cool Tools, Error Handling, tagged Elmah, Error Handling, Error Logging, NuGet on March 30, 2011 | Leave a Comment »
Installation Elmah is error logging third party library which you can add to ASP.NET application to enable capture of almost all errors. You can add this to your project in about a minute by using the very cool tool NuGet. http://nuget.codeplex.com/ I discussed this briefly in this post “NuGet, the new way to get third [...]
NuGet, the new way to get third party dlls into your application
Posted in Automated Environment, Cool Tools, tagged Elmah, NuGet, Third Party libraries on March 30, 2011 | 2 Comments »
I thought I’d write about this very cool new application hosted on code plex called NuGet. NuGet is a Visual Studio 2010 extension which manages packages. Roughly speaking this means that you can add third party dlls to your application without having to set any of the configuration or reference dependencies manually. There is a [...]