Disabling Empty Tab Completion in Bash to Prevent Delays

Programming

While typing in a terminal, tab completion is a huge time saver. Being able to auto-complete file names or commands is very nice, especially if you can’t quite remember what it is. There are times, however, that this has become quite annoying for me as a developer. More than once a day when I really… Read more »

Creating Elements with jQuery and Internet Explorer

Programming

And if I had a gun, with two bullets, and I was in a room with Hitler, Bin Laden and Internet Explorer, I would shoot Internet Explorer twice. When creating HTML elements with jQuery, there is an elegant syntax that was introduced quite a few versions ago. $("<div/>", { id: ‘someDiv’, class: ‘someClass’, text: ‘Some… Read more »

The Joys of Merging Code

Programming

I consider myself lucky to work at a place where we have someone working QA to ensure the code we’re pushing out isn’t going to blow up. When a development ticket has passed through QA, we get an email to let us know. Usually saving the task of merging code until the end of the… Read more »