<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech Monk &#187; web</title>
	<atom:link href="http://www.techmonk.com/tag/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techmonk.com</link>
	<description>Guide To The Nth Dimension Of Computing And Internet</description>
	<lastBuildDate>Mon, 16 Jan 2012 03:13:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>How to Make a Neat Horizontal Bar with Social Buttons</title>
		<link>http://www.techmonk.com/how-to-make-a-neat-horizontal-bar-with-social-buttons/1062/</link>
		<comments>http://www.techmonk.com/how-to-make-a-neat-horizontal-bar-with-social-buttons/1062/#comments</comments>
		<pubDate>Wed, 31 Aug 2011 14:39:30 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=1062</guid>
		<description><![CDATA[Social networking sites provide a great way to share content with people. So, it's important that your content is equipped with good sharing options. In this tutorial, I talk about a code that I wrote to create a horizontal bar with all social buttons in one line]]></description>
			<content:encoded><![CDATA[<p>Just a few days ago, I changed the theme of my blog, with my own one. While designing my own theme, I was kind of stuck with one thing. If you came to this post, searching through Google, then I think even you are finding the same problem.</p>
<p><strong>PROBLEM</strong> -  Making a neat horizontal bar with all the social-sharing buttons inline.</p>
<p>Well, I am not a coding expert. But, somehow I wrote a code which is simple and easy. So, I thought I would share the code here on my blog.</p>
<p>I scratched my head for a lot of time over this problem. But, later I came to know that I was not really looking at the problem. Okay, now first let me give you the code.</p>
<pre><code>&lt;div&gt; 

&lt;!-- tweet button --&gt;  
&lt;div style="float:left;"&gt;
&lt;a href="http://twitter.com/share" data-count="horizontal"&gt;Tweet&lt;/a&gt;
&lt;script type="text/javascript" src="http://platform.twitter.com/widgets.js"&gt; &lt;/script&gt;
&lt;/div&gt;
 &lt;!-- tweet button --&gt; 

&lt;!-- facebook like button--&gt;
&lt;div style="float:left;"&gt;
&lt;iframe src="http://www.facebook.com/plugins/like.php?href&amp;amp;send=false&amp;amp; layout=button_count&amp;amp;width=450&amp;amp;show_faces=true&amp;amp;action=like&amp;amp; colorscheme=light&amp;amp;font&amp;amp;height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:60px; height:21px;" allowTransparency="true"&gt;&lt;/iframe&gt;
&lt;/div&gt;
&lt;!-- facebook like button--&gt; 

&lt;!-- Google +1 button --&gt;  
&lt;div style="float:left;"&gt;
&lt;!-- Place this tag where you want the +1 button to render --&gt;  
&lt;g:plusone size="medium" annotation="inline" <span style="color: #ff0000;">width="60"</span>&gt;&lt;/g:plusone&gt; 

&lt;!-- Place this render call where appropriate --&gt;  
&lt;script type="text/javascript"&gt;   (function() {     var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;     po.src = 'https://apis.google.com/js/plusone.js';     var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);   })();  &lt;/script&gt;
&lt;/div&gt;
&lt;!-- Google +1 button --&gt;
&lt;/div&gt;</code></pre>
<p><strong>One another thing</strong>-  This is the code I wrote. It is very simple and easy. But, still this code didn&#8217;t work in the beginning. Notice the highlighted part of the code above. By default, the Plus one button width will be450px or something, which makes it not possible to keep them inline. That&#8217;s why it didn&#8217;t work. But, after sometime I found the problem and fixed it. I am just giving a heads up so that you don&#8217;t do the same problem.</p>
<p>Also, the code I wrote is only for three buttons, but you can extend it. Just add the code of the button in between the following tags.</p>
<blockquote>
<pre>&lt;div style="float:left;"&gt;
Paste the code for the button here
&lt;/div&gt;</pre>
</blockquote>
<p>That&#8217;s all. You can see my code in action at the beginning of this post. Please don&#8217;t hesitate to comment if you have any problems or suggestions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/how-to-make-a-neat-horizontal-bar-with-social-buttons/1062/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Extension of Any Website/Blog for Any Browser Using Extension Factory</title>
		<link>http://www.techmonk.com/create-extension-of-any-blog-for-any-browser/1058/</link>
		<comments>http://www.techmonk.com/create-extension-of-any-blog-for-any-browser/1058/#comments</comments>
		<pubDate>Mon, 29 Aug 2011 09:29:28 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=1058</guid>
		<description><![CDATA[Sharing content is the basic motive any blogger has. The more the ways to share your content, the more the traffic and reader base. Here is a tool that helps you to create extension for your blog using your feed easily, in just a click!]]></description>
			<content:encoded><![CDATA[<p>The basic motive of any blog is to share content with people about any topic. Sharing is done by different means &#8211; example, through <a href="http://www.techmonk.com/tag/social-networking/" target="_blank">social networks</a> like Twitter, Facebook or through feeds. Each and every blogger strives hard to make his content reach <a title="How To Get Readers For A Blog?" href="http://www.techmonk.com/how-to-get-readers-permanent-traffic-blog/126/" target="_blank">maximum readers</a>. Feeds are the most popular way of sharing content of your blog with readers. Considering that your content is good, it is obvious that the<a title="Get Apture And Make Your Blog More Reader Friendly!" href="http://www.techmonk.com/addon-reduce-bounce-rate-of-blogger-wordpress-blogs/528/" target="_blank"> more easier</a> it becomes to access your content, the more reader base your content will get.</p>
<p>Today in this blog post, I will introduce a tool that will help you to create extension for your blog, which in turn will help your content to be easily discovered.<strong> Extension Factory</strong> is a tool that helps you to easily create extension of your blog, or rather any blog you want &#8211; all you need to do is enter the required blog URL.</p>
<p>It is easy to create an extension of your blog. Go to <a title="Extension Factory" href="http://builder.extensionfactory.com/" target="_blank">Extension Factory</a> page. Enter the URL of the blog and click &#8220;Create your Extension&#8221;. Then, you get a code, copy and add it in your website. Or, if you want to test the extension first, you can also do it by click on &#8220;Test Extension&#8221; button. If you are a wordpress user, then there is a<a title="Wordpress Plugin" href="http://wordpress.org/extend/plugins/site-button-by-extension-factory/" target="_blank"> plugin</a> that does the same job. You might have noticed that on my blog.</p>
<p>The tool basically takes the RSS feed URL of a blog and creates an extension using that feed. The tool supports Firefox, Chrome, Safari and IE. It creates a simple dialog box interface containing feeds of your blog posts. Whenever a new post is updated on your blog, the extension shows a notification (See picture below).</p>
<p><img class="aligncenter" title="Create own extension" src="http://www.techmonk.com/postimg/create_own_extension.png" alt="create_own_extension" width="444" height="101" /></p>
<p>The extension has an option to bookmark posts too. Also, if a blog has more than one feed, you can select only the feeds you want, from the &#8220;Options&#8221; tab.</p>
<p><img class="aligncenter" title="create own extension 2" src="http://www.techmonk.com/postimg/create_own_extension_2.png" alt="create_own_extension_2" width="515" height="533" /></p>
<p>&nbsp;</p>
<p>If you want anymore information about this tool, visit their <a title="Extension Factory FAQ" href="http://www.techmonk.com/search-for-text-in-compressed-files-duplicate-files/1038/" target="_blank">FAQ</a> here.</p>
<p>Don&#8217;t you think getting feeds of your favorite blog right on your browser would be great? So, IMHO this a simple yet good tool. What do you think about this tool? Would you use it for your blog? Or how would you use it? Drop in your comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/create-extension-of-any-blog-for-any-browser/1058/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upload/Download Files To and Across your Social Networks from Desktop</title>
		<link>http://www.techmonk.com/uploaddownload-files-to-and-across-your-social-networks-from-desktop/1022/</link>
		<comments>http://www.techmonk.com/uploaddownload-files-to-and-across-your-social-networks-from-desktop/1022/#comments</comments>
		<pubDate>Mon, 08 Aug 2011 15:55:57 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=1022</guid>
		<description><![CDATA[It is the age of Cloud computing. People edit and save most of their work online, in the cloud these days. But, that doesn't mean that we would stop using our local storage. We still use our local storage as backup always. So, if you are a person, who stores a lot of data online on different social networks and other file sharing sites, then Social Folders is an excellent tool to use]]></description>
			<content:encoded><![CDATA[<p>It is the age of Cloud computing. People edit and save most of their work online, in the cloud these days.</p>
<p>However, if you look back a few years, then you would see a thick division between the online computing and the local computing. But, with the popularity of social networking sites increasing everyday and also the Cloud Computing technology evolving day by day, the line that divided the online computing world from the local computing world is diminishing very quickly.</p>
<p>But, that doesn&#8217;t mean that we would stop using our local storage. We still use our local storage as backup always. So, if you are a person, who stores a lot of data online on different social networks and other file sharing sites, then Social Folders is an excellent tool to use.</p>
<p>Be Social. Stay Local &#8211; is the aim/motto of the creator of Social Folders. This tool acts like a bridge between the Online world and the local world of computing that I talked above.</p>
<p>If you upload your photos to Facebook, or videos to Youtube or your documents to Google Docs very frequently, then this tool is a boon for you. Even after uploading your files online, you still keep them offline, i.e. on your local computer. So, why not do both the things at the same time? Social Folder lets you do exactly that!</p>
<p>In simple words, this tool lets you upload files to different sites from windows explorer. This tool is currently in private beta. So, you need to ask for an invite by giving you email id on<a title="Social Folders" href="http://socialfolders.me" target="_blank"> their website</a>. I got an invite in a very short time. So, I think even you will get one, if you are early enough to grab it. After you have got the invitation, you will be directed to a page where it asks you to download Social Folders setup file on your desktop. Download it. A 5MB file.</p>
<p>Now, install the Social Folders on your desktop through the setup. That&#8217;s it. The installation process is done. Now, you will be directed to your account online. Here, you need to add different websites that you want to sync locally. Click on &#8220;Connect to new Website&#8221; and select a website. It currently supports most of the major websites like Flickr, Google Docs, Instagram, Photobucket, Picasa and Youtube.</p>
<p style="text-align: center;"><a href="http://www.techmonk.com/postimg/social_folders_connect.png" rel="lightbox"><img class="aligncenter" title="Social folders connect" src="http://www.techmonk.com/postimg/social_folders_connect.png" alt="social_folders_connect" width="501" height="315" /></a></p>
<p>Connect to the websites and now you can start uploading or downloading files.</p>
<p>You can download files from your account onto the desktop (in a folder called Social Folders, automatically created) from your online account. Also, uploading files is a piece of cake! Just paste the files into the Social Folders folder and refresh. It will automatically upload it to your account online. Simple, isn&#8217;t it?</p>
<p style="text-align: center;"><a href="http://www.techmonk.com/postimg/social_folders_desktop.png" rel="lightbox"><img class="aligncenter" title="social folders desktop" src="http://www.techmonk.com/postimg/social_folders_desktop.png" alt="social_folders_desktop" width="501" height="321" /></a></p>
<p>And also, by the way, just out of curiosity, I tried to upload some unsupported files into Facebook, and refreshed. It didn&#8217;t get uploaded. Nice.</p>
<p>Also, if you edit a file and refresh, it will upload the edited file again.</p>
<p>You can also transfer files across different sites, by just copying and pasting the files into the respective folders. For example, if you want to upload the images, from Picasa to Facebook then just copy and paste those photos from Picasa folder into the Facebook folder.</p>
<p>Maybe, I have left out some of the features, but you will know about it as you use it. Alright, concluding this with my opinion, I would say this tool will go a long way. I have liked every feature and also the idea behind this tool and the whole concept <strong>Be Social. Stay Local</strong> &#8211; is awesome. Hats off to the <a title="Blog Social Folders" href="http://blog.socialfolders.me" target="_blank">creator</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/uploaddownload-files-to-and-across-your-social-networks-from-desktop/1022/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Free Tech Books Giveaway Every Month! (Free Shipping too)</title>
		<link>http://www.techmonk.com/free-tech-books-giveaway-every-month/806/</link>
		<comments>http://www.techmonk.com/free-tech-books-giveaway-every-month/806/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 12:14:38 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[books giveaway]]></category>
		<category><![CDATA[giveaway]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=806</guid>
		<description><![CDATA[101 Free Tech Books is a website that gives away free tech books every month. Check out how to enter into the giveaway and how to increase your chances of winning, in this post!]]></description>
			<content:encoded><![CDATA[<p>If you remember, I had earlier reviewed a website (GiveawayOfTheDay), which gives away<a href="http://www.techmonk.com/get-licensed-legal-softwares-daily-for-free/770/" target="_blank"> free software everyday</a>. In a similar way there is another site which gives away books for free every month.</p>
<p><img class="aligncenter" title="Free Tech Books Giveaway" src="http://techmonk.com/postimg/tech_books_giveaway.png" alt="free_tech_books_giveaway" width="538" height="245" /></p>
<p><a href="http://www.101ftb.com/T00Q70S121" target="_blank">101 Free Tech Books</a> is a website which, as the name itself suggests gives away free books <strong>related to computer and technology</strong> every month. It&#8217;s a 100% free giveaway as <strong>they take care of even the shipping charges</strong>. So, you just should have enough luck to win a free tech book, and you will get a book, for free effortlessly. You can increase the odds of you, winning this book by referring the site to your friends through different media (like I am doing right now). Please check out other details about this site <a href="http://techie-buzz.com/did-you-know/dyk-thursday-101-free-tech-books-giveaway-every-month.html?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+techiebuzz+%28Techie+buzz%29&amp;utm_content=Google+Reader" target="_blank">here</a>.</p>
<p>Don&#8217;t forget to share this with your friends! Go to <a href="http://www.101ftb.com/T00Q70S121" target="_blank">101 Free Tech Books<br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/free-tech-books-giveaway-every-month/806/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Celebrates Vancouver 2010 Winter Olympics By Its New Doodle</title>
		<link>http://www.techmonk.com/google-celebrates-vancouver-2010-winter-olympics-by-its-new-doodle/703/</link>
		<comments>http://www.techmonk.com/google-celebrates-vancouver-2010-winter-olympics-by-its-new-doodle/703/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 16:41:11 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[general]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google doodle]]></category>
		<category><![CDATA[interent]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=703</guid>
		<description><![CDATA[Google's new doodle for the Vancouver Winter Olympics ]]></description>
			<content:encoded><![CDATA[<p>As you all know Google celebrates many big events by changing its logo. Today, Google has changed its logo to a different one which has a diver in his diving suit. Save this logo onto your desktop if you liked it!</p>
<div class="wp-caption aligncenter" style="width: 557px"><a href="http://www.techmonk.com/postimg/olympics10-skeleton-hp.png"><img title="Vancouver Olympics Doodle" src="http://www.techmonk.com/postimg/olympics10-skeleton-hp.png" alt="Vancouver_Olympics_Doodle" width="547" height="170" /></a><p class="wp-caption-text">The new doodle for winter Olympics from Google</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/google-celebrates-vancouver-2010-winter-olympics-by-its-new-doodle/703/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s Real Time Search Increases Twitter Traffic By 9%</title>
		<link>http://www.techmonk.com/googles-real-time-search-increases-twitter-traffic-by-9/696/</link>
		<comments>http://www.techmonk.com/googles-real-time-search-increases-twitter-traffic-by-9/696/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 14:40:24 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[interent]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=696</guid>
		<description><![CDATA[Google's real time search has increased the Twitter traffic to a certain extent. Research says that there has been a 9% increase in the traffic after the release of Google Real Time search]]></description>
			<content:encoded><![CDATA[<p>Google very recently launched real-time search which included Twitter tweets about the hot news that was going on. A research by <a href="http://digital.venturebeat.com/2010/02/18/twitter-traffic-google-real-time/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+Venturebeat+(VentureBeat)&amp;utm_content=Twitter" target="_blank">Digital Beat</a> on this new integration has revealed that there has been a increase of traffic for the social networking site, Twitter.</p>
<div class="wp-caption aligncenter" style="width: 468px"><img title="ComScore Graph Analysis" src="http://www.techmonk.com/postimg/comscore_twitter_traffic.png" alt="comscore_analysis" width="458" height="265" /><p class="wp-caption-text">comScore: Graph analyses the traffic</p></div>
<p>The statistics from ComScore show that there has been a little increase in traffic than the normal traffic that the social networking site was getting usually. In January this year, Twitter got 21.79 million unique visitors which was pretty much higher than that of 21.25 million visitors (calculated on July 2009). There was a 3.1 percent increase in the traffic, in December when compared with the traffic in the previous month. So, the real time search which was introduced on December 7 has caused a great impact on Twitter&#8217;s traffic.</p>
<p style="text-align: center;"><img class="  aligncenter" title="Experian Hitwise Data" src="http://www.techmonk.com/postimg/Experian%20hitwise.jpg" alt="Experian_Hitwise_Data" /></p>
<p>Experian Hitwise collects some data on this aspect. The graph above shows the increase in the traffic that is driven to Twitter through Google. There has been a 9% increase in the traffic that Twitter got from Google in the time period of December 5th to February 13th.</p>
<p><a href="http://digital.venturebeat.com/2010/02/18/twitter-traffic-google-real-time/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed:+Venturebeat+(VentureBeat)&amp;utm_content=Twitter" target="_blank">[Image Source]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/googles-real-time-search-increases-twitter-traffic-by-9/696/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Search Engine To Find People &#8211; Whoozy</title>
		<link>http://www.techmonk.com/a-search-engine-to-find-people-whoozy/691/</link>
		<comments>http://www.techmonk.com/a-search-engine-to-find-people-whoozy/691/#comments</comments>
		<pubDate>Wed, 17 Feb 2010 12:51:18 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engines]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=691</guid>
		<description><![CDATA[Ever tried to search for a person online with his name and didn't find success? Then, Whoozy is for you! Whoozy is a search engine meant for finding people online. You are sure to find the person you are searching for with Whoozy's systematic search. Check out!]]></description>
			<content:encoded><![CDATA[<div id="_mcePaste">
<div id="_mcePaste">Whoozy is a search engine that helps us to to search for any person and information about him available online just by his/her name. Whoozy offers a systematic search to find people right from social networks to blogs easily.</div>
<div></div>
<div id="_mcePaste">It offers you a step-wise search options:  <strong>Social Networks&gt;&gt; Search Engines&gt;&gt; Photos/Video/Audio&gt;&gt; Personal</strong>. You have to enter the name of the person you want to know about and click on the &#8220;search&#8221; button. From there, your journey starts.</div>
<div></div>
<div>It first shows you all the <a href="http://www.techmonk.com/check-availability-of-usernames-in-the-social-bookmarking-and-other-sites-under-one-roof/48/" target="_self">social networks</a> that have the name you entered along with their respective profile photographs. It searched from almost all the popular social networks like FaceBook, <a href="http://www.techmonk.com/tweet-more-than-140-characters-using-twittercontd/41/" target="_self">Twitter</a>, LinkedIn and many more. You can also choose more networking sites from the &#8220;Settings&#8221; option.</div>
<div></div>
<div><img class="aligncenter" title="whoozy social search" src="http://www.techmonk.com/postimg/whoozy_social_network.png" alt="whoozy social search" width="580" height="400" /></div>
<div id="_mcePaste"></div>
<div>You are most likely to find the person you are searching for from the above search as most of the people use social networking. Even if not, you can continue your search to the next step. Whoozy, next, shows the search results of various <a href="http://www.techmonk.com/tweak-bing-search-engine-to-get-effective-search-results/56/" target="_self">search engines</a> like Yahoo!, Google, Bing, Google News and from different blogs. You can go through the search results and click on those links, that you get a hunch on.</div>
<div></div>
<div id="_mcePaste"><img class="aligncenter" title="whozzy search engine search" src="http://www.techmonk.com/postimg/whoozy_search_engines.png" alt="whoozy_search_engine_search" width="580" height="400" /></div>
<div id="_mcePaste"></div>
<div>If you did not find the one you wanted even now or have a doubt whether you found the right person, you can jump on to the &#8220;Photos/Video/Audio&#8221; search, where you will find results from Google Images, Flickr and <a href="http://www.techmonk.com/how-to-get-turn-off-lights-on-every-youtube-video/544/" target="_self">Youtube</a>. You can confirm with the photos or videos whether you have found the right person!</div>
<div></div>
<p>Also Read: <span style="line-height: 18px; font-size: 12px;"><span style="color: #000000;"><a href="http://www.techmonk.com/tools-that-helps-you-to-tweet-from-gtalk/672/" target="_blank">5 Tools That Help You To Tweet From Gtal</a></span><span style="color: #000000;"><a href="http://www.techmonk.com/tools-that-helps-you-to-tweet-from-gtalk/672/" target="_blank">k</a></span></span></p>
<div><span style="line-height: 18px; font-size: 12px;"><span style="color: #000000;"><br />
</span></span></div>
<div id="_mcePaste"><img class="aligncenter" title="whoozy photo search" src="http://www.techmonk.com/postimg/whoozy_photo_search.png" alt="whoozy_photo_search" width="580" height="400" /></div>
<div id="_mcePaste"></div>
<div>What would you do after finding the right person? You would definitely try to contact him/her or at least note down some of his/her personal information such as email-address, telephone number etc. The &#8220;Personal&#8221; tab lets you do that! You can find out facts about that person, his documents, his email address or tags that are associated with him/her online.</div>
<div></div>
<div><img class="aligncenter" title="personal info" src="http://www.techmonk.com/postimg/whoozy_personal_info.png" alt="personal_information_search" width="580" height="400" /></div>
</div>
<div></div>
<div>So, that completes the search! Go ahead and try <a href="http://www.whoozy.com" target="_blank">Whoozy</a>!</div>
<div></div>
<div>You have everything you wanted about a person with just a single click. What do you think about Whoozy? Do you think it is helpful? Or you think you can do this with Google itself? Share your thoughts through comments.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/a-search-engine-to-find-people-whoozy/691/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Zip Your Files Online With FileTac</title>
		<link>http://www.techmonk.com/zip-your-files-online-with-filetac/623/</link>
		<comments>http://www.techmonk.com/zip-your-files-online-with-filetac/623/#comments</comments>
		<pubDate>Thu, 24 Dec 2009 09:44:02 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Tools & Tutorials]]></category>
		<category><![CDATA[interent]]></category>
		<category><![CDATA[internet tools]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=623</guid>
		<description><![CDATA[While working at office, you are not at your freedom to download new applications onto the system. However, many a times you might have to zip files. In such situations, Filetac can help you]]></description>
			<content:encoded><![CDATA[<p>While working at office, you are not at your freedom to download new applications onto the system. However, many a times you might have to zip files. In such situations, Filetac can help you.</p>
<p><a href="http://zip.filetac.com/" target="_blank">Filetac.com</a> is a online tool which helps  you to convert any uploaded file into .zip file. With this online tool in hand, there is no need of downloading any other converter to convert your files. The user-interface is also pretty simple to use. All you have to do is,</p>
<ol>
<li>Add the files you want it to convert into .zip format.</li>
<li>After you upload them, click on &#8220;Compress&#8221;.</li>
<li>Download the .zip file that is obtained.</li>
</ol>
<p><img class="aligncenter" src="http://techmonk.com/postimg/zip_files_online.png" alt="zip_files_online" width="563" height="473" /></p>
<p>That sounds simple, isn&#8217;t it? However, this tool has a small disadvantage. You can add only files. A complete folder cannot be added due to the size restrictions.[Max upload: 10MB]</p>
<p>Overall, this tool is pretty handy while you are at your office work, or literally anywhere.</p>
<p>Recommended reading: <a href="http://www.techmonk.com/send-small-files-upto-about-250-350mb-online-within-minutes/40/" target="_blank">Send Files Online Using PipeBytes</a></p>
<p>Via [<a href="http://www.sitestouse.com/zip-filetac-com-zip-files-online/" target="_blank">Sites To Use</a>]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/zip-your-files-online-with-filetac/623/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How To Merge Multiple Feeds Into A Single Feed</title>
		<link>http://www.techmonk.com/how-to-combine-multiple-feeds/594/</link>
		<comments>http://www.techmonk.com/how-to-combine-multiple-feeds/594/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 17:38:50 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[feeds]]></category>
		<category><![CDATA[interent]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[tweak]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=594</guid>
		<description><![CDATA[In this post I have discussed a very neat trick to merge multiple RSS feeds into a single RSS feed. This can be useful in numerous ways. Check out what are its uses and how to do it inside this post!]]></description>
			<content:encoded><![CDATA[<p>Feeds are a great source of information. Many of us subscribe to new and interesting feeds everyday to be updated with information. However, all the feeds will not be equally interesting. Some may be less interesting when compared to some others. So, it becomes difficult to maintain the feeds as they increase in your reader. Today, I have brought you people a simple trick, that can help you combine two or more feeds into a single feed.</p>
<p>Before proceeding to the procedure of how to combine/merge two or more RSS feeds let me explain where and how can this be helpful.</p>
<ul>
<li>As I said in the above paragraph, this trick might be helpful in categorizing interesting feeds and non-interesting feeds, or rather less interesting feeds.</li>
<li>Suppose you have a few really informative sites that you never want to miss. In such a case, you can merge multiple feeds under the name like &#8220;My Favorite Feeds&#8221;.</li>
<li>Categorizing the feeds based on different subjects. Suppose you have feeds related to different fields. In that case, you can combine multiple feeds based on the subjects the feed contains.</li>
</ul>
<p>I hope you got an idea of how this trick can be helpful to you.</p>
<h3>Procedure</h3>
<p>To be frank, I found this trick while I was working with Yahoo! Pipes. People who don&#8217;t know about <a id="aptureLink_HyODgA3ZN6" href="http://en.wikipedia.org/wiki/Yahoo%21%20Pipes">Yahoo! Pipes</a> can refer to the Wikipedia article linked. (Hover the mouse over Yahoo! Pipes)</p>
<ol>
<li>After signing in, you get a dashboard type screen where you can work on your project.</li>
<li>Click on &#8220;Sources&#8221; in the top-left corner.</li>
<li>Drag and drop the module &#8220;Fetch Site Feed&#8221;. The number of modules depends of number of site feeds that you want to merge into a single feed. I am explaining with three sites here.</li>
<li>After adding the modules, enter the site addresses of all the sites. <strong>[Note: You need to enter the site address and not the feed address]</strong></li>
<li>Now, you need to use an operator to combine all the feeds. This is the &#8220;Union&#8221; operator. To use this, go to the operator tab and drag &#8220;Union&#8221; module to the dashboard.</li>
<li>Now, pipe all the &#8220;Fetch Site Feed&#8221; modules with the &#8220;Union&#8221; button. [Refer the pic below]
<p style="text-align: center;"><a href="http://www.techmonk.com/wp-content/uploads/2009/12/multiple_rss_feeds_union.png"><img class="size-medium wp-image-595 aligncenter" title="multiple_rss_feeds_union" src="http://www.techmonk.com/wp-content/uploads/2009/12/multiple_rss_feeds_union-580x335.png" alt="multiple_rss_feeds_union" width="535" height="335" /></a></p>
</li>
<li>After you do this, you need to create the RSS feed. So you have to add &#8220;Create RSS feed&#8221; module. To add this, again go to the &#8220;Operators&#8221; tab and drag &#8220;Create RSS Feed&#8221; module.</li>
<li>Select the suitable preferences and connect the lower end of this module with result. The upper terminal should be connected to the &#8220;Union&#8221; operator.
<p style="text-align: center;"><a href="http://www.techmonk.com/wp-content/uploads/2009/12/multiple_rss_feeds_result.png"><img class="size-medium wp-image-596 aligncenter" title="multiple_rss_feeds_result" src="http://www.techmonk.com/wp-content/uploads/2009/12/multiple_rss_feeds_result-580x346.png" alt="multiple_rss_feeds_result" width="535" height="346" /></a></p>
</li>
<li>That&#8217;s it. Now save the pipe and run it!</li>
<li>You can even subscribe to that feed in your reader. You need to add the resulting pipe URL in your RSS feed reader.</li>
</ol>
<p>Any doubts regarding the tutorial can be discussed below in the comments. Do leave feedback through comments. They are valuable to me!</p>
<p>I hope you loved this tutorial. For more tutorials, tips and tricks subscribe to my RSS feed here!</p>
<h3>SEO I Did To This Post</h3>
<p><strong>SEO Title: Combine Feeds | FeedBurner Combine Multiple RSS Feeds | Using Yahoo Pipes</strong></p>
<p>I used Google Insights for search that I had discussed about in my <a id="aptureLink_WVsdTrVW3A" href="../quick-launch-your-applications-with-mouse-extender/576/">previous post</a> here. Found that keywords like &#8220;FeedBurner&#8221; had more popularity, so just used it in the title.</p>
<p><strong>SEO Excerpt: Here is a simple trick to combine different RSS feeds into a single RSS feed. Merging multiple RSS feeds helps you in many ways.</strong></p>
<p>If you observe a little deeper, I have used to keywords. &#8220;Merging&#8221; and &#8220;Combining&#8221;. So, both types should get attracted.</p>
<p><strong>SEO Tags: feedburner combine multiple rss feeds, combine multiple rss feeds, multiple rss feeds combination</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/how-to-combine-multiple-feeds/594/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>GetaFixx- Contact Experts And Solve Your problems In A Jiffy!</title>
		<link>http://www.techmonk.com/getafixx-contact-experts-and-solve-your-problems-in-a-jiffy/566/</link>
		<comments>http://www.techmonk.com/getafixx-contact-experts-and-solve-your-problems-in-a-jiffy/566/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 17:18:05 +0000</pubDate>
		<dc:creator>Pramodh KP</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[gtalk]]></category>
		<category><![CDATA[interent]]></category>
		<category><![CDATA[problems]]></category>
		<category><![CDATA[solutions]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.techmonk.com/?p=566</guid>
		<description><![CDATA[It is pretty boring and hard to search for experts to get a solution ot our problems online. Wouldn't it be nice if you could get your problems be solved by experts any time?  Today, I am going to introduce you to a really useful and intelligent bot that could help you to get your problems solved through experts of any field in a jiffy!]]></description>
			<content:encoded><![CDATA[<p>It is pretty boring and hard to search for experts to get a solution ot our problems online. Wouldn&#8217;t it be nice if you could get your problems be solved by experts any time?  Today, I am going to introduce you to a really useful and intelligent bot that could help you to get your problems solved through experts of any field in a jiffy! <a href="http://www.techmonk.com/wp-content/uploads/2009/12/voice_tap_getafixx.png"><img class="alignright size-full wp-image-567" title="voice_tap_getafixx" src="http://www.techmonk.com/wp-content/uploads/2009/12/voice_tap_getafixx.png" alt="voice_tap_getafixx" width="261" height="95" /></a></p>
<p>Getafixx is a gtalk/gmail bot that helps you to find experts in any field. It connects you to experts in various fields, so that you could clarify your doubts with them. To connect with them, this is what you have to do.</p>
<p>Add this bot to your Gtalk contact list.</p>
<blockquote><p><strong>getafixx@voicetap.in</strong></p></blockquote>
<p>After adding this bot, just ping once and it will guide you through the remaining process. A recent post at <strong>Tech Bangalore</strong> has written a detailed conversation between the bot and the user. <a href="http://www.techbangalore.com/getafixx-a-very-innovative-way-to-connect-to-the-expert-knowledge/" target="_blank">Check that here.</a> The interesting feature here is that the creators of this bot have made even the registration of your account through pings!</p>
<p>In this post, I would like to deal about some of the technical aspects about this bot. After your registration is successful, it asks you to enter the topic you would like to contact the experts for. You have to enter the desired subject preceded by &#8220;Search&#8221;.</p>
<p>After doing so, the bot will search for experts online and give a unique ID for you to ping the expert. First, you need to connect to the expert by using this syntax, <strong>connect @Unique ID</strong>. Now, you will be connected to the expert. You can discuss about your doubts with the experts and end the chat.</p>
<h3><span style="text-decoration: underline;">You too can become an expert!</span></h3>
<p>Yes, if you want to help other people and show off your expertise in any field, you can even become an expert. To do this, you need to use this syntax, <strong>Expert &lt;Your expertised categories&gt;</strong>. That&#8217;s it.</p>
<p>Here are some commands that could help you while using this bot.</p>
<p><span id=":wb" dir="ltr">- To search, type <strong>search</strong> [your query] (Example: search IIT)<br />
- To speak directly with the expert (if you know his unique ID) type <strong>connect</strong> @[unique id] (Example: connect @5)<br />
- If you want to allow / disallow any details from going to the expert, please type <strong>details</strong> followed by Y / N<br />
- To change your expert categories at any time, please type <strong>expert</strong>.<br />
- To view experts currently online, please type <strong>online</strong>.</span></p>
<div>Here is the official website of this bot: <a href="http://voicetap.in/index.php" target="_blank">Voicetap</a></div>
<div>
<h3>SEO I Did To This Post</h3>
</div>
<div><strong>SEO Title: Contact Experts, Solve Computer Problems, Get Answers, Gtalk Bots | Gmail Tricks</strong></div>
<div><strong><br />
</strong></div>
<div>As, you can see this is a perfectly keyword oriented title. Posts like these don&#8217;t get search engine traffic even though they have good content. However, if you could tweak your titles in a way, you could drive in some! Like, I have used extra keywords like &#8220;Gmail Tricks&#8221;,&#8221; Computer Problems&#8221; and so on.</div>
<div><span style="text-decoration: underline;"><strong>A Quick Tip</strong></span>: If you want to view the SEO Title of any post on any blog, all you have to do is look at the Title bar of your browser. That is what is the SEO title. Now, if you look at the title bar, you will see the same title as I have written above.</div>
<div><strong>SEO Excerpt:Here is a tool that helps you in contacting experts in any field through Gmail. The bot helps you to get solutions to various problems you have.</strong></div>
<div>A normal excerpt with keywords.</div>
<div><strong>SEO Tags: computer problems, experts in computer, experts for solving problems online,</strong></div>
<div>
<div>
<div></div>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.techmonk.com/getafixx-contact-experts-and-solve-your-problems-in-a-jiffy/566/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

