Wednesday, April 11, 2012

Tsunami warning!! Magnitude of 8.9 2012/04/11


Jakarta: A tsunami watch was issued for countries across the Indian Ocean after a large earthquake hit waters off Indonesia on Wednesday, triggering widespread panic as residents along coastlines fled to high ground in cars and on the backs of motorcycles.

Some were crying. Others screamed "God as great" as they poured from their homes.

The US Geological Survey said the 8.7-magnitude quake was centered 20 miles (33 kilometers) beneath the ocean floor around 269 miles (434 kilometers) from Aceh's provincial capital.

The Pacific Tsunami Warning Center in Hawaii said a tsunami watch was in effect for Indonesia, India, Sri Lanka, Australia, Myanmar, Thailand, the Maldives and other Indian Ocean islands, Malaysia, Pakistan, Somalia, Oman, Iran, Bangladesh, Kenya, South Africa and Singapore.

Earthquake and tsunami experts say that the waves are likely to be more than 6 metres high. A tsunami watch means there is the potential for a tsunami, not that one is imminent.

Said, an official at Indonesia's Meteorology and Geophysics Agency who goes by only one name, said a tsunami warning has been issued for cities all along the coast of Sumatra island. Residents in Banda Aceh are already moving to higher ground.

There was chaos in the streets, with fierce shaking continuing for nearly four minutes.

"I was in the shower on the fifth floor of my hotel," Timbang Pangaribuan told El Shinta radio from the city of Medan. "We all ran out. ... We're all standing outside now."

He said one guest was injured when he jumped from the window of his room.

The tremor was felt in Singapore, Thailand, Bangladesh, Malaysia and India. High-rise apartments and offices on Malaysia's west coast shook for at least a minute.

Thailand's National Disaster Warning Center issued an evacuation order to residents in six provinces along the country's west coast, including the popular tourist destinations of Phuket, Krabi and Phang-Nga.

Tremors were also felt in Kolkata, Chennai, Bangalore, Patna, Kochi, Thiruvananthapuram, Cuttack, Bhubaneshwar and several other cities on the eastern coast of India. India has also issued tsunami warning for coastal regions of Tamil Nadu, Andhra Pradesh, Andaman and Nicobar Islands following the earthquake.

Indonesia straddles a series of fault lines that makes the vast island nation prone to volcanic and seismic activity.

A giant 9.1-magnitude quake off the country on Dec. 26, 2004, triggered a tsunami in the Indian Ocean that killed 230,000 people, nearly three quarter of them in Aceh.

source : ibnlive.in.com
Read More »

Friday, March 2, 2012

Hide My MAC Address | Free Download

Hide My MAC Address v2.2 Full Version


This Utility allows you to Hide your MAC Address your ISP, WiFi networks, from hackers, government agencies, online games, and more! Hackers, ISP, can track your Internet activity if they know your MAC Address. Public Wireless Access Points are all over, some of them less secure. Every time you open your laptop, it automatically attempts to contact to wireless networks, regardless if you use WEP/WPA Encryption. Fool MAC-based ACLs (Access Control Lists) by cloning the MAC address of a computer that is already authorized to use a WiFi network. Don't let your MAC Address to get out in the open, Use this utility to hide your mac address.
Read More »

Thursday, February 16, 2012

Add Snow Falling Effect In Mouse Cursor for Blogg

Snow Falling In Mouse Cursor




Hello friends!, here we are again  with another great trick. Snow falling in mouse cursor. You can decorate with this script. You can Spice up your blog in Winter, Christmas , It'll bring more joy to your visitors. ok lets have the code



  1. Copy the code below
  2. Page element --> Add a Gadget --> HTML/JavaScript Add  --> Paste the code and Save

<script type='text/javascript'>
// <![CDATA[
var colour="White";
var sparkles=100;

