BEEHACKER

tricks to customize blogger

Tuesday, May 15, 2007

Spam Story

"there were 5001 spams in just 30 days which is about 166 spams in a day."

I am really irritated by the number of spams I get in my inbox. I get most of the spams in Gmail. The rate of receiving such spams is really high. Today, as I was checking my mails, there were 5001(Yes, 5001) spams in just 30 days! Simple mathematics shows that the rate of receiving spams is about 166 spams in a day. I am so sure about the number of days because gmail automatically deletes the spam every 30 days. I deleted all the spams with a click of a button (which is nice by the way). Then, the page read, "Hooray, no spam here!"


I was happy to see this. But after an hour later there were already 7 spams. Point to be noted, these are the spams Gmail found as spam. Many of the spams make directly into Inbox. Out of 1177 emails I got in my Gmail inbox in nine months period, only about 200 emails were the emails I wanted to be in my inbox. Rest of them (about 83%) were the spams which passed through Gmail-Filter.

Thursday, March 15, 2007

Dynamic Greeting for your blog

"the greeting that changes not just randomly but according to the browser time"

Wondering how to put the dynamic greeting which changes according to the browser time. How about the greeting that changes between "good morning", "good afternoon" and "good evening" not just randomly but according to the browser time. It is all possible with a little javascript and here it is:
<script type="text/javascript">
var d = new Date()
var time = d.getHours()
if (time<12 && time>=0)
{
document.write("<h3>Good Morning !!</h3>")
}
else if (time>12 && time<=16)
{
document.write("<h3>Good Afternoon !!</h3>")
}
else
{
document.write("<h3>Good Evening !!</h3>")
}
</script>

Newest Posts