by Mike | Jul 1, 2013 | Uncategorized
If you share a server with multiple users, you may find yourself committing as root. In that case, it’s helpful if you can keep svn from saving credentials. All you have to do is edit: /root/.subversion/config Set the following: store-passwords = no...
by Guru | Mar 20, 2013 | Uncategorized
So I am working on a project where I have to search some HTML documents for a possible text string. This lead me to an interesting find in how browsers do searching on text. Let’s look at the following HTML. <div><div...
by Mike | Feb 5, 2013 | Uncategorized
nullmailer is a very simple MTA I like to use on Linux servers when I don’t want to have a lot of hassle with mail server configuration. It will automatically send all local mail to one of my email addresses by simply installing it and configuring two files....
by Guru | May 16, 2012 | Uncategorized
When writing object-oriented code in coffeescript, I’ve found that the jquery each method is insufficient, due to its use of “this”. I am forced to use the following syntax: $(‘.thing’).each (index, thing) => $(thing).css width:...