Recent Posts

Rails Commands

less than 1 minute read

Summary of various ruby commands .erb: embedded ruby, the primary template system for including dynamic content in web pages. Generation [sourcecode language...

My Favourite Textmate Shortcuts

less than 1 minute read

cmd + T: Go to file ctrl + cmd + R: Reveal in a project shft + cmd + N: new file in the current folder cmd + Enter: go to the next line cmd + W: close tab ...

Structuremap Basics

less than 1 minute read

Define the instance for your interface [sourcecode language="csharp"] public class WiringModule { public void Initialize(IInitializationExpression x) ...

My ReSharper Keyboard Shortcuts

less than 1 minute read

This is ReSharper's comprehensive shortcuts. Yet there are a few things I favour. shft + f12: Go to previous error/warning/highlight. Handy, when you create...

jquery selection basics

less than 1 minute read

[sourcecode language="javascript"] $(':checkbox') //If you want to select all checkboxes, $(':checkbox:enabled') //Select all checkboxes enabled $(...