God, Windows is sloooooow
I am assisting a colleague today check out a rather large feature branch. I showed him the branch address and…
HEX colour chart with RGB reference
I need this quite often so I thought I would put it on my site. Nothing more, nothing less. (Click…
CSS properties direction (padding, margins, etc)
You’ll have no doubt seen: padding: 5px 10px 5px 10px; in a CSS file. Do you ever wonder which of…
Ubuntu, Thunderbird always maximised
I recently switched from Linux Mint back to the old trusty Ubuntu (11.10) One major problem was Unity, but I…
A-Z list of CSS features
Found this great list of CSS features. https://developer.mozilla.org/en/CSS/CSS_Reference
Javascript Hoisting
When using JavaScript, you declare a variable using the var keyword. var myvariable = "a value"; These variables are globally…
Accessing controller data from a partial viewscript
When using an inline partial viewscript in my form, I sometimes need access to data. I can accomplish this by…
Viewing events attached to elements via JavaScript
If like myself, you often attach functions to elements using jQuery, for example: $('.btnName').live('click', function() { //do something }); There…
MySQL Error in create table syntax ‘USING BTREE’
We had an odd thing today, whilst performing a apply-db-changes we received the error: You have an error in your…
Setting up Class Table Inheritance with Doctrine 2.0
Have had some serious problems getting this working, but after a 4 hour head bashing session, we’ve cracked it. CREATE…