Monthly Archives: January 2007

Humanized Computing

  For a long time now I have been looking for a spelling package that I could use from any program, even Visual Studio, I have a plugin for Code Rush this does a good job of checking strings, but really … Continue reading

Posted in General Brain Dump | Leave a comment

Windows Vista Launch Tomorrow

  We have had one of those days at work, so its nice to think that tomorrow there is something to look forward to, even though I have been using Vista since before Christmas on various computers, and now use … Continue reading

Posted in Windows Vista | Leave a comment

Install Problems with vista

  Well that’s not really the truth, its more that vista can be a bit fussy about how an install program works, by now a lot of people have written about the UAC stuff, some older (and newer) install programs … Continue reading

Posted in Windows Vista | 2 Comments

Real Test Driven Development – Thinking of Money 10

  Oh heck here I am, all the background is developed, now comes for me the difficult bit.  the user interface, I really want to develop this in WPF, just because its new and I am working on a vista … Continue reading

Posted in Projects | Leave a comment

Book Review – The book of the dead

  As with most books I have read, I actually listened to this via Audible, so I will be supplying both links. I should first say that apparently this is the third book in a trilogy, and I haven’t read … Continue reading

Posted in Books | Leave a comment

Real Test Driven Development – Thinking of Money 9

  First we need to set the update from within the engine [Test] public void Update() { _Engine.AddTransaction(10.10, "test category", "test description", DateTime.Now); Assert.IsTrue(_Engine.Update()); } public bool Update() { bool transFailed = false; foreach (MoneyTransaction moneyTransaction in _History) { if … Continue reading

Posted in Projects | Leave a comment

Real Test Driven Development – Thinking of Money 8

  so I now have an add and update, the delete will follow the same format, I have currently stored the connection string in a constant, but I suppose it can eventually be stored in an application setting. so for … Continue reading

Posted in Projects | Leave a comment

Real Test Driven Development – Thinking of Money 7

  The data layer I have thought and done some coding without tests, and have decided that I am going to put the code in a separate class, this will make it easier to refractor, and may be then I … Continue reading

Posted in Projects | Leave a comment

Real Test Driven Development – Thinking of Money 6

The data access layer:  We are going to be loading and saving transactions, so we are going to be testing adding and deleting transactions individually, each transaction should know how to add or delete itself, and also know what its … Continue reading

Posted in Projects | Leave a comment

Ruby in Visual Studio

  Now what I know about ruby you can put on the back of a postage stamp, but I am a bit of a language hound, and like to learn new stuff. I have been looking a ruby for a … Continue reading

Posted in Ruby | Leave a comment