Embarcadero should revive Bold for Delphi

I’ve recently been doing some work on a Bold for Delphi application. I am really quite surprised how much I am still impressed with this framework, it really was (and still is) so much ahead of its time. Embarcadero really should revive this product and put it back into Delphi. They could make it a …
Continue reading Embarcadero should revive Bold for Delphi

I’ve just ordered some books

Someone kindly gave me a £100 gift certificate for Amazon.  I posted a request for book suggestions to 3 groups where I would expect to receive good recommendations   http://tech.groups.yahoo.com/group/altdotnet/   http://tech.groups.yahoo.com/group/domaindrivendesign/   http://groups.google.com/group/RhinoMocks I received a lot of recommendations (thanks everyone!) – here are the ones I have bought:   Building Domain Specific Languages in Boo   Writing Secure …
Continue reading I’ve just ordered some books

MUMS – How good you are when things go wrong

I always say this so I have probably blogged it in the past, in light of my MOZY incident probably recently, but “It’s not how good you are when things go right, it’s how good you are when things go wrong”. My wife and I are (unexpectedly) expecting our 4th baby.  We paid for a …
Continue reading MUMS – How good you are when things go wrong

Someone I know recently got stung by this, so I thought I’d mention it… static void Main(string[] args){  int a = 1;  int b = a;  Console.WriteLine(AreSame(a, b).ToString());  Console.ReadLine();}static bool AreSame(object a, object b){  return a == b;} What’s the output to the console? Does a equal b? Even if you didn’t know the answer you will have guessed it …
Continue reading