Showing posts with label Hacks. Show all posts
Showing posts with label Hacks. Show all posts

Protect your email address from SPAM robots


Are you tired of having thousands of spam messages in your email just because you posted your email address in your blog or any site? Then this tweak is for you but before I give the remedy to that problem let me give you a short background on how these spam messages work.
Spam messages are delivered to you using spambots or spam robots. These spambots are automated computer programs that assist in sending spam. Spambots gather the information from blogs or sites like crawlers in search engines. They crawl and try to find email addresses found in that page. They are using regular expressions and other search methods in finding your email. Email hostings like yahoo and gmail use ways to block these spams but some of these messages can get through and you get annoying emails.
I found two ways of preventing your email to be found by these spambots.

  1. One way of doing this is changing your @ symbol to @ . Both are the same and it works well.
    <a href="mailto:accountName&#64;domain.com">Email me</a>

  2. The other one is a bit complicated but you don't need to understand all of it. This method uses javascript to obfuscate your email or simply an email obfuscator. You can go to the link below to obfuscate your email. Works great!
    http://www.codehouse.com/webmaster_tools/email_obfuscator/

But why am i posting this? Is this relevant to Search Engine Optimization? Yes it is relevant. With your blog coming to the top, these spambots will notice you and will begin to crawl your site. This can be harmful to you and to your readers who are posting their email addresses in their comments. If they found out that these spams originated from your blog then worst case scenario is that you'll reputation will be put at risk. Happy blogging. :D

Read Full Entry ...

Weekly Hack: Show your Live Stats

If you want to impress your readers that you've posted numerous articles then this widget is for you.

Example:
Total Posts: 2654
Total Comments: 3235


Follow the steps and you'll be amazed to what this widget can do. :D
  1. Click Layout > Page Element > Add a Gadget
  2. Find the HTML/Javascript and click add.
  3. Copy the code below and paste it there.
    <script style="text/javascript">
    function numberOfPosts(json) {
    document.write('Total Posts: <b>' + json.feed.openSearch$totalResults.$t + '</b><br>');
    }
    function numberOfComments(json) {
    document.write('Total Comments: <b>' + json.feed.openSearch$totalResults.$t + '</b><br>');
    }
    </script>
    <font color="black"><script src="yourblogurl/feeds/posts/default?alt=json-in-script&callback=numberOfPosts"></script>
    <script src="yourblogurl/feeds/comments/default?alt=json-in-script&callback=numberOfComments"></script></font>

  4. Replace yourblogurl with your link
  5. Save

You can tweak it if you like. :p


Read Full Entry ...

Weekly Hack: Add a Google Translate Widget in your Blogger

Time for the first weekly hack or tips and tricks for blogger. Not all people in this world can speak and understand English well so you need to have a translator for every language in the globe. Google can help you do that with the use of Google Translate. The steps below will help you to add a widget in Blogger.

  1. Go to your Dashboard > Layout > Add a Page Element > HTML/Javascript
  2. Paste the code below


  3. Add a Title to the Widget.
  4. Then SAVE


Read Full Entry ...