finally got to get the main bulk of my stuff moved as we are moving, leaving the house of 7 years (http://www.bookhamgrovehouse.co.uk), bit sad but time to go forward. Used a great guy for moving, if your in the Bookham area “Reliable Man & Van” – ask for Geoff on 01372 456561 can really recommend him.
passing parameters to nant from Cruise Control how…
right the solution is to pass it in the buildArgs element, so if you want the verbose option on for nant you add an element inside your build elements called buildArgs with -verbose+
Its my birthday
Its my birthday tomorrow I am 36 and I have even got to get up to collect my wife from the airport at 6am. She has been shopping in New York lets hope shes brought back some nice goodies for me !!!
mysql error "#1030 – Got error 28 from table handler"
Was getting the error #1030 – Got error 28 from table handler on one of my customers boxes realised that the partition was out of disk space.
BP's British Cormorant
Went on BP’s British Cormorant the other week down at Coryton it was excellent. The Captain was very nice and let us look all over the ship.
Details are here
It has a 1km turning circle, massive. It was only 2/3rds loaded that is about 700,000 barrels of oil at todays prices thats about 44 million dollars worth of oil.
excluding a dependency via UP2Date
always wondered how to exclude from up2date finally got off my backside and looked into it…
for all you out there that dont know its up2date –update –exclude=
Reading memo fields in Access using asp and ado
as a reminder to myself really, in access 2000 there is now a memo field these can only be read once from the ado recordset in asp. The second time the field will be null, ie if you do the following…
<%= myRS("linkname") %>
<%= myRS("linkname") %>
twice the second one doesnt return anything as it loses the field contents, I believe this is by design
CSS and Accomodating different browsers
the same old problem, using css different things appear in different places. The solution you have to trick some of the browsers so you can use different css tags – this is one of the best sites I have seen for a long time documenting the features of each browser.
enjoy…
Undefined reference to errno with make of checkpassword
On some flavours of linux errno is a macro rather than an int so you need to alter the error.h file for it to compile
You need to do the following….
mv error.h error.h.orig
sed -e ‘s/extern int errno;/#include