Archive for October 9, 2006

Juan Mann : Free Hugs Campaign

juan mann free hugs

This is the story of Juan Mann (pronounced One Man) whose sole mission is to brighten up a stranger’s life, but to date, he has brighten thousands of strangers’ life, including me. Though I didn’t get a hug from him, watching the video lifted my spirits a bit.

In this time of violence and hatred potrayed in the media daily, this positive vibes and a hug is what everyone needs.

Mann has been doing this for a year but recenly his grandmother died and so his friend, who is the lead singer of sickpuppies decided to mix the video he had taken of him hugging strangers with their song All the Same, to lift his friend’s spirit. This video was posted to youtube and now is one of the most popular youtube videos now with more than a million views.

You can watch the video below.

__(’Read the rest of this entry »’)

Comments

Monday time-waster : javascript fun

javascript fun

This is a fun javascript code that you can run to make all the images on a page fly around in circle. The picture above is the result of google image search results floating around.

To try it out right on this blog’s page, copy the following script :

javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position=’absolute’; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+x5; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5}R++}setInterval(’A()’,5); void(0);

Now, paste them in your browser’s address and hit Enter. To stop the effect, just hit refresh/reload. To pause it, paste this instead javascript:function A(){}

So basically, you can do this with any webpage, of course they must have images to work lah.

__(’Read the rest of this entry »’)

Comments