<?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>Easy Tutorials</title>
	<atom:link href="http://sumana.com.np/feed/" rel="self" type="application/rss+xml" />
	<link>http://sumana.com.np</link>
	<description></description>
	<lastBuildDate>Fri, 30 Mar 2012 16:21:52 +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>How to print hello world in java: First JAVA Program</title>
		<link>http://sumana.com.np/how-to-print-hello-world-in-java-first-java-program/</link>
		<comments>http://sumana.com.np/how-to-print-hello-world-in-java-first-java-program/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 16:15:13 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[JAVA Tutorials]]></category>
		<category><![CDATA[java compiler]]></category>
		<category><![CDATA[JAVA tutorials]]></category>
		<category><![CDATA[latest version of jdk]]></category>
		<category><![CDATA[Programing language]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=766</guid>
		<description><![CDATA[Hello friend today easy tutorials is going to teach you a very simple program in JAVA. Yes today I am going to provide a tutorial about how to print hello world in JAVA. These days the JAVA is used in everywhere such as we are using the JAVA in our mobile phones, Music Players, Computers, [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sumana.com.np/how-to-print-hello-world-in-java-first-java-program/" title="Permanent link to How to print hello world in java: First JAVA Program"><img class="post_image alignnone" src="http://sumana.com.np/wp-content/uploads/2012/03/java.jpg" width="300" height="300" alt="Post image for How to print hello world in java: First JAVA Program" /></a>
</p><p style="text-align: justify;"><a href="http://sumana.com.np/how-to-print-hello-world-in-java-first-java-program/java/" rel="attachment wp-att-767"><img class="alignright size-full wp-image-767" title="java" src="http://sumana.com.np/wp-content/uploads/2012/03/java.jpg" alt="java" width="300" height="300" /></a>Hello friend today easy tutorials is going to teach you a very simple program in JAVA. Yes today I am going to provide a tutorial about how to print hello world in JAVA. These days the JAVA is used in everywhere such as we are using the JAVA in our mobile phones, Music Players, Computers, and Cars etc. JAVA is programming language such as C and C++. If you have already known about the C and C++ programming language than it will not be such difficult to write any types of program in JAVA. Before starting the JAVA programming language let me tell you the required softwares to run JAVA; yes you need JDK to run program written in JAVA extension. JDK help you to compile and execute the JAVA code. Firstly you need to download the latest version of JDK from www.oracle.com and install into your computer. After the installation of JDK is completed than for your convenience copy the installed file of jdk1.7.0_03 (this is latest version of JDK in my system) from My Computer&#8212;-C:&#8212;Program Files&#8212;JAVA to C:. After the file is copied than rename it as jdk1.7 (according to your choice). You also need to create a folder as Javaclass in C:  so that you can save you all JAVA programming codes here. After these set up is done than start to write the codes in notepad or notepad++ editor. Here in order to print Hello World write the following code in Notepad or Notepad++ editor.</p>
<pre>public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello World");
    }
}</pre>
<p style="text-align: justify;">After this code is written in Notepad or Notepad++ editor save it in javaclass folder which you have created before as file name HelloWorld.java. Here remember that you must give the file name whatever the letters is written after public class. Here I have written as public class HelloWorld so you must save the file as &#8220;HelloWorld.java&#8221;. The JAVA is case sensitive so you must look for it too. After the code is saved in javaclass folder then</p>
<ul style="text-align: justify;">
<li>Open Command Prompt</li>
<li>Type cd\ and press enter</li>
<li>cd\jdk 1.7</li>
<li>cd\bin</li>
<li>javac</li>
<li>javac c:\javaclass\HelloWorld.java</li>
</ul>
<p style="text-align: justify;">If you the code is error free  than it will display c:\jdk 1.7\bin&gt; in your command prompt.</p>
<p style="text-align: justify;">If you code is error free than type followings</p>
<ul style="text-align: justify;">
<li>set classpath=c:\javaclass</li>
<li>java HelloWorld and press enter.</li>
<li>Prompt will execute Hello World.</li>
</ul>
<p style="text-align: justify;">
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/how-to-print-hello-world-in-java-first-java-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add post border in wordpress thesis theme</title>
		<link>http://sumana.com.np/how-to-add-post-border-in-wordpress-thesis-theme/</link>
		<comments>http://sumana.com.np/how-to-add-post-border-in-wordpress-thesis-theme/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 16:44:26 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[Blog Tutorial]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[add post border]]></category>
		<category><![CDATA[custom.css]]></category>
		<category><![CDATA[wordpress thesis theme]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=753</guid>
		<description><![CDATA[Hey today here I am going to teach you a tutorial about how to add post border in wordpress thesis theme. I hope you guys will be able to understand this tutorial and give cool border effect to your post. So how to add post border in wordpress thesis theme please follow the following instruction. [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sumana.com.np/how-to-add-post-border-in-wordpress-thesis-theme/" title="Permanent link to How to add post border in wordpress thesis theme"><img class="post_image alignnone" src="http://sumana.com.np/wp-content/uploads/2012/02/thesis-theme.png" width="285" height="285" alt="Post image for How to add post border in wordpress thesis theme" /></a>
</p><p style="text-align: justify;">Hey today here I am going to teach you a tutorial about how to add post border in wordpress thesis theme. I hope you guys will be able to understand this tutorial and give cool border effect to your post. So how to add post border in wordpress thesis theme please follow the following instruction.</p>
<p>Previously my page had no border as seen in the picture below.<a href="http://sumana.com.np/how-to-add-post-border-in-wordpress-thesis-theme/border-of-post/" rel="attachment wp-att-759"><img class="aligncenter size-medium wp-image-759" title="border of post" src="http://sumana.com.np/wp-content/uploads/2012/02/border-of-post-300x91.jpg" alt="border of post" width="300" height="91" /></a></p>
<p>In order to add post border in wordpress thesis theme firstly copy the given codes;</p>
<pre>/* content border */
.custom .post.top {
background:#ffffff none repeat scroll 0 0;
border:3px double #6BC9FF !important;
margin:1em;
padding:2em;
}

/* Style Remaining Posts (in a Multi-Post Listing) */
.custom .post.post_box {
background:#ffffff none repeat scroll 0 0;
border:3px double #6BC9FF;
margin:1em;
padding:2em;
}
/*content border*/</pre>
<p>Secondly login your wordpress admin<br />
Select custom file editor<a href="http://sumana.com.np/how-to-add-post-border-in-wordpress-thesis-theme/custom-file-editor/" rel="attachment wp-att-756"><img class="aligncenter size-full wp-image-756" title="custom file editor" src="http://sumana.com.np/wp-content/uploads/2012/02/custom-file-editor.jpg" alt="custom file editor" width="124" height="138" /></a><br />
Select custom.css<a href="http://sumana.com.np/how-to-add-post-border-in-wordpress-thesis-theme/custom/" rel="attachment wp-att-757"><img class="aligncenter size-medium wp-image-757" title="custom.css" src="http://sumana.com.np/wp-content/uploads/2012/02/custom-300x126.jpg" alt="custom.css" width="300" height="126" /></a><br />
and paste the given code and save it.<br />
now you are done you can see cool effect around your post. You can change the color code from the given above code as  your website/blog requirement. <a href="http://sumana.com.np/how-to-add-post-border-in-wordpress-thesis-theme/border/" rel="attachment wp-att-758"><img class="aligncenter size-medium wp-image-758" title="BORDER OF POST" src="http://sumana.com.np/wp-content/uploads/2012/02/BORDER-300x91.jpg" alt="BORDER OF POST" width="300" height="91" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/how-to-add-post-border-in-wordpress-thesis-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to install wordpress locally on computer</title>
		<link>http://sumana.com.np/how-to-install-wordpress-locally-on-computer/</link>
		<comments>http://sumana.com.np/how-to-install-wordpress-locally-on-computer/#comments</comments>
		<pubDate>Sun, 26 Feb 2012 16:48:51 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[apache server]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[install wordpress locally on computer]]></category>
		<category><![CDATA[installation guide to wordpress]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[wampserver]]></category>
		<category><![CDATA[web software]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=732</guid>
		<description><![CDATA[Hey guys today I am going to teach you a tutorial to install wordpress locally on your computer. Before starting the tutorial let me say something about the wordpress. WordPress is a type of blogging platform or we can say this is a blogging tools. WordPress is also can be called as the web software [...]]]></description>
			<content:encoded><![CDATA[<p><a class="post_image_link" href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/" title="Permanent link to How to install wordpress locally on computer"><img class="post_image alignnone" src="http://sumana.com.np/wp-content/uploads/2012/02/wordpress.jpg" width="606" height="464" alt="Post image for How to install wordpress locally on computer" /></a>
</p><p style="text-align: justify;"><a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wordpress/" rel="attachment wp-att-733"><img class="alignright size-medium wp-image-733" title="wordpress" src="http://sumana.com.np/wp-content/uploads/2012/02/wordpress-300x229.jpg" alt="wordpress" width="300" height="229" /></a>Hey guys today I am going to teach you a tutorial to install wordpress locally on your computer. Before starting the tutorial let me say something about the wordpress. WordPress is a type of blogging platform or we can say this is a blogging tools. WordPress is also can be called as the web software where you can create wonderful and beautiful website or blog. WordPress is one of the best blogging web software for blogging lovers. If you are a blogging lover than you might be wondering that how to install the wordpress locally on your computer so that you can perform your task faster while editing your content or the designing of our blog/website. While editing the content or coding of your wordpress themes than you might have several problems such as internet connection, code errors etc. whenever you have slow internet connection than obviously it will take long time to edit your pages or whenever you made mistake while editing the code online than you might have several difficulties. I also had similar kind of problem when I used to edit online but after installing wordpress locally on my computer made my work faster and efficiently. Here below is the method of installing the wordpress locally on your computer.</p>
<p style="text-align: justify;">In order to install wordpress locally on your computer you need some softwares i.e you need WordPress, MySQL to handle the Database of website or blog, Apache Web Server to handle the blog operaion, PHP Processor to handle the PHP commands that are in your website or blog and we need PHP My admin and SQLite Manager to customize coding in database. But how to get these stuff? Do not worry about this; you can do this easily with one software called Wampserver which is very easy to install in a single click.</p>
<p style="text-align: justify;">Now firstly you need to download Wampserver on your computer. You can download the wampserver by visiting <a href="http://www.wampserver.com/en/download.php">www.wampserver.com/en/download.php</a>. Download the wampserver on your computer and install it by double clicking wampserver.exe file which you downloaded on your computer.</p>
<p style="text-align: justify;">Click on Next<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wampserver/" rel="attachment wp-att-734"><img class="aligncenter size-medium wp-image-734" title="WampServer" src="http://sumana.com.np/wp-content/uploads/2012/02/WampServer-300x230.png" alt="WampServer" width="300" height="230" /></a></p>
<p style="text-align: justify;">select the agreement and click on next<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wampserver-agreement/" rel="attachment wp-att-735"><img class="aligncenter size-medium wp-image-735" title="wampserver agreement" src="http://sumana.com.np/wp-content/uploads/2012/02/wampserver-agreement-300x233.png" alt="wampserver agreement" width="300" height="233" /></a></p>
<p style="text-align: justify;">select create a quick launch icon and create a desktop icon,click on next and click on next<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wamp-server-create-desktop-icons/" rel="attachment wp-att-736"><img class="aligncenter size-medium wp-image-736" title="Wamp-server create desktop icons" src="http://sumana.com.np/wp-content/uploads/2012/02/Wamp-server-create-desktop-icons-300x228.png" alt="Wamp-server create desktop icons" width="300" height="228" /></a></p>
<p style="text-align: justify;">after few second you will get a browser detection notice on your computer so click on Yes button.<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wamp-server-browser-detect/" rel="attachment wp-att-737"><img class="aligncenter size-medium wp-image-737" title="wamp server browser detect" src="http://sumana.com.np/wp-content/uploads/2012/02/wamp-server-browser-detect-300x193.png" alt="wamp server browser detect" width="300" height="193" /></a></p>
<p style="text-align: justify;">After clicking Yes button a PHP mail parameters box will appears put SMTP as localhost as it is and provide your email address in Email box or you can put it blank. Click Next to continue.<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wampserver-php-mail-parameters/" rel="attachment wp-att-738"><img class="aligncenter size-medium wp-image-738" title="WampServer PHP Mail Parameters" src="http://sumana.com.np/wp-content/uploads/2012/02/WampServer-PHP-Mail-Parameters-300x230.png" alt="WampServer PHP Mail Parameters" width="300" height="230" /></a></p>
<p style="text-align: justify;">Now click on finish.<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wamserver-complete/" rel="attachment wp-att-739"><img class="aligncenter size-medium wp-image-739" title="wamserver complete" src="http://sumana.com.np/wp-content/uploads/2012/02/wamserver-complete-300x233.jpg" alt="wamp server" width="300" height="233" /></a></p>
<p style="text-align: justify;">After finishing your installation you will see a wampserver icon on your computer at the bottom right side of your computer.<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wampserver-system-tray-2/" rel="attachment wp-att-750"><img class="aligncenter size-full wp-image-750" title="wampserver system tray" src="http://sumana.com.np/wp-content/uploads/2012/02/wampserver-system-tray1.jpg" alt="wampserver system tray" width="241" height="266" /></a></p>
<p style="text-align: justify;">Now after the installation is completed you need to create the database; so to do this click on php MyAdmin seen on the bottom right side of your desktop or in system tray.</p>
<p style="text-align: justify;">Now on browser a phpMyAdmin page will appears.On create new database box type wordpress to create wordpress database and click on create button. Now your wordpress database is created.<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wampserver-database/" rel="attachment wp-att-741"><img class="aligncenter size-medium wp-image-741" title="wampserver database" src="http://sumana.com.np/wp-content/uploads/2012/02/wampserver-database-300x184.png" alt="wampserver database" width="300" height="184" /></a></p>
<p style="text-align: justify;">Thirdly you need to download wordpress from internet. To do this visit <a href="http://www.wordpress.org/">www.wordpress.org</a> and download the latest version of wordpress available on right side of the page and save on your computer.<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wordpress-download/" rel="attachment wp-att-742"><img class="aligncenter size-medium wp-image-742" title="wordpress download" src="http://sumana.com.np/wp-content/uploads/2012/02/wordpress-download-300x120.jpg" alt="wordpress download" width="300" height="120" /></a></p>
<p style="text-align: justify;">After the completion of wordpress download you will have .zip wordpress file. Now you need to extract this zip file. You can do this by right clicking on file and extract here. After the extraction is completed wordpress folders will appears where you can find number files inside it.</p>
<p style="text-align: justify;">After the file is extracted you need to make certain changes inside the extracted file. That is you need to change wp-config-sample.php file; to do this open wp-config-sample.php in your notepad or some text editor or Dreamweaver. Here you will see ‘DB_Name’,’putyourdbnamehere’; replace putyourdbnamehere to wordpress, usernamehere to root and yourpasswordhere to nothing (leave it blank deleting yourpasswordhere). Now save this file in new file name as wp-config.php.<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wampserver-wpconfig/" rel="attachment wp-att-743"><img class="aligncenter size-medium wp-image-743" title="wampserver wpconfig" src="http://sumana.com.np/wp-content/uploads/2012/02/wampserver-wpconfig-300x184.png" alt="wampserver wpconfig" width="300" height="184" /></a></p>
<p style="text-align: justify;">Now in next step you need to transfer all extracted and edited to the root to run properly. In order to do this you need to know where the root directories is. After the installation of wampserver; by default your root directory will be in C: where you will find a folder called wamp and inside the wamp folder you will see a folder named as www folder. Copy all the extracted and edited files and paste all the files in www folder.</p>
<p style="text-align: justify;">In next steep you need to install the wordpress which you downloaded from wordpress.org. To install wordpress open your browser and type localhost/wp-admin/install.php. After typing this address a page will appears saying information needed. Type your blog title, type your email, username, password and click on install wordpress. Now your wordpress is installed in your computer.<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wordpress-installation/" rel="attachment wp-att-744"><img class="aligncenter size-medium wp-image-744" title="wordpress installation" src="http://sumana.com.np/wp-content/uploads/2012/02/wordpress-installation-300x293.jpg" alt="wordpress installation" width="300" height="293" /></a></p>
<p style="text-align: justify;">To login your wordpress admin type localhost/wp-admin and hit enter. Now you will have your wordpress blog locally installed on your computer. Now you can rock your blogging.<a href="http://sumana.com.np/how-to-install-wordpress-locally-on-computer/wordpress-login/" rel="attachment wp-att-746"><img class="aligncenter size-medium wp-image-746" title="wordpress login" src="http://sumana.com.np/wp-content/uploads/2012/02/wordpress-login-300x227.jpg" alt="wordpress login" width="300" height="227" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/how-to-install-wordpress-locally-on-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to secure Facebook from hackers</title>
		<link>http://sumana.com.np/how-to-secure-facebook-from-hackers/</link>
		<comments>http://sumana.com.np/how-to-secure-facebook-from-hackers/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 07:37:41 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[facebook secure setting]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[How to secure Facebook from hackers]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[protect account]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=717</guid>
		<description><![CDATA[Facebook is one of the best social network sites of  present days where more than more than 800 million of users are there in present state. As the increases of the user are increasing day by day similarly the bad activities of the users are also influencing on facebook; especially these people are called hackers. [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a href="http://sumana.com.np/how-to-secure-facebook-from-hackers/facebook-secure/" rel="attachment wp-att-718"><img class="alignright size-medium wp-image-718" title="Facebook secure" src="http://sumana.com.np/wp-content/uploads/2011/12/Facebook-secure-278x300.jpg" alt="Facebook secure" width="278" height="300" /></a>Facebook is one of the best social network sites of  present days where more than more than 800 million of users are there in present state. As the increases of the user are increasing day by day similarly the bad activities of the users are also influencing on facebook; especially these people are called hackers. Since few month before there has been occurring a problems on facebook account. The main problem is publishing of unfamiliar ( Šéxûà?) links and videos on facebook wall which use to get automatically spread after the links are clicked. These sorts of vulgar and unwanted links are being published by the hackers on facebook. As the founder of facebook Mark Zuckerberg said that his facebook account was hacked by the hackers since these activities are being occurs in our facebook account. Sometimes the notifications are also displays on your notification link that your friends have shared this link or he/she has liked your link. But in reality is not true but the activity of hackers. So if you see any such sorts of links on your wall than your are suppose to delete it without watching and clicking the links because after watching or clicking the links it automatically spread on the wall of your friends.</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><strong>How to secure Facebook from hackers</strong></span></p>
<ul style="text-align: justify;">
<li>If you are interested to get protected by such types of activities than please follow the following methods so that can get protected from such types of misuse.</li>
<li>It is true that the hackers can easily get your email address from different places or the media but they feels difficult to get the password and this one is their challenging  job for them. So they have spread different software and websites on internet which required sign up. So if you are downloading any types of software or if you are opening any sorts of account on internet than do not use the password as same as of facebook. If you provide the same password as same as of facebook account than hackers can easily hack your facebook account. If you are interested to sign up or register such type of account than provide different password.</li>
<li>While creating new facebook account do not provide your personal full information on it because hackers or some other may misuse it.</li>
<li>While providing the password on facebook; make it difficult by giving different symbols, characters, numbers and letters. Do not use the common letters and words such as 1,2,3, home address, life partner/lover name, mobile number, own name or last name etc. provide the password with different characters like “85^sum43#”</li>
<li>Number of people are opening their facebook account to spy other people and number of request are coming on your friend request, so if you are accepting any one on facebook friend request than do not look their photo uploaded but check their friend list, info, bio, wall etc.</li>
<li>While installing any new types of application on facebook may spread the virus so we must find out the complete information of those application and confirm that it is secure for you.</li>
<li>Using the information like your phone number, address or your personal information on your info of your facebook may cause difficult for you because number of business people will may call you and give you problems saying buy this, that, admit here, there blahhh… blahh… sometime this information may goes in the hand of criminal too. As well as we must not show the email address on facebook info. Together with if you are liking any sorts of pages you must be careful. Sometime such pages may not be familiar to you.</li>
<li>The facebook users must use the mobile confirmation system on your setting.</li>
<li>If you see any unwanted and unfamiliar links on your wall than please delete it and do not watch it because it get spread automatically to your friends wall as the result your good relation may break with your closet and best friends.</li>
</ul>
<p style="text-align: justify;"><span style="color: #339966;"><strong>Note: please do not create facebook account on the name of some other person or people.</strong></span></p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><span style="color: #33cccc; text-decoration: underline;"><strong>Also Read About:</strong></span></span></p>
<ul>
<li><a href="http://sumana.com.np/protect-your-self-from-facebook-stalkers/">Protect your self from facebook stalkers</a></li>
<li><a href="http://sumana.com.np/how-to-secure-the-facebook-account/">How to secure the Facebook account</a></li>
<li><a href="http://sumana.com.np/how-to-create-dynamic-facebook-fan-page-easily/">How to create dynamic Facebook Fan Page easily</a></li>
<li><a href="http://sumana.com.np/how-to-set-up-video-calling-on-facebook/">How to set up video calling on Facebook</a></li>
<li><a href="http://sumana.com.np/twitter-vs-facebook/">Twitter v/s Facebook</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/how-to-secure-facebook-from-hackers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add Meta tags in blog</title>
		<link>http://sumana.com.np/how-to-add-meta-tags-in-blog/</link>
		<comments>http://sumana.com.np/how-to-add-meta-tags-in-blog/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 08:06:40 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[Blog Tutorial]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[How to add Meta tags in blog]]></category>
		<category><![CDATA[how to edit blog]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[tutorial to use meta tags]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=695</guid>
		<description><![CDATA[Meta tags are one of most essential parts of any website or blog for the better position in search engines like Google, Yahoo, and Bing etc. Meta tags help to say what types of website or blog is it. In another language we can say that Meta tags use to provide the information about website [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a href="http://sumana.com.np/how-to-add-meta-tags-in-blog/meta/" rel="attachment wp-att-703"><img class="alignright size-full wp-image-703" title="meta" src="http://sumana.com.np/wp-content/uploads/2011/11/meta.jpg" alt="meta tag" width="216" height="261" /></a>Meta tags are one of most essential parts of any website or blog for the better position in search engines like Google, Yahoo, and Bing etc. Meta tags help to say what types of website or blog is it. In another language we can say that Meta tags use to provide the information about website or blog. Meta tags help you to index pages in accurate and efficient way in search engine. Meta tags plays very vital role in blog or web page. If you are interested to keep Meta tags in your blog but you do not know that what is Meta tags than you might have problem in coming days regarding your blog traffic. Today I am here to provide you a tutorial about how to keep in your blogger blog. So please follow the following instruction for the better Meta tags.<br />
How to add Meta tags in blog</p>
<p>Firstly login your blogger account</p>
<p>Click on Design option as in figure below</p>
<p><a href="http://sumana.com.np/how-to-add-meta-tags-in-blog/meta-tag/" rel="attachment wp-att-701"><img class="aligncenter size-medium wp-image-701" title="meta tag" src="http://sumana.com.np/wp-content/uploads/2011/11/meta-tag-300x103.jpg" alt="meta tag" width="300" height="103" /></a></p>
<p>Click on Edit html as in figure below</p>
<p><a href="http://sumana.com.np/how-to-add-meta-tags-in-blog/meta-tag1/" rel="attachment wp-att-702"><img class="aligncenter size-full wp-image-702" title="meta tag" src="http://sumana.com.np/wp-content/uploads/2011/11/meta-tag1.jpg" alt="meta tag" width="278" height="103" /></a></p>
<p>Search the following code by pressing Ctrl+F from keyboard</p>
<pre>&lt;b:include data=‘blog’ name=‘all-head-content’ /&gt;</pre>
<p>Paste the following codes just below the above code.</p>
<pre>&lt;meta content=‘YOUR BLOG DESCRIPTION HERE’ name=‘description’ /&gt;
&lt;meta content=‘YOUR KEYWORDS HERE’ name=‘keywords’ /&gt;
&lt;meta content=‘YOUR NAME HERE’ name=‘author’ /&gt;
&lt;meta content=‘ALL’ name=‘ROBOTS’ /&gt;
&lt;meta content=‘blogger’ name=‘generator’ /&gt;</pre>
<p>Note: In above code, provide the description of your blog in “Your Blog Description”, provide the keywords which describe your blog in “Your Keyword Here”, you also can add author name in “Your Name Here”</p>
<p>Finally, save your template.</p>
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/how-to-add-meta-tags-in-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top android applications for android smartphone</title>
		<link>http://sumana.com.np/top-android-applications-for-android-smartphone/</link>
		<comments>http://sumana.com.np/top-android-applications-for-android-smartphone/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 11:20:27 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[Android Operating System]]></category>
		<category><![CDATA[android smartphone]]></category>
		<category><![CDATA[Barcode Scanner]]></category>
		<category><![CDATA[Epicurious]]></category>
		<category><![CDATA[Google Maps]]></category>
		<category><![CDATA[Photoshop Express]]></category>
		<category><![CDATA[Sketchbook mobile]]></category>
		<category><![CDATA[Speedview]]></category>
		<category><![CDATA[Top android applications]]></category>
		<category><![CDATA[Weatherbug]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=670</guid>
		<description><![CDATA[Before writing something about the top android applications; let me write something about the Android. Android is a type of Operating System which is used in mobile devices or we can say that likely android operating system is used in smartphones and some computer tablets. The development of the android is introduced as per the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a href="http://sumana.com.np/wp-content/uploads/2011/11/Android.gif"><img class="alignright size-medium wp-image-671" title="Android" src="http://sumana.com.np/wp-content/uploads/2011/11/Android-300x225.gif" alt="Android" width="256" height="192" /></a>Before writing something about the top android applications; let me write something about the Android. Android is a type of Operating System which is used in mobile devices or we can say that likely android operating system is used in smartphones and some computer tablets. The development of the android is introduced as per the demands and wants of mobile device users &amp; as per the advancement in technology. In preface we can understand the Android as an operation system. But today I am not going to tell detail about the android operating system but today I am discussing some of the top android applications used. As the android introduced number of applications are introduced and out of them some are good and some of them were not good. There are also still some of the applications which are in top level and followings are some of the top android applications used in smart phone and tablet computers.</p>
<p style="text-align: justify;"><strong>Photoshop Express:</strong></p>
<p style="text-align: justify;">We people use to say that mobile device with the absence of camera is nothing; even now most of the people do not show this type of mobile phones to their friends. So now its become a trend that a mobile device must have camera facility. So most of the mobile device that are available in these days have camera. Though the users can snap photos with their devices but one of a unfortunate thing is they will not be able to edit those photos as we use to edit in our computer by using some photo editor applications. So by viewing this problem android have introduced an application called photoshop express in smart phone which have android operating system. With the help of photoshop express application the smart phone user easily can edit their photos, for example they can edit colors, change the quality adjustment, give different effects and cropping too. The users do not have to swith on their computer PC for this work. And after that user will be ready to share those photos on Facebook, tweeter or some other social networking sites.<a href="http://sumana.com.np/wp-content/uploads/2011/11/Photoshop-Express.jpg"><img class="aligncenter size-medium wp-image-672" title="Photoshop Express" src="http://sumana.com.np/wp-content/uploads/2011/11/Photoshop-Express-300x271.jpg" alt="Photoshop Express" width="289" height="261" /></a></p>
<p style="text-align: justify;"><strong>Sketchbook mobile</strong></p>
<p style="text-align: justify;">If we have to look another cool application for android mobile phone than the name of sketch book mobile will not be left. Sketch book mobile is one of the coolest application whch offer the user a full set of sketching tools where the users easily can sketch pictures and design it with their finger tip.<a href="http://sumana.com.np/wp-content/uploads/2011/11/Sketchbook-mobile.jpg"><img class="aligncenter size-medium wp-image-673" title="Sketchbook mobile" src="http://sumana.com.np/wp-content/uploads/2011/11/Sketchbook-mobile-200x300.jpg" alt="Sketchbook mobile" width="198" height="298" /></a></p>
<p style="text-align: justify;"><strong>Weatherbug:</strong></p>
<p style="text-align: justify;">Weatherbug is another best android application which use to give the weather alerts, forecast and current conditions of the place etc. this weatherbug use to give most accurate and reliable together with timely weather information from topographic maps to the conditions of weather on your smart phone. It is consider as one of the most comprehensive weather application available in android smart phone.<a href="http://sumana.com.np/wp-content/uploads/2011/11/Weatherbug1.jpg"><img class="aligncenter size-medium wp-image-679" title="Weatherbug for android" src="http://sumana.com.np/wp-content/uploads/2011/11/Weatherbug1-300x249.jpg" alt="Weatherbug for android" width="300" height="249" /></a></p>
<p style="text-align: justify;"><strong>Speedview:</strong></p>
<p style="text-align: justify;">If you are running or traveling and if you want to know or find out what is your speed at that time than I think you will not be able to find it if you do not have any such type of instrument which check your speed. But if you have android smart phone with the application speed view than definetly you will be able to. Yes the main function of this application is to provide you current, average and maximum speed together with the total distance and the total time traveled as well as direction too. Speedview is consider as one of the most advance application use in Android phones which uses the GPS system of your smart mobile phone.<a href="http://sumana.com.np/wp-content/uploads/2011/11/Speedview.jpg"><img class="aligncenter size-medium wp-image-675" title="Speedview" src="http://sumana.com.np/wp-content/uploads/2011/11/Speedview-300x263.jpg" alt="Speedview" width="262" height="229" /></a></p>
<p style="text-align: justify;"><strong>Google Maps:</strong></p>
<p style="text-align: justify;">The application called google maps is now of the most popular application on our computers but now not only that google maps also comes under one of the best application on androd mobile phone too. With the help of Google maps installed on your android device easily can search places, hotels, directions, latitudes etc with the GPS navigation. If you have this application in your android device than you do not need to cary any paper map for you. These days Google Maps is now becoming popular in android smart phone too.<a href="http://sumana.com.np/wp-content/uploads/2011/11/Google-Maps.jpg"><img class="aligncenter size-medium wp-image-676" title="Google Maps" src="http://sumana.com.np/wp-content/uploads/2011/11/Google-Maps-300x226.jpg" alt="Google Maps" width="258" height="194" /></a></p>
<p style="text-align: justify;"><strong>Epicurious:</strong></p>
<p style="text-align: justify;">You have seen cooking book and different tips books as a physical component but most of the people may not have seen those cooking book digitally in their mobile phone. If you are lover of cookig or if you always wonder that what to cook for dinner or if you want something delicious for your dinner; than you do not need to be worry if you have Epicurious application in your android smart phone. Epicurous is one of the best &amp; best android application which easily can provide you recipe details with simple browsing site of epicurous. This application can provide you more than 28000 delicious recipes from renowned magazines which are tested by professionals. Epicurious application work as your cooking book.<a href="http://sumana.com.np/wp-content/uploads/2011/11/epicurious.png"><img class="aligncenter size-medium wp-image-677" title="epicurious android" src="http://sumana.com.np/wp-content/uploads/2011/11/epicurious-180x300.png" alt="epicurious android" width="180" height="300" /></a></p>
<p style="text-align: justify;"><strong>Barcode Scanner:</strong></p>
<p style="text-align: justify;">Barcode scanner is another best android application available. With this application you can easily scan the barcode available that are you found in products and find out its reviews and prices. With barcode scanner the android phone user also can scan Data Matrix &amp; QR Codes  too.  In view point of price, productivity you will not be cheated if your android device have barcode scanner. Barcode scanner is one of the coolest application available as android application.<a href="http://sumana.com.np/wp-content/uploads/2011/11/barcode-scanner.jpg"><img class="aligncenter size-medium wp-image-678" title="barcode scanner for android" src="http://sumana.com.np/wp-content/uploads/2011/11/barcode-scanner-300x200.jpg" alt="barcode scanner for android" width="278" height="185" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/top-android-applications-for-android-smartphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free web hosting service provider</title>
		<link>http://sumana.com.np/free-web-hosting-service-provider/</link>
		<comments>http://sumana.com.np/free-web-hosting-service-provider/#comments</comments>
		<pubDate>Tue, 04 Oct 2011 17:27:06 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[web hosting]]></category>
		<category><![CDATA[Web hosting Business]]></category>
		<category><![CDATA[best web hosting provider]]></category>
		<category><![CDATA[cheap web hosting provider]]></category>
		<category><![CDATA[free web hosting]]></category>
		<category><![CDATA[Free web hosting service provider]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=664</guid>
		<description><![CDATA[There are number of web hosting companies which provide different types of services, but there are also some of the companies which provide free web hosting service. In free web hosting service user do not need to pay for the space. Generally these free web hosting service are use for the advertisement. As I have [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a href="http://sumana.com.np/wp-content/uploads/2011/10/Web-hosting1.jpg"><img class="alignright size-medium wp-image-667" title="web hosting" src="http://sumana.com.np/wp-content/uploads/2011/10/Web-hosting1-300x225.jpg" alt="web hosting" width="300" height="225" /></a>There are number of web hosting companies which provide different types of services, but there are also some of the companies which provide free web hosting service. In free web hosting service user do not need to pay for the space. Generally these free web hosting service are use for the advertisement. As I have already mentioned that free web hosting is free of cost but these types of companies also use to provide free subdomain. Subdomain means it is child domain followed by the main domain name for example if the main domain name is www.example.com than sub domain name can be yoursite.example.com. There are also many companies which provide certain amount of web space in free and make the user to pay for the domain. There are also some of the free web host companies which provide free 3<sup>rd</sup> level domain name free with the DNS &amp; other facilities.</p>
<p style="text-align: justify;">Most of the free web hosting service available is based on the Linux based servers with the support to the Mysql, PHP and CGI based scripts. WHM and Vista Panel are the types of services used as control panel.</p>
<p style="text-align: justify;">Some of the examples of free web hosting service are:</p>
<ul style="text-align: justify;">
<li>000webhost.com: free web space of 1500 MB</li>
<li>50megs.com: 50 MB disk space free</li>
<li>110mb.com: 110 MB Disk Space free</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/free-web-hosting-service-provider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft windows 8</title>
		<link>http://sumana.com.np/microsoft-windows-8/</link>
		<comments>http://sumana.com.np/microsoft-windows-8/#comments</comments>
		<pubDate>Sat, 17 Sep 2011 09:00:42 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[Microsoft Windows]]></category>
		<category><![CDATA[Window server]]></category>
		<category><![CDATA[ARM microprocessors]]></category>
		<category><![CDATA[business desktops]]></category>
		<category><![CDATA[graphical user interface]]></category>
		<category><![CDATA[laptops]]></category>
		<category><![CDATA[media center PC]]></category>
		<category><![CDATA[Microsoft Company]]></category>
		<category><![CDATA[Microsoft windows 8]]></category>
		<category><![CDATA[notebooks]]></category>
		<category><![CDATA[tablet PC]]></category>
		<category><![CDATA[windows 8 release]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=660</guid>
		<description><![CDATA[Microsoft windows is one of the world most popular operating system based in graphical user interface that means which is very friendly to the users. As we have seen and used the different versions of Microsoft windows such as windows 95, windows me, windows 98, windows NT 4.0, windows 2000, windows server 2003, windows vista, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a href="http://sumana.com.np/wp-content/uploads/2011/09/windows8.jpg"><img class="alignright size-medium wp-image-661" title="windows8" src="http://sumana.com.np/wp-content/uploads/2011/09/windows8-300x187.jpg" alt="Microsoft windows 8" width="300" height="187" /></a>Microsoft windows is one of the world most popular operating system based in graphical user interface that means which is very friendly to the users. As we have seen and used the different versions of Microsoft windows such as windows 95, windows me, windows 98, windows NT 4.0, windows 2000, windows server 2003, windows vista, windows XP, windows 7. These are the most used windows by the users in the world which is very easy and simple to use &amp; are very friendly to users. Day by day Microsoft is developing as the competition increases. From the birth of Microsoft to till now it has developed extremely. Year by year company introducing latest and new types of features similarly, company is now going to produce its latest version of windows called windows 8. It’s the codename of the next version of Microsoft Windows, a family of operating systems produced by the company Microsoft for the personal use in computer together with in home &amp; business desktops, laptops, tablet PC, notebooks and in media center PC.</p>
<p style="text-align: justify;">Windows 8 adds the support for ARM microprocessors in addition to traditional x86 micro-processors from AMD and Intel. Windows 8 the user interface has been changed for the better suited for touch screen input in addition to traditional mouse &amp; keyboard input.</p>
<p style="text-align: justify;">According to the Microsoft Company it has not yet announced releasing date of windows 8 but according to the major media outlets it will be available in late 2012.</p>
<p style="text-align: justify;">Source: Wikipedia.org</p>
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/microsoft-windows-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scientific Linux: Open Source Operating System</title>
		<link>http://sumana.com.np/scientific-linux-open-source-operating-system/</link>
		<comments>http://sumana.com.np/scientific-linux-open-source-operating-system/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 12:12:39 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[computer software]]></category>
		<category><![CDATA[Enterprise Linux]]></category>
		<category><![CDATA[Linus Torvalds]]></category>
		<category><![CDATA[linux downloads]]></category>
		<category><![CDATA[linux support]]></category>
		<category><![CDATA[linux training]]></category>
		<category><![CDATA[linux tutorials]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[Red Hat]]></category>
		<category><![CDATA[Scientific Linux]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=652</guid>
		<description><![CDATA[Most of the people may have heard about the Linux; Linux is a type of operating system used in computers and this operating system is open source software which was developed by Linus Torvalds in the year 1992. But friend today I am not going to talk about the Linux, today I’m writing about Scientific [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a href="http://sumana.com.np/wp-content/uploads/2011/09/scientific-Linux.png"><img class="alignright size-medium wp-image-655" title="scientific Linux" src="http://sumana.com.np/wp-content/uploads/2011/09/scientific-Linux-295x300.png" alt="scientific Linux" width="264" height="268" /></a>Most of the people may have heard about the Linux; Linux is a type of operating system used in computers and this operating system is open source software which was developed by Linus Torvalds in the year 1992. But friend today I am not going to talk about the Linux, today I’m writing about Scientific Linux. Scientific Linux is introduced by Fermi National Acceelerator Laboratory, CERN (European Organization for Nuclear Research) &amp; the different labs and universities all over the world. Scientific Linux is an open source operating system which is based on the Red hat. Aim of Scientific Linux is to be close to commercial enterprises allotment. The base Scientific Linux distribution is chiefly Enterprise Linux, recompiled from source. This is derived from open source software and free made available by the Red hat but is not supported or maintained by the Red Hat, Inc. The main aim of Scientific Linux is to have every thing compatible with the Enterprises with few small additions or changes. Alpine &amp; Open AFS are some examples of items.</p>
<p style="text-align: justify;">Scientific Linux is developed from source code of Red Hat Enterprises Linux versions under the rules and regulations of Red Hat Enterprise Linux’s EULA &amp; GNU General Public License.</p>
<p style="text-align: justify;">If we see the history than FERMI lab already had Linux distribution called Fermi Linux LTS 3.0.1 which was based on RHEL. Similarly the CERN was also developing their next version of CERN Linux which was also based on RHEL. Therefore CERN contracted with Fermilab about joint collaboration. Main driver and the developer behind the first prototype and the initial release was Connie Sieh. And the first release was made in the year 2004 May 10. At the time of release of Scientific Linux 3.0.1 CERN made collaboration &amp; became the co-developer of Scientific Linux. This Scientific Linux comprises software that are appropriate for scientists &amp; those people who are working with the scientific data.</p>
<p style="text-align: justify;">Source: scientificlinux.org &amp; wikipedia.org</p>
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/scientific-linux-open-source-operating-system/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to download youtube videos to computer</title>
		<link>http://sumana.com.np/how-to-download-youtube-videos-to-computer/</link>
		<comments>http://sumana.com.np/how-to-download-youtube-videos-to-computer/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 10:29:53 +0000</pubDate>
		<dc:creator>suman</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[YouTube]]></category>
		<category><![CDATA[How to download youtube videos to computer]]></category>
		<category><![CDATA[keepvid]]></category>
		<category><![CDATA[online youtube video download]]></category>
		<category><![CDATA[savevid]]></category>
		<category><![CDATA[tutorial to download youtube video]]></category>
		<category><![CDATA[youtube video downloader]]></category>

		<guid isPermaLink="false">http://sumana.com.np/?p=645</guid>
		<description><![CDATA[In the internet we use to find different types of information such that may be in the form of website text, sound or that may be in video format. Videos are one of the most effective media to transfer the information. With the help of video we can learn many things such as we can [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: justify;"><a href="http://sumana.com.np/wp-content/uploads/2011/08/YouTube.png"><img class="alignright size-medium wp-image-648" title="YouTube" src="http://sumana.com.np/wp-content/uploads/2011/08/YouTube-300x300.png" alt="YouTube" width="300" height="300" /></a>In the internet we use to find different types of information such that may be in the form of website text, sound or that may be in video format. Videos are one of the most effective media to transfer the information. With the help of video we can learn many things such as we can have different types of video tutorial, learn our courses with the videos of popular lecturer and many more. With the help of internet we can watch these video when the internet is activated in your computer. But what happen if your computer is not connected with internet and you have to watch the lecture of your professor that you missed in your last class. Of course you will search for that video which shoots when your lecturer was giving lecture of your course study. You will ask for your friends for that video but what if your friends are out of your reach and if they didn’t share that video? Yes you will miss that video. You will try to search that video on internet but what if you do not know how to download that video. You will be in problem. Friends if you do not know that how to download youtube videos than today I am going to guide that how to download youtube videos to computer.</p>
<p style="text-align: justify;">
Downloading videos from youtube is a kind of passion for some people; they love to download youtube videos. When you download youtube videos to computer than you can easily watch that video when your computer is out of reach from internet. There are different methods to download youtube videos to computer, some people uses youtube downloader and some other kind of software to download youtube video. Most of the people uses browser plug-in to download youtube video; in one way installing plug-in in web browser have advantage that is whenever you will watch a video on internet website that it automatically save the videos that you watched and for future it will save to your computer. Generally people are using such types of plug-in. But while using plug-in what is the disadvantage is that we must watch the full video.</p>
<p style="text-align: justify;">
<strong>Youtube downloader</strong><br />
<a href="http://sumana.com.np/wp-content/uploads/2011/08/youtube-downloader.jpg"><img class="alignright size-medium wp-image-649" title="youtube downloader" src="http://sumana.com.np/wp-content/uploads/2011/08/youtube-downloader-300x258.jpg" alt="youtube downloader" width="300" height="258" /></a>Youtube downloader is another type of software which can be easily download from internet and can install to their computer. If you want to download youtube video to computer using youtube downloader than firstly you need to download the youtube downloader from internet and install to your computer after installation. When the youtube downloader is successfully installed to you computer than open you the program from your computer, a youtube downloader box will appears asking “Enter Video URL”, here you can copy the URL of the video from youtube that you want to download and click on OK button; after this it will take few time and your video will start to download. This is one of the best ways to download youtube video to computer in a simple way where you do not need to watch full video and the plug-in use to do. Youtube downloader format is given in the figure below.</p>
<p style="text-align: justify;">
<strong>Download youtube video to computer using online service</strong><br />
If you have internet connected to your computer than you also can easily download youtube video to computer using the online service. There are lots of online services present in internet. So some of popular of them I am going to describe. Before describing about such services let me say how the online services use to work while downloading youtube video to computer. Generally the web services simply need the URL of the videos that you want to download, such services also gives facilities to convert the videos to different formats such as flv, 3gp, mp4, avi etc. so following are some of the top online youtube download service providers.</p>
<ul style="text-align: justify;">
<li>Savevid.com</li>
<li>Keepvid.com</li>
<li>Kcoolonline.com</li>
<li>Zamzar.com</li>
<li>Vidgrab.com</li>
<li>Keep-tube.com</li>
<li>Saveyoutube.com</li>
<li>videogetting.com</li>
</ul>
<p style="text-align: justify;">These above are some of the top youtube video downloader. Where simply you need URL of your video and past the URL in located area and click on download. Online youtube download is one of the best ways to download youtube videos. I also use online video downloader. Most of the time I use to download from savevid.com. In savevid you need video URL from youtube.com and past in located area, but friend you must remember that while you download any video using online services your computer must have Java installed in your computer; if the Java is not installed in your computer than you cannot download videos. You can download Java from java.com/en/download/. After you installed Java into your computer than you can easily download videos from online services. Here below I have given an example of savevid.com downloading format please proceed it.<a href="http://sumana.com.np/wp-content/uploads/2011/08/savevid.jpg"><img class="aligncenter size-medium wp-image-647" title="savevid" src="http://sumana.com.np/wp-content/uploads/2011/08/savevid-300x141.jpg" alt="Youtube downloader" width="379" height="176" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://sumana.com.np/how-to-download-youtube-videos-to-computer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

