25 Mac Apps I Love

Posted in: Blog- Dec 22, 2009 1 Comment

I’ve been using macs for quite a while now and one thing I love about the operating system is the wealth of well designed and useful software which is available. Windows has a large breadth of software available but since switching over in 2003 I’ve not had to go back to windows unless I am [...]

Find & Replace in MySQL

Posted in: Blog- Oct 07, 2009 No Comments

Somewhere between the backing-up and restoration of a clients MySQL WordPress database we picked up some strange characters. Rather than having to go through by hand to edit them out, we used a nice SQL snippet to do a full-database search and replace. update [table_name] set [field_name] = replace([field_name],’[string_to_find]‘,’[string_to_replace]‘); So in this case, to get [...]