Archive for November, 2005
I am using the $dt->blog(); » Google analytics plugin here on this site, but for tracking outgoing link clicks I have had to modify the plugin like this:
add_filter('the_content', 'ga_addonclick', 10);
function ga_addonclick($value){
if(get_option('ga_onclick')){
$value = preg_replace("/<a href=\"([^\"]+)\”/e”,
“‘<a href=\’$1\’ rel=\’nofollow\’ onclick=\”.ga_parseurl(’$1′).’\”” ,$value);
}
return $value;
}
function ga_parseurl($href){
$onclickcode = stripslashes(get_option(’ga_onclick_code’));
$href = str_replace(’http://’, ”, $href);
return str_replace(’$site’,$href,$onclickcode);
}
-
A good overview about what makes mp3-players so cool, what their development was in the last years. Many pics and interesting links/ideas
-
A short summary about current web browsers
-
A great flash movie that shows how to draw a woman. The artists starts with the backbone and other bone structures, adds flesh, clothes and other finishes.
-
A full (though in progress) physics textbook covering basic undergraduate physics. The chapters are in PDF files.
-
A funny idea: a vibrator controlled via sms.
-
If you play around with the layers of meaning in the word Classified, you come up with several permutations: Classical, a reference to the ongoing are-they-arenât-they debate concerning bondâs musical style; Classic as in first-class or excellen
-
Your one-stop web resource for soulful dance music and other beautiful sounds.
-
A thread about indirect filing systems vs. direct filing systems (liek A-Z as mentioned by David Allen)
-
A list of various filing systems
I just hacked together a little applescript that grabs files from your temporary directory to another place, renames them according to the current applications main window’s name. Basically this sounds like nothing, but what it actually does is very useful if you like to save some of the songs playing on a flash based radio stream like pandora.com. download the file here (2.4 kB zipped file).
related:
Recent Comments