Entries from July 2008

Backup Your Twitter Messages @ Yonkly

Date July 15, 2008

//Yonkly is not a backup service but I just added a new feature that lets you import your twitter messages into your yonkly account, so try it out.
Login then go to your profile page at http://yonkly.com/profile and click the "import twitter messages" link half way down the page.
It is smart enough to not import the [...]

Database Schema Compare & Upgrade

Date July 10, 2008

//I spent a few days playing with Ruby on Rails a while back.  During the learning experience, there was one particular feature that I really liked.  It was the database migration scripts that get automatically generated for you.  I always wished I had something like this in the windows (asp.net) world.  It turns out there [...]

Unit Test Private Methods in Visual Studio

Date July 9, 2008

//I am working on a feature that will let me import twitter messages to yonkly and wanted to write a test for it.  The method is private and I couldn’t get the unit test to see it.  I also didn’t want to use the private accessor class generate by Visual Studio because I was mocking [...]

ASP.NET MVC & Threads

Date July 1, 2008

//I have a method that handles sending of emails.  I wrote it so that it would run asynchronously, so that it won’t slow down the web app.  It looks like this:

protected static void SendMail(string to, string subject, string body)
{
try
{
using [...]