click on a link (follow) via jQuery/JavaScript
You might reasonably assume that it would be possible to fire a click event on an "A" element (link) via JavaScript, at which point the browser would fire a...
You might reasonably assume that it would be possible to fire a click event on an "A" element (link) via JavaScript, at which point the browser would fire a...
Everyone assumes that using keyboard shortcuts is more efficient than using the mouse. But by how much? One 2005 study found that keyboard shortcuts are app...
Say you have a large legacy ColdFusion app on top of Java that runs on Windows. File access is done both via java.io.File and by CFFILE (which in turn also ...
Reliably sending email without getting caught in spam filters is a full-time job, for someone. Surely not for an end-user, but for every end-user email, the...
When you refresh a webpage that was the result of a HTTP POST, your browser asks you if you want to reload.
Python implements a light version of aspect oriented programming via decorators. I find myself using them often, specifically for Django views. Here are a f...
A program should follow the "Law of Least Astonishment". What is this law? It is simply that the program should always respond to the user in the way that as...
Like Ruby on Rails, Django uses a model API to abstract the database layer. A command-line script creates schema for new object definitions. Unlike Ruby on ...
Sometimes it feels like I'm looking at logs all day. Certainly there are times when this is more true than others. If you find yourself in one of those time...
Idempotence describes the property of operations in mathematics and computer science that means that multiple applications of the operation do not change th...