30 September 2005 23:39
Managed to upgrade a load of database from MySQL 4.0.x to 4.1.13 & 14 on anther server and got them working with Coldfusion MX 6.1 & 7 using the MySQL/J Connector 3 17 ga drivers. Boring, but, least I can use sub selects now!
Had some fun trying to reinstall perl DBD::mysql and eventually after some trusting swearing and googling established I was missing the MySQL-devel rpm being installed.
Filed: Technology //
28 September 2005 12:28
Just noticed this one, a bit late I know. Some nice bits in here aside from bug fixes, the IsLocalHost and GetLocalHostIP functions are so trivial but so handy!
Macromedia – ColdFusion TechNote : FAQ about the ColdFusion MX 7 Updater (7.0.1)
Filed: Technology // Tagged: coldfusion //
22 September 2005 22:40
The company I work for, 2nd Byte, are currently looking for a ColdFusion/Web developer fairly urgently. For more details take a look at the job details on the website. If you do apply mention you saw the information here.
Filed: Technology // Tagged: coldfusion, jobs, recruitment //
21 September 2005 12:42
Yep, Opera 8.5 is now free, no license, no adverts. Will it make a difference? Will you download it? I won’t, still feels cheap to me. I’ll stick to Firefox (1.0.7 out now btw as is 1.5 Beta).
I’ve read in a few places that it does have some issues with M$ ISA so may cause some issues for some, good old M$ in the way, again. Unfortunatly I don’t think IE’s share is going to go down very quickly anytime soon. FF has dented it but probably not enough for them to give a shit.
Opera browser
Filed: Technology //
20 September 2005 8:07
If you do then point you mouse at the lovely link below and click. It’s an online survey setup by the ColdFusion Server Team to gather feedback on what users want in the next version of CF.
It’s worth doing because if you don’t and something’s not there, don’t say they didn’t ask!
http://www.surveymonkey.com/s.asp?u=299931348825
Filed: Technology // Tagged: adobe, coldfusion, macromedia, surveys //
10 September 2005 11:40
If you haven’t heard of Warchild go take a look. Setup back in 1995 to help children in Bosnia who had their lives wrecked by the war.
This is the 3rd album that’s been released by Warchild and it’s just as good as the last two. Currently only available via download, but, will be in the shops later this month.
War Child Music Downloads
Filed: Entertainment // Tagged: music //
9 September 2005 9:14
It’s a trivial thing which is quite often needed in Javascript, a quick easy way to remove spaces. Regex is the answer.
Sure you’ve seen something similar before but useful for reference non the less. Can be used against any string but this example is used on a form input box.
<input type=“text” name“bob” onBlur=“this.value = this.value.replace(/s*/g,’);”>
Filed: Technology //