<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>A GEEK GUY FROM DREAMLAND</title>
	<atom:link href="http://nirajlimbu.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://nirajlimbu.wordpress.com</link>
	<description>Information Technology</description>
	<lastBuildDate>Sat, 23 Jan 2010 04:10:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='nirajlimbu.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>A GEEK GUY FROM DREAMLAND</title>
		<link>http://nirajlimbu.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://nirajlimbu.wordpress.com/osd.xml" title="A GEEK GUY FROM DREAMLAND" />
	<atom:link rel='hub' href='http://nirajlimbu.wordpress.com/?pushpress=hub'/>
		<item>
		<title>10 More WordPress Hacks for Easy Life</title>
		<link>http://nirajlimbu.wordpress.com/2010/01/23/wordpress-tips/</link>
		<comments>http://nirajlimbu.wordpress.com/2010/01/23/wordpress-tips/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 04:07:31 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[Crackers]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/?p=166</guid>
		<description><![CDATA[This post is a continuation of the “WordPress Hacks” posts that I wrote earlier. 10 WordPress Hacks to Make your Life Easy 10 WordPress Hacks to Make your Life even Easier If you liked those, you will love this one. Here goes :- 1. FIGHT CROSS BROWSER COMPATIBILITY THE WORDPRESS WAY While designing a theme, there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=166&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>
<p><img title="wordpress-hack" src="http://www.blogohblog.com/wp-content/pop/2009/11/wordpress-hack.jpg" alt="wordpress-hack" width="492" height="325" /></p>
<p>This post is a continuation of the <strong>“WordPress Hacks”</strong> posts that I wrote earlier.</p>
<ul>
<li>10 WordPress Hacks to Make your Life Easy</li>
<li>10 WordPress Hacks to Make your Life even Easier</li>
</ul>
<p>If you liked those, you will love this one. Here goes :-</p>
<h3>1. FIGHT CROSS BROWSER COMPATIBILITY THE WORDPRESS WAY</h3>
<p>While designing a theme, there are numerous cross browser compatibility issues that raise their head, and most of the times we are left with no choice but revert to using conditional hacks. The following WordPress hacks can really save a lot of headache :-</p>
<p>Open your <em>functions.php</em> file in the theme folder and add the following code :-</p>
<div id="highlighter_378381">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>&lt;?php</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code>add_filter(</code><code>'body_class'</code><code>,</code><code>'browser_body_class'</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code>function</code> <code>browser_body_class(</code><code>$classes</code><code>) {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code> </code><code>global</code> <code>$is_lynx</code><code>, </code><code>$is_gecko</code><code>, </code><code>$is_IE</code><code>, </code><code>$is_opera</code><code>, </code><code>$is_NS4</code><code>, </code><code>$is_safari</code><code>, </code><code>$is_chrome</code><code>,</code><code>$is_iphone</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td><code> </code><code>if</code><code>(</code><code>$is_lynx</code><code>) </code><code>$classes</code><code>[] = </code><code>'lynx'</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code> </code><code>elseif</code><code>(</code><code>$is_gecko</code><code>) </code><code>$classes</code><code>[] = </code><code>'gecko'</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>8</code></td>
<td><code> </code><code>elseif</code><code>(</code><code>$is_opera</code><code>) </code><code>$classes</code><code>[] = </code><code>'opera'</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>9</code></td>
<td><code> </code><code>elseif</code><code>(</code><code>$is_NS4</code><code>) </code><code>$classes</code><code>[] = </code><code>'ns4'</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>10</code></td>
<td><code> </code><code>elseif</code><code>(</code><code>$is_safari</code><code>) </code><code>$classes</code><code>[] = </code><code>'safari'</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>11</code></td>
<td><code> </code><code>elseif</code><code>(</code><code>$is_chrome</code><code>) </code><code>$classes</code><code>[] = </code><code>'chrome'</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>12</code></td>
<td><code> </code><code>elseif</code><code>(</code><code>$is_IE</code><code>) </code><code>$classes</code><code>[] = </code><code>'ie'</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>13</code></td>
<td><code> </code><code>else</code> <code>$classes</code><code>[] = </code><code>'unknown'</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>14</code></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>15</code></td>
<td><code> </code><code>if</code><code>(</code><code>$is_iphone</code><code>) </code><code>$classes</code><code>[] = </code><code>'iphone'</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>16</code></td>
<td><code> </code><code>return</code> <code>$classes</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>17</code></td>
<td><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>18</code></td>
<td><code>?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>The above function adds the name of the browser (e.g, opera, safari etc.) to your tag like this :-</p>
<div id="highlighter_621394">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>&lt;body </code><code>class</code><code>=</code><code>"home blog logged-in safari"</code><code>&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>Now you being a theme designer can take help of this custom class and write your CSS accordingly if you are facing any compatibility issues with any browser. This can be called as “<strong>planning in advance</strong>“!</p>
<h3>2. SCHEDULE AN EVENT USING WORDPRESS</h3>
<p>Many of us already know that posts on a WordPress blog can be scheduled to be posted on future dates. But did you know that this alarm kind of function can be used for different other things too! Here is a practicle usage that lets your WordPress blog shoot out an e-mail to you every hour (A very handy function in case you want to know the uptime of your website – Just make a folder in your e-mail for such e-mails and read them later as log details). Add the following code into the <em>functions.php</em> file of your theme.</p>
<div id="highlighter_50473">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>if</code> <code>(!wp_next_scheduled(</code><code>'my_task_hook'</code><code>)) {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code> </code><code>wp_schedule_event( time(), </code><code>'hourly'</code><code>, </code><code>'my_task_hook'</code> <code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code>add_action( </code><code>'my_task_hook'</code><code>, </code><code>'my_task_function'</code> <code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td><code>function</code> <code>my_task_function() {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code> </code><code>wp_mail(</code><code>'you@yoursite.com'</code><code>, </code><code>'Automatic email'</code><code>, </code><code>'Hello, this is an automatically scheduled email from WordPress.'</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>8</code></td>
<td><code>}</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>You can define your e-mail and subject in the above code yourself.</p>
<h3>3. REMOVING UNWANTED LINKS FROM YOUR COMMENTS</h3>
<p>Here is a neat function that lets you remove unwanted links from your comments. As before, place the following code in the <em>functions.php</em> file of the theme folder :-</p>
<div id="highlighter_708221">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>function</code> <code>plc_comment_post( </code><code>$incoming_comment</code> <code>) {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code> </code><code>$incoming_comment</code><code>[</code><code>'comment_content'</code><code>] = htmlspecialchars(</code><code>$incoming_comment</code><code>[</code><code>'comment_content'</code><code>]);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code> </code><code>$incoming_comment</code><code>[</code><code>'comment_content'</code><code>] = </code><code>str_replace</code><code>( </code><code>"'"</code><code>, '&amp;apos;</code><code>', $incoming_comment['</code><code>comment_content'] );</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code> </code><code>return</code><code>( </code><code>$incoming_comment</code> <code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code>function</code> <code>plc_comment_display( </code><code>$comment_to_display</code> <code>) {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>8</code></td>
<td><code> </code><code>$comment_to_display</code> <code>= </code><code>str_replace</code><code>( </code><code>'&amp;apos;'</code><code>, </code><code>"'"</code><code>, </code><code>$comment_to_display</code> <code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>9</code></td>
<td><code> </code><code>return</code> <code>$comment_to_display</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>10</code></td>
<td><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>11</code></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>12</code></td>
<td><code>add_filter(</code><code>'preprocess_comment'</code><code>, </code><code>'plc_comment_post'</code><code>, </code><code>''</code><code>, 1);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>13</code></td>
<td><code>add_filter(</code><code>'comment_text'</code><code>, </code><code>'plc_comment_display'</code><code>, </code><code>''</code><code>, 1);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>14</code></td>
<td><code>add_filter(</code><code>'comment_text_rss'</code><code>, </code><code>'plc_comment_display'</code><code>, </code><code>''</code><code>, 1);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>15</code></td>
<td><code>add_filter(</code><code>'comment_excerpt'</code><code>, </code><code>'plc_comment_display'</code><code>, </code><code>''</code><code>, 1);</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>Spammers Die! Yay!</p>
<h3>4. RETRIEVING POSTS WITHIN A DATE RANGE</h3>
<p>Sometimes you will need to pull posts between two specific dates from your blog. The code below allows you to do just that :-</p>
<div id="highlighter_484056">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>&lt;?php</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code> </code><code>function</code> <code>filter_where(</code><code>$where</code> <code>= </code><code>''</code><code>) {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code> </code><code>$where</code> <code>.= </code><code>" AND post_date &gt;= '2009-03-17' AND post_date &lt;= '2009-05-03'"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code> </code><code>return</code> <code>$where</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td><code> </code><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td><code>add_filter(</code><code>'posts_where'</code><code>, </code><code>'filter_where'</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code>query_posts(</code><code>$query_string</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>8</code></td>
<td><code>while</code> <code>(have_posts()) :</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>9</code></td>
<td><code> </code><code>the_post();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>10</code></td>
<td><code> </code><code>the_content();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>11</code></td>
<td><code>endwhile</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>12</code></td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>13</code></td>
<td><code>?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>You can copy and paste the above code anywhere within your template files. Just don’t forget to change the dates.</p>
<h3>5. USING MULTIPLE LOOPS WITHOUT DUPLICATION</h3>
<p>If you need to break display your posts in different sections (like in Magazine themes), where you want to display a fixed number of posts first, and the remaining later, you can use this code to make multiple loops (with offsetting the fixed posts in the later loop).</p>
<p>The first loop that will pull and display 5 recent posts :-</p>
<div id="highlighter_845461">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>&lt;?php</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code>query_posts(</code><code>'showposts=5'</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code>$ids</code> <code>= </code><code>array</code><code>();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code>while</code> <code>(have_posts()) : the_post();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td><code>$ids</code><code>[] = get_the_ID();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td><code>the_title();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code>the_content();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>8</code></td>
<td><code>endwhile</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>9</code></td>
<td><code>?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>And, the second loop that will exclude the above posts and show the remaining ones :-</p>
<div id="highlighter_46229">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>&lt;?php</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code>query_posts(</code><code>array</code><code>(</code><code>'post__not_in'</code> <code>=&gt; </code><code>$ids</code><code>));</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code>while</code> <code>(have_posts()) : the_post();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code>the_title();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td><code>the_content();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td><code>endwhile</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code>?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>This code basically pulls the post IDs that are not contained in the array $ids[].</p>
<h3>6. HIGHLIGHTING SEARCHED KEYWORDS IN SEARCH RESULTS</h3>
<p>If you need to highlight the searched text in your search results (which is not an option by default in WordPress), here is the solution that accomplishes this feat :-</p>
<ul>
<li>Open up your <em>search.php</em> file from the theme folder.</li>
<li>Find the_title() function and replace it with :-
<div id="highlighter_706489">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>mytitle();</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</li>
<li>Add this code to your functions.php file
<div id="highlighter_84889">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>&lt;?php</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code>function</code> <code>mytitle() {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code> </code><code>$mytitle</code> <code>= get_the_title();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code> </code><code>$keys</code><code>= </code><code>explode</code><code>(</code><code>" "</code><code>,</code><code>$s</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td><code> </code><code>$mytitle</code> <code>= preg_replace(</code><code>'/('</code><code>.implode(</code><code>'|'</code><code>, </code><code>$keys</code><code>) .</code><code>')/iu'</code><code>,</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td><code> </code><code>'&lt;span&gt;&lt;/span&gt;'</code><code>,</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code> </code><code>$mytitle</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>8</code></td>
<td><code> </code><code>echo</code> <code>$mytitle</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>9</code></td>
<td><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>10</code></td>
<td><code>?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</li>
<li>Open style.css file and add the following code:-
<div id="highlighter_498952">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>.searched { </code><code>background</code><code>: yellow; </code><code>font-weight</code><code>:</code><code>bold</code><code>; }</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</li>
</ul>
<p>We are done. Try searching some text on your blog now!</p>
<h3>7. DISPLAY RELATED POSTS WITHOUT A PLUGIN</h3>
<p>This is a good hack if you want to show “related posts” below the single post view on your blog without the use of a plugin. Just open the <em>single.php</em> file and paste the following code within the WordPress loop :-</p>
<div id="highlighter_60785">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>&lt;?php</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code>//for use in the loop, list 5 post titles related to first tag on current post</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code>$backup</code> <code>= </code><code>$post</code><code>; </code><code>// backup the current object</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code>$tags</code> <code>= wp_get_post_tags(</code><code>$post</code><code>-&gt;ID);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td><code>echo</code> <code>"&lt;div&gt;&lt;h3&gt;Related Posts&lt;/h3&gt;"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td><code> </code><code>$tagIDs</code> <code>= </code><code>array</code><code>();</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code> </code><code>if</code> <code>(</code><code>$tags</code><code>)</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>8</code></td>
<td><code> </code><code>{</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>9</code></td>
<td><code> </code><code>$tagcount</code> <code>= </code><code>count</code><code>(</code><code>$tags</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>10</code></td>
<td><code> </code><code>for</code> <code>(</code><code>$i</code> <code>= 0; </code><code>$i</code> <code>&lt; </code><code>$tagcount</code><code>; </code><code>$i</code><code>++) {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>11</code></td>
<td><code> </code><code>$tagIDs</code><code>[</code><code>$i</code><code>] = </code><code>$tags</code><code>[</code><code>$i</code><code>]-&gt;term_id;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>12</code></td>
<td><code> </code><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>13</code></td>
<td><code> </code><code>$args</code><code>=</code><code>array</code><code>(</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>14</code></td>
<td><code> </code><code>'tag__in'</code> <code>=&gt; </code><code>$tagIDs</code><code>,</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>15</code></td>
<td><code> </code><code>'post__not_in'</code> <code>=&gt; </code><code>array</code><code>(</code><code>$post</code><code>-&gt;ID),</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>16</code></td>
<td><code> </code><code>'showposts'</code><code>=&gt;5,</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>17</code></td>
<td><code> </code><code>'caller_get_posts'</code><code>=&gt;1</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>18</code></td>
<td><code> </code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>19</code></td>
<td><code> </code><code>$my_query</code> <code>= </code><code>new</code> <code>WP_Query(</code><code>$args</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>20</code></td>
<td><code> </code><code>if</code><code>( </code><code>$my_query</code><code>-&gt;have_posts() )</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>21</code></td>
<td><code> </code><code>{</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>22</code></td>
<td><code> </code><code>echo</code> <code>"&lt;ul&gt;"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>23</code></td>
<td><code> </code><code>while</code> <code>(</code><code>$my_query</code><code>-&gt;have_posts()) : </code><code>$my_query</code><code>-&gt;the_post(); ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>24</code></td>
<td><code> </code><code>&lt;li&gt;&lt;a href=</code><code>"&lt;?php the_permalink() ?&gt;"</code> <code>rel=</code><code>"bookmark"</code> <code>title=</code><code>"&lt;?php the_title(); ?&gt;"</code><code>&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/li&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>25</code></td>
<td><code> </code><code>&lt;?php </code><code>endwhile</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>26</code></td>
<td><code> </code><code>echo</code> <code>"&lt;/ul&gt;"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>27</code></td>
<td><code> </code><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>28</code></td>
<td><code> </code><code>} </code><code>else</code> <code>echo</code> <code>"&lt;span&gt;No related posts were found!&lt;/span&gt;"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>29</code></td>
<td><code> </code><code>$post</code> <code>= </code><code>$backup</code><code>; </code><code>// copy it back</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>30</code></td>
<td><code> </code><code>wp_reset_query(); </code><code>// to use the original query again</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>31</code></td>
<td><code>echo</code> <code>"&lt;/div&gt;"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>32</code></td>
<td><code>?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>The above code uses post “Tags” (that you have made in your posts) to relate the posts. So use them wisely!</p>
<h3>8. ADD YOUR POSTS TO FACEBOOK</h3>
<p>The following hack will add a link within your posts that will allow users to share the post with their friends on <a href="http://www.facebook.com/">Facebook</a>. This can help in bringing extra traffic to your blog. Open the <em>single.php</em> file from your theme folder and paste this code within the loop where you want the link to show up :-</p>
<div id="highlighter_559082">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>&lt;a href=</code><code>"<a href="http://www.facebook.com/sharer.php?u=%3C?php">http://www.facebook.com/sharer.php?u=&lt;?php</a> the_permalink();?&gt;&amp;t=&lt;?php the_title(); ?&gt;"</code> <code>target=</code><code>"blank"</code><code>&gt;Share on Facebook&lt;/a&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>Now the users will be able to share your posts!</p>
<h3>9. INSERTING ADVERTISEMENTS AFTER EVERY FIRST POST</h3>
<p>Open up your <em>index.php</em> file and find the loop. Replace your loop with the following :-</p>
<div id="highlighter_282609">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>&lt;?php </code><code>if</code> <code>(have_posts()) : ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code>&lt;?php </code><code>$count</code> <code>= 0; ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code>&lt;?php </code><code>while</code> <code>(have_posts()) : the_post(); ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code>&lt;?php </code><code>$count</code><code>++; ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td><code> </code><code>&lt;?php </code><code>if</code> <code>(</code><code>$count</code> <code>== 2) : ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td><code> </code><code>//Paste your ad code here</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code> </code><code>&lt;h2&gt;&lt;a href=</code><code>"&lt;?php the_permalink(); ?&gt;"</code><code>&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>8</code></td>
<td><code> </code><code>&lt;?php the_excerpt(); ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>9</code></td>
<td><code> </code><code>&lt;?php </code><code>else</code> <code>: ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>10</code></td>
<td><code> </code><code>&lt;h2&gt;&lt;a href=</code><code>"&lt;?php the_permalink(); ?&gt;"</code><code>&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h2&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>11</code></td>
<td><code> </code><code>&lt;?php the_excerpt(); ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>12</code></td>
<td><code> </code><code>&lt;?php </code><code>endif</code><code>; ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>13</code></td>
<td><code>&lt;?php </code><code>endwhile</code><code>; ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>14</code></td>
<td><code>&lt;?php </code><code>endif</code><code>; ?&gt;</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>You can paste your ad code where it says “//Paste your ad code here”. Your loop might not be exactly replaceable so you can take hints from the above code and modify your loop accordingly.</p>
<h3>10. AUTOMATIC CONTENT AFTER EACH POST</h3>
<p>Many times, you want to add custom content/text after every post (e.g, subscribe to our blog link). Open up your <em>functions.php</em> file and add the following code to it :-</p>
<div id="highlighter_615808">
<div>
<div>
<table>
<tbody>
<tr>
<td><code>1</code></td>
<td><code>function</code> <code>insertFootNote(</code><code>$content</code><code>) {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>2</code></td>
<td><code> </code><code>if</code><code>(!is_feed() &amp;&amp; !is_home()) {</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>3</code></td>
<td><code> </code><code>$content</code><code>.= </code><code>"&lt;div class='subscribe'&gt;"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>4</code></td>
<td><code> </code><code>$content</code><code>.= </code><code>"&lt;h4&gt;Enjoyed this article?&lt;/h4&gt;"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>5</code></td>
<td><code> </code><code>$content</code><code>.= </code><code>"&lt;p&gt;Subscribe to our  &lt;a href='<a href="http://feeds2.feedburner.com/WpRecipes">http://feeds2.feedburner.com/WpRecipes</a>'&gt;RSS feed&lt;/a&gt; and never miss a recipe!&lt;/p&gt;"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>6</code></td>
<td><code> </code><code>$content</code><code>.= </code><code>"&lt;/div&gt;"</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>7</code></td>
<td><code> </code><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>8</code></td>
<td><code> </code><code>return</code> <code>$content</code><code>;</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>9</code></td>
<td><code>}</code></td>
</tr>
</tbody>
</table>
</div>
<div>
<table>
<tbody>
<tr>
<td><code>10</code></td>
<td><code>add_filter (</code><code>'the_content'</code><code>, </code><code>'insertFootNote'</code><code>);</code></td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<p>I hope you enjoyed the above hacks and will make use of them. Please comment and let me know.</p>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/166/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/166/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/166/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=166&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2010/01/23/wordpress-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>

		<media:content url="http://www.blogohblog.com/wp-content/pop/2009/11/wordpress-hack.jpg" medium="image">
			<media:title type="html">wordpress-hack</media:title>
		</media:content>
	</item>
		<item>
		<title>Password Storage locations</title>
		<link>http://nirajlimbu.wordpress.com/2010/01/19/password-storage-locations/</link>
		<comments>http://nirajlimbu.wordpress.com/2010/01/19/password-storage-locations/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 07:17:39 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[Crackers]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/2010/01/19/password-storage-locations/</guid>
		<description><![CDATA[These are only for few and more will be coming. remember, knowing PW location does not mean u can move and see right in spot. * AIM 6.x: The passwords are stored in the Registry, under HKEY_CURRENT_USER\Software\America Online\AIM6\Passwords * ICQ Lite 4.x/5.x/2003: The passwords are stored in the Registry, under HKEY_CURRENT_USER\Software\Mirabilis\ICQ\NewOwners \[ICQ Number] (MainLocation value) [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=161&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<pre>These are only for few and more will be coming.
remember, knowing PW location does not mean u can move and see right in spot.

* AIM 6.x: The passwords are stored in the Registry, under HKEY_CURRENT_USER\Software\America Online\AIM6\Passwords

* ICQ Lite 4.x/5.x/2003: The passwords are stored in the Registry, under HKEY_CURRENT_USER\Software\Mirabilis\ICQ\NewOwners \[ICQ Number]
(MainLocation value)

* ICQ 6.x: The password hash is stored in [Windows Profile]\Application Data\ICQ\[User Name]\Owner.mdb (Access Database)
(The password hash cannot be recovered back to the original password)

* Digsby: The main password of Digsby is stored in [Windows Profile]\Application Data\Digsby\digsby.dat
All other passwords are stored in Digsby servers.

* PaltalkScene: The passwords are stored in the Registry, under HKEY_CURRENT_USER\Software\Paltalk\[Account Name].</pre>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/161/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/161/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/161/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=161&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2010/01/19/password-storage-locations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>
	</item>
		<item>
		<title>विन्डोज सेभेन नेपालीमा</title>
		<link>http://nirajlimbu.wordpress.com/2010/01/03/%e0%a4%b5%e0%a4%bf%e0%a4%a8%e0%a5%8d%e0%a4%a1%e0%a5%8b%e0%a4%9c-%e0%a4%b8%e0%a5%87%e0%a4%ad%e0%a5%87%e0%a4%a8-%e0%a4%a8%e0%a5%87%e0%a4%aa%e0%a4%be%e0%a4%b2%e0%a5%80%e0%a4%ae%e0%a4%be/</link>
		<comments>http://nirajlimbu.wordpress.com/2010/01/03/%e0%a4%b5%e0%a4%bf%e0%a4%a8%e0%a5%8d%e0%a4%a1%e0%a5%8b%e0%a4%9c-%e0%a4%b8%e0%a5%87%e0%a4%ad%e0%a5%87%e0%a4%a8-%e0%a4%a8%e0%a5%87%e0%a4%aa%e0%a4%be%e0%a4%b2%e0%a5%80%e0%a4%ae%e0%a4%be/#comments</comments>
		<pubDate>Sun, 03 Jan 2010 04:52:00 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[हाम्रो नेपालमा]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/?p=155</guid>
		<description><![CDATA[नेपाली भाषामा कम्प्युटर चलाउन चाहनेका लागि आगामी वैशाख महिना विशेष रहनेछ। माइक्रोसफ्टले वैशाख महिनालाई विशेष बनाउन लागेको हो। वैशाखबाट कम्प्युटर सञ्चालन प्रणाली (ओएस) विन्डोज सेभेन अब प्रयोगकर्ताले नेपाली भाषामा चलाउन पाउनेछन्, त्यो पनि निशुल्क। विन्डोज सेभेनको अंग्रेजी संस्करणसम्म पहुँच नभएका एक्सपी र भिस्टाका उपभोक्तालाई समेत यसबाट थप राहत मिल्नेछ। नेपाली विन्डोज सेभेनको विकास कार्य अन्तिम [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=155&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>नेपाली भाषामा कम्प्युटर चलाउन चाहनेका लागि आगामी वैशाख महिना विशेष रहनेछ। माइक्रोसफ्टले वैशाख महिनालाई विशेष बनाउन लागेको हो। वैशाखबाट कम्प्युटर सञ्चालन प्रणाली (ओएस) विन्डोज सेभेन अब प्रयोगकर्ताले नेपाली भाषामा चलाउन पाउनेछन्, त्यो पनि निशुल्क। विन्डोज सेभेनको अंग्रेजी संस्करणसम्म पहुँच नभएका एक्सपी र भिस्टाका उपभोक्तालाई समेत यसबाट थप राहत मिल्नेछ। <img src="/TEMP/moz-screenshot.png" alt="" /></p>
<p>नेपाली विन्डोज सेभेनको विकास कार्य अन्तिम चरणमा पुगेको छ। ‘वैशाख महिनामा प्रयोगकर्तामाझ ल्याउनेगरी हामी तयारी गर्दैछौं,&#8217; माइक्रोसफ्ट नेपालका प्रमुख एलन वैलोचन तुलाधर भन्छन्। माइक्रोसफ्टले यसअघि बजारमा ल्याएको ओएस भिस्टाको पनि नेपाली संस्करण बनाएको थियो।</p>
<p>विन्डोज सेभेन केही महिनाअगाडि मात्र बजारमा आएको हो। ओएस भिस्टाबाट ठक्कर खाएको माइक्रोसफ्टको विन्डोज सेभेन (अंग्रेजी संस्करण) सोचेभन्दा बढी विश्वबजारमा बिक्री भैरहेको छ। माइक्रोसफ्ट नेपालमार्फत विन्डोज सेभेन १० हजारभन्दा बढी नेपाली कलेज विद्यार्थीले निशुल्क आफ्ना पर्सनल कम्प्युटरमा राखिसकेका छन्। अब यो संख्या २० हजार पुर्‍याउन माइक्रोसफ्ट नेपाल लागेको छ। यसैबाट हौसिएको माइक्रोसफ्टले यसको नेपाली संस्करण नयाँ वर्ष २०६७ को उपहारस्वरुप निशुल्क नेपालीमाझ उपलब्ध गराउने तयारी गरेको छ।</p>
<div>//  // <ins><ins></ins></ins></div>
<p>विन्डोज सेभेन (नेपाली संस्करण)</p>
<p>विन्डोज सेभेनको नेपाली र अंग्रेजी संस्करणमा खासै फरक छैन। मात्र भाषा फरक हुनेछ। ओएसमा प्रयोग गरिएका सम्पूर्ण फिचर्स हुबहु छन्। भाषासम्बन्धी फिचर्समा भने केही भिन्नता भेटिन्छ। माइक्रोसफट्को प्रावधान नै यस्तै छ &#8211; स्थानीयकरण गर्दा भाषाबाहेक अन्य फिचर्समा फेरबदल गर्न पाइने छैन। अर्थात, अंग्रजी संस्करणमा भन्दा नेपाली संस्करणका उपभोक्ताले बढी सुविधा पाउनेछन्।</p>
<p>अधिकांश प्रयोगकर्ताले विन्डोज एक्सपी ओस प्रयोग गरेका छन्। ज्यादै थोरैकोमा विन्डोज भिस्टा छ। भिस्टाभन्दा एक्सपी पुरानो ओएस भएपनि प्रयोगकर्ता भिस्टामा रहेका प्राविधिक कठिनाइका कारण एक्सपीमा अडिग रहे। यसैकारण माइक्रोसफ्टले भिस्टा ल्याएको तीन वर्ष बित्न नपाउँदै विन्डोज सेभेन ल्याउन बाध्य भयो।</p>
<p>नेपाली विन्डोज सेभेनमा अक्षरको आकार (फन्ट साइज) केही सानो पारिएको छ। साना ल्यापटप, नोट बुक र मोबाइलमा समेत स्क्रिन पूरा अटोस् भनेर अक्षरको आकार घटाइएको हो।</p>
<p>एक्सपी र भिस्टामा समावेश गरिएका सेवालगायत विन्डोज सेभेनमा थुप्रै नयाँ फिचर्स समावेश गरिएको छ। विन्डोज सेभेन बढी सुरक्षा केन्द्रित बनाइएको छ। र, यसको अर्को विशेषता भनेको अघिल्ला ओएसभन्दा यो बढी छिटोछरितो छ। धेरै नयाँ फिचर्स समेटिए पनि यसमा खास ७ वटा फिचर्स छन्, जसले प्रयोगकर्ताको ध्यान बढी खिच्नेछ। माइक्रोसफ्टले यसलाई ‘सेभेन वन्डर्स अफ विन्डोज सेभेन&#8217; नाम दिएको छ।</p>
<p>१) बिट लकर</p>
<p>कम्प्युटर वा ल्यापटपको हार्डडिस्क चोरी भए अब डराउनु पर्दैन। हार्डडिस्कमा भएका डाटा कसैले पढ्न सक्ने छैनन्। हार्डडिस्कमा रहेका डाटाको सुरक्षा गर्नेछ ‘बिट लकर&#8217; ले।</p>
<p>एक दसकयता बोकेर हिँड्ने प्रविधिको प्रयोग ह्वात्तै बढेको छ। मोबाइल, ल्यापटप, नोटबुक आदि हराउने वा चोरी हुने सम्भावन पनि उत्तिकै। पहिला हार्डडिस्क हराए वा चोरी भए अन्य कम्पयुटरमा राखेर पढ्न सकिन्थ्यो। डाटाको मिसयुज हुने सम्भावन उत्तिकै थियो। तर, विन्डोज सेभेनमा रहेको बिट लकरले कम्प्युटरको हार्डडिस्क लक गर्न सकिनेछ। लक गर्दा राखिएको पासवर्ड नमिलेसम्म हार्डडिस्कमा रहेका डाटा हेर्न सकिने छैन।</p>
<p>बिट लकर सेवा सजह रूपमा प्रयोग गर्न सकिन्छ। विन्डोज सेभेन इन्स्टल गरिसकेपछि ‘नियन्त्रण कक्ष&#8217; (कन्ट्रोल प्यानल) मा गएर ‘सुरक्षा&#8217; (सेक्युरिटी) आइकन क्लिक गर्नुपर्छ। त्यसपछि ‘बिट लकर&#8217; मा डबल क्लिक गरी कुन ड्राइभलाई विट लक गर्ने छनौटगरी ‘ओके&#8217; गरेपछि त्यहाँ रहेका डाटा सुरक्षित हुनेछन्। पाँच सय जिबी डाटालाई विट लक गर्न झन्डै सात घन्टा लाग्छ। तर एकपटक विट लक गरेपछि त्यो सदाका लागि हुनेछ।</p>
<p>बिट लकरले हराएको हार्डडिस्कबाट डाटा पुनः उपलब्ध भने गराउँदैन। यसले मात्र अरूले प्रयोग गर्न नसक्ने बनाउँछ। हार्डडिस्क चोरी गर्नेले तीन वर्षसम्म निरन्तर पासवर्ड परीक्षण गर्‍यो भनेचाहिँ हार्डडिस्क खुल्न सक्छ। तर तीन वर्ष निरन्तर पासवर्ड परीक्षण गरेर बस्ने फुर्सद नै कसलाई?</p>
<p>विन्डोज सेभेन सपोर्ट गर्ने मोबाइल प्रयोगकर्ताले समेत यो सुविधा पाउनेछन्। मोबाइल हराएमा एक एसएमएस पठाएको भरमा मोबाइलमा रहेका सम्पूर्ण डाटा मेटाउन सक्नेछन्।</p>
<p>बिट लकर सेवा उपभोग गर्दा अलि बढी नै होसियार रहनुपर्छ। यदि लगातार तीन पटकसम्म पासवर्ड गलत हानिएमा त्यसपछि कम्प्युटर नखुल्ने मात्र होइन हार्डडिस्कमा रहेका सम्पूर्ण डाटा मेटिनेछन्। जसलाई पुनः पाउन असम्भव छ।</p>
<p>२) युजर इन्टरफेस</p>
<p>विन्डोज सेभेनले प्रयोगकर्तालाई कम्प्युटर चलाउन निकै सहज बनाउने देखिन्छ। धेरैजसो कमान्ड एक क्लिकका भरमा उपलब्ध हुने बनाइएको छ। बढी प्रयोग गरिएका कमान्ड टुलबारमै रहनेछन्। टुलबारमा रहेका कमान्डमा माउस राइट क्लिक गरे सम्बन्धित कमान्डमा पछिल्लो समय काम गरिएका फाइल पनि उपलब्ध गराउनेछ।</p>
<p>जस्तो एक्सपी र भिस्टामा माइक्रोसफ्ट वर्ड खोल्न परे माउस तीन-चार पटक क्लिक गरेपछि मात्र सम्भव हुन्थ्यो। विन्डोज सेभेनले यस्ता सुविधा एक क्लिकमा उपलब्ध गराउँछ। कमान्ड खोजेर बस्नुपर्ने झन्झटबाट विन्डोज सेभेनले उपभोक्तालाई मुक्ति दिनेछ।</p>
<p>३) डेस्कटप सर्च</p>
<p>डेस्कटप सर्चलाई पहिलेका ओएसमा भन्दा निकै सशक्त पारिएको छ। सर्चमा गएर कुनै पनि शब्द टाइप गर्न थालेपछि पहिला त टाइप गरिएका अक्षरसँग मिल्नसक्ने शब्द सुझावका रूपमा प्रस्तुत गर्नेछ। शब्द पूरा टाइप गरिसकेपछि इन्टर नहान्दै सम्बन्धित शब्दसँग मेल खाने सम्पूर्ण फाइल देखाउनेछ। यसअघिका ओएसले यति छिटो र सुक्ष्म तरिकाले फाइल खोज्न सक्दैनथे।</p>
<p>४) इन्टरनेट एक्सप्लोरर एट</p>
<p>माइक्रोसफ्टले नयाँ ओएसमा इन्टरनेट एक्सप्लोररलाई उच्च प्राथमिकतासाथ डिजाइन गरेको छ। ‘इन्टरनेट एक्सप्लोरर एट&#8217; विन्डोज सेभेनमा समावेश गरिएको नयाँ सुविधा हो। यसमा नयाँ फिचर्स ‘ट्याब&#8217; राखिएको छ। सधैं खोलिरहनुपर्ने वेबसाइट ट्याबमा भेटिनेछन्।</p>
<p>इन्टरनेट एक्सप्लोरर एटको विशेषता भनेको यसले सपोर्ट नगर्ने वेबसाइट पनि पुरानै एक्सप्लोररमा गएर खोलिदिन्छ। जसका कारण वेबसाइटको स्वरुप बिग्रन पाउँदैन र आफूलाई चाहिने सूचना पढ्न तथा डाउनलोड गर्न सघाउनेछ। यदि कुनै वेबसाइटलाई इन्टरनेट एक्सप्लोरर एटले सपोर्ट गरेन भने ‘एड बार&#8217; को दायाँपट्टी रहेको ‘मिल्दोजुल्दो दृश्य&#8217; आइकनमा क्लिक गरेपछि पुरानो शैलीको एक्सप्लोररमा वेबसाइट खुल्नेछ।</p>
<p>यसमा सुरक्षा अनुप्रयोग (सेफ्टी फिचर्स) मजबुत छ। सुरक्षा टुलबारमा रहेको ‘इनप्राइभेट ब्राउजिङ&#8217; क्लिक गरी इन्टरनेट चलाए हेरिएका कुराहरू लोकल हार्डडिस्कमा गएर बस्दैन। यो सुविधा पुराना ओएसमा थिएन। ‘फ्यामेली सेफ्टी&#8217; (पारिवारिक सुरक्षा) यसमा पाइने अर्को राम्रो फिचर्स हो। यो फिचर्स अन गरिदिए बच्चाले नचाहिने कुरा इन्टरनेटमा हेर्न सक्ने छैनन्। यसका लागि बच्चाको छुट्टै लगइन चाहिन्छ।</p>
<p>इन्टरनेट एक्सप्लोरर एटको अर्को राम्रो पक्ष &#8211; यसले खोलिएका वेबसाइटका ठेगानालाई हाइलाइट गरेर देखाउँछ। हाइज्याक गरिएका वेबसाइट हेरिएको छ वा वास्तविक यही हाइलाइट हेर्नेबित्तिकै थाहा पाउन सकिन्छ। कहिलेकाहीँ एउटा वेबठेगाना हान्यो तर अर्कै साइट खुल्छ, जुन सामान्य प्रयोगकर्ताले थाहा पाउन गाह्रो थियो। तर अब यसको समाधान ल्याएको छ नयाँ एक्सप्लोररले।</p>
<p>५) क्यालकुलेटर</p>
<p>३० वर्षपछि माइक्रोसफ्टले क्यालकुलेटरमा फेरबदल गरेको छ। नेपाली विन्डोज सेभेनमा समावेश गरिएको क्यालकुलेटरबाट अब माना, पाथी, धार्नीमा समेत हिसाबकिताब गर्न सकिनेछ। कति मानाको पाथी, कति किलोको धार्नी सबै क्यालकुलेटरले सिकाउनेछ। केजीलाई धार्नी, माना, पाथीमा लैजानसमेत क्यालकुलेटर सक्षम छ। क्यालकुलेटरमा फिट, मिटर, रोपनी, बिगा, हात सबैमा हिसाब गर्न सकिनेछ। वैज्ञानिक र प्रोगामर दुईथरी क्यालकुलेटरलाई मर्ज गरी एउटा बनाइएको हो।</p>
<p>क्यालकुलेटरले पुराना क्यालेन्डर खोज्न नपर्ने पनि बनाएको छ। किनकी क्यालकुलेटरबाटै विक्रम सम्बतलाई इस्वी सम्बतमा लान सकिनेछ। अझ स्पष्ट भन्नुपर्दा एक्सएलका धेरै सुविधा क्यालकुलेटरमा समावेश गरिएको छ।</p>
<p>कति अंकको बीचमा कमा राख्ने हो त्यो क्यालकुलेटरमा आफै मिलाउन सकिनेछ। यसमा क्यालकुलेसन इतिहाससमेत हेर्न सकिन्छ। क्यालकुलेटरमा गरिएका हिसाब मेमोरीमा गएर बस्छ। त्यहीबाट पुराना जोडघटाउ हेर्न सकिनेछ।</p>
<p>६) वाचन पहिचान (स्पिच रिकग्नाइजेसन)</p>
<p>विन्डोज सेभेनको अर्को आकर्षक अनुप्रयोग ‘वाचन पहिचान&#8217; हो। विन्डोज सेभेनमा मौखिक आदेशका भरमा कम्प्युटर सञ्चालन गर्न सकिन्छ। बिनाकिबोर्ड र माउस यसमा काम गर्न सकिन्छ। जे बोल्यो त्यो कम्प्युटरले आफै टाइप गर्छ। यति मात्र होइन, यसले ह्रस्वदिर्घसमेत मिलाउन सक्छ। आवाजबाट पाठ (स्पिच टु टेक्स्ट) र पाठबाट आवाज (टेक्स्ट टु स्पिच) दुवै सुविधा यसमा छन्। अर्थात यसले पाठलाई पढेर सुनाउन र आवाजलाई पाठमा लैजान सक्छ।</p>
<p>नेपाली विन्डोज सेभेनको शब्दावलीमा ५८ हजार नेपाली मूल शब्द समावेश गरिएको छ। जसबाट दुई करोड नेपाली शब्द बनेका छन्। जसमध्ये ५ हजारभन्दा बढी त प्राविधिक शब्द नै छन्। गालीगलौज, मानहानी, विभेद जनाउने तीनसय भन्दा बढी शब्द यसमा ब्लक गरिएको छ।</p>
<p>७) मल्टिटच फिचर्स</p>
<p>विन्डोज सेभेन माउस, किबोर्ड, मौखिक आदेशको भरमा मात्र होइन औंलाले छोएर पनि चलाउन सकिन्छ। टच स्क्रिन मोबाइल निर्मातालाई चुनौती दिने गरी वन्डोज सेभेन विकास गरिएको छ। आइफोनमा जस्तै यसमा पनि औंलाले छोएर सबै काम गर्न सकिन्छ। तर, यसका लागि टच स्क्रिन मनिटर हुन अनिवार्य छ।</p>
<p>भिस्टामा सिंगल टच मात्र सम्भव थियो। विन्डोज सेभेनमा मल्टिटच सम्भव छ। विन्डोज सेभेन राखिएको ल्यापटपको स्क्रिनमात्र होइन ‘टच प्याड&#8217; बाट पनि मल्टिटच सुविधा प्रयोग गर्न सकिनेछ। स्क्रिनमा औंला चलाएको भरमा तस्बिर सानोठूलो, पाठ टाइप गर्न सकिनेछ।</p>
<p><strong>अन्य महत्त्‍वपूर्ण सुविधा</strong></p>
<p>विन्डोज सेभेनमा अन्य यस्ता सुविधा पनि छन् जुन पहिलाका ओएसमा समावेश गरिएको थिएन। यी सुविधा प्रयोग गर्न पाउँदा साँच्चै नै प्रयोगकर्ता एकछिन चकित पर्नेछन्। ‘पावर सेल&#8217; यिनैमध्ये एउटा सुविधा हो। यसमा डस, लिनक्स र म्याकका कमान्ड चलाउन सकिन्छ। माउस र किबोर्डले गर्न नसक्ने कम्प्युटर नियन्त्रण पावर सेलबाट गर्न सकिन्छ। खासगरी यो प्राविधिक प्रयोगकर्ताको लागि बनाइएको हो।</p>
<p>विन्डेज सेभेनभित्र रहेर पुरानो ओएस एक्सपी पनि चलाउन सकिन्छ। यो यसको अर्को विशेषता हो। एक्सपीका प्रयोगकर्ता बढी भएका कारण माइक्रोसफ्टले यसलाई चलाउन मिल्ने गराएको हो। अर्थात नयाँ र पुरानो प्रविधि एकसाथ चलाउन सकिनेछ। ‘विन्डोज एक्सपी मोड&#8217; डाउनलोड गरेपछि मात्र विन्डोज सेभेनभित्र रहेर एक्सपी चलाउन सकिनेछ। विन्डोज एक्सपी मोड इन्टरनेटबाट निशुल्क डाउनलोड गर्न पाइन्छ।</p>
<p>‘एरो सेक&#8217; अर्को महत्त्‍वपूर्ण सेवा यसमा समावेश गरिएको छ। खोलिएकोमध्ये अगाडिको विन्डोमा गएर माउसको एरो हल्लाउने हो भने पछाडिका सबै विन्डो मिनिमाइज हुन्छन्। माउसको एरो पुनः हल्लाए मिनिमाइज भएका सबै विन्डो खुल्छ।</p>
<p>अर्को महत्त्‍वपूर्ण सुविधा भनेको नेपाली विन्डोज सेभेन राखिएको कम्प्युटरमा यसको अंग्रेजी संस्करण पनि एकसाथ चलाउन सकिनेछ। यो सुविधा पहिलेको ओएसमा थिएन। पहिला नेपालीबाट अंग्रेजी संस्करणमा जानुपरे कम्प्युटर ‘रिबुट&#8217; गर्नुपर्थ्यो। विन्डोज सेभेनमा बहुबुट गर्ने सुविधा राखिएको छ। एकसाथ नेपाली र अंग्रेजी संस्करण इन्स्टल गर्न सकिनेछ।</p>
<p><strong>इन्स्टल कसरी गर्ने</strong></p>
<p>विन्डोज सेभेनको नेपाली र अंग्रेजी संस्करण इन्स्टल गर्ने प्रक्रिया, यसको लागि चाहिने आवश्यक न्यूनतम हार्डवेयर सबै एउटै हो। अंग्रेजीजस्तै नेपाली संस्करण पनि ३२ बिट र ६४ बिट कम्प्युटरमा चल्नेछ। यी दुवै कम्प्युटरका लागि भिन्दाभिन्दै ओएस तयार पारिएको छ। तर, सुविधामा भने खासै भिन्नता छैन।</p>
<p>विन्डोज सेभेनको लागि सिपियु एक गिगा हर्ज वा योभन्दा द्रुत गतिको चाहिन्छ। र्‍याम भने ३२ बिट कम्प्युटरमा एक गिगा बाइट्स (जिबी) र ६४ बिट कम्प्युटरमा दुई जिबी हुन जरुरी छ। ग्राफिक्स प्रोसेसिङ युनिट ‘एरो क्यापेबल&#8217; छ। भिडियो र्‍याम १२८ मेगाबाइट्स (सेयर्ड) आवश्यक पर्छ। हार्डडिस्क ३२ बिट कम्प्युटरको लागि १६ जिबी र ६४ बिट कम्प्युटरको लागि २० जिबी अनिवार्य छ। अप्टिकल ड्राइभमा डिभिडी वा युएसबीमध्ये एक भए हुन्छ।</p>
<p>विन्डोज सेभेन इन्स्टल गर्ने सोच छ भने पहिला आफ्नो कम्प्युटर तथा ल्यापटपमा माथि उल्लेख गरिएका न्यूनतम हार्डवेयर आवश्यकता मेल खान्छ कि खाँदैन चेक गर्नुपर्छ। यो थाहा पाउन गाह्रो छैन।<br />
१) पहिला कम्प्युटरको ‘स्टार्ट&#8217; बटन क्लिक गर्नोस्<br />
२) त्यसपछि ‘माई कम्प्युटर&#8217; मा राइट क्लिक गर्नोस्, अनि ‘प्रोपर्टिज&#8217; मा<br />
यति गरेपछि ‘सिस्टम प्रोपर्टिज&#8217; स्क्रिनमा खुल्छ। त्यहीँ सबै जानकारी राखिएको हन्छ &#8211; कम्प्युटरमा कुन ओएस छ, कति जिबी हार्डडिस्क, र्‍याम कति छ, कति बिटको कम्प्युटर आदि। सिस्टम प्रोपर्टिजमा यदि ‘एक्स ६४ एडिसन&#8217; देखिएन भने बुझ्नुपर्नेछ कम्प्युटर ३२ बिटमा चलिरहेको छ।</p>
<p>यदि तपार्इंको कम्प्युटरमा एक्सपी र भिस्टामध्ये एक ओएस छ भने बुझ्नुपर्नेछ त्यसमा विन्डोज सेभेन चल्नेछ। सम्भवतः विन्डोज सेभेन ३२ बिट कम्प्युटरमा चल्ने माइक्रोसफ्टको अन्तिम ओएस हुनेछ। धेरै प्रयोगकर्ता एक्सपीमै अडिग रहेका कारण विन्डोज सेभेनलाई ३२ बिट कम्प्युटरमा समेत चल्नेगरी विकास गरिएको हो।</p>
<p>एक्सपी ओएस रहेको कम्प्युटरमा केवल ‘सी&#8217; ड्राइभ मात्र फरम्याट गरे हुन्छ। पहिला सी ड्राइभमा रहेका आवश्यक फाइललाई सुरक्षित राख्नुपर्छ। यसको लागि माइक्रोसफ्टको आधिकारिक साइटमा गएर ‘विन्डोज इजी ट्रान्फर&#8217; (बेट) टुल डाउनलोड गर्नुपर्छ। यो डाउनलोड गर्नेबित्तिकै सी ड्राइभमा रहेका फाइल ब्याकअप गर्नेछ। अनि सुरु गर्नुपर्छ विन्डोज सेभेन इन्स्टल गर्न। इन्स्टल भैसकेपछि कम्प्युटरमा रहेको बेट टुलमा गएर क्लिक गरेपछि सी ड्राइभका फाइल पुनः प्राप्त गर्न सकिन्छ।</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=155&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2010/01/03/%e0%a4%b5%e0%a4%bf%e0%a4%a8%e0%a5%8d%e0%a4%a1%e0%a5%8b%e0%a4%9c-%e0%a4%b8%e0%a5%87%e0%a4%ad%e0%a5%87%e0%a4%a8-%e0%a4%a8%e0%a5%87%e0%a4%aa%e0%a4%be%e0%a4%b2%e0%a5%80%e0%a4%ae%e0%a4%be/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>

		<media:content url="/TEMP/moz-screenshot.png" medium="image" />
	</item>
		<item>
		<title>Top Search Engine Optimization Tips</title>
		<link>http://nirajlimbu.wordpress.com/2009/12/30/top-search-engine-optimization-tips/</link>
		<comments>http://nirajlimbu.wordpress.com/2009/12/30/top-search-engine-optimization-tips/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 15:21:51 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/?p=149</guid>
		<description><![CDATA[Getting a high rank on search engines through user keyword searches can be difficult, but with proper focus on writing your blog posts for search engine optimization (SEO), you can boost your rank for specific keyword searches and your blog&#8217;s traffic. Follow these tips to get the biggest results. 1. Check the Popularity of Keywords [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=149&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div>Getting a high rank on search engines through user keyword searches can be difficult, but with proper focus on writing your blog posts for search engine optimization (SEO), you can boost your rank for specific keyword searches and your blog&#8217;s traffic. Follow these tips to get the biggest results.</div>
<div>
<h2>1. Check the Popularity of Keywords</h2>
<p>In order to obtain traffic from keyword searches on the major search engines like Google and Yahoo!, you need to be writing about a topic that people want to read about and are actively looking for information about. One of the easiest ways to get a basic idea of what people are looking for online is to check the popularity of keyword searches on websites like <a href="http://wordtracker.com/" target="_blank">Wordtracker</a>, <a href="http://adwords.google.com/select/Login" target="_blank">Google AdWords</a>, <a href="http://www.google.com/trends/hottrends" target="_blank">Google Trends</a> or the <a href="http://rds.yahoo.com/_ylt=A0geu9Ady6RH1bUAqAJXNyoA;_ylu=X3oDMTExbTV0dDR1BHNlYwNzcgRwb3MDMQRjb2xvA2FjMgR2dGlkAwRsA1dTMQ--/SIG=11albbk0h/EXP=1202068637/**http%3a//buzz.yahoo.com/" target="_blank">Yahoo! Buzz Index</a>. Each of these sites provides a snapshot of keyword popularity at any given time.</p>
</div>
<div>//</p>
</div>
<div>
<h2>2. Select Specific and Relevant Keywords</h2>
<p>A good rule to go by is to select one keyword phrase per page then optimize that page to that keyword phrase. Keywords should be relevant to the overall content of your page. Furthermore, choose specific keywords that are more likely to give you a better search results ranking than a broad term would. For example, consider how many sites use the keyword phrase of &#8220;punk music.&#8221; The competition for ranking using that keyword is likely to be tough. If you choose a more specific keyword like &#8220;Green Day concert,&#8221; the competition is a lot easier.</p>
</div>
<div>
<h2>3. Select a Keyword Phrase of 2 or 3 Words</h2>
<p>Statistics show that nearly 60% of keyword searches include 2 or 3 keywords. With that in mind, try to optimize your pages for searches on keyword phrases of 2 or 3 words to drive the biggest results.</p>
</div>
<div>
<h2>4. Use Your Keyword Phrase in Your Title</h2>
<p>Once you select the keyword phrase you plan to optimize your page for, make sure you use that phrase in the title of your blog post (or page).</p>
</div>
<div>
<h2>5. Use Your Keyword Phrase in Your Subtitle and Headlines</h2>
<p>Breaking blog posts up using subtitles and section headlines not only makes them more visually appealing on a text heavy computer screen, but it also gives you additional opportunities to use your keyword phrase.</p>
</div>
<div>
<h2>6. Use Your Keyword Phrase in the Body of Your Content</h2>
<p>It&#8217;s important that you use your keyword phrase in the body of your blog post. A good goal to try to achieve is to use your keyword phrase at least twice in the first paragraph of your post and as many times as you can (without keyword stuffing &#8211; see #10 below) within the first 200 (alternatively, the first 1,000) words of your post.</p>
</div>
<div>
<h2>7. Use Your Keyword Phrase in and Around Your Links</h2>
<p>Search engines count links higher than plain text in their search algorithms, so try to create links that use your keyword phrase. Avoid using links that simply say, &#8220;click here&#8221; or &#8220;more information&#8221; as these links will do nothing to help you with your search engine optimization. Leverage the power of links in SEO by including your keyword phrase in them whenever possible. The text surrounding links is typically weighted more heavily by search engines than other text on your page as well. If you can&#8217;t include your keyword phrase in your link text, try to include it around your link text.</p>
</div>
<div>
<h2>8. Use Your Keyword Phrase in Images</h2>
<p>Many bloggers see a large amount of traffic sent to their blogs from image searches on search engines. Make the images you use in your blog work for you in terms of SEO. Make sure your image filenames and captions include your keyword phrase.</p>
</div>
<div>
<h2>9. Avoid Block Quotes</h2>
<p>There are differing opinions on this issue with one group of people saying that Google and other search engines ignore the text included in the <a href="http://weblogs.about.com/od/bloggingtools/p/HTMLOverview.htm">HTML</a> block quote tag when crawling a web page. Therefore, the text within the block quote tag won&#8217;t be included in terms of SEO. Until a more definitive answer can be determined to this issue, it&#8217;s a good idea to keep it in mind and use the block quote tag cautiously.</p>
</div>
<div>
<h2>10. Don&#8217;t Keyword Stuff</h2>
</div>
<div>Search engines penalize sites that stuff pages full of keywords simply to increase their rankings through keyword searches. Some sites are even banned from inclusion in search engine results because of keyword stuffing. Keyword stuffing is considered a form of spamming, and search engines have zero tolerance for it. Keep this in mind as you optimize your blog posts for search engines using your specific keyword phrase.</div>
<div>
<div id="intro">The blogosphere is a big and busy world with over 100 million blogs and growing. How do you attract visitors to your blog? Follow these simple tips to drive traffic to your blog.</div>
<div>
<h2>1. Write Well and Write Often</h2>
<p>Frequently updating your blog with useful content is the first step to building your blog&#8217;s audience. The content you write is what will keep readers coming back for more. Make sure you have something meaningful to say to them and say it often to maintain their interest and keep them loyal.</p>
<p>Furthermore, post frequently to increase the number of chances you have for your blog&#8217;s content to be noticed by search engines such as <a href="http://www.google.com/" target="_blank">Google</a> or <a href="http://www.technorati.com/" target="_blank">Technorati</a>.</p>
</div>
<div>// &lt;![CDATA[//</p>
</div>
<div>
<h2>2. Submit Your Blog to Search Engines</h2>
<p>Get on the radar screen for the popular search engines such as Google and <a href="http://www.yahoo.com/" target="_blank">Yahoo!</a> by <a href="http://weblogs.about.com/od/marketingablog/qt/SearchEngineSub.htm">submitting your blog&#8217;s URL</a> to them. Most search engines provide a &#8216;Submit&#8217; link (or something similar) to notify the search engine of your new blog, so those search engines will crawl it and include your pages in their results.</p>
<p>It&#8217;s important to understand that simply submitting your blog to search engines doesn&#8217;t mean your pages will appear at the top of a Google search results screen, but at least your blog will be included and will have the chance of being picked up by a search engine.</p>
</div>
<div>
<h2>3. Use and Update Your Blogroll</h2>
<p>By adding links to sites you like in your <a href="http://weblogs.about.com/od/bloggingglossary/g/BlogrollDef.htm">blogroll</a>, the owners of those blogs will find your blog and will be likely to add a reciprocal link in their blogrolls. It&#8217;s an easy way to get the link to your blog in front of many readers on other blogs. The hope is that some of those readers will click on the link to your blog on the other blogs&#8217; blogrolls and find your content interesting and enjoyable turning them into loyal readers.</p>
</div>
<div>
<h2>4. Harness the Power of Comments</h2>
<p><a href="http://weblogs.about.com/od/bloggingglossary/g/CommentDef.htm">Commenting</a> is a simple and essential tool to increase your blog&#8217;s traffic. First, respond to comments left on your blog to show your readers that you value their opinions and draw them into a two-way conversation. This will increase reader loyalty.</p>
<p>Second, leave comments on other blogs to drive new traffic. Make sure you leave your blog&#8217;s <a href="http://weblogs.about.com/od/bloggingglossary/g/URLDefinition.htm">URL</a> in your comment, so you create a link back to your own blog. Many people will read the comments left on a blog post. If they read a particularly interesting comment, they are highly likely to click on the link to visit the commentor&#8217;s website. It&#8217;s important to make sure you leave meaningful comments that are likely to invite people to click on your link to read more.</p>
</div>
<div>
<h2>5. Syndicate Your Blog&#8217;s Content with an RSS Feed</h2>
<p>Setting up an <a href="http://weblogs.about.com/od/rssfeedsandsubscriptions/p/RSSFeeds.htm">RSS feed</a> button on your blog makes it easy for your loyal readers to not just read your blog but also know when you publish new content.</p>
</div>
<div>
<h2>6. Use Links and Trackbacks</h2>
<p><a href="http://weblogs.about.com/od/bloggingglossary/g/LinkDefinition.htm">Links</a> are one of the most powerful parts of your blog. Not only are links noticed by search engines, but they also act as a tap on the shoulder to other bloggers who can easily identify who is linking to their sites. Linking helps to get you noticed by other bloggers who are likely to investigate the sites that are linking to them. This may lead them to become new readers of your blog or to add links to your blog from theirs.</p>
<p>You can take links to other blogs a step further by leaving a <a href="http://weblogs.about.com/od/marketingablog/qt/WhatIsTrackback.htm">trackback</a> on the other blog to let them know you&#8217;ve linked to them. Blogs that allow trackbacks will include a link back to your blog in the comments section of the post that you originally linked to. People do click on trackback links!</p>
</div>
<div>
<h2>7. Tag Your Posts</h2>
<p>It takes a few extra seconds to add <a href="http://weblogs.about.com/od/bloggingglossary/g/TagDefinition.htm">tags</a> to each of your blog posts, but it&#8217;s worth the time in terms of the additional traffic tags can drive to your blog. Tags (like links) are easily noticed by search engines. They&#8217;re also key to helping readers find your blog when they perform searches on popular blog search engines such as Technorati.</p>
</div>
<div>
<h2>8. Submit Your Posts to Social Bookmarking Sites</h2>
<p>Taking the time to submit your best posts to <a href="http://weblogs.about.com/od/bloggingglossary/g/SocialBookmark.htm">social bookmarking</a> sites such as <a href="http://www.digg.com/" target="_blank">Digg</a>, <a href="http://www.stumbleupon.com/" target="_blank">StumbleUpon</a>, <a href="http://www.reddit.com/" target="_blank">Reddit</a> and more can be a simple way to quickly boost traffic to your blog.</p>
</div>
<div>
<h2>9. Remember Search Engine Optimization</h2>
<p>When you write your blog posts and pages, remember to optimize your pages for search engines to find them. Include relevant keywords and links but don&#8217;t overload your posts with too many relevant keywords or completely irrelevant keywords. Doing so can be considered spamming and could have negative results such as your blog being removed from Google&#8217;s search entirely.</p>
</div>
<div>
<h2>10. Don&#8217;t Forget Images</h2>
<p>Images don&#8217;t just make your blog look pretty, they also help people find you in search engine listings. People often use the image search options offered by Google, Yahoo! and other search engines, and naming your images with search engine optimization in mind can easily boost your traffic.</p>
</div>
</div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/149/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/149/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/149/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=149&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2009/12/30/top-search-engine-optimization-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>
	</item>
		<item>
		<title>Creating website in 5 minutes</title>
		<link>http://nirajlimbu.wordpress.com/2009/12/29/creating-website-in-5-minutes/</link>
		<comments>http://nirajlimbu.wordpress.com/2009/12/29/creating-website-in-5-minutes/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 15:37:12 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[1]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/?p=138</guid>
		<description><![CDATA[No matter either you are newbie or retired if you are still interested to create a personal or blog website yourself then its time for throwing those all hectic waste of time and money. once you have ready domain name then it takes only few minutes to launch your website with full developed. keep in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=138&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>No matter either you are newbie or retired if you are still interested to create a personal or blog website yourself then its time for throwing those all hectic waste of time and money.</p>
<p>once you have ready domain name then it takes only few minutes to launch your website with full developed.</p>
<p>keep in mind that, you need to be clear what type of front page layout your are interested to use.</p>
<p>most people use 2 column and 3 column ones and if u already have decided then the that would be awesome if not then better deciding before launching website.</p>
<p>now its time for downloading web OS (in my language) package from either Drupal (www.drupal.org)  or www.wordpress.com. of course you can use nucleus (http://nucleuscms.org) too because this open source package also silky and sexy one for lightweight designing.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=138&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2009/12/29/creating-website-in-5-minutes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>
	</item>
		<item>
		<title>nepaligazal.com</title>
		<link>http://nirajlimbu.wordpress.com/2009/12/12/nepaligazal-com/</link>
		<comments>http://nirajlimbu.wordpress.com/2009/12/12/nepaligazal-com/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 05:20:27 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[नेपाली तन्त्र]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/?p=129</guid>
		<description><![CDATA[nepaligazal.com.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=129&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://localhost/Nepali/">nepaligazal.com</a>.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/129/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/129/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/129/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=129&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2009/12/12/nepaligazal-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>
	</item>
		<item>
		<title>Removing post date &amp; Authoer in Drupal</title>
		<link>http://nirajlimbu.wordpress.com/2009/11/19/removing-post-date-authoer-in-drupal/</link>
		<comments>http://nirajlimbu.wordpress.com/2009/11/19/removing-post-date-authoer-in-drupal/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 15:56:56 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[Crackers]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/?p=125</guid>
		<description><![CDATA[If you are Drupal geek then sometime u may like to set up a specific page which does not required pasted date and author. in that case: it can be removed easiliy going on http://yourdomain.com/admin/build/themes/settings &#160; &#160; &#160; &#160; &#160; &#160; &#160;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=125&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>If you are Drupal geek then sometime u may like to set up a specific page which does not required pasted date and author.<br />
in that case:<br />
it can be removed easiliy going on<br />
<a href="http://yourdomain.com/admin/build/themes/settings">http://yourdomain.com/admin/build/themes/settings</a><br />
<a href="http://nirajlimbu.files.wordpress.com/2009/11/date.gif"><img class="alignleft size-thumbnail wp-image-126" title="date" src="http://nirajlimbu.files.wordpress.com/2009/11/date.gif?w=325&#038;h=225" alt="" width="325" height="225" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/125/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/125/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/125/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=125&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2009/11/19/removing-post-date-authoer-in-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>

		<media:content url="http://nirajlimbu.files.wordpress.com/2009/11/date.gif?w=103" medium="image">
			<media:title type="html">date</media:title>
		</media:content>
	</item>
		<item>
		<title>ईन्टरनेटको ४० औ जन्म दिन</title>
		<link>http://nirajlimbu.wordpress.com/2009/11/02/%e0%a4%88%e0%a4%a8%e0%a5%8d%e0%a4%9f%e0%a4%b0%e0%a4%a8%e0%a5%87%e0%a4%9f%e0%a4%95%e0%a5%8b-%e0%a5%aa%e0%a5%a6-%e0%a4%9c%e0%a4%a8%e0%a5%8d%e0%a4%ae%e0%a4%a6%e0%a4%bf%e0%a4%a8/</link>
		<comments>http://nirajlimbu.wordpress.com/2009/11/02/%e0%a4%88%e0%a4%a8%e0%a5%8d%e0%a4%9f%e0%a4%b0%e0%a4%a8%e0%a5%87%e0%a4%9f%e0%a4%95%e0%a5%8b-%e0%a5%aa%e0%a5%a6-%e0%a4%9c%e0%a4%a8%e0%a5%8d%e0%a4%ae%e0%a4%a6%e0%a4%bf%e0%a4%a8/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 09:59:29 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[MixMax]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/2009/11/02/%e0%a4%88%e0%a4%a8%e0%a5%8d%e0%a4%9f%e0%a4%b0%e0%a4%a8%e0%a5%87%e0%a4%9f%e0%a4%95%e0%a5%8b-%e0%a5%aa%e0%a5%a6-%e0%a4%9c%e0%a4%a8%e0%a5%8d%e0%a4%ae%e0%a4%a6%e0%a4%bf%e0%a4%a8/</guid>
		<description><![CDATA[इन्टरनेटविनाको कम्प्युटरको सास विनाको शरिर समान बनिसकेको छ । अहिलेको समयमा इन्टरनेट हरेकको अत्यावश्यक बनिसकेको छ चाहे ति गृहणी हुन या विद्यार्थी, प्राध्यापक हुन या अन्य केही पेशाकर्मी । सबैको दैनिकीमा अनिवार्य बनिसकेको छ । यो जादुमय प्रविधिले एक क्लीकमा विश्वलाई कैद गरिसकेको छ । यही जादुमयी प्रविधि विहिवारवाट ४० वर्ष टेकेको छ । इन्टरनेटवाट [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=120&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://nirajlimbu.files.wordpress.com/2009/11/inter.jpg?w=145&#038;h=150" alt="inter" title="inter" width="145" height="150" class="alignleft size-thumbnail wp-image-119" />इन्टरनेटविनाको कम्प्युटरको सास विनाको शरिर समान बनिसकेको छ । अहिलेको समयमा इन्टरनेट हरेकको अत्यावश्यक बनिसकेको छ चाहे ति गृहणी हुन या विद्यार्थी, प्राध्यापक हुन या अन्य केही पेशाकर्मी । सबैको दैनिकीमा अनिवार्य बनिसकेको छ । यो जादुमय प्रविधिले एक क्लीकमा विश्वलाई कैद गरिसकेको छ । यही जादुमयी प्रविधि विहिवारवाट ४० वर्ष टेकेको छ ।</p>
<p>इन्टरनेटवाट फैलिएको बौद्धिक जाल र यसको बढ्दो महत्व हेर्ने हो भने यसका प्रणेता लेन क्लिनरांकले फेसबुक, ट्विटर या आरकुट जस्ता सोसियल नेटवर्किगं साइटको सायदै कल्पना गरेका थिए होला , जो अहिलेका इन्टरनेट प्रयोगकर्ताहरुका लागि यसको प्रयोग अनिवार्य दिनचर्या बनिसकेको छ ।</p>
<p>अमेरिकाको लसएन्जलसमा रहेको क्यालीफोर्निया विश्वविद्यालयका प्रोफेसरहरुले २ सेप्टेम्बर १९६९ मा पहिलोपटक दुई कम्प्युटरलाई १५ मिटर तारले जोडेर एक आपसको डाटाहरु साटफेर गर्न सफल भएका थिए । इन्टरनेटको पहिलो डमी यसैलाई मानिन्छ । २९ अक्टोवर १९६९ मा लेन क्लिनरांकले परिक्षण मार्फत यसलाई इन्टरनेट प्रविधिको रुपमा विकास गर्न सफल भएका थिए ।</p>
<p>सन १९७१ म पहिलो पटक इमेलको सुत्रपात भएको रहेछ । रेय टेम्लीसनले पहिलोपटक पहिलो पटक ईमेल पठाएका थिए । इमेलमा प्रयोग गरिने २ को प्रारम्भ उनैले गरेका हुन । अहिले प्रयोगमा आएको डट कम, डट नेट जस्ता डोमेनको स्वरुप १९८५ मा सुत्रपात्र भएको थियो ।</p>
<p>नोभेम्बर २ १९८८ मा इन्टरनेटको व्यापक रुपमा पहिलो पटक प्रयोग भएको थियो । १९९० मा आएर टिन वनर्सले इन्टरनेट मार्फत सुचना आदान प्रदान गर्ने प्रविधि बल्डवाइड वेभ अर्थात डब्लुडब्लुडब्लुको प्रारम्भ गरेका थिए ।</p>
<p>इन्टरनेट प्रविधिको आकार प्रकार आइसकेपनि अमेरिकी सरकारले सर्वसाधारणको प्रयोगका लागि भने प्रतिबन्ध लगाएको थियो । सन १९९५ मा आएर जव अमेरिकी सरकारले सर्वसाधारणले इन्टरनेटको प्रयोग गर्न नपाउने कानुन खारेज ग¥यो तव यो सबैको भयो । आईसिएएनएनका अनुसार अहिले विश्वभर करिव एक अर्ब ५० करोड ब्यक्ति इन्टरनेट चलाउछन । इन्टरनेट प्रयोगकर्ताको हिसावमा चीन सबैभन्दा अगाडि रहेको छ भने भारत चौथो नम्बरमा रहेको छ ।</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/120/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/120/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/120/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=120&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2009/11/02/%e0%a4%88%e0%a4%a8%e0%a5%8d%e0%a4%9f%e0%a4%b0%e0%a4%a8%e0%a5%87%e0%a4%9f%e0%a4%95%e0%a5%8b-%e0%a5%aa%e0%a5%a6-%e0%a4%9c%e0%a4%a8%e0%a5%8d%e0%a4%ae%e0%a4%a6%e0%a4%bf%e0%a4%a8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>

		<media:content url="http://nirajlimbu.files.wordpress.com/2009/11/inter.jpg?w=145" medium="image">
			<media:title type="html">inter</media:title>
		</media:content>
	</item>
		<item>
		<title>Blank page while working in Drupal</title>
		<link>http://nirajlimbu.wordpress.com/2009/11/02/blank-page-while-working-in-drupal/</link>
		<comments>http://nirajlimbu.wordpress.com/2009/11/02/blank-page-while-working-in-drupal/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 07:49:14 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/?p=114</guid>
		<description><![CDATA[If you are using Drupal Theme for your blog or website then one of the most to be careful thing is blank page while updating some new blocks or modules from Admin menu. &#160; if really irritates while getting such blank page and while not seeing any reverse options to get back in previous stage. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=114&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-115" title="Drupal" src="http://nirajlimbu.files.wordpress.com/2009/11/drupal.gif?w=300&#038;h=300" alt="Drupal" width="300" height="300" />If you are using Drupal Theme for your blog or website then one of the most to be careful thing is blank page while updating some new blocks or modules from Admin menu.</p>
<p>&nbsp;</p>
<p>if really irritates while getting such blank page and while not seeing any reverse options to get back in previous stage.</p>
<p>but no panic.</p>
<p>if you are using Wamp sever then you need to increase memory size of PHP.</p>
<p>how to to it?</p>
<p>go to your installed PHP directory or go through Icon which you see in system try bar.</p>
<p>if you are going through Icon then click on it &gt;Configure Files&gt;PHP.ini</p>
<p>once it&#8217;s opened then fine following things:</p>
<p><code>  o post_max_size=8M<br />
  o upload_max_filesize=2M<br />
  o max_execution_time=60<br />
  o max_input_time=30</code></p>
<p><code>then you just need to change those as you like and restart all services.</code></p>
<p><code>that's it.</code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/114/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/114/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/114/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=114&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2009/11/02/blank-page-while-working-in-drupal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>

		<media:content url="http://nirajlimbu.files.wordpress.com/2009/11/drupal.gif" medium="image">
			<media:title type="html">Drupal</media:title>
		</media:content>
	</item>
		<item>
		<title>XP,Vista Vs Windows 7</title>
		<link>http://nirajlimbu.wordpress.com/2009/10/25/xpvista-vs-windows-7/</link>
		<comments>http://nirajlimbu.wordpress.com/2009/10/25/xpvista-vs-windows-7/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 12:27:46 +0000</pubDate>
		<dc:creator>nirajlimbu</dc:creator>
				<category><![CDATA[Experts views]]></category>

		<guid isPermaLink="false">http://nirajlimbu.wordpress.com/?p=110</guid>
		<description><![CDATA[Microsoft, the undisputed leader in business productivity software, has almost enjoyed a monopoly in the market of operating systems for personal computers. This week, on October 22nd, Microsoft launched its latest version of operating system called Windows 7. According to many, Microsoft’s last venture, Windows Vista, was a failure thanks to the reasons like poor [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=110&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://3.bp.blogspot.com/_akmnNcOjmvA/SuPK_BaRmFI/AAAAAAAABHo/ia3dLvTbKiY/s1600-h/Windows7_vs_Vista_vs_XP.jpg"><img style="display:block;text-align:center;cursor:pointer;width:400px;height:234px;margin:0 auto 10px;" src="http://3.bp.blogspot.com/_akmnNcOjmvA/SuPK_BaRmFI/AAAAAAAABHo/ia3dLvTbKiY/s400/Windows7_vs_Vista_vs_XP.jpg" border="0" alt="" /></a>Microsoft, the undisputed leader in business productivity software, has almost enjoyed a monopoly in the market of operating systems for personal computers. This week, on October 22nd, Microsoft launched its latest version of operating system called Windows 7. According to many, Microsoft’s last venture, Windows Vista, was a failure thanks to the reasons like poor marketing, faster battery drain in the laptops, higher system requirements, missing drivers, poor overall performance, missing file system like winFS and so on. Windows Vista could get a share of less than 10% installation on the corporate computers. Microsoft itself did admit that Vista was not a success after all. Now we are entering into the age of Windows 7 but the question is “Will Windows 7 Replace XP and Vista?” I am going to share my opinions with you all with the help of this post.</p>
<p>After a great success of Windows XP, Vista came up. Unfortunately Vista was unable to replace XP and couldn’t come even close to XP if we talk about its share in terms of use. Still 60% of the businesses are using XP environment because they believe that it works best for their working needs. There are quite a few companies still using Windows 2000 that’s because there are some particular applications which may not be compatible with XP but other than that most companies use Windows XP. Besides this, the world seems to be in love with Windows XP. People want to keep it in market especially after their experience with Windows Vista, and this makes Vista look even worse. There are some reports about people reverting back to XP after finding the drawbacks of Vista.</p>
<p>Windows Vista is out for quite some time now. Vista originally came carrying a goal to replace XP but failed to leave even its own footprint. I have encountered very few instances of a company using it in their work environment. To many, Vista is nothing better than a piece of junk. Vista is being used mainly by either home users or those who use the computer for their home/ personal use because they do not have a choice other than using it. Here in the United States, most of the outlets like Best Buy, CompUSA, Circuit City, Wal-Mart, Sams Club, Costco etc. were selling computers with only Vista preloaded (before Windows 7 was launched). When People ask to uninstall Vista, they charge some additional money ($99.00) to remove Vista and put XP back on (except for some Vista ultimate users who had an option to get their operating system down- graded for free). The percentage of people who don’t know anything about an operating system despite of using computer for a long time is fairly high even now. For people who fall under this category may not have any issues either by with XP or with Vista. So basically Microsoft is forcing people to buy the computers with Vista pre-loaded. This way, Microsoft still making profit whether you take the computer as it is or even if you ask them replaces Vista with XP at additional $99.00. Let’s forget the Vista here but do keep the XP in mind and let’s move towards the new innovation, Windows 7.</p>
<p>Windows XP has been the best operating system for almost a decade now but is it the turn for Windows 7? Many People say that Windows 7 seems to be nothing more than some polish applied liberally to the Vista Aero theme. I would say, please do not jump into this conclusion so early, because windows 7 seems to be a complete replacement of Vista and much better than Vista in terms of performance. Windows 7 is more than just spin. It&#8217;s stable, smooth, and highly polished operating system introducing new graphical features, a new taskbar that can compete handily with the Mac OS X dock, and device management and security enhancements that make it both easier to use and safer. Importantly, it won&#8217;t require the hardware upgrades that Vista demanded (at least Microsoft claims it). The reason behind this is partially because the hardware has caught up, and partially because Microsoft is eager to make Windows 7 accessible to as many people as possible.</p>
<p>Microsoft is offering six versions of Windows 7: Starter, Home Premium, Professional, Ultimate, OEM, and Enterprise. The three versions that Redmond will be promoting most heavily are Home Premium, Professional, and Ultimate, although Starter will also be available to consumers. Windows 7 will support both 32-bit and 64-bit systems. The bare minimum requirements for the 32-bit include a 1GHz processor, 1GB RAM, 16GB available hard-disk space, and a DirectX 9 graphics device with WDDM 1.0 or higher driver. 64-bit systems will require at least a 1 GHz processor, 2GB RAM, 20GB of free space on your hard drive, and a DirectX 9 graphics device with WDDM 1.0 or higher driver. A touch-screen monitor is required to take advantage of the native touch features. Do note that some users have claimed to have limited success running the Windows 7 beta with less than 1GB of RAM, but that&#8217;s not recommended.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td colspan="4" valign="top"><strong>Comparing Windows: XP vs. Vista vs. 7</strong></td>
</tr>
<tr>
<td valign="top"><strong> </strong></td>
<td valign="top"><strong>Windows XP</strong></td>
<td valign="top"><strong>Windows Vista</strong></td>
<td valign="top"><strong>Windows   7</strong></td>
</tr>
<tr>
<td rowspan="5" valign="top"><strong>Minimum hardware</strong></td>
<td valign="top">Processor: 300MHz</td>
<td valign="top">Processor: 1GHz</td>
<td valign="top">Processor: 1 GHz</td>
</tr>
<tr>
<td valign="top">RAM: 128MB</td>
<td valign="top">RAM: 1GB (32-bit), 2GB   (64-bit)</td>
<td valign="top">RAM: 1GB (32-bit), 2GB (64-bit)</td>
</tr>
<tr>
<td valign="top">Super VGA graphics   device</td>
<td valign="top">Support for DirectX 9   graphics device with 128MB of memory</td>
<td valign="top">Support for DirectX 9 graphics   device with 128MB of memory</td>
</tr>
<tr>
<td valign="top">HD: 4.2GB (for SP3)</td>
<td valign="top">HD: 20GB (32-bit),   40GB (64-bit)</td>
<td valign="top">HD: 16GB (32-bit), 20GB (64-bit)</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top"></td>
</tr>
<tr>
<td rowspan="6" valign="top"><strong>Interface</strong></td>
<td valign="top">Luna theme</td>
<td valign="top">Aero theme</td>
<td valign="top">Aero theme</td>
</tr>
<tr>
<td valign="top">Introduces task-based   windows options</td>
<td valign="top">Introduces transparent   panes, window animations, live thumbnails of running programs</td>
<td valign="top">Supports slideshow backgrounds, RSS   and theme packs</td>
</tr>
<tr>
<td valign="top">Skinning possible but   difficult</td>
<td valign="top">New desktop sidebar   supports gadgets</td>
<td valign="top">Introduces Aero Shake and Aero   Snap</td>
</tr>
<tr>
<td valign="top">Desktop Cleanup Wizard   automates removing old icons</td>
<td valign="top">Supports touch screens</td>
<td valign="top">Desktop gadgets can be placed   anywhere</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top">Supports multi-touch on touch   screens</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top"></td>
</tr>
<tr>
<td rowspan="6" valign="top"><strong>Explorer</strong></td>
<td valign="top">Replaces tree   navigation by default with task pane</td>
<td valign="top">Task pane integrated   into toolbar</td>
<td valign="top">Support for federated searches and   libraries</td>
</tr>
<tr>
<td valign="top">Improves image   handling</td>
<td valign="top">New breadcrumb   navigation</td>
<td valign="top">Virtual folders aggregate content   from local and networked drives</td>
</tr>
<tr>
<td valign="top">Offers thumbnail   previews and group views</td>
<td valign="top">New metadata display</td>
<td valign="top"></td>
</tr>
<tr>
<td valign="top">Supports some metadata</td>
<td valign="top">Improved icon   resolution</td>
<td valign="top"></td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top">Some documents can be edited   from the preview pane</td>
<td valign="top"></td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top"></td>
</tr>
<tr>
<td rowspan="5" valign="top"><strong>Start menu</strong></td>
<td valign="top">New layout</td>
<td valign="top">Added search box</td>
<td valign="top">Taskbar jumps appear in the Start   menu and replace the right column when viewed</td>
</tr>
<tr>
<td valign="top">Devices and some   Control Panel options appear in menu</td>
<td valign="top">All Programs folder changed   to a nested format</td>
<td valign="top">Documents, Pictures, Music buttons   now link to their libraries</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top">Configurable power   button</td>
<td valign="top">Control Panel options have been   integrated into search results</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top">User profile picture</td>
<td valign="top"></td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top"></td>
</tr>
<tr>
<td rowspan="6" valign="top"><strong>Taskbar</strong></td>
<td valign="top">New look</td>
<td valign="top">Refreshed look</td>
<td valign="top">Interactive mouse-over preview   panes</td>
</tr>
<tr>
<td valign="top">Hideable icons in   System Tray</td>
<td valign="top">Alt-Tab hot key now   shows preview thumbnail of program</td>
<td valign="top">Replacement of the Quick Launch   bar with pinned programs</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top">Program-specific jump lists based   on pinned programs</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top">Aero Peek for mouse-over desktop   viewing</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top">Revamped System Tray</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top"></td>
</tr>
<tr>
<td rowspan="3" valign="top"><strong>Devices</strong></td>
<td valign="top">Introduces Universal   Plug-n-Play</td>
<td valign="top">Debuts portable device   API, designed to communicate with cell phones, PDAs, and portable media   players</td>
<td rowspan="3" valign="top">New Device Stage provides a   centralized, unified window for managing all aspects of printers and portable   devices</td>
</tr>
<tr>
<td valign="top">New driver library   allows for downgrading drivers when necessary</td>
<td valign="top">Introduces Sync Center   for managing data synchronizations</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
</tr>
<tr>
<td rowspan="6" valign="top"><strong>Misc.</strong></td>
<td valign="top">Introduces   context-menu CD and DVD burning from Windows Explorer</td>
<td valign="top">Built-in drive   partitioning</td>
<td valign="top">Expands Windows Explorer disc   burning to include ISOs</td>
</tr>
<tr>
<td valign="top">Supports multiple   versions of a single DLL to prevent programs from overwriting each other</td>
<td valign="top">More powerful   screen-capturing tool</td>
<td valign="top">Introduces XP Mode</td>
</tr>
<tr>
<td valign="top">Introduces Hibernate   and Sleep modes</td>
<td valign="top">Hybrid Sleep and   better configuration options for more nuanced power management</td>
<td valign="top">Expanded options for disabling   components</td>
</tr>
<tr>
<td valign="top">Remote Desktop for   accessing a computer from another location</td>
<td valign="top">User-based file-type   associations</td>
<td valign="top">Can search text in scanned TIFF</td>
</tr>
<tr>
<td valign="top">Fast user account   switching</td>
<td valign="top">Previous Version automatically   backs up changes to individual files</td>
<td valign="top">Additional power-saving features   for laptops</td>
</tr>
<tr>
<td valign="top"></td>
<td valign="top"></td>
<td valign="top"></td>
</tr>
</tbody>
</table>
<p>(source: CNET)</p>
<blockquote><p>The good: Strong design and Microsoft don&#8217;t always go together, but they do in Windows 7. Users might take a while to get used to the new taskbar and Aero Peek, but they&#8217;re a pleasure to use.</p>
<p>The bad: Performance is still hit-or-miss in Windows 7. At the ripe age of seven, Windows XP still performs better in some categories.</p>
<p>The bottom line: Windows 7 is more than what Vista should have been, it&#8217;s where Microsoft needed to go. How much damage Vista did and whether Windows 7 is enough for people to finally abandon Windows XP are questions that nobody has the answers to right now. (source: CNET)</p></blockquote>
<p>I have recently installed the Windows 7 on my computer. The first impression of this looks okay to me and I would encourage users to install it. It looks like the operating system consumers have been waiting for. Microsoft claims to have fixed most of the problems that were in Vista and believes that Windows 7 is the future of Windows brand of operating systems</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/nirajlimbu.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/nirajlimbu.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/nirajlimbu.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/nirajlimbu.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/nirajlimbu.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/nirajlimbu.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/nirajlimbu.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/nirajlimbu.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/nirajlimbu.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/nirajlimbu.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/nirajlimbu.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/nirajlimbu.wordpress.com/110/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/nirajlimbu.wordpress.com/110/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/nirajlimbu.wordpress.com/110/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=nirajlimbu.wordpress.com&amp;blog=8932033&amp;post=110&amp;subd=nirajlimbu&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://nirajlimbu.wordpress.com/2009/10/25/xpvista-vs-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3e5d8b2e209680981d72d3af0bf15938?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">nirajlimbu</media:title>
		</media:content>

		<media:content url="http://3.bp.blogspot.com/_akmnNcOjmvA/SuPK_BaRmFI/AAAAAAAABHo/ia3dLvTbKiY/s400/Windows7_vs_Vista_vs_XP.jpg" medium="image" />
	</item>
	</channel>
</rss>
