Category Archives: Coding

Unit Testing Events

Recently I have had to unit test some events in an application I work on. I came up with a workable solution, but I didn’t really like the way it was working, and it just looked ugly. So I did … Continue reading

Posted in C#, Coding | Leave a comment

Revisting the Project Euler problem runner

I’m sure that you must have heard about Project Euler, which “is a series of challenging mathematical/computer programming problems that will require more than just mathematical insights to solve”. I have blogged about tackling the Project Euler problems before, and … Continue reading

Posted in Java, Project Euler | Tagged , , | Leave a comment

Even more on the generic plugin manager

I’ve written previously about writing your own generic plugin manager/framework. I believe that this is a worthwhile exercise for the beginning programmer, because it firstly teaches you a lot about reflection, and secondly teaches you the advantages that proper use … Continue reading

Posted in C#, Coding | Tagged , , | 2 Comments

Git plus dropbox

Some time ago, I wrote about using Dropbox as a version control system. I now realise how naive  and short-sighted that thought was. At the time, it was my belief that a dropbox account could be suitable for maintaining version … Continue reading

Posted in Git | Tagged , , | Leave a comment

More on the generic plugin manager

Update: I’ve written some more about what I’ve learned whilst working on my plugin manager here: http://temporalcohesion.co.uk/2010/03/17/even-more-on-the-generic-plugin-manager/ A few months ago I wrote about writing a generic plugin loader/manager in C#, where I offered links to several articles and referenced … Continue reading

Posted in C#, Coding | Tagged | 2 Comments