‘code’ Archive
SQL for migrating a WordPress DB between domains
When working locally on a wordpress site there’s 2 references to the local server address stored in wordpress’ ‘wp_options’ table. These handy bits of sql will update the DB when you have imported to the live server: /* update wordpress sql */ UPDATE `wp_options` SET `option_id`=’1′, `blog_id`=’0′, `option_name`=’siteurl’, `option_value`=’[NEW DOMAIN NAME HERE]‘, `autoload`=’yes’ WHERE `option_id` [...]
A standard Drupal install
Here is a list of the modules we generally end up installing for a standard Drupal 6 based site. If you have further recommendations please add as comments! Note some modules will be bound into the core and not required as external modules. In no particular order: Drupal 6 – http://drupal.org/node/579476 Admin Role – http://drupal.org/project/adminrole [...]
Re: Flash CS3 / Flex 2 AS3 Error #1046
handy little explanation of the old #1046 problem: http://curtismorley.com/2007/06/20/flash-cs3-flex-2-as3-error-1046/
2009 portfolio
This took far too long and not comprehensive by any stretch of the imagination. But its a start ok?! The work posted is a snapshot of the bigger Flash based projects I have been involved in over the last year. There’s a lot of front end development (html/css/js) projects to go up at some point [...]
Carlo Blatz – How Labs works
Interesting presentation by Carlo Blatz about agile project management and development of their labs website. These guys are seriously talented http://www.powerflasher.de/ Link:
Flip Flop the Flash on the Beach 09
Originally uploaded by seventy6.com John Davey, organiser of the brilliant Flash on the Beach, asked everybody to purchase a pair of the rather cool flip-flops and take an interesting picture with them. The winner gets a free ticket to next year! Well after 2 days of walking the Brighton streets – my poor feet ached [...]
IE6 abbr css bug
On a current Sandbox project, we’ve committed to delivering an IE6 friendly version. WHY?!!!! Anyhows, after some head banging with an AWOL <abbr> tag not even being noticed by IE6 – some digging shows that its never been supported! Good news is ie7+ now take notice. This handy little JS DOM hack takes the offending [...]