Written on Mon, 07 Dec 2009 01:50:39 +0000 - Last updated on Mon, 07 Dec 2009 03:47:35 +0000 1. Accept your lot in life - but strive for more.
2. Keep the spirit strong. Anger arises as a result of a weakened spirit. The strong spirit is resolute.
3. Those that strengthen the spirit: Meditation, deep breaths, cleaning the room, music, reading, singing, video games, television and movies (no, really).
4. Those that weaken the spirit: Hatred, impatience, jealousy.
5. Under no circumstances try to weaken another's spirit.
If possible, strengthen theirs.
6. If it can be done,
DO I...
read more
Written on Tue, 09 Feb 2010 23:27:02 +0000 - Last updated on Wed, 10 Feb 2010 16:58:42 +0000 - Program on my USB membership card that takes an arbitrary binary blob, sitename, and length and spits a password directly into the clipboard. Architected in such a way that I don't even need to know my password to login.
- Firefox and Chrome Extension to interface with this program
- Script on the server which reads in mail and spits out an RSS feed. The mail can optionally be filtered to remove e.g. penis enlargement spam
- Improvements to php-tomboy bridge:
...
read more
Written on Mon, 29 Mar 2010 22:24:54 +0000 - Last updated on Sun, 25 Jul 2010 07:29:19 +0000 disable roundy corners in jquery ui:
.ui-corner-all, .ui-corner-top, .ui-corner-bottom {
-moz-border-radius: 0px !important;
-webkit-border-radius: 0px !important;
}
simple method to get query string parameters from a url
function getGetParamsFromURL(url) {
var queryString = url.substring(url.indexOf("?") + 1);
var queryParams = queryString.split("&");
var get = {};
for(var i = 0; i < queryParams.length; i++) {
var queryPair = queryP...
read more