• Get Specific File in Revision SVN

    After discussion with my colleague, as well as numerous links on top Google searches which indicated this was not possible or to use “svn export”.. we finally decided to analyze a well known PHP SVN Client which had a “getfile” functionality like we were looking for. The solution was amazingly simple and can be accessed…

  • C# ListBox Management Adding Removing Updating Databound Items ASP .Net

    The lambda one-liner indicated in the snippet below essentially nests at least two “for/foreach” loops. See my related article for full source. This code snippet is used to populate a drop down list of all factories containing unregistered robots where are not already marked in the list to be decommissioned. Upon selecting a factory containing…

  • C# Event Handlers and Delegates in ASP .Net with Web User Controls

    This article should help as a general how to on event handlers and delegates in C# as well as propose a different way to handle cross page methods in your ASP .Net website from a web user control or other page. Dilemma: Page contains user control which has some methods and functionality built in. When…

  • Track Amazon Price Changes

    Products on amazon can change in price as much as hundreds of dollars between days. If the item is in your cart, amazon tells you the next time you log back in how much the price has changed by and whether it has increased or decreased. But we all want to get the product for…

  • Non-static method requires a target

    In my specific situation where I received this error, I was able to resolve it by simply changing “null” to the object containing the method which needed to be call. This error indicates a use of reflections that can easily be confusing, but is very simple to resolve. The specific resolution in the (StackOverflow) example…