<?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>Bala-Krishna &#187; Blogging</title>
	<atom:link href="http://www.bala-krishna.com/category/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bala-krishna.com</link>
	<description>Web Developer &#38; Internet Marketing Consultant</description>
	<lastBuildDate>Tue, 17 Aug 2010 10:46:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>WordPress How To Check If User Already Logged In</title>
		<link>http://www.bala-krishna.com/wordpress-how-to-check-if-user-already-logged-in/</link>
		<comments>http://www.bala-krishna.com/wordpress-how-to-check-if-user-already-logged-in/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 11:52:57 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Word Press]]></category>
		<category><![CDATA[Wordpress Plugin]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=783</guid>
		<description><![CDATA[If you are looking for wordpress function to check weather user already logged in or not then below code might be useful for you. WordPress provide one single function called is_user_logged_in() that return boolean true for logged in user and false if none of the user logged in.  You can execute different kind of code [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/wordpress-how-to-check-if-user-already-logged-in/&title=WordPress+How+To+Check+If+User+Already+Logged+In&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fwordpress-how-to-check-if-user-already-logged-in%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fwordpress-how-to-check-if-user-already-logged-in%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>If you are looking for wordpress function to check weather user already logged in or not then below code might be useful for you. WordPress provide one single function called <strong><em>is_user_logged_in()</em></strong> that return boolean true for logged in user and false if none of the user logged in.  You can execute different kind of code or display message using this function for logged in user and non logged in users.</p>
<p>Here is an example:</p>
<pre class="brush: php;">

&lt;?php
if ( is_user_logged_in() ) {
// Write your code for logged in user.
} else {
// Write your code for non logged in user.
};
?&gt;
</pre>
<p>Moreover, you can check level of logged in user and display content based on logged in user roles and capabilities. You can use following code to achieve the same.</p>
<pre class="brush: php;">
&lt;?php
global $current_user;
get_currentuserinfo();
if($current_user-&gt;user_level==10) {
 // Put your code here
} else if($current_user-&gt;user_level==9) {
 // Put your code here
} else if($current_user-&gt;user_level==8) {
 // Put your code here
} else if($current_user-&gt;user_level==7) {
 // Put your code here
} else if($current_user-&gt;user_level==6) {
 // Put your code here
} else if($current_user-&gt;user_level==5) {
 // Put your code here
} else if($current_user-&gt;user_level==3) {
 // Put your code here
} else if($current_user-&gt;user_level==2) {
 // Put your code here
} else if($current_user-&gt;user_level==1) {
 // Put your code here
} else if($current_user-&gt;user_level==0) {
 // Put your code here
}
?&gt;
</pre>
<p><strong>User Level to Role Conversion Graph</strong></p>
<p><strong><a href="http://www.bala-krishna.com/wp-content/uploads/2010/04/wordpress-user-level-roles-capabilities.jpg"><img class="aligncenter size-full wp-image-784" title="Wordpress User Level Roles Capabilities" src="http://www.bala-krishna.com/wp-content/uploads/2010/04/wordpress-user-level-roles-capabilities.jpg" alt="" width="480" height="266" /></a> </strong></p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/wordpress-how-to-check-if-user-already-logged-in/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to View Or Convert XPS file to PDF</title>
		<link>http://www.bala-krishna.com/how-to-view-or-convert-xps-file-to-pdf/</link>
		<comments>http://www.bala-krishna.com/how-to-view-or-convert-xps-file-to-pdf/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 14:53:17 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=751</guid>
		<description><![CDATA[XPS is Microsoft document format know as XML Paper Specification similar to PDF format by Adobe lab. There are several way to view .xps file on you pc. You can view either by installing Microsoft XPS viewer or converting your .xps file to .pdf for free. PDF (Portable Document Format) is widely accepted format and [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/how-to-view-or-convert-xps-file-to-pdf/&title=How+to+View+Or+Convert+XPS+file+to+PDF&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-view-or-convert-xps-file-to-pdf%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-view-or-convert-xps-file-to-pdf%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="alignleft size-full wp-image-752" title="xps-file-icon" src="http://www.bala-krishna.com/wp-content/uploads/2010/03/xps-file-icon.png" alt="" width="120" height="137" />XPS is Microsoft document format know as XML Paper Specification similar to PDF format by Adobe lab. There are several way to view .xps file on you pc. You can view either by installing Microsoft XPS viewer or converting your .xps file to .pdf for free. PDF (Portable Document Format) is widely accepted format and everyone using pc should have adobe pdf viewer or similar product depending on OS platform they are using. Using PDF is easier then XPS format.</p>
<p><strong>How to View .XPS file</strong></p>
<p>The simplest way to view .xps files is to download Microsoft XPS Viewer depending on MS Windows version. You can <a rel="nofollow" href="http://www.microsoft.com/whdc/xps/viewxps.mspx" target="_blank">download Microsoft XPS Viewer from here</a>.</p>
<p><strong>How to convert .XPS to .PDF</strong></p>
<p>Converting .XPS to .PDF is as easy as you print Microsoft office document. All you need is to install free virtual PDF printer driver from internet. There are several free PDF printer driver available on the internet that can convert any document to pdf format.  You can download doPDF or CutePDF both are free to  use. I personally use doPDF because i feel it more convenient and light-weight then cutePDF.</p>
<ul>
<li><a href="http://www.bala-krishna.com/dopdf-freeware-pdf-convertor/">Download doPDF</a></li>
<li><a rel="nofollow" href="http://www.cutepdf.com/Products/CutePDF/writer.asp" target="_blank">Download cutePDF</a></li>
</ul>
<p>Now, open XPS file and print file using PDF printer you have installed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-view-or-convert-xps-file-to-pdf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BSNL EVDO New Bookings are Still Nightmare</title>
		<link>http://www.bala-krishna.com/bsnl-evdo-new-bookings-are-still-nightmare/</link>
		<comments>http://www.bala-krishna.com/bsnl-evdo-new-bookings-are-still-nightmare/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 10:31:25 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Bhopal]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Bug Fix]]></category>
		<category><![CDATA[Business Talk]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Product Review]]></category>
		<category><![CDATA[Scam]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=737</guid>
		<description><![CDATA[BSNL has stopped EVDO and NIC data card booking from last one month. Myself and lot of other EVDO lovers still waiting for the booking to restart. This is more important and awaiting because new EVDO promotional offer rolling out countrywide on BSNL website offering EVDO card @750/month. This is cheapest price bsnl offering in [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/bsnl-evdo-new-bookings-are-still-nightmare/&title=BSNL+EVDO+New+Bookings+are+Still+Nightmare&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fbsnl-evdo-new-bookings-are-still-nightmare%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fbsnl-evdo-new-bookings-are-still-nightmare%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2010/03/bsnl-evdo-data-card.jpg"><img class="aligncenter size-full wp-image-738" title="bsnl-evdo-data-card" src="http://www.bala-krishna.com/wp-content/uploads/2010/03/bsnl-evdo-data-card.jpg" alt="" width="550" height="110" /></a>BSNL has stopped EVDO and NIC data card booking from last one month. Myself and lot of other EVDO lovers still waiting for the booking to restart. This is more important and awaiting because new EVDO promotional offer rolling out countrywide on BSNL website offering EVDO card @750/month. This is cheapest price bsnl offering in comparison to other telecoms companies. You can expect this kind of things only with BSNL. This is how Sarkari system works. New promotional offer advertisement giving out in media but billing system no longer works from a month. Moreover, promotional offer time is ending on 31st March. It seems new system not going to work soon so nobody will be able to take advantage of this offer.</p>
<p>According to BSNL representative, their new DOT Software system stopped working in the first week of Feb and they have no information on when new system working again. Also, new billing software has lot of issues in billing and booking system. Myself received previous month bill two times with extended charges. It seems new system adopted without proper quality testing by authorities. BSNL employee don&#8217;t care what is happening.</p>
<p><strong>Don&#8217;t experiment anything if your connection running smoothly and you don&#8217;t have specific need. Let me explain why! </strong></p>
<p>There are two incidence happened with me that i never expected. You can not expect this kind of issue with a professional company.</p>
<p><strong>1)</strong> I am using BSNL broadband from last 3 years and more. The  reason is i don&#8217;t have any alternative in my area. For a year, i used broadband 550 plan and quiet happy with speed and everything. After a year, i feel to change broadband 550 plan to unlimited broadband 999 (Now 750/-) plan due to large volume usage. I reached to BSNL office and give them written application for the change of plan. After one week of application submission my connection stopped working. Initially  i thought there may be a issue with DNS or temporarily server problem. Second day i called customer care and they suggest me to inquire on BSNL new market head office. I reached there and head office representative said to inquire on our area exchange office. Again, i reached my area exchange office but there were only blank chairs saying me why you came here, No body here to attend you. After three visits, i met with my local area office head and what he said was really surprising for me and may be for you too. My connection was cut. They presented me broadband termination order they received from head office. I matched termination order date with the plan change receipt i had. The dates were same. This was simply means they had released connection termination order in place of plan change order. After one week mental and physical practice i got why my connection stopped working and next one week to reconnect my connection. Till date my BSNL bills was paid and i have no due to pay BSNL. How i managed to reconnect my connection is another story. It&#8217;s much to learn how  BSNL works.</p>
<p><strong> 2)</strong> In Jan 2009, they launched new broadband scheme 799 that allow unlimited free calls on BSNL mobile and landline network. I finally decided to take advantage of this offer and again did a blunder mistake. After plan change i received next month bill just doubled. In inquiry, account department said they charged one month price as security deposit. My connection was booked without security deposit and without modem purchase or modem rental under a promotional scheme when i booked my connection 3 years back. The account person said, when plan change or system see any activity in account their software treat account holder as new account holder and add one month plan charge as security deposit in bill if security deposit not already paid by account holder. This is how their system works. After, three years they are charging a loyel customer security deposit even my connection was booked without security deposit. The story not stopped here. As i said, I never paid for modem till now because BSNL were giving modem free of cost at the time of my booking. Let&#8217;s see what happen.</p>
<p>Let&#8217;s come back to original story. If you have anything to share on BSNL EVDO please feel free to comment so other people take advantage of information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/bsnl-evdo-new-bookings-are-still-nightmare/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Fix Missing a temporary folder error in WordPress</title>
		<link>http://www.bala-krishna.com/how-to-fix-missing-a-temporary-folder-error-in-wordpress/</link>
		<comments>http://www.bala-krishna.com/how-to-fix-missing-a-temporary-folder-error-in-wordpress/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 12:37:39 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Linux Commands]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=726</guid>
		<description><![CDATA[This error comes when you try to upload media file such as image, video by WordPress browser uploader or flash uploader. WordPress shows this error when temporary upload folder not configured in php.ini file. It is possible upload temp folder is configured but path entered does not exist in the file system. To fix the [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/how-to-fix-missing-a-temporary-folder-error-in-wordpress/&title=How+to+Fix+Missing+a+temporary+folder+error+in+WordPress&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-fix-missing-a-temporary-folder-error-in-wordpress%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fhow-to-fix-missing-a-temporary-folder-error-in-wordpress%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>This error comes when you try to upload media file such as image, video by WordPress browser uploader or flash uploader. WordPress shows this error when temporary upload folder not configured in php.ini file. It is possible upload temp folder is configured but path entered does not exist in the file system. To fix the issue you just need to check and correct temporary path in php.ini file. If path is in-correct you need to correct folder path or if no folder path given then you need to set temporary path.</p>
<p>You can easily fix this by editing php.ini file. Most of the shared hosting provider now support custom php.ini per account. It means you can have you own php.ini and optimize php setting according to your need.</p>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2010/02/missing-temporary-folder.png"><img class="alignleft size-full wp-image-727" title="Missing Temporary Folder WordPress Error" src="http://www.bala-krishna.com/wp-content/uploads/2010/02/missing-temporary-folder.png" alt="" width="469" height="204" /></a></p>
<p><strong>Apply following steps to complete this task.</strong></p>
<p><strong>1)</strong> Find out exact physical path of your account <em>public_html</em> folder. Create a text file and name it phpinfo.php. Add below lines in the file. Save file then upload file in the <em>public_html</em> folder of your server.</p>
<p>&lt;?php phpinfo(); ?&gt;</p>
<p><strong>2)</strong> Run phpinfo.php file by pointing your browser to the file. <em>http://www.yourdomain.com/phpinfo.php</em>. Replace <em>yourdomain.com</em> with your actual domain  name.</p>
<p><strong>3)</strong> Search for two entries <em>_SERVER["SCRIPT_FILENAME"]</em> and <em>Loaded Configuration File. </em>Note down value against these entries.</p>
<p>In my case value for above entries are</p>
<p><em>_SERVER["SCRIPT_FILENAME"]  -&gt; /home/homefolder/public_html/phpinfo.php<br />
</em></p>
<p><em>Loaded Configuration File -&gt; /etc/php/php.ini</em></p>
<p>4) If your hosting account support custom php.ini or you have server access then you can complete following steps otherwise you need to ask your hosting company to complete this for you.</p>
<p><strong>If you have server command line access.</strong></p>
<ol>
<li>Create a temporary folder called &#8220;tmp&#8221; within your public_html folder from FTP. Now temporary folder path is <em>/home/homefolder/public_html/tmp/<br />
</em></li>
<li>Login into the command prompt as server administrator.</li>
<li>Type below command and hit enter</li>
<li>$ sudo nano /etc/php/php.ini</li>
<li>It will open php.ini file in nano visual editor with root privileges. Enter root password if asked.</li>
<li>Find <em>upload_tmp_dir </em>and un-comment it if commented.<em> &#8220;;&#8221;</em> used for commenting purpose in php.ini.<em> </em>Simply remove this special character to un-comment line.</li>
<li>Change <em>upload_tmp_dir value to /home/<em>homefolder</em>/public_html/tmp/</em>. You line should appear similar to next line (8).</li>
<li>upload_tmp_dir = /home/<em>homefolder</em>/public_html/tmp/</li>
<li>Save php.ini file and restart apache.</li>
<li>Now again run phpinfo.php file in your browser. New value should appear in your php info setting.</li>
</ol>
<p><strong>If your host support custom php.ini<br />
</strong></p>
<ol>
<li>Create a temporary folder called &#8220;tmp&#8221; within your <em>public_html</em> folder from FTP. Now temporary folder path is <em>/home/homefolder/public_html/tmp/</em></li>
<li>Create a text file called php.ini in your system and paste content in step (8) specified above.</li>
<li>Save file and upload to your public_html folder in your FTP.</li>
<li>Run phpinfo.php file in your browser. New value should appear in your php info setting.</li>
</ol>
<p>Error should disappear now. However, in some cases you may still get same error. For those cases try removing trailing slash at the end of path. After the change path would be  <em>/home/homefolder/public_html/tmp </em>instead of <em>/home/homefolder/public_html/tmp/</em></p>
<p><strong>Host Support Custom PHP.INI</strong></p>
<ul>
<li>HostGator</li>
<li>aSmallOrange</li>
<li>SiteGround</li>
<li>Site5</li>
</ul>
<p>Good Luck</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/how-to-fix-missing-a-temporary-folder-error-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox For Mobile</title>
		<link>http://www.bala-krishna.com/firefox-for-mobile/</link>
		<comments>http://www.bala-krishna.com/firefox-for-mobile/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 13:54:37 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Firefox Add-On]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Mobile Stuff]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=717</guid>
		<description><![CDATA[Firefox is now officially available for mobile devices based on open source Nokia’s Maemo OS platform. Below are the list of mobile devices supported by Firefox on Maemo platform. They are also working on Firefox release for Android and Windows Mobile devices but no future plan to release Firefox for iPhone, Blackberry and Symbian platform [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/firefox-for-mobile/&title=Firefox+For+Mobile&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Ffirefox-for-mobile%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Ffirefox-for-mobile%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2010/02/firefox-for-mobile.png"><img class="alignleft size-full wp-image-718" title="firefox-for-mobile" src="http://www.bala-krishna.com/wp-content/uploads/2010/02/firefox-for-mobile.png" alt="" width="234" height="246" /></a>Firefox is now officially available for mobile devices based on open source Nokia’s Maemo OS platform. Below are the list of mobile devices supported by Firefox on Maemo platform. They are also working on Firefox release for Android and Windows Mobile devices but no future plan to release Firefox for iPhone, Blackberry and Symbian platform due to native restrictions with the operating system.</p>
<p><strong> Maemo Devices Supported</strong></p>
<ul>
<li>Nokia N900</li>
<li>Nokia N810</li>
</ul>
<p><strong>Windows Mobile Devices Supported</strong></p>
<ul>
<li>Samsung Omnia II,</li>
<li>AT&amp;T Touch Fuze,</li>
<li>HTC Touch Pro</li>
</ul>
<p><strong>Android Devices Supported</strong></p>
<p>To be release for Android device.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/firefox-for-mobile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Steps to open docx file in the older Microsoft Office version</title>
		<link>http://www.bala-krishna.com/3-steps-to-open-docx-file-in-the-older-microsoft-office-version/</link>
		<comments>http://www.bala-krishna.com/3-steps-to-open-docx-file-in-the-older-microsoft-office-version/#comments</comments>
		<pubDate>Sat, 20 Feb 2010 15:28:48 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[Gmail Stuff]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Technology]]></category>
		<category><![CDATA[Window Application]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=711</guid>
		<description><![CDATA[It is very difficult to open .docx files for the user who are using older version of Microsoft Office. Microsoft Office introduced new .docx file format in the ms office 2007. Users who are using ms office 2003 or older version can not open .docx document. There are several way to open .docx and other [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/3-steps-to-open-docx-file-in-the-older-microsoft-office-version/&title=3+Steps+to+open+docx+file+in+the+older+Microsoft+Office+version&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2F3-steps-to-open-docx-file-in-the-older-microsoft-office-version%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2F3-steps-to-open-docx-file-in-the-older-microsoft-office-version%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2010/02/microsoft-office-2007.jpg"><img src="http://www.bala-krishna.com/wp-content/uploads/2010/02/microsoft-office-2007-300x157.jpg" alt="" title="microsoft-office-2007" width="300" height="157" class="alignleft size-medium wp-image-713" /></a>It is very difficult to open .docx files for the user who are using older version of Microsoft Office. Microsoft Office introduced new .docx file format in the ms office 2007. Users who are using ms office 2003 or older version can not open .docx document.</p>
<p>There are several way to open .docx and other file format associated with MS-Office 2007 like .pptx or .xlsx even without installing ms office 2007.</p>
<p><strong>1)</strong> First and easiest way is to use Google docs to open your .docx file. There are several other benefit using Google docs for document. You can convert as well as store your files in Google docs and open wherever you want.  Users who are using Gmail might be already familiar with google doc and know how easy it is to manage doc with Google docs.</p>
<p><strong>2) </strong>Use Microsoft office compatibility pack released for backward compatibility. You need to download and install <a title="Microsoft office compatibility pack" rel="nofollow" href="http://www.microsoft.com/downloads/details.aspx?FamilyId=941B3470-3AE9-4AEE-8F43-C6BB74CD1466&amp;displaylang=en" target="_blank">Microsoft office compatibility pack</a> from Microsoft website. After installation you will be able to open .docx file in your microsoft office version currently installed on your system.</p>
<p><strong>3)</strong> Download and Use <a rel="nofollow">OpenOffice</a> to open .docx file. You can also use OpenOffice for all you Microsoft office need. OpenOffice is now widely used as Microsoft office replacement and commonly used office suite in Linux environment.  This package available in many languages and available for almost all platform including Mac OSX and Linux. <a href="http://www.openoffice.org/" target="_blank">Download OpenOffice installer from here</a>. You can also download and use <a title="Open Office Portable Version" href="http://portableapps.com/node/16395" target="_blank" rel="nofollow">open office portable version </a>without installing OpenOffice whenever you need.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/3-steps-to-open-docx-file-in-the-older-microsoft-office-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Indian Railway Website &#8211; Fresh Look</title>
		<link>http://www.bala-krishna.com/new-indian-railway-website-fresh-look/</link>
		<comments>http://www.bala-krishna.com/new-indian-railway-website-fresh-look/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 13:05:39 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[Snap Shot]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=705</guid>
		<description><![CDATA[Experience new Indian railway website. Finally crisp has changed years old website to new fresh look. The new looks is not so good as it should be but certainly it is better then before. Color are too dull and not eye catchy. There is so much more room to improve website design. One new change [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/new-indian-railway-website-fresh-look/&title=New+Indian+Railway+Website+&#8211;+Fresh+Look&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fnew-indian-railway-website-fresh-look%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fnew-indian-railway-website-fresh-look%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2010/02/new-indian-railway-website-a-fresh-look.png"><img class="alignleft size-medium wp-image-706" title="New Indian Railway Website" src="http://www.bala-krishna.com/wp-content/uploads/2010/02/new-indian-railway-website-a-fresh-look-300x170.png" alt="" width="300" height="170" /></a>Experience new Indian railway website. Finally crisp has changed years old website to new fresh look. The new looks is not so good as it should be but certainly it is better then before. Color are too dull and not eye catchy. There is so much more room to improve website design.</p>
<p>One new change i have noticed is the speed. Speed of website loading and information retrieval considerably increased.</p>
<p>Experience the difference and share with others.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/new-indian-railway-website-fresh-look/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Indian Railway PNR status using Google SMS @ local SMS charge</title>
		<link>http://www.bala-krishna.com/indian-railway-pnr-status-using-google-sms-local-sms-charge/</link>
		<comments>http://www.bala-krishna.com/indian-railway-pnr-status-using-google-sms-local-sms-charge/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 09:55:28 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Bhopal]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Online Media]]></category>
		<category><![CDATA[Search Engine]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Messenger]]></category>
		<category><![CDATA[Tips and Tricks]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=702</guid>
		<description><![CDATA[Google SMS provide  us a simple way to check Indian railway reservation status also called PNR Inquiry using sms at local sms rate. You can also check Indian railway reservation status through mobile operator service or railway sms inquiry service. All those service require high premium service charge to be paid by mobile sender. There [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/indian-railway-pnr-status-using-google-sms-local-sms-charge/&title=Indian+Railway+PNR+status+using+Google+SMS+@+local+SMS+charge&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Findian-railway-pnr-status-using-google-sms-local-sms-charge%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Findian-railway-pnr-status-using-google-sms-local-sms-charge%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2010/02/indian-railway-reservation-using-google-sms.png"><img class="alignleft size-medium wp-image-703" title="indian-railway-reservation-using-google-sms" src="http://www.bala-krishna.com/wp-content/uploads/2010/02/indian-railway-reservation-using-google-sms-191x300.png" alt="" width="191" height="300" /></a>Google SMS provide  us a simple way to check Indian railway reservation status also called PNR Inquiry using sms at local sms rate. You can also check Indian railway reservation status through mobile operator service or railway sms inquiry service. All those service require high premium service charge to be paid by mobile sender.</p>
<p>There are many other service Google has launched at local sms rate such as cricket scores, Indian Railways train schedules, horoscopes, movie show times, restaurant information and many more. All you have to pay local sms rate which is nominal and affordable for everyone.</p>
<p>To get PNR status send pnr number as shown below to <strong>9-77-33-00000.<br />
</strong></p>
<p><em>pnr &lt;number&gt;</em></p>
<p>For more details on other service check <a title="Indian Railway Reservation using Google SMS " href="http://www.google.co.in/mobile/default/sms.html" target="_blank">Google SMS home page</a>.<em><br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/indian-railway-pnr-status-using-google-sms-local-sms-charge/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Google Buzz New Social Media Platform</title>
		<link>http://www.bala-krishna.com/google-buzz-new-social-media-platform/</link>
		<comments>http://www.bala-krishna.com/google-buzz-new-social-media-platform/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 07:12:54 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Gmail Stuff]]></category>
		<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Product Review]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=691</guid>
		<description><![CDATA[Few days ago, Google have launched Google Buzz, a new social media platform in the industry.  Google Buzz works seamlessly within your  Gmail account. As all of you know, GMail is now very popular email platform in the industry.  Google Buzz is rapidly growing as this is built over Gmail platform. Every gmail user now [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/google-buzz-new-social-media-platform/&title=Google+Buzz+New+Social+Media+Platform&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fgoogle-buzz-new-social-media-platform%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fgoogle-buzz-new-social-media-platform%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.bala-krishna.com/wp-content/uploads/2010/02/Google-Buzz-Social-Media-Plateform.png"><img class="alignleft size-full wp-image-692" title="Google Buzz Social Media Plateform" src="http://www.bala-krishna.com/wp-content/uploads/2010/02/Google-Buzz-Social-Media-Plateform.png" alt="" width="286" height="68" /></a>Few days ago, Google have launched Google Buzz, a new social media platform in the industry.  Google Buzz works seamlessly within your  Gmail account. As all of you know, GMail is now very popular email platform in the industry.  Google Buzz is rapidly growing as this is built over Gmail platform. Every gmail user now using Google Buzz because easier  accessibility then other tools in the market.  Google Buzz  is similar product as twitter but there are many features that makes Google Buzz different then twitter. There are several benefit Google Buzz provides over twitter. As Google Buzz integrated within gmail so it is easy to use. You don&#8217;t have to login  separately to Google Buzz account.  There is no maximum character limit in the Google Buzz, You are  free to share whatever you wish to share and many other features.</p>
<p>Google Buzz  also allow you to import content from all the existing websites that you are using, like Picassa, Twitter and Flickr. This feature provide you full flexibility to use Google Buzz . So what you are waiting for..  Start Buzzing..</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/google-buzz-new-social-media-platform/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Security Feature on Gmail</title>
		<link>http://www.bala-krishna.com/new-security-feature-on-gmail/</link>
		<comments>http://www.bala-krishna.com/new-security-feature-on-gmail/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 09:32:17 +0000</pubDate>
		<dc:creator>Bala Krishna</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Browser Stuff]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Gmail Stuff]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.bala-krishna.com/?p=687</guid>
		<description><![CDATA[Google has recently added new security features in the world favorite&#160;email service. Google now pioneer in the email service industry. They have enable HTTPS on GMail by default. This is good for people who are not computer geeks and don&#8217;t understand usability of SSL layer. By default, Google turned on &#8220;always use HTTPS for everyone&#8221; [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px;"><a href="http://www.google.com/reader/link?url=http://www.bala-krishna.com/new-security-feature-on-gmail/&title=New+Security+Feature+on+Gmail&srcURL=http://www.bala-krishna.com" target="_blank" rel="nofollow"><img src="http://www.bala-krishna.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a></div>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.bala-krishna.com%2Fnew-security-feature-on-gmail%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.bala-krishna.com%2Fnew-security-feature-on-gmail%2F&amp;source=balakrishna&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Google has recently added new security features in the world favorite&nbsp;email service. Google now pioneer in the email service industry. They have enable HTTPS on GMail by default. This is good for people who are not computer geeks and don&#8217;t understand usability of SSL layer. By default, Google turned on &#8220;always use HTTPS for everyone&#8221; option. HTTPS can make your Gmail&nbsp;experience&nbsp;slower then before so you alway open to disable this setting from Gmail setting tab. Your Gmail login page always use HTTPS to protect your login credentials.</p>
<p><span mce_name="strong" mce_style="font-weight: bold;" style="font-weight: bold;" class="Apple-style-span" mce_fixed="1">Other Features<br />
</span><br />
<span mce_name="strong" mce_style="font-weight: bold;" style="font-weight: bold;" class="Apple-style-span" mce_fixed="1">Extra Storage at Cheap Price</span></p>
<p>This is good news for people who need to more space on Gmail. You can buy 20GB storage space for only $5/year. This space can be shared with Picasa Web Albums. See detailed price structure below.</p>
<ul>
<li>20 GB ($5.00 USD per year)</li>
<li>80 GB ($20.00 USD per year)</li>
<li>200 GB ($50.00 USD per year) includes free Eye-Fi card</li>
<li>400 GB ($100.00 USD per year) includes free Eye-Fi card</li>
<li>1 TB ($256.00 USD per year) includes free Eye-Fi card</li>
</ul>
<p><br mce_bogus="1"></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bala-krishna.com/new-security-feature-on-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
