View of My Sites Traffic

This is the view of this countries that visit this site. It’s cool to see all of the different people that find information useful to them on here.

CountryShare

Here are the top two most requested pages:
WokFi – Wifi Signal Strainer
Third Eye Blind – Jumper – Chords

Hooray for internet!

Running with Grant

run

Went on this little breezy run today. It was a very nice night.

I also got this sweet book from my friend Chris:
http://www.amazon.com/Concise-Guide-Self-Sufficiency-John-Seymour/dp/075662889X

And, im reading Adv of Huckleberry Finn. yayayaya.

Tags: , , ,

YouTube Comments – Something must be done!

Cracked.Com Charts

Cracked.Com Charts

There are so many completely idiotic comments on YouTube that it makes all comments and discussion pointless. Is there nothing that can be done? Someone must stop all of 12 year old boys!

Here is a funny article on Cracked.com that sums it up quite well:
http://www.cracked.com/funny-981-youtube/

Tags: , , , , , , , ,

Screw You Rain and Cold

11242009-run
I decided the best way to say “shut it” to the rain and cold was to run with winter gloves on. :-D

Ended up not needing them. The run was nice. 2 or 3 miles.

TikiWiki – Tracker Email Subject Improvement-Modification

tikiwiki

The template for the Tracker email is here:
\tikiwiki\templates\mail\tracker_changed_notification_subject.tpl

I changed it to this so that it would improve the way it looks in emails:

{$mail_trackerName}{tr} - #{/tr}{$mail_itemId}{tr} modified.{/tr}

Tags: , , , , , , , , , , ,

Bright Eyes – Landlocked Blues

A nice song:

A good woman will pick you apart
a box full of suggestions for your possible heart
But you may be offended, and you may be afraid
but don’t walk away, don’t walk away

Lyrics

when life is too tough



when life is too tough, originally uploaded by danfolkes.

c seasons comes and lifts the spirits.

WordTwitt is the best Wordpress Twitter App

My friend Dallas Edwards showed me this application called WordTwitt. It’s basically the bomb explosive when it comes to tweeting your blog posts.

All the other plugins seem to suck in comparison to this open source, free, magical piece of code.

I suggest everyone with wordpress install the plugin immediately, or face unending torment.

Thanks,
Daniel

Tags: , , , , , , , , , , , , , , , ,

hello myself



hello myself, originally uploaded by danfolkes.

Override the window.onload javascript function

1. Creates a blank function
2. Checks onload for a function.
2a. Sets the originial onload function as temp
3. calls the new function initMap() before the originial temp onload function.

Pretty cool!

Code:

1
2
3
4
5
6
7
var temp=function(){ return 1;};
if( window.onload )
{
      //override "placeholder" with whatever already exists in onload
     temp = window.onload;
}
window.onload=function(){ TheFunctionYouWantToCall(); temp();};

Tags: