HTML tags with src attribute

Monday, 29 Apr 2013
Couldn't easily find such a list, so compiled it myself. HTML <= 4.01 <img> <script> <iframe> <frame> <input> (when type='image') <embed> HTML 5 <video> ... » read this

Sublime Text 2 - keybindings overview

Friday, 21 Sep 2012
Sublime Text 2 - keybindings overviewPeople quickly fall in love with, or get addicted to Sublime Text 2. However, many are also confused by the vast amount of keyboard shortcuts available. I've created an automatically generated overview of the available keybindings,... » read this

Apache Subdomains per user

Thursday, 23 Aug 2012
Apache Subdomains per userI recently had to configure a new Ubuntu machine to serve multiple domains (*.example.com) based on users. Ideally, any account (monkey.example.com, elephant.example.com, etc. etc.) would simply serve pages from it's own documentroot. Searching... » read this

Facebook side sliding like box

Wednesday, 28 Dec 2011
Facebook side sliding like boxAll of us developers get this request often enough: "can you add a facebook like somewhere?". A common, ugly solution is to put a Facebook label on the side, which slides in the Facebook like-box. Usually, this satisfies... » read this

Decoding byte-escaped \xFF strings in PHP

Friday, 30 Jul 2010
I came across a multi-byte (UTF-8) string this week, that was encoded by the single-byte escaping \x, for example: His nickname was \xE2\x80\x98the Angel\xE2\x80\x99, which is kind of a clich\xC3\xA9 in my opinion. Which represents... » read this