<?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 Twitter</title>
	<atom:link href="http://www.techtwitter.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.techtwitter.com</link>
	<description>Technology blog for all</description>
	<lastBuildDate>Sun, 06 May 2012 10:44:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Key codes &#8211; arrow key right left &#8211; text box value</title>
		<link>http://www.techtwitter.com/key-codes-arrow-key-right-left-text-box-value/</link>
		<comments>http://www.techtwitter.com/key-codes-arrow-key-right-left-text-box-value/#comments</comments>
		<pubDate>Sun, 06 May 2012 10:41:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[javascript]]></category>
		<category><![CDATA[javascript key]]></category>
		<category><![CDATA[javascript key events]]></category>
		<category><![CDATA[javascript keycode]]></category>
		<category><![CDATA[javascript on key value increament]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=259</guid>
		<description><![CDATA[Created this snippet on one&#8217;s demands which refreshes my JavaScript knowledge. Using this snippet you can increase focus cursor in textbox and place 1 or 2 value to text box on pressing left right arrow keys. hope you all from google search will enjoy this post!]]></description>
			<content:encoded><![CDATA[<p>Created this snippet on one&#8217;s demands which refreshes my JavaScript knowledge.</p>
<p>Using this snippet you can increase focus cursor in textbox and place 1 or 2 value to text box on pressing left right arrow keys.</p>
<p><code><xmp></p>
<p><script type="text/javascript"></p>
<p>function test() {</p>
<p>alert("Hiii");
document.getElementById("val").focus();
}
function fk(){
//document.getElementById("val").focus();
}</p>
<p>function kc(eve){
if(eve.keyCode == 37 ) { document.getElementById("val").value = 1; }
else if (eve.keyCode == 39 ) { document.getElementById("val").value = 2; }
}</p>
<p></script></p>
<p><body onload="test();"></p>
<input type="text" value="0" id="val" name="pri" onkeyup="kc(event);"/>
<p></code><br />
</xmp></p>
<p>hope you all from google search will enjoy this post! </p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/key-codes-arrow-key-right-left-text-box-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 way Arduino traffic light</title>
		<link>http://www.techtwitter.com/4-way-arduino-traffic-light/</link>
		<comments>http://www.techtwitter.com/4-way-arduino-traffic-light/#comments</comments>
		<pubDate>Sat, 05 May 2012 05:24:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[softwares]]></category>
		<category><![CDATA[Arduino project]]></category>
		<category><![CDATA[Arduino traffic light]]></category>
		<category><![CDATA[DIY Arduino]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=255</guid>
		<description><![CDATA[Today i made 4 way Arduino traffic light. Its real world application with use of relay&#8217;s and high voltage bulbs as traffic lights. Here is the control circuit and sketch of this program. Sketch : /* 4 way traffic light controller with red and green signals. */ int count = 0; void setup() { // [...]]]></description>
			<content:encoded><![CDATA[<p>Today i made 4 way Arduino traffic light. Its real world application with use of relay&#8217;s and high voltage bulbs as traffic lights. Here is the control circuit and sketch of this program.</p>
<p><object style="height: 390px; width: 540px"><param name="movie" value="http://www.youtube.com/v/bMOV2NdrE7g?version=3&#038;feature=player_detailpage"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/bMOV2NdrE7g?version=3&#038;feature=player_detailpage" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="540" height="360"></object></p>
<p>Sketch : </p>
<p><code>/*<br />
4 way traffic light controller with red and green signals.</p>
<p> */</p>
<p>int count = 0; </p>
<p>void setup() {<br />
  // initialize the digital pin as an output.<br />
  // Pin 10, 11, 12, 13 has an LED connected on most Arduino boards:<br />
  pinMode(9, OUTPUT);<br />
  pinMode(10, OUTPUT);<br />
  pinMode(11, OUTPUT);<br />
  pinMode(12, OUTPUT);<br />
  pinMode(13, OUTPUT); </p>
<p>}</p>
<p>void loop() {</p>
<p>  if(count == 0) {<br />
  digitalWrite(10, HIGH);<br />
  digitalWrite(11, HIGH);<br />
  digitalWrite(12, HIGH);<br />
  digitalWrite(13, HIGH);<br />
  delay(500); // blink led for first time on!<br />
  digitalWrite(10, LOW);<br />
  digitalWrite(11, LOW);<br />
  digitalWrite(12, LOW);<br />
  digitalWrite(13, LOW);<br />
  delay(500); // blink led for first time on!<br />
  digitalWrite(10, HIGH);<br />
  digitalWrite(11, HIGH);<br />
  digitalWrite(12, HIGH);<br />
  digitalWrite(13, HIGH);<br />
  delay(500); // blink led for first time on!<br />
  digitalWrite(10, LOW);<br />
  digitalWrite(11, LOW);<br />
  digitalWrite(12, LOW);<br />
  digitalWrite(13, LOW);<br />
  delay(500); // blink led for first time on!<br />
  digitalWrite(10, HIGH);<br />
  digitalWrite(11, HIGH);<br />
  digitalWrite(12, HIGH);<br />
  digitalWrite(13, HIGH);<br />
  delay(500); // blink led for first time on!<br />
  digitalWrite(10, LOW);<br />
  digitalWrite(11, LOW);<br />
  digitalWrite(12, LOW);<br />
  digitalWrite(13, LOW);<br />
  delay(500); // blink led for first time on!<br />
  digitalWrite(10, HIGH);<br />
  digitalWrite(11, HIGH);<br />
  digitalWrite(12, HIGH);<br />
  digitalWrite(13, HIGH);<br />
  delay(500); // blink led for first time on!<br />
  digitalWrite(10, LOW);<br />
  digitalWrite(11, LOW);<br />
  digitalWrite(12, LOW);<br />
  digitalWrite(13, LOW);<br />
  delay(500); // blink led for first time on!<br />
  count++;<br />
}<br />
  else { </p>
<p>    // led 1</p>
<p>  digitalWrite(10, HIGH);<br />
  digitalWrite(11, LOW);<br />
  digitalWrite(12, LOW);<br />
  digitalWrite(13, LOW);<br />
  delay(10000); //</p>
<p>    // led 2</p>
<p>  digitalWrite(10, LOW);<br />
  digitalWrite(11, HIGH);<br />
  digitalWrite(12, LOW);<br />
  digitalWrite(13, LOW);<br />
  delay(10000); //</p>
<p>    // led 3</p>
<p>  digitalWrite(10, LOW);<br />
  digitalWrite(11, LOW);<br />
  digitalWrite(12, HIGH);<br />
  digitalWrite(13, LOW);<br />
  delay(10000); //</p>
<p>    // led 4</p>
<p>  digitalWrite(10, LOW);<br />
  digitalWrite(11, LOW);<br />
  digitalWrite(12, LOW);<br />
  digitalWrite(13, HIGH);<br />
  delay(10000); //</p>
<p> } //  end of else statement. </p>
<p>}</code></p>
<p>i have connected green LED&#8217;s to pin no. 10, 11, 12, 13 pin. where i am going to connect 3v or 5v relay. on NC point i am going to connect red light wire and on NO i am going to connect green ligh wires at high voltage side. </p>
<p>Hope you guys will enjoy this project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/4-way-arduino-traffic-light/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to replace dell n5010 keys</title>
		<link>http://www.techtwitter.com/how-to-replace-dell-n5010-keys/</link>
		<comments>http://www.techtwitter.com/how-to-replace-dell-n5010-keys/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 07:01:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[change dell keys]]></category>
		<category><![CDATA[dell 5010n]]></category>
		<category><![CDATA[replace dell laptop key]]></category>
		<category><![CDATA[replace key]]></category>
		<category><![CDATA[replace keycap]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=252</guid>
		<description><![CDATA[Hi guys recently i experienced difficulty while installing my dell laptops function key. After lots of tried i got how to join two locks and install them. Here is the video to replace your dell laptops keys.]]></description>
			<content:encoded><![CDATA[<p>Hi guys recently i experienced difficulty while installing my dell laptops function key. After lots of tried i got how to join two locks and install them.</p>
<p>Here is the video to replace your dell laptops keys.</p>
<p><object style="height: 390px; width: 540px"><param name="movie" value="http://www.youtube.com/v/PDIzBQAjU0w?version=3&#038;feature=player_detailpage"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/PDIzBQAjU0w?version=3&#038;feature=player_detailpage" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="540" height="360"></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/how-to-replace-dell-n5010-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get ride on server not found alert in forefox</title>
		<link>http://www.techtwitter.com/get-ride-on-server-not-found-alert-in-forefox/</link>
		<comments>http://www.techtwitter.com/get-ride-on-server-not-found-alert-in-forefox/#comments</comments>
		<pubDate>Fri, 13 Apr 2012 04:08:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[firefox]]></category>
		<category><![CDATA[disable alert in firefox]]></category>
		<category><![CDATA[server not found alert]]></category>
		<category><![CDATA[server not found alert in firefox]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=250</guid>
		<description><![CDATA[Rcently i upgraded my firefox and suddenly i got alert for server not found page instead of server not found page. Finally i got solution. 1. Type about:config in the location (address) bar 2. at the top, filter(search) for browser.xul.error_pages.enabled The preference should be set at true by default, so if yours is set at [...]]]></description>
			<content:encoded><![CDATA[<p>Rcently i upgraded my firefox and suddenly i got alert for server not found page instead of server not found page. Finally i got solution.</p>
<p>1. Type about:config in the location (address) bar<br />
2. at the top, filter(search) for browser.xul.error_pages.enabled</p>
<p>The preference should be set at true by default, so if yours is set at false (bolded and user set), then double-left-click on this preference and toggle it to true.</p>
<p>you done it. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/get-ride-on-server-not-found-alert-in-forefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google christmas doodle 2011</title>
		<link>http://www.techtwitter.com/google-christmas-doodle-2011/</link>
		<comments>http://www.techtwitter.com/google-christmas-doodle-2011/#comments</comments>
		<pubDate>Sat, 24 Dec 2011 10:02:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[google]]></category>
		<category><![CDATA[google christkas doodle 2011]]></category>
		<category><![CDATA[google doodle]]></category>
		<category><![CDATA[google doodle 2011]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=246</guid>
		<description><![CDATA[Here is the googles Christmas special doodle for year 2011. Its really funny and amazing. Watch it and share it google&#8217;s ideas and social awareness.]]></description>
			<content:encoded><![CDATA[<p>Here is the googles Christmas special doodle for year 2011. Its really funny and amazing. Watch it and share it google&#8217;s ideas and social awareness.</p>
<p><img src="http://i2.ytimg.com/vi/_eQTuhS8TnE/hqdefault.jpg"> <br /> <br />
<iframe width="560" height="315" src="http://www.youtube.com/embed/_eQTuhS8TnE" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/google-christmas-doodle-2011/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTC Explorer Review</title>
		<link>http://www.techtwitter.com/htc-explorer-review/</link>
		<comments>http://www.techtwitter.com/htc-explorer-review/#comments</comments>
		<pubDate>Mon, 12 Dec 2011 10:30:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[HTC Explorer]]></category>
		<category><![CDATA[HTC Explorer india price]]></category>
		<category><![CDATA[HTC Explorer Review]]></category>
		<category><![CDATA[HTC Explorer video Review]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=243</guid>
		<description><![CDATA[HTC explorer an budget android phone from htc.]]></description>
			<content:encoded><![CDATA[<p>HTC explorer an budget android phone from htc.<br />
<iframe width="560" height="315" src="http://www.youtube.com/embed/-44BnLTfzFc" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/htc-explorer-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hostgator 50% off on all hosting plan</title>
		<link>http://www.techtwitter.com/hostgator-50-off-on-all-hosting-plan/</link>
		<comments>http://www.techtwitter.com/hostgator-50-off-on-all-hosting-plan/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 03:10:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[hostgator]]></category>
		<category><![CDATA[50% off on hosting]]></category>
		<category><![CDATA[black friday]]></category>
		<category><![CDATA[black friday hostgator]]></category>
		<category><![CDATA[hostgator 1 cent hosting]]></category>
		<category><![CDATA[hostgator black friday]]></category>
		<category><![CDATA[hostgator coupons]]></category>
		<category><![CDATA[hosting off]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=240</guid>
		<description><![CDATA[Get 50% off on Hostgator all plans on this friday. Its black Friday. Avail this opportunity and get more. promotion will begin just after midnight, Friday, November 25th, 2011 Central Standard Time (-6 GMT). The special offer will run until 11:59PM CST Friday, November 25th, 2011. 50% OFF on ALL hosting services. This includes shared [...]]]></description>
			<content:encoded><![CDATA[<p>Get 50% off on <a href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=manjifera">Hostgator</a> all plans on this friday. Its black Friday. Avail this opportunity and get more. </p>
<p>promotion will begin just after midnight, Friday, November 25th, 2011 Central Standard Time (-6 GMT). The special offer will run until 11:59PM CST Friday, November 25th, 2011.</p>
<p>50% OFF on ALL hosting services. This includes shared hosting, reseller hosting, VPS hosting, Dedicated servers and Windows hosting! This does not include domain names.</p>
<p><a href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=manjifera">Hostgator</a> will be changing our website to display the discounted rates and special promotion. Visitors do NOT need to insert a coupon code to receive the special. The correct coupon code will automatically be inserted on all orders placed on Black Friday.</p>
<p>The discount applies to the clients first invoice. Our VPS and dedicated server hosting services are only available on a monthly basis, therefore the promotion will apply to only the first month.</p>
<p>This promotion will bring <a href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=manjifera">Hostgator</a>&#8216;s already competitive hosting packages as low as:</p>
<p>Shared hosting: As low as $4.95 Now only: $2.48/month (pre-paid)</p>
<p>Reseller Hosting: As low as $24.95 Now Only: $12.48/month (pre-paid)</p>
<p>VPS Hosting: As low as $19.95 Now Only: $9.98/month (First Month)</p>
<p>Dedicated Servers: As low as $174 Now Only $87/month (First Month)</p>
<p>This is an incredible deal and it will only run for 1 DAY! </p>
<p>Visit <a href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=manjifera">Hostgator</a> Now and save more on your hosting plans.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/hostgator-50-off-on-all-hosting-plan/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to update HTC Desire to Android 2.3 Gingerbread</title>
		<link>http://www.techtwitter.com/how-to-update-htc-desire-to-android-2-3-gingerbread/</link>
		<comments>http://www.techtwitter.com/how-to-update-htc-desire-to-android-2-3-gingerbread/#comments</comments>
		<pubDate>Sat, 13 Aug 2011 11:15:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[2.3]]></category>
		<category><![CDATA[Android 2.3]]></category>
		<category><![CDATA[Desire]]></category>
		<category><![CDATA[Gingerbread]]></category>
		<category><![CDATA[HTC]]></category>
		<category><![CDATA[htc desire]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=234</guid>
		<description><![CDATA[This is best tutorial i ever seen!! additinally i am providing my own video while updating my HTC desire!! it&#8217;s working great without any problem. read this post for more in detail]]></description>
			<content:encoded><![CDATA[<p>This is best tutorial i ever seen!! additinally i am providing my own video while updating my HTC desire!! it&#8217;s working great without any problem. </p>
<p><a rel="nofollow" href=" http://reviews.cnet.co.uk/mobile-phones/how-to-update-htc-desire-to-android-23-gingerbread-50004625/">read this post for more in detail </a></p>
<p><iframe width="560" height="349" src="http://www.youtube.com/embed/XwIMSGhoUac" frameborder="0" allowfullscreen></iframe></p>
<p><iframe width="425" height="349" src="http://www.youtube.com/embed/SC1qYMbixCQ?hl=en&#038;fs=1" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/how-to-update-htc-desire-to-android-2-3-gingerbread/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Move wordpress site from one server to other</title>
		<link>http://www.techtwitter.com/move-wordpress-site/</link>
		<comments>http://www.techtwitter.com/move-wordpress-site/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 17:33:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[wordpress]]></category>
		<category><![CDATA[new server move]]></category>
		<category><![CDATA[wordpress migration]]></category>
		<category><![CDATA[wordpress site move]]></category>
		<category><![CDATA[wp to new server]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=226</guid>
		<description><![CDATA[Here is simple steps you can follow to move your wordpress blog without any 404 errors. we are explaining it in simple steps. 1) Goto your current host&#8217;s file manager and make zip of your domain. and using ftp download it on your hard drive. 2) Now goto myphp admin and take a backup of [...]]]></description>
			<content:encoded><![CDATA[<p>Here is simple steps you can follow to move your wordpress blog without any 404 errors. </p>
<p>we are explaining it in simple steps.<br />
1) Goto your current host&#8217;s file manager and make zip of your domain. and using ftp download it on your hard drive.<br />
2) Now goto myphp admin and take a backup of your current blogs database backup in sql zipped format on your hard drive.<br />
3) Now log in to your hosting account and update your nameserver to new servers name server.<br />
4) Now use ftp on new server, as most hosting accounts allows you to use some temporary ftp server till new name server takes time to use domain as ftp server.<br />
5) upload downloaded zip to the folder where new site files locations allotted. (for this you have to add your domain to new server [ i.e addon domain section ] or add domain.<br />
6) Then using new domains control panel create new database, user password now upload backup-ed sql database (step 2) to new database. Note down database name, username, password, host name ( some times its localhost. )<br />
7) now using new servers file manager unzip your uploaded zip file in root of the domain and delete wp-config.php file.<br />
8­) Now wait till name server changes. they will take 1-2 hrs. some time less than than or more than this&#8230; then&#8230;<br />
9) Navigate to your site you will get prompt to setup database. add all details. please note down your previous table prefix as in most cases its wp_ but some time where databases are limited you have to add prefix other than wp_ so note down from previous tables. and enter the same. prefix is to avoid over writing of tables while installing more than one  wordpress blogs on same database.<br />
10)You done it. </p>
<p>Leave us comments so we will reply you for your queries.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/move-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Invite your Facebook friends on google Plus</title>
		<link>http://www.techtwitter.com/invite-your-facebook-friends-on-google-plus/</link>
		<comments>http://www.techtwitter.com/invite-your-facebook-friends-on-google-plus/#comments</comments>
		<pubDate>Sat, 09 Jul 2011 15:18:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[facebook]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google plus]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[invite on google plus]]></category>

		<guid isPermaLink="false">http://www.techtwitter.com/?p=207</guid>
		<description><![CDATA[Hey we got easy way to invite all your facebook friends to join you on Google+ Isn&#8217;t its great? So lets get started!! Step 1) Goto http://plus.google.com and login to your google plus account! Step 2) Now goto http://www.facebook.com and login to your account! Step 3) Goto http://www.facebook.com/mobile and note down email address like abc32323zyx@m.facebook.com [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.techtwitter.com/wp-content/uploads/2011/07/facebook-to-google-plus.jpg" alt="" title="facebook-to-google-plus" width="200" height="197" class="alignright size-full wp-image-222" /></p>
<p>Hey we got easy way to invite all your facebook friends to join you on Google+ Isn&#8217;t its great? So lets get started!!</p>
<p>Step 1) Goto <a href="http://plus.google.com" target="_blank">http://plus.google.com</a> and login to your google plus account!</p>
<p>Step 2) Now goto <a href="http://www.facebook.com" target="_blank">http://www.facebook.com</a> and login to your account!</p>
<p>Step 3) Goto <a href="http://www.facebook.com/mobile" target="_blank">http://www.facebook.com/mobile</a> and note down email address like abc32323zyx@m.facebook.com from that page!! Don&#8217;t copy this email.</p>
<p>Step 4) Goto your Google+ <a href="https://plus.google.com/u/0/circles" target="_blank">Circle</a> page and  &#8220;+ add a new person&#8221; copy that email address select circle, name it and save it!! </p>
<p>Step 5) Now goto your Google plus page and click on your photo and then copy your profile link. and paste it into box provided below.<br />
link looks like this : https://plus.google.com/117605493707017541365/posts . Don&#8217;t copy this as this is example link.</p>
<p><script type="text/javascript">
function mk(){
var lk = document.getElementById("rlnk").value;
if(lk==""){ alert('Add your google+ profile link');
}
else { 
var pmlnk = lk.split("/post");
document.getElementById("opt").innerHTML = "https://plus.google.com/up/?continue="+pmlnk[0];
}
}
</script></p>
<input type="text" id="rlnk" size="50"> <button onclick="mk();">Generate Invite Link</button></p>
<p>Step 6) Now copy this red link:
<div style="color:red;font-size:21px;" id="opt"></div>
<p>Step 7) Now goto <a href="http://goo.gl/" target="_blank">http://goo.gl/</a> and paste this link and make its short url. Copy it!!</p>
<p>Step 8­) Now we are going to Share new post on Google plus!</p>
<p>Step 9) Type &#8220;Hey all join me on Google+  &#8221; with  short link in your post!! and share it with all group! including that group where we have added our facebook email address!!!</p>
<p>Step 10) You done it!! This post will get posted on your facebook wall So all your friends now can join you on Google+ <img src='http://www.techtwitter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Or alternatively you can send email to above email address which is grabbed from mobile page ( step3) of facebook. with your message and link from Step 7 to all your friends.</p>
<p>Or You can directly share Link from Step 7 on your facebook wall. </p>
<p>If you like this article share it on google+ and help your friends to be on facebook. <img src='http://www.techtwitter.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Have a happy +ing!! </p>
<p>Add us on our <a target="_raj" href="https://plus.google.com/117605493707017541365">Google+ </a><br />
Follow on Twitter : <a target="_raj" href="http://twitter.com/manjifera">Twitter </a><br />
Like us on <a href="http://www.facebook.com/pages/TechTwitter/135066039909660" target="_raj">Facebook</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techtwitter.com/invite-your-facebook-friends-on-google-plus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

