<?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 With Ric &#187; Google</title>
	<atom:link href="http://techwithric.com/tag/google/feed" rel="self" type="application/rss+xml" />
	<link>http://techwithric.com</link>
	<description>Nothing else but tech!</description>
	<lastBuildDate>Thu, 02 Feb 2012 14:25:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Most Efficient Way of Including jQuery in your WordPress Theme</title>
		<link>http://techwithric.com/most-efficient-way-of-including-jquery-in-your-wordpress-theme</link>
		<comments>http://techwithric.com/most-efficient-way-of-including-jquery-in-your-wordpress-theme#comments</comments>
		<pubDate>Wed, 02 Jun 2010 16:09:46 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[ajax wordpres area]]></category>
		<category><![CDATA[ajaz]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[contact fomr 7 ajax not work wordpress]]></category>
		<category><![CDATA[disable include jquery wordpress]]></category>
		<category><![CDATA[fast]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[how to load wordpress template files with jquery]]></category>
		<category><![CDATA[including jquery]]></category>
		<category><![CDATA[including jquery wordpress]]></category>
		<category><![CDATA[including scripts in wordpress theme functions file]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[jquery load wordpress]]></category>
		<category><![CDATA[jquery wordpress prevent including multiple times]]></category>
		<category><![CDATA[most efficient themes in wordpress]]></category>
		<category><![CDATA[smart jquery inclusion]]></category>
		<category><![CDATA[smart jquery inclusion wordpress]]></category>
		<category><![CDATA[smart jquery inclusion wp]]></category>
		<category><![CDATA[Speed Wordpress Up]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[wordpress ajax execute theme function]]></category>
		<category><![CDATA[wordpress force jquery]]></category>
		<category><![CDATA[wordpress force jquery load]]></category>
		<category><![CDATA[wordpress jquery ajax page load]]></category>
		<category><![CDATA[wordpress jquery include file with get]]></category>
		<category><![CDATA[wordpress jquery speed]]></category>
		<category><![CDATA[wordpress smart jquery]]></category>
		<category><![CDATA[wordpress smart jquery inclusion]]></category>
		<category><![CDATA[wordpress theme jquery]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=665</guid>
		<description><![CDATA[WordPress by default comes bundled with the jQuery framework. You can find it in the wp-includes\js\jquery directory. Many themes use this framework extensively for various effects and widgets alike. Unless [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-666" title="wordpress_logo_3d" src="http://media.techwithric.com/img/wordpress_logo_3d.jpg" alt="wordpress_logo_3d" width="130" height="130" />WordPress by default comes bundled with the jQuery framework. You can find it in the wp-includes\js\jquery directory. Many themes use this framework extensively for various effects and widgets alike. Unless you are on a dedicated server or are using a CDN, chances are that jQuery takes a whole lot of time to load. The best way is to speed up this process is to include the jQuery library fomr the Google&#8217;s  Ajax Libraries API. Read on to learn how to include it in your theme.<span id="more-665"></span></p>
<p>Actually the method is quite simple. If your theme includes a direct jQuery call from the <strong>header.php</strong> (usually will be written like</p>
<blockquote><p>&lt;script type=&#8217;text/javascript&#8217; src=&#8217;http://domain-name.tld/wp-includes/js/jqueryjquery.min.js?ver=2.9.2&#8242;&gt;&lt;/script&gt;</p></blockquote>
<p>or something similar) just delete the line.</p>
<p>If your theme designer had adopted efficient programming practices, he would have used the <a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script" target="_blank">wp_enqueue_script()</a> function. It can be identified by going to your <strong>Theme Functions (functions.php) </strong>file of your theme.</p>
<p>Now to include the script from Google`s  Ajax Libraries API servers, just insert the following code into the <strong>Theme Functions (functions.php) </strong>file of your theme:</p>
<blockquote><p>// smart jquery inclusion<br />
if (!is_admin()) {<br />
wp_deregister_script(&#8216;jquery&#8217;);<br />
wp_register_script(&#8216;jquery&#8217;, (&#8220;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js&#8221;), false);<br />
wp_enqueue_script(&#8216;jquery&#8217;);<br />
}</p></blockquote>
<p>Once done, save the file and your done. To check if the change has occurred, load your blog&#8217;s home page (or any other page for that matter). Now press Ctrl+Shift+R to force refresh the page.</p>
<p>Now take a look at the page source (Ctrl+U or <strong>View</strong> =&gt; <strong>Source</strong>). If the following line appears, you have successfully included this hack into your wordpress blog:</p>
<blockquote><p>&lt;script type=&#8217;text/javascript&#8217; src=&#8217;http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js?ver=2.9.2&#8242;&gt;&lt;/script&gt;</p></blockquote>
<p>The advantage of this hack is that your page loading times will get faster and in lieu better!</p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/most-efficient-way-of-including-jquery-in-your-wordpress-theme/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Explore Google Maps in 3D</title>
		<link>http://techwithric.com/explore-google-maps-in-3d</link>
		<comments>http://techwithric.com/explore-google-maps-in-3d#comments</comments>
		<pubDate>Sat, 15 May 2010 11:13:15 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[3d]]></category>
		<category><![CDATA[earth]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google maps]]></category>
		<category><![CDATA[maps]]></category>
		<category><![CDATA[view]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=593</guid>
		<description><![CDATA[Google Maps, the ever so easy and user-friendly maps application allows user to view any place on earth from their browser, like an online atlas. You could visit some places [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="attachment wp-att-596" href="http://techwithric.com/explore-google-maps-in-3d/google_maps_logo_small_blue"><img class="size-full wp-image-596 alignleft" title="google_maps_logo_small_blue" src="http://media.techwithric.com/img/google_maps_logo_small_blue-e1273921840845.png" alt="google_maps_logo_small_blue" width="125" height="125" /></a>Google Maps, the ever so easy and user-friendly maps application allows user to view any place on earth from their browser, like an online atlas. You could visit some places at the street-level, explore historic places and also pay a visit to Mars. But now Google has released one more great feature, maps in 3D.<span id="more-593"></span></p>
<p>The new feature is called as Earth View. To enable it, first go to the <a href="http://maps.google.com/" target="_blank">Google Maps website</a>, click on the <strong>Earth</strong> button on the upper-right corner of the maps and if you haven&#8217;t done so already, download the Google Earth Plugin.</p>
<p style="text-align: center;"><a rel="attachment wp-att-595" href="http://techwithric.com/explore-google-maps-in-3d/google_map_plugin"><img class="size-full wp-image-595 aligncenter" title="Google_map_plugin" src="http://media.techwithric.com/img/Google_map_plugin.png" alt="Google_map_plugin" width="343" height="220" /></a></p>
<p>After that just select the <strong>Earth</strong> button, to enable the Earth Mode and surf in 3D!</p>
<p>Just view the following video to learn more about it:<br />
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube-nocookie.com/v/YHe3ag3i8v8&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube-nocookie.com/v/YHe3ag3i8v8&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>To check out the Google Maps Earth view, <a href="http://maps.google.com/earthview" target="_blank">click here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/explore-google-maps-in-3d/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is Google Buzz for You?</title>
		<link>http://techwithric.com/is-google-buzz-for-you</link>
		<comments>http://techwithric.com/is-google-buzz-for-you#comments</comments>
		<pubDate>Thu, 11 Feb 2010 08:55:40 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Google Buzz]]></category>
		<category><![CDATA[buzz]]></category>
		<category><![CDATA[for]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[is]]></category>
		<category><![CDATA[it]]></category>
		<category><![CDATA[way]]></category>
		<category><![CDATA[what]]></category>
		<category><![CDATA[you]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=442</guid>
		<description><![CDATA[Well over the past 2 days the online community has surely gone nuts about Google Buzz. Well what&#8217;s it exaclty? Wikipedia (yup, they&#8217;ve even got a wikipedia page up so [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-443" title="Google_Buzz_logo" src="http://media.techwithric.com/img/Google_Buzz_logo.png" alt="" width="200" height="48" />Well over the past 2 days the online community has surely gone nuts about Google Buzz. Well what&#8217;s it exaclty? Wikipedia (yup, they&#8217;ve even got a wikipedia page up so fast!) describes it as &#8216;..a social integration and messaging tool by Google, designed to integrate into the company&#8217;s web-based email program, Gmail. Shared links and messages show up in the user&#8217;s inbox.&#8217; But the question to be asked here is, &#8216;Is this thing for me?&#8217;<span id="more-442"></span></p>
<p>Much has been said about Google wanting more and more user data <em>et al</em>. With the advent of Gmail, Orkut, Voice, Wave and of course search, your online life literally belongs to Google!</p>
<p>But one thing that Google lacked was in making a social interaction system. Twitter and Facebook in their own rights proved how people can interact and discuss a great deal on a social wavelength.</p>
<p>So where does Google Buzz make the difference then? Yes you can follow others, you can get all their latest updates, share links, photos, videos etc., but so also on twitter, facebook, Yahoo meme etc.</p>
<p>The interesting twist that GB made was that to follow you, people must first access your Google profile. That sure is an interesting twist. Google, oh so desperately, was trying to promote public profiles, but who wanted it when they had Facebook?</p>
<p>Surely Google&#8217;s trump card lies in the fact that once a user enable&#8217;s his profile to be searched publicly, it&#8217;s a two way gain. The almost-perfect search could provide the profile&#8217;s of targeted individuals to perspective employers. This would make more and more people to join Buzz as well as Google profiles.</p>
<p>Also, its not a secret that Gmail is one of the most widely used web-based email apps. So why not interact socially with everyone, while checking your email?</p>
<p>View the official Google Buzz introduction video here:<br />
<object width="560" height="340"><param name="movie" value="http://www.youtube-nocookie.com/v/yi50KlsCBio&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube-nocookie.com/v/yi50KlsCBio&#038;hl=en_US&#038;fs=1&#038;rel=0&#038;hd=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object></p>
<p>This sure is gonna rock, what say? Follow me on buzz @<a href="http://www.google.com/profiles/sajan.richie" target="_blank">sajan.richie</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/is-google-buzz-for-you/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Blogger Offers Alternative for any Content that was Hosted on Google Pages</title>
		<link>http://techwithric.com/blogger-offers-alternative-for-any-content-that-was-hosted-on-google-pages</link>
		<comments>http://techwithric.com/blogger-offers-alternative-for-any-content-that-was-hosted-on-google-pages#comments</comments>
		<pubDate>Fri, 29 Jan 2010 16:21:02 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[alternatives blogger dashboard]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blogger alternative]]></category>
		<category><![CDATA[blogger, alternative templates]]></category>
		<category><![CDATA[bloggerhosting.appspot.com]]></category>
		<category><![CDATA[close]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[down]]></category>
		<category><![CDATA[googlepages alternative]]></category>
		<category><![CDATA[http://bloggerhosting.appspot.com]]></category>
		<category><![CDATA[migrate]]></category>
		<category><![CDATA[move]]></category>
		<category><![CDATA[pages]]></category>
		<category><![CDATA[publish blogspot blog via appspot site]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[shut]]></category>
		<category><![CDATA[template alternative blogger]]></category>
		<category><![CDATA[visit: http://www.thai-world.org]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=409</guid>
		<description><![CDATA[The imminent closing down of Google Pages might not be news, but the efforts that Google are taking in order that users get a smooth transition, once Google Pages closes down, is great! Firs there was the 'download all your content' campaign, and now it is offering blogger (blogspot) users a chance to backup all their scripts (or for that fact any references to googlepages) on to a new server @ bloggerhosting.appspot.com]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-414" title="blogger-logo" src="http://media.techwithric.com/img/blogger-logo.jpg" alt="" width="122" height="121" />The imminent closing down of Google Pages might not be news, but the efforts that Google are taking in order that users get a smooth transition, once Google Pages closes down, is great! Firs there was the &#8216;<a href="http://www.labnol.org/internet/export-files-from-google-pages-as-zip/8244/" target="_blank">download all your content</a>&#8216; campaign, and now it is offering blogger (blogspot) users a chance to backup all their scripts (or for that fact any references to googlepages) on to a new server @ bloggerhosting.appspot.com<span id="more-409"></span><br />
If your template makes any reference to google pages (like scripts or css), you would notice the message immediately once you log in to your blogger dashboard:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-410" title="blogger-move-message" src="http://media.techwithric.com/img/blogger-move-message.png" alt="" width="309" height="157" /></p>
<p>The message reads as follows:</p>
<blockquote><p>Update your templates</p>
<p>Your templates include links to files hosted on <a href="http://www.googlepages.com/">Google Page Creator</a>, a service  that is soon migrating to <a href="http://sites.google.com/">Google Sites</a>.  Do you want Blogger to update those links now? <a href="http://www.google.com/support/blogger/bin/answer.py?answer=165912">Learn  more</a></p></blockquote>
<p>There is a &#8216;<strong>Update and review</strong>&#8216; link at the bottom of the message. Once you click it the new domain,&#8217;bloggerhosting.appspot.com&#8217; would ask you to allow permissions to access your account. Just approve it.</p>
<p>Once done, you will be redirected to a page that will show all your blogs and check which one&#8217;s have references to googlepages (in their template.)</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-411" title="blogger-move" src="http://media.techwithric.com/img/blogger-move.png" alt="" width="615" height="239" /></p>
<p>If any of your blog has a reference to googlepages in it, just click on the &#8216;<strong>Update References &gt;&gt;</strong>&#8216; link. It will now ask you to download (and backup) your template.</p>
<p style="text-align: center;"><a href="http://media.techwithric.com/img/blogger-move-step1.png"><img class="aligncenter size-full wp-image-412" title="blogger-move-step1" src="http://media.techwithric.com/img/blogger-move-step1.png" alt="" width="352" height="161" /></a></p>
<p>After clicking on &#8216;<strong>Next</strong>&#8216;, all your references (like the scripts or css files or images) will be automatically uploaded to bloggerhosting.appspot.com. For eg. my script, that was previously hosted on http://myfreehouse2.googlepages.com/lightbox.js would now be moved to http://bloggerhosting.appspot.com/serve/myfreehouse2.googlepages.com/lightbox.js</p>
<p style="text-align: center;"><a href="http://media.techwithric.com/img/blogger-move-step2.png"><img class="aligncenter size-full wp-image-413" title="blogger-move-step2" src="http://media.techwithric.com/img/blogger-move-step2.png" alt="" width="347" height="136" /></a></p>
<p>Now all you need to do is click the &#8216;<strong>Update</strong>&#8216; button at the bottom, and your template will be modified with all the new links. Pretty neat!</p>
<p>So don&#8217;t wait much, as it seems the Google will now hurry up the closing of GP, and you wouldn&#8217;t want to lose any of your data, eh?</p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/blogger-offers-alternative-for-any-content-that-was-hosted-on-google-pages/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Browser Wars: Chrome Overtakes Safari</title>
		<link>http://techwithric.com/browser-wars-chrome-overtakes-safari</link>
		<comments>http://techwithric.com/browser-wars-chrome-overtakes-safari#comments</comments>
		<pubDate>Mon, 04 Jan 2010 04:31:36 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[browser-wars]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[safari]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=308</guid>
		<description><![CDATA[First post of the year on TWR, and any Google fanboy (including me!) would find this one like music to their ears. Taking into consideration the statistics for the last [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-thumbnail wp-image-317" title="safari-vs-other-browsers1" src="http://media.techwithric.com/img/safari-vs-other-browsers1-150x150.jpg" alt="" width="120" height="110" />First post of the year on TWR, and any Google fanboy (including me!) would find this one like music to their ears. Taking into consideration the statistics for the last three months (Oct &#8211; Dec 09, it appears that Chrome, from Google, has overtaken Apple&#8217;s Safari in the ever-competitive browser wars.<br />
<span id="more-308"></span><br />
A look into the <a href="http://gs.statcounter.com/#browser-ww-monthly-200910-200912-bar" target="_blank">global stats provided by statcounter</a> shows how Chrome has clearly overtaken  Safari:</p>
<p><img class="aligncenter size-full wp-image-311" title="Browser Stats" src="http://media.techwithric.com/img/s1.png" alt="Browser Stats" width="587" height="373" /></p>
<p>The (3rd) green bar indicates Chrome while the (4th) blackish one below it represents Safari. At the time of posting their share in the browser market was 4.78% and 3.54% respectively.</p>
<p>Another image, from <a href="http://theappleblog.com/2010/01/01/in-december-iphone-jumps-os-x-plateaus-safari-falls-to-chrome/">theappleblog</a> also states a similar story:</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-316" title="safarivschrome" src="http://media.techwithric.com/img/safarivschrome.png" alt="" width="580" height="363" /></p>
<p>One of the major reasons for this increase was that Chrome had been released for Mac, thereby stealing Apple&#8217;s monopoly in the Mac&#8217;s browser market. Also the coming-out-of-beta of Chrome for Linux has helped it. The newly released <a href="https://tools.google.com/chrome/intl/en/themes/index.html" target="_blank">themes</a> and <a href="https://chrome.google.com/extensions/" target="_blank">extensions</a> have also helped its cause. Last but not the least, it&#8217;s a Google product! <img src='http://techwithric.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>But all&#8217;s not bad for Apple. Their share in the mobile OS segment just got strengthened even more, with the iPhone OS increasing its <a href="http://theappleblog.com/2010/01/01/in-december-iphone-jumps-os-x-plateaus-safari-falls-to-chrome/" target="_blank">market share</a>.</p>
<p><span style="font-size: 75%;">Image Credits: <a href="http://crave.cnet.co.uk/software/0,39029471,49301219,00.htm" target="_blank">1st</a>, <a href="http://gs.statcounter.com/#browser-ww-monthly-200910-200912-bar" target="_blank">2nd</a>, <a href="http://theappleblog.com/2010/01/01/in-december-iphone-jumps-os-x-plateaus-safari-falls-to-chrome/" target="_blank">3rd</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/browser-wars-chrome-overtakes-safari/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Google URL shortener service Goo.gl from FireFox</title>
		<link>http://techwithric.com/use-google-url-shortener-service-goo-gl-from-firefox</link>
		<comments>http://techwithric.com/use-google-url-shortener-service-goo-gl-from-firefox#comments</comments>
		<pubDate>Sat, 19 Dec 2009 06:48:28 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[FireFox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[add]]></category>
		<category><![CDATA[ask url free shortener]]></category>
		<category><![CDATA[googl]]></category>
		<category><![CDATA[on]]></category>
		<category><![CDATA[shortner]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=239</guid>
		<description><![CDATA[Goo.gl&#8216;s URL shortener is hot property now! And why not, you get a good looking URL that is supported by none other than Google! The only official way of using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://Goo.gl/" target="_blank"><img class="alignleft size-full wp-image-264" title="googl" src="http://media.techwithric.com/img/googl-e1261225342199.png" alt="" width="200" height="67" />Goo.gl</a>&#8216;s URL shortener is hot property now! And why not, you get a good looking URL that is supported by none other than Google! The only official way of using it at the time of posting was using either it through feedburner or by using the Google toolbar. The feedburner option is for blogs only and wel, I&#8217;m not a big fan of toolbars. So here is a FireFox add-on for it!<span id="more-239"></span></p>
<p>The name of the add-on is goo.gl lite 1.0 by <a href="https://addons.mozilla.org/en-US/firefox/user/84432" target="_blank">Matthew Flaschen</a>. You can download the add-on via <a href="https://addons.mozilla.org/en-US/firefox/addon/55308" target="_blank">AFO, from here</a>.</p>
<h2>Usage:</h2>
<p>Well this is a slightly tricky part if you are especially a new FF user. After installing and restarting your browser, right click anywhere above the URL box (in the blank section). Now select the <strong><span style="text-decoration: underline;">C</span>ustomize</strong> option from the menu.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-266" title="customize" src="http://media.techwithric.com/img/customize.png" alt="" width="210" height="119" /></p>
<p>Now search for a logo like this: <img class="alignnone size-full wp-image-262" title="googllite" src="http://media.techwithric.com/img/googllite.png" alt="" width="24" height="23" />, and drag it anywhere you like. (eg. next to the search box.)</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-263" title="googllitesset" src="http://media.techwithric.com/img/googllitesset.png" alt="" width="267" height="54" /></p>
<p>That&#8217;s it. Now anytime you want to create a shortened Goo.gl URL of the current page, just click on that icon. The short URL will be created and copied to your clipboard. Just paste it anywhere you like!</p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/use-google-url-shortener-service-goo-gl-from-firefox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search Images by their Exact Size in Google Images</title>
		<link>http://techwithric.com/search-images-by-their-exact-size-in-google-images</link>
		<comments>http://techwithric.com/search-images-by-their-exact-size-in-google-images#comments</comments>
		<pubDate>Fri, 18 Dec 2009 11:13:53 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Google Images]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[exact]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google images exact size]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=232</guid>
		<description><![CDATA[Just wanted to slip in a quick tip. Google Images has certainly simplified life by allowing us to search for an image pretty easily. Certain parameters can be adjusted using [...]]]></description>
			<content:encoded><![CDATA[<p>Just wanted to slip in a quick tip. Google Images has certainly simplified life by allowing us to search for an image pretty easily. Certain parameters can be adjusted using the &#8216;<strong>Show Options</strong>&#8216;, from the toolbar below the search box. One option is for specifying the size of the image. They include Any size, Medium, Large, Icon, Larger than&#8230;and exactly.<span id="more-232"></span></p>
<p>Of course you could use the &#8216;exactly&#8217; option to search for the image, for an image to fit your exact size requirement. However an easier and faster method would be to just add the &#8216;imagesize:wxh&#8217; parameter to your search phrase, where w is the width and h is the height of the image.</p>
<p><strong>Example:</strong> <a href="http://images.google.co.in/images?hl=en&amp;client=firefox-a&amp;rls=org.mozilla%3Aen-US%3Aofficial&amp;tbo=1&amp;um=1&amp;sa=1&amp;q=imagesize%3A300x250+brad+pitt&amp;btnG=Search&amp;aq=&amp;oq=imagesize%3A300x250+brad+pit&amp;start=0&amp;imgtbs=z" target="_blank">imagesize:300&#215;250 brad pitt</a>, shows you images of brad pitt, with the image dimensions as 300 width and 250 height. Certainly save me a lot of time!</p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/search-images-by-their-exact-size-in-google-images/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Google-type Live Search Box Widget to your Blog</title>
		<link>http://techwithric.com/add-a-google-type-live-search-box-widget-to-your-blog</link>
		<comments>http://techwithric.com/add-a-google-type-live-search-box-widget-to-your-blog#comments</comments>
		<pubDate>Fri, 11 Dec 2009 17:20:33 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[google live search widget]]></category>
		<category><![CDATA[google search box widget]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[widget]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=163</guid>
		<description><![CDATA[Fancy Google&#8217;s live search box (the one where results suggestions appear below the textbox)? Now you can have the very same effect on your own blog. sikbox is a new [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-165 alignleft" title="logo_sikbox" src="http://media.techwithric.com/img/logo_sikbox.gif" alt="logo_sikbox" width="202" height="65" />Fancy Google&#8217;s live search box (the one where results suggestions appear below the textbox)? Now you can have the very same effect on your own blog. sikbox is a new service that allows you to add a similar live search box to your blog or website and it supports blogger, wordpress, joomla, drupal and pretty much any other type of a website.<span id="more-163"></span></p>
<p>Its very easy to add this search box to your site. In fact if you don&#8217;t prefer to install it directly and want to test it, just go to their site <a href="http://sikbox.com/" target="_blank">sikbox.com</a> and enter your blog&#8217;s address. There is a live preview search box, using which you can test the results. A live preview of makeuseof.com yielded the following results:</p>
<p><center><img class="size-full wp-image-164 aligncenter" title="Sikbox live preview" src="http://media.techwithric.com/img/sikbox-live-preview.png" alt="Sikbox live preview" width="427" height="566" /></center></p>
<p>To add the widget to your blog just go to <a href="http://sikbox.com/" target="_blank">http://sikbox.com/</a> and fill in the preview form. Then just click on the &#8216;Get the Code&#8217; button. Now you will be asked for your name and email. Fill it up and click on the &#8216;Customize and Generate Code&#8217; button. Now you can customize the search-box (actually you customize how the results appear) and then select the code generated below and add it to your blog.</p>
<h2>Advantages:</h2>
<ul>
<li>Free and fast</li>
<li>Ease of use, no complexity</li>
<li>Easy to install and use</li>
<li>No programming required</li>
<li>Extremely fast and lightweight</li>
<li>Fully customizable via skins or CSS</li>
<li>Image search support</li>
</ul>
<h2>Disadvantage:</h2>
<p>The only disadvantage that I found was that for the search results to appear properly, your site must be indexed by Yahoo. This is because the  widget uses Yahoo API to get the results. Otherwise its a great plugin</p>
<p>You can try it out by visiting <a href="http://sikbox.com/" target="_blank">sikbox.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/add-a-google-type-live-search-box-widget-to-your-blog/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>8 Ways to Implement Related Posts in Blogger</title>
		<link>http://techwithric.com/8-ways-to-implement-related-posts-in-blogger</link>
		<comments>http://techwithric.com/8-ways-to-implement-related-posts-in-blogger#comments</comments>
		<pubDate>Thu, 10 Dec 2009 16:35:40 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[add related post]]></category>
		<category><![CDATA[blogger related links]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[how to i refer to a previous post on blogger?]]></category>
		<category><![CDATA[how to put linkwithin below post footer]]></category>
		<category><![CDATA[how to put related post at blogger using jquery]]></category>
		<category><![CDATA[how to put related posts for blogger]]></category>
		<category><![CDATA[implement commentaries blogger]]></category>
		<category><![CDATA[implement related]]></category>
		<category><![CDATA[implement related articles]]></category>
		<category><![CDATA[linkwithin below post footer]]></category>
		<category><![CDATA[linkwithin shows above post footer]]></category>
		<category><![CDATA[place related posts above comments in blogger]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[read more]]></category>
		<category><![CDATA[related]]></category>
		<category><![CDATA[related article with picture script for blogger]]></category>
		<category><![CDATA[related links post footer on blogger]]></category>
		<category><![CDATA[related post]]></category>
		<category><![CDATA[way]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=141</guid>
		<description><![CDATA[Undoubtedly one of the most common as well as sure method of making your site&#8217;s visitors on your site is to implement a related posts solution to your blogger blog. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-152" title="related-blogger" src="http://media.techwithric.com/img/related-blogger.jpg" alt="related-blogger" width="122" height="121" />Undoubtedly one of the most common as well as sure method of making your site&#8217;s visitors on your site is to implement a related posts solution to your blogger blog. Although there are several methods available out there, many of them have gone obsolete or look crappy. Presenting to you 8 of the best methods to implement a related posts widget in your blogger blog. <span id="more-141"></span></p>
<p>The methods found here have been tested by me and are working. Note that I recommend the 6th, 7th and the 8th method, simply because they are so easy and yet so brilliant!</p>
<ul>
<li>
<h2>Related Posts for BlogSpot Bloggers Using jQuery</h2>
<p>Swashata, from<a href="http://www.intechgrity.com/" target="_blank"> intechgrity.com</a>, has posted a well-written and detailed tutorial of implementing the related posts system in a blogspot blog using jQuery.</p>
<p>You can read and refer to the tutorial at <a href="http://www.devilsworkshop.org/best-related-posts-hack-for-blogspot-bloggers-using-jquery/" target="_blank">devilsworkshop</a>, from <a href="http://www.devilsworkshop.org/best-related-posts-hack-for-blogspot-bloggers-using-jquery/" target="_blank">here</a>.</li>
<li>
<h2>3 Ways to implement related Posts from Mohamed Rias</h2>
<p>Okay, I&#8217;m cheating over here. Althought the post screams &#8217;8 Ways to implement&#8230;&#8217;, I&#8217;ve combined three methods into a single point. That&#8217;s because the original article is also a single post.</p>
<p>Mohamed Rias, in his blog <a href="http://www.techieblogger.com/" target="_blank">techieblogger</a>, has shown three methods to implement his version of the related posts. Although the framework and logic behind the related posts of this type is the same, the ways of implementation differ. It has been separated by being specified by method one, two and three.</p>
<p>Personally speaking, this was one of the best related posts solution that was available out there for quite some time. I myself used the third method for more than one year. You can refer to the guide from <a href="http://www.techieblogger.com/2008/08/related-posts-widget-for-blogger-bugs-fixed.html" target="_blank">here</a>.</li>
<li>
<h2>Google Related Links</h2>
<p>This is a relatively new entrant into the field of related posts for blogger. Many even don&#8217;t know of its existence, mostly because it is only invite-based for the moment.</p>
<p>As stated earlier, currently, only invited users can use Related Links. To apply for an invitation, please send an email to <a href="mailto:relatedlinks@google.com">relatedlinks@google.com</a> stating your Gmail address, website domains and approximate pageviews per day.</p>
<p>In the mean time you could try it out by filling out <a href="http://relatedlinks.googlelabs.com/config/demo">this</a> form</li>
<li>
<h2>Blogger Related Posts Service</h2>
<p>This is what I&#8217;m talking about. The easiest and most convenient method of implementing related posts in blogger. Its so simple, just follow the steps below:</p>
<p><strong>Step 1:</strong> Go to <strong>Layout</strong> =&gt; <strong>Edit HTML</strong> =&gt; <strong>Edit Template</strong><br />
<strong>Step 2:</strong> BACKUP your template! Do not skip this!<br />
<strong>Step 3:</strong> Check Expand Widget Templates, then find for a block like:<br />
<code><br />
&lt;div class="post-footer-line post-footer-line-3"&gt;...&lt;/div&gt;<br />
</code><br />
At the end of the &lt;/div&gt;, add the following line:<br />
<code><br />
&lt;div id="related_posts"&gt;<br />
</code><br />
so that the final product will look something like this:<br />
<code><br />
&lt;div class="post-footer-line post-footer-line-3"&gt;<br />
/*some code*/<br />
&lt;/div&gt;<br />
&lt;div id="related_posts"&gt;<br />
</code><br />
<strong>Step 5:</strong> Go to the end and search for &lt;/body&gt; and replace it with the following code:<br />
<code><br />
&lt;script src='http://www.google.com/jsapi'/&gt;&lt;script src='http://brps.appspot.com/brps.js' type='text/javascript'/&gt;&lt;/body&gt;<br />
</code></p>
<p>Alternatively you can just click on the button below:</p>
<form action="http://www.blogger.com/add-widget" method="post">
<div>
<input name="infoUrl" type="hidden" />
<input name="widget.title" type="hidden" /> <textarea id="widget_content" style="display: none;" name="widget.content"> &lt;script src=”http://www.google.com/jsapi”&gt;&lt;/script&gt; &lt;script src=”http://brps.appspot.com/brps.js” type=”text/javascript”&gt;&lt;/script&gt; &lt;div id=”related_posts”&gt;&lt;/div&gt; </textarea></p>
<input title="Add Related Posts Widget" alt="Add Related Posts Widget" src="http://brps.appspot.com/images/add2blogger_lg.gif" type="image" /></div>
</form>
<p>You can read more about it from <a href="http://code.google.com/p/brps/" target="_blank">here</a>.</li>
<li>
<h2>Related posts using jQuery + GData API</h2>
<p>Another great method that i found out was the one posted at <a href="http://www.moretechtips.net/2009/04/jquery-gdata-api-smarter-related-posts.html" target="_blank">moretechtips.net </a>. It&#8217;s simply a super and easy method to implement this widget. Just refer to<a href="http://www.moretechtips.net/2009/04/jquery-gdata-api-smarter-related-posts.html" target="_blank"> this tutorial</a>.</li>
<li>
<h2>Related Posts using LinkWithin</h2>
<p>This one is slightly different from the one&#8217;s posted above. All the above related posts show text links as related posts. However the LinkWithin widget shows an image from the related post as the link, as shown in the picture below (click on the image to view a larger version):</p>
<p style="text-align: center;"><a href="http://media.techwithric.com/img/linkwithin.png"><img class="size-medium wp-image-154 aligncenter" title="linkwithin" src="http://media.techwithric.com/img/linkwithin-300x78.png" alt="linkwithin" width="300" height="78" /></a></p>
<p>You can register at <a href="http://www.linkwithin.com/" target="_blank">their site</a>, and get the appropriate installation method. Go to <a href="http://www.linkwithin.com/" target="_blank">LinkWithin</a>.</li>
</ul>
<p>Hope you liked the post. If you&#8217;ve got any doubts, don&#8217;t hesitate to comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/8-ways-to-implement-related-posts-in-blogger/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Submit Your Blog&#8217;s Sitemap to Google, Yahoo, Bing and Ask</title>
		<link>http://techwithric.com/submit-your-blogs-sitemap-to-google-yahoo-bing-and-ask</link>
		<comments>http://techwithric.com/submit-your-blogs-sitemap-to-google-yahoo-bing-and-ask#comments</comments>
		<pubDate>Tue, 08 Dec 2009 14:12:10 +0000</pubDate>
		<dc:creator>Richie Sajan</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[add blog comments fun aspx notify me when new comments are added "fun"]]></category>
		<category><![CDATA[add blog comments on google aspx notify me when new comments are added -wordpress-pdf-php-html]]></category>
		<category><![CDATA[bing]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[blog sitemap address for bing webmaster]]></category>
		<category><![CDATA[Blogger]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[sitemap]]></category>
		<category><![CDATA[sitemap submit posts]]></category>
		<category><![CDATA[submit]]></category>
		<category><![CDATA[submit your blogs sitemap to google]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://techwithric.com/?p=98</guid>
		<description><![CDATA[If you had read my article,5 Tips for Newbie Bloggers, the last tip was to submit your sitemap to major search engines like Google, Yahoo, Bing and Ask.com. But what's the benefit? Well if your site is relatively young or new, it may take time for search engines to crawl your site and display your sites in search results. Submitting your sitemaps is one method of hurrying this process. So read on. ]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-101" title="search-engine-major" src="http://media.techwithric.com/img/search-engine-major.png" alt="search-engine-major" width="150" height="64" />If you had read my article,<a title="5 Tips for Newbie Bloggers" rel="bookmark" href="../5-tips-for-newbie-bloggers">5 Tips for Newbie Bloggers</a>, the last tip was to submit your sitemap to major search engines like Google, Yahoo, Bing and Ask.com. But what&#8217;s the benefit? Well if your site is relatively young or new, it may take time for search engines to crawl your site and display your sites in search results. Submitting your sitemaps is one method of hurrying this process. So read on.<span id="more-98"></span></p>
<p>The process of submitting your sitemap is quite simple. If you are a blogger user (blogger.com) the link to your sitemap would be your-blog-address.blogspotcom/atom.xml. For eg <a href="http://myfreehouse.blogspot.com/atom.xml" target="_blank">http://myfreehouse.blogspot.com/atom.xml</a></p>
<p>But theres one problem here. A standard sitemap must contain all the links in your blog. However if your blog is hosted on blogger, your sitemap will contain only the 26 most recent posts. But there is a simple workaround to this.</p>
<p>Suppose that your blog (taking an eg. myfreehouse.blogpsot.com) contains 200 posts. So for the first 100 you can use http://myfreehouse.blogspot.com/<strong>atom.xml?redirect=false&amp;start-index=1&amp;max-results=100</strong></p>
<p>For the next 100 you can use http://myfreehouse.blogspot.com/atom.xml?redirect=false&amp;start-index=<strong>100</strong>&amp;max-results=<strong>200</strong> and son on.</p>
<p>If you are a wordpress user you can just install the <a title="Google Sitemap Generator Plugin for WordPress" href="http://www.arnebrachhold.de/redir/sitemap-home/">Google Sitemap Generator Plugin for WordPress</a>. Your sitemap will be auto-generated at your-blog-address.com/sitemap.xml. For eg. <a href="http://techwithric.com/sitemap.xml" target="_blank">http://techwithric.com/sitemap.xml</a></p>
<h2>Submitting your sitemaps:</h2>
<p>So now to the main part Submitting your sitemaps. Just follow the following steps. Remember to <span style="color: #ff0000;"><span style="text-decoration: underline;">replace the text in red</span></span> with your sitemap&#8217;s address:</p>
<ul>
<li>
<h3>Google</h3>
<p>You can follow this tutorial to submit your sitemap to <a href="http://bloggerstop.net/2008/11/blogger-help-how-to-add-sitemap-to.html" target="_blank">Google</a>.</li>
<li>
<h3>Yahoo</h3>
<ol>
<li>http://search.yahooapis.com/SiteExplorerService/V1/updateNotification?appid=SitemapWriter&amp;url=<span style="color: #ff0000;">http://techwithric.com/sitemap.xml</span></li>
<li>http://search.yahooapis.com/SiteExplorerService/V1/ping?sitemap=<span style="color: #ff0000;">http://techwithric.com/sitemap.xml</span></li>
</ol>
</li>
<li>
<h3>Bing</h3>
<ol>
<li>http://www.bing.com/webmaster/ping.aspx?siteMap=<span style="color: #ff0000;">http://techwithric.com/sitemap.xml</span></li>
<li>http://webmaster.live.com/ping.aspx?siteMap=<span style="color: #ff0000;">http://techwithric.com/sitemap.xml</span></li>
</ol>
</li>
<li>
<h3>Ask</h3>
<p>http://submissions.ask.com/ping?sitemap=<span style="color: #ff0000;">http://techwithric.com/sitemap.xml</span></li>
</ul>
<p>If submit your sitempas to the major search engines, it is more likely that they will crawl your website more quickly. So do it! Hope you liked this tutorial. More to follow!</p>
]]></content:encoded>
			<wfw:commentRss>http://techwithric.com/submit-your-blogs-sitemap-to-google-yahoo-bing-and-ask/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

