

How to multiple login in Gtalk chat simultaneously on Windows operating system? or
How to run multiple instances of GTalk with different Gmail accounts at the same time in Windows?
When we talk about ranks in search engines like Google or Bing with quality blogs and content we know, the roles of links is very important. Though people embark with excellent content development, they hardly know how to rank them in any search engine through creating quality links. Nowadays, guest blogging has become a very powerful tool in blogosphere which can be used to market the blogs. The best part of guest blogging is that it proves to be a great tool to build high quality backlinks to any blog. This article discusses about a few effective ways or tips of using this idea of guest blogging for building great back links for your blogs.
Google initiatives towards making the Web faster are setting new dimensions now. Google latest release, A free software that could make many sites load twice as fast, is one such result.
Web performance is a primary issue today. Increasing the speed of a web page, whether by serving less bytes -through better compression or caching-, minimizing round-trips and optimizing the order of resource download for the browser as some ways to achieve high performance.

The software is known as mod_pagespeed is an open-source Apache module that automatically optimizes web pages and resources to improve the performance of their web pages when serving content with the Apache HTTP Server. The software will be automatically updated.
It includes filters for optimizing JPEG and PNG images & also optimizes JavaScript, HTML and CSS stylesheets.
Google already offers a tool called Page Speed that measures the speed at which a website loads and suggests ways to make improvements.
Installation
Installing mod_pagespeed will add the Google repository so your system will automatically keep mod_pagespeed up to date. More on Installation[...]
To install the packages, on Debian/Ubuntu, please run (as root) the following command:
dpkg -i mod-pagespeed-*.deb apt-get -f install
For CentOS/Fedora, please execute (also as root):
yum install at (if you do not already have 'at' installed) rpm -i mod-pagespeed-*.rpm
Where it can be used?
Performing on-the-fly optimization in the Apache™ 2 HTTP Server, it can help:
“We think making the whole Web faster is critical to Google’s success,” says Rabbat, Product Manager for the new project.
Google tested mod_pagespeed on a representative sample of websites and found that it made some sites load three times faster, depending on how much optimization had already been done.
Chitika Blog have come up with a great event called BlogBash – 30 days 30 experts! & it was one of the most successful events ever done on the Chitika Blog. Dreamed up by Chitika’s CTO Alden DoRosario and inspired by an interesting series from the Month of Apple Bugs, Chitika’s goal for this event was to “empower the blogger.”

I found this Chitika E-book very useful for bloggers & its really a great read. Thanks to Chitika for providing this Blog Bash e-book for free download.
The experts wrote about an array of wide-ranging topics, from “Dare to be Odd” and “Shopping and Blogging: How to make the marriage work”, to “Help me! My mom is my blogs only reader!” and many more.
Go ahead; explore the deep secrets of these 30 expert bloggers, learn from their mistakes and their success as we celebrate YOU the blogger!
Tell me: What is Chitika?
Any questions, suggestions, views, Share them through your comments below.
We are proud to announce the launch of our very own Inforids forum. Be sure to click on over and take a look around, and be sure to bookmark the page if you intend to visit often.

We felt that support, discussion & problem solving are one of the important things that we are lacking here on Inforids.com, & we are very happy to start Inforids Tech Support forums for all of you.
The forum is powered by bbPress & we kept it simple & more easy to work on. So, it will be very easy for you to go through a simple 2 step process to join our forum & then starting discussions & stating your problems there. We & others techies will try our best to solve your problems as early as possible.

We are taking Blogging, Search Engine Optimization,Monetization,Softwares, Internet & Web 3.0,Platforms,Programming,Gaming & more major categories in Inforids Tech Support.
The aim of this forum is to provide a resource hub for anyone to ask questions and receive answers for their technical woes. Our moderators will be there to provide the technical support. It also serves as a place for us to provide technical support to our tutorials that were published in the blog.
Also, we are always doing our best to improve the forums. If you have any constructive suggestion to improve the forums, feel free to contact me at inforids@gmail.com.
Have fun With learning!
If you bookmark a lot of websites & love to save important webpages as bookmarks, it’s always a good idea to have them backed them up somewhere. The best backup place, of course, is the Internet where all your bookmarks stay safe from any possible hardware failures that may cripple your PC.
We are going to How to effectively backup and synchronize your bookmarks in Mozilla Firefox, one of the most widely used web browsers.
Delicious for all!
Delicious is no stranger to us, being the largest online bookmark organizing and sharing service. Meanwhile, Delicious also offers official add-ons for Firefox and Internet Explorer that keep the bookmarks in your browser and your Delicious account completely synchronized. If you’re using another browser, simply grab the Bookmark on Delicious bookmark-let and use it to save bookmarks in your Delicious account (rather than your browser).
You can add Inforids.com on delicious.
Of course, Delicious isn’t the end of the world, and you can choose from various other options if you want to. Read on!
Mozilla Firefox
We all love Firefox. With over 6000+ add-ons and counting, there are always more than one ways to get something done with this browser. And backing up bookmarks is no exception.


Like IE, manually backing up bookmarks in Firefox is dead simple.
Xmarks (previously Foxmarks) is a solid add-on that can sync your bookmarks and even passwords across multiple PCs. In addition, Xmarks can suggest tags for new bookmarks, and show information about your visited sites based on this bookmark database.

Xmarks is also available as Foxmarks for IE 6 / 7 and Safari 3(Mac OS X only), though with significantly less features.
How do you organise, backup and sync your bookmarks? Let us know your techniques. Say in the comments.
Did you ever noticed that your images are being hotlinked on someone else’s server and consuming your server bandwidth? This is actually is direct linking to a web site’s files (images, video, etc.).without your permission.

It is bad, as it not only stealing our images, it also take advantage of our bandwidths. Since web hosts charge based on the amount of data transferred, bandwidth is an issue.
Hotlinking should be stopped because others undesirable consequences like switcheroo can often occur.

Using control over.htaccess is one of the most efficient way to prevent image hotlinking. Go through the following steps:
Simply open a notepad & save it as .htaccess without any extension behind. If already have the .htaccess uploaded to your server, simply edit it like in step 2.
Paste the following code in the .htaccess file:
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?yoursite.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?yoursite2.com [NC]
RewriteRule \.(jpg|jpeg|png|gif)$ http://yoursite.com/other_image.jpe[NC,R,L]
Note: In Last line of the above code the image other_image.jpg is not hotlink protected or your server can go into an endless loop.
In the above code yoursite2.com can used be stop hotlinking from specific outside domains only, such as myspace.com, blogger.com and livejournal.com
If you want to display 403 Forbidden error on hotlinking simply paste the following code instead of the code shown above.
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?yoursite.com [NC]
RewriteCond %{HTTP_REFERER} !^http(s)?://(www\.)?yoursite2.com [NC]
RewriteRule .*\.(jpe?g|gif|bmp|png)$ - [F]
Remember, Hotlinked images can only be replaced by other images, not with an HTML page.
Using .htaccess to prevent hotlinking helps you block some legitimate traffic using these techniques.
What do you think about other ways to prevent images hotlinking on your blogs? Do you like this technique? Share with us your views.
What’s Readers Talking