postnote

We currently have a full team here at Abletech but in saying that we're always on the look-out for great developers. If that sounds like you, feel free to get in touch.

postnote

News & Updates

Blog

Blog Archive for January 2009

Korimako (Bellbird) iPhone ringtone

by nigelramsay.

I've been enjoying listening to New Zealand native birds as ringtones on my iPhone. Here is one of my favourites - the Korimako, or Bellbird [164 kB].Bellbird

You are welcome to share this with your friends and redistribute - as long as you retain the...

Macbook Pro Speed Test

by marcus.

With the Sharesight test suite (ruby/rails/mysql && rake test), i tested the performance of my the new MBP on Snow Leopard.

I save 16 seconds per run - its going to take a while to pay for itself.... But about 22% faster, which is not too bad.

...

using git submodules for plugins

by marcus.

# first remove your copy and paste plugin....

git rm -r vendor/plugins/xxxxxxgit commit

now you are ready to add the submodule

git submodule add git://your_git_repo/xxxxx.git vendor/plugins/xxxxxgit commit
To load the submodule, you need to
git...

serving php from a rails app with passenger

by marcus.

We have a situation where we want one domain which serves a rails app at root and also has a wordpress blog served within the main site.

yours.com/ -- served by railsyours.com/blog -- served by php

To configure this in apache,

Installing Ruby Enterprise Edition on Mac OSX

by marcus.

This is quite trivial and very easy. I wanted to use the same version of ruby on my mac as is running on our production servers (Ruby Enterprise Edition).

Firstly, do a

gem list
and keep this information. You will need to reinstall all your gems...

rails legacy database migration

by marcus.

Just migrated a legacy database into a rails compliant database - and wrote this nifty DSL script to help out....

The rake task generates the Hash data for the table creation, data insert and rollback scripts.

Once you run the rake task, paste the...

Performance issues with sub-queries in MYSQL 5

by marcus.

I just recently spent some time with a client investigating some performance issues with mysql subqueries.

The obviously contrived example below