var x=ox=400;
var y=oy=300;
var swide=800;
var shigh=600;
var sleft=sdown=0;
var tiny=new Array();
var star=new Array();
var starv=new Array();
var starx=new Array();
var stary=new Array();
var tinyx=new Array();
var tinyy=new Array();
var tinyv=new Array();
window.onload=function() { if (document.getElementById) {
var i, rats, rlef, rdow;
for (var i=0; i<sparkles; i++) {
var rats=createDiv(3, 3);
rats.style.visibility="hidden";
document.body.appendChild(tiny[i]=rats);
starv[i]=0;
tinyv[i]=0;
var rats=createDiv(5, 5);
rats.style.backgroundColor="transparent";
rats.style.visibility="hidden";
var rlef=createDiv(1, 5);
var rdow=createDiv(5, 1);
rats.appendChild(rlef);
rats.appendChild(rdow);
rlef.style.top="3px";
rlef.style.left="0px";
rdow.style.top="0px";
rdow.style.left="3px";
document.body.appendChild(star[i]=rats);
}
set_width();
sparkle();
}}
function sparkle() {
var c;
if (x!=ox || y!=oy) {
ox=x;
oy=y;
for (c=0; c<sparkles; c++) if (!starv[c]) {
star[c].style.left=(starx[c]=x)+"px";

star[c].style.top=(stary[c]=y)+"px";
star[c].style.clip="rect(0px, 5px, 5px, 0px)";
star[c].style.visibility="visible";
starv[c]=50;
break;
}
}
for (c=0; c<sparkles; c++) {
if (starv[c]) update_star(c);
if (tinyv[c]) update_tiny(c);
}
setTimeout("sparkle()", 40);
}
function update_star(i) {
if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
if (starv[i]) {
stary[i]+=1+Math.random()*3;
if (stary[i]<shigh+sdown) {
star[i].style.top=stary[i]+"px";
starx[i]+=(i%5-2)/5;
star[i].style.left=starx[i]+"px";
}
else {
star[i].style.visibility="hidden";
starv[i]=0;
return;
}

}
else {
tinyv[i]=50;
tiny[i].style.top=(tinyy[i]=stary[i])+"px";
tiny[i].style.left=(tinyx[i]=starx[i])+"px";
tiny[i].style.width="2px";
tiny[i].style.height="2px";
star[i].style.visibility="hidden";
tiny[i].style.visibility="visible"
}
}
function update_tiny(i) {
if (--tinyv[i]==25) {
tiny[i].style.width="1px";
tiny[i].style.height="1px";
}
if (tinyv[i]) {
tinyy[i]+=1+Math.random()*3;
if (tinyy[i]<shigh+sdown) {
tiny[i].style.top=tinyy[i]+"px";
tinyx[i]+=(i%5-2)/5;
tiny[i].style.left=tinyx[i]+"px";
}
else {


tiny[i].style.visibility="hidden";
tinyv[i]=0;
return;
}
}
else tiny[i].style.visibility="hidden";
}
document.onmousemove=mouse;
function mouse(e) {
set_scroll();
y=(e)?e.pageY:event.y+sdown;
x=(e)?e.pageX:event.x+sleft;
}
function set_scroll() {
if (typeof(self.pageYOffset)=="number") {
sdown=self.pageYOffset;
sleft=self.pageXOffset;
}
else if (document.body.scrollTop || document.body.scrollLeft) {
sdown=document.body.scrollTop;
sleft=document.body.scrollLeft;
}
else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
sleft=document.documentElement.scrollLeft;
sdown=document.documentElement.scrollTop;
}
else {
sdown=0;
sleft=0;
}
}
window.onresize=set_width;
function set_width() {
if (typeof(self.innerWidth)=="number") {
swide=self.innerWidth;
shigh=self.innerHeight;
}
else if (document.documentElement && document.documentElement.clientWidth) {
swide=document.documentElement.clientWidth;
shigh=document.documentElement.clientHeight;
}
else if (document.body.clientWidth) {
swide=document.body.clientWidth;
shigh=document.body.clientHeight;
}
}
function createDiv(height, width) {
var div=document.createElement("div");
div.style.position="absolute";
div.style.height=height+"px";
div.style.width=width+"px";
div.style.overflow="hidden";
div.style.backgroundColor=colour;
return (div);
}
// ]]>
</script>


Enjoy it.......!
if you are using New blogger interface and having trouble with adding widget code, try Switching back to Old blogger interface


Tags:
how to add Snow falling effect in mouse cursor, Snow falling effect to blogger, amazing snow falling effect, snow falling widget for blogger,

Previous Posts:

How To Add Floating Social Media Sharing Buttons For Blogger
How to Fix MediaFire Infinite Page Refresh
How To Switch Back To Old Blogger Interface




Read More »

Sunday, February 12, 2012

How To Switch Back To Old Blogger Interface

Sorry to hear guys
THIS METHOD IS NO LONGER WORKING

How to get back old blogger interface

get-back-old-blogger-interface

Do you have trouble working with new blogger interface? Oh yes you do :) that's why you came here.If you are a new to blogger, you are not much used to new blogger interface, don't worry a bit, I'm here to save you. Here the way to how to switch back to old blogger interface.



  • Click on "Settings" Button under your name

get-back-old-blogger-interface

  • Then you will see the menu collapse
  • Click on "Old Blogger Interface"

get-back-old-blogger-interface 

  • Here we are again to Old Blogger Interface
    Old is Gold !

get-back-old-blogger-interface




Read More »