<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ask Your Question</title>
	<atom:link href="http://askbahar.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://askbahar.com</link>
	<description>Lets Talk</description>
	<lastBuildDate>Mon, 28 Dec 2009 16:23:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to enable Apache HTTP Authentication using PHP</title>
		<link>http://askbahar.com/2009/11/11/enable-apache-http-authentication-using-php/</link>
		<comments>http://askbahar.com/2009/11/11/enable-apache-http-authentication-using-php/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 09:24:39 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Authentication]]></category>

		<guid isPermaLink="false">http://askbahar.com/?p=48</guid>
		<description><![CDATA[The easiest way to password-protect a site is to use HTTP Authentication, where if a browser’s request for a protected page is not accompanied by the correct username and password, the Web server replies with an HTTP 401 error – which means “Unauthorized Access” – and an invitation for the browser to re-submit the request [...]]]></description>
			<content:encoded><![CDATA[<p>The easiest way to password-protect a site is to use HTTP Authentication, where if a browser’s request for a protected page is not accompanied by the correct username and password, the Web server replies with an HTTP 401 error – which means “Unauthorized Access” – and an invitation for the browser to re-submit the request with a proper username and password. From the user’s point of view, most of this dialogue is hidden. Following that first failed request, the browser prompts the user (in a dialog box) for a username and password, and then re-submits the request, this time with the authentication information attached. Assuming the username/password combo is on the list of allowed users, the Web server then sends the page requested. The Web browser will likewise continue to send that username/password with all subsequent requests.</p>
<p>Look at the following code:<br />
<span id="more-48"></span></p>
<pre>
<code>
<?php
/*
    Document   : auth
    Created on : Nov 11, 2009, 9:08:32 AM
    @author    : Bahar
    Email      : bahar@progmaatic.com
    Copyright  : http://progmaatic.com

    Description: Authenticate user
*/

require_once 'settings.php';

$failure_msg = " <HTML>
 <HEAD><TITLE>Authorization Failed</TITLE></HEAD>
 <BODY>
 <H1>Authorization Failed</H1>
 <P>Without a valid username and password,
    access to this page cannot be granted.
    Please click 'reload' and enter a
    username and password when prompted.
 </P>
 </BODY>
 </HTML>";

if (!isset($_SERVER['PHP_AUTH_USER']) || $_SERVER['PHP_AUTH_USER']!==$site_user || $_SERVER['PHP_AUTH_PW']!==$site_pass)
   {
       header("WWW-Authenticate: Basic realm=\"Protected Page: Enter your username and password for access.\"");
       header("HTTP/1.0 401 Unauthorized");
       exit($failure_msg);
   }

?>
</code>
</pre>
<p>For each page, you want to authenticate user, each page must have the above code. You can save this code to a script (for example <em>auth.php</em>) and include <em>auth.php</em> to any page, hence save yourself from rewriting the code for each page.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2009%2F11%2F11%2Fenable-apache-http-authentication-using-php%2F&amp;linkname=How%20to%20enable%20Apache%20HTTP%20Authentication%20using%20PHP">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2009/11/11/enable-apache-http-authentication-using-php/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to setup latex environment in Windows</title>
		<link>http://askbahar.com/2008/10/14/setup-latex-environment-in-windows/</link>
		<comments>http://askbahar.com/2008/10/14/setup-latex-environment-in-windows/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 15:52:39 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[emacs]]></category>
		<category><![CDATA[latex]]></category>
		<category><![CDATA[miktext]]></category>
		<category><![CDATA[thesis writing]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=36</guid>
		<description><![CDATA[Must read notice: Geekish Post&#8230;.Only for geeks  
Do you need to write your first thesis paper or do you want your publication published in a famous journal?
So LaTeX is for you. LaTeX is a document preparation system for high-quality typesetting based on Donald E. Knuth&#8217;s TeX typesetting language or      [...]]]></description>
			<content:encoded><![CDATA[<p>Must read notice: Geekish Post&#8230;.Only for geeks <img src='http://askbahar.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Do you need to write your first thesis paper or do you want your publication published in a famous journal?</p>
<p>So <a title="LaTeX – A document preparation system " href="http://www.latex-project.org/" target="_blank">LaTeX</a> is for you. LaTeX is a document preparation system for high-quality typesetting based on Donald E. Knuth&#8217;s <em>TeX</em> typesetting language or      certain extensions. It is most often used for medium-to-large technical or scientific documents but it can be used for almost any form of publishing.</p>
<p>Well, definitely *NIX systems have built-in latex support, but in windows you need to set it up for yourself. As few monthes ago I have started writting my first thesis paper using latex and for some reason I have used windows system, I need to setup latex environment in windows. Definitely a annoying, time consuming task, So I have decided to share it <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I am going to describe it step by step, please follow these steps as described, its important. I am assuming you have <a title="Windows XP" href="http://www.microsoft.com/windows/windows-xp/" target="_blank">Windows XP</a> or later versions and you have administrative privilege.</p>
<p><span id="more-36"></span></p>
<p>Step 1:: Setting Up Environment</p>
<blockquote>
<ul>
<li>Right-click on the &#8220;My computer&#8221;       icon and choose Properties. Select the &#8220;Advanced&#8221; tab.Then click on &#8220;Environment Variables&#8221;.</li>
<li>Create a &#8220;user variable&#8221; called &#8220;<strong>DICTDIR</strong>&#8221; with value &#8220;<strong>c:\usr\local\lib</strong>&#8220;. [ To create a new user variable, just hit "New" under "User variables for &lt;System User Name&gt; or to edit an existing one just hit Edit ]</li>
<li>Create a &#8220;user variable&#8221; called &#8220;<strong>HOME</strong>&#8221; with value &#8220;<strong>c:\</strong>&#8220;</li>
<li>Create a &#8220;System variable&#8221; under &#8220;System variables&#8221; called &#8220;<strong>Path</strong>&#8221; with the value <strong>c:\program files\emacs\bin;c:\program files\MiKTeX 2.7\miktex\bin;c:\program files\ghostgum\ghostview\gsview\;c:\usr\local\bin;c:\program files\ghostgum\gs\gs8.51\lib;c:\program files\ghostgum\gs\gs8.51\bin</strong> [<em>There is a huge possibility that this variable is already there. In that case, just append the value</em>]</li>
<li>A restart of your system may be required.</li>
<li>Run command prompt and type &#8220;<strong>set</strong>&#8221; to check if all these variables with their required values are set.</li>
</ul>
</blockquote>
<p>Step 2:: Required Software</p>
<blockquote>
<ul>
<li>Download latest version of <a href="http://www.gnu.org/software/emacs/" target="_blank"><strong>Emacs</strong></a>from <a title="Emacs for Windows download" href="http://http://ftp.gnu.org/pub/gnu/emacs/windows" target="_blank">here</a>. Direct link: <a href="http://ftp.gnu.org/pub/gnu/emacs/windows/emacs-22.3-bin-i386.zip" target="_self">emacs-22.3-bin-i386.zip</a></li>
<li>Download latest version of <a href="http://www.miktex.org" target="_blank"><strong>MikTeX</strong></a>from <a title="MikTeX for Windows download" href="http://www.miktex.org/2.7/Setup.aspx" target="_blank">here</a>. Direct link: <a href="http://mirror.lums.edu.pk/ctan/systems/win32/miktex/setup/basic-miktex-2.7.3164.exe" target="_self">basic-miktex-2.7.3164.exe</a></li>
<li>Download latest version of <a href="http://pages.cs.wisc.edu/~ghost/" target="_blank">Ghostscript</a> from <a title="Ghostscript for Windows download" href="http://sourceforge.net/project/showfiles.php?group_id=1897&amp;package_id=108733&amp;release_id=617197" target="_blank">here</a>. Direct link: <a href="http://ftp.gnu.org/pub/gnu/emacs/windows/emacs-22.3-bin-i386.zip" target="_self">gs863w32.exe</a></li>
<li>Download latest version of <a href="http://pages.cs.wisc.edu/~ghost/" target="_blank">GSview</a> from <a title="GSview for Windows download" href="http://pages.cs.wisc.edu/~ghost/gsview/get49.htm" target="_blank">here</a>. Direct link: <a href="http://mirror.cs.wisc.edu/pub/mirrors/ghost/ghostgum/gsv49w32.exe" target="_self">gsv49w32.exe</a></li>
<li>Download latest version of <a href="http://www.gnu.org/software/auctex/" target="_blank">AUCTeX</a> from <a title="AUCTeX for Windows download" href="http://www.gnu.org/software/auctex/download-for-windows.html" target="_blank">here</a>. Direct link: <a href="http://ftp.gnu.org/pub/gnu/auctex/auctex-11.85-e22.3-msw.zip" target="_self">auctex-11.85-e22.3-msw.zip</a></li>
<li>Download <strong>.emacs</strong> from <a title=".emacs - unzip it after download" href="http://www.box.net/shared/q11me3u57v" target="_blank">here</a></li>
</ul>
</blockquote>
<p>Step 3::Installation</p>
<blockquote>
<ul>
<li>Put the .emacs file [you will get it after unzipping emacs.zip file] in <strong>C:</strong> [or your predefined HOME]</li>
<li>As Local TexMF Tree, create a directory named &#8220;<strong>Local TeX Files</strong>&#8221; in <strong>C:</strong> [or your predefined HOME]</li>
<li>Unzip emacs-22.3-bin-i386.zip to <strong>c:\program files\ </strong>. Rename the       <strong>c:\program files\emacs-22.3</strong> directory to <strong>c:\program files\emac</strong>. Run the file <strong> c:\program files\emacs\bin\addpm.exe</strong>.</li>
<li>Unzip auctex-11.85-e22.3-msw.zip to <strong>c:\program files\emacs\site-lisp</strong>.  Rename <strong>c:\program files\emacs\site-lisp\auctex-11.85-e22</strong> to       <strong>c:\program files\emacs\site-lisp\auctex</strong>.</li>
<li>Run gs863w32.exe. Choose <strong>c:\program files\ghostgum\gs</strong> as installation directory. Accept everything else.</li>
<li>Run gsv49w32.exe. Choose <strong>c:\program files\ghostgum\ghostview</strong> as installation directory. Accept everything else.</li>
<li>Run basic-miktex-2.7.3164.exe. When prompted for &#8220;Path to installation folder&#8221;, choose <strong>c:\Program Files\MiKTeX 2.7</strong>. When prompted for &#8220;Create local TEXMF tree&#8221;, choose <strong>c:\Local TeX       Files</strong> as &#8220;Path to root folder&#8221;. Accept everything else.</li>
</ul>
</blockquote>
<p>Step 4:: Opening Emacs in Latex Mode</p>
<blockquote>
<ul>
<li>Type <strong>M-x latex-mode</strong>. As soon as you hit &#8220;<strong>Enter</strong>&#8221; after writing the command, you will notice &#8220;Command&#8221; and &#8220;LaTeX&#8221; menus.</li>
</ul>
</blockquote>
<p>Step 5:: Compiling Latex Files in Emacs</p>
<blockquote>
<ul>
<li>Press C-c C-c       &lt;Return&gt;  to run latex.</li>
<li>Press C-c C-l to view       results of the compilation</li>
<li>Press C-c C-c &lt;Return&gt;       to run latex again</li>
<li>Press C-c C-c &lt;Return&gt;       to run latex again, again</li>
<li>Press C-c C-c &lt;Return&gt;       to run View. It will take a while to create fonts etc. the first time.</li>
<li>Press C-c C-c FILE       &lt;Return&gt; &lt;Return&gt; to run dvips (Note that the command is FILE       and not Dvips as one might expect)</li>
<li>Press C-c C-c Print       &lt;Return&gt; &lt;Return&gt; to run GSview (Also somewhat       misleading name)</li>
<li>If you want to print the document, do it from GSview.</li>
</ul>
</blockquote>
<p>A million dollar secret, when you asked to do the following, use your brain <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ul>
<li>C-c C-c = Hold CTRL while pressing c twice</li>
<li>C-c C-l = Hold CTRL while pressing c, release c, While holding CTRL, press l (&#8220;ell&#8221;), release both</li>
<li>M-x = Hold ALT while pressing x</li>
<li></li>
</ul>
<p>And last but not the least, download <a href="http://askbahar.files.wordpress.com/2008/10/learntex.pdf">Basic Latex Commands</a>. This pdf file will help you to learn basic latex commands.</p>
<p>So start writting your thesis <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2008%2F10%2F14%2Fsetup-latex-environment-in-windows%2F&amp;linkname=How%20to%20setup%20latex%20environment%20in%20Windows">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/10/14/setup-latex-environment-in-windows/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to overcome download time limit</title>
		<link>http://askbahar.com/2008/05/25/how-to-overcome-download-time-limit/</link>
		<comments>http://askbahar.com/2008/05/25/how-to-overcome-download-time-limit/#comments</comments>
		<pubDate>Sun, 25 May 2008 02:03:29 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Download Manager]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[download limit]]></category>
		<category><![CDATA[download time limit]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=34</guid>
		<description><![CDATA[Some file storage sites give you a download link which use to expire after a definite time , like 1 hour or 24 hour. MiHD.net is one like them. They allow you to download files hosted on their server without any limitations, but the download link will be functional for 6 hours or other certain [...]]]></description>
			<content:encoded><![CDATA[<p>Some file storage sites give you a download link which use to expire after a definite time , like 1 hour or 24 hour. <a title="MiHD.net" href="http://mihd.net/" target="_blank">MiHD.net</a> is one like them. They allow you to download files hosted on their server without any limitations, but the download link will be functional for 6 hours or other certain time. Not only these file hosting servers, often many sites from where you can download movie or songs, impose this kind of time limitation to balancing load.</p>
<p>But surely you can overcome this limitation.</p>
<p><span id="more-34"></span></p>
<p>When you download something from internet you get two links, one for the content you are going to download which we will call &#8216;URL&#8217; or &#8216;download link&#8217; and the other one is the &#8216;referrer link&#8217; which is often the origin of requesting the file. Now for a definite page on a definite site, the referrer link is always same, but the download link changes based the download method the site uses.</p>
<p>To overcome the download limit, you have to use any download manager. A good choice would be <a title="Free Download Manager" href="http://www.freedownloadmanager.org" target="_blank">Free Download Manage</a>r or <a title="Flashget - English" href="http://www.flashget.com/index_en.htm" target="_blank">Flashget</a>. Both of them are free, easy to use and full of features.</p>
<p>First browse to the page from where you wish to download a file which is imposed a download time limitation. start downloading the file as you do in all cases. Now when the time is about exceed its limit, then browse the page once again. Save the URL of the page, it is your referrer link. Now click on the file link or start download icon or what ever you get in your case. When the download start, save the download link. <em>If you have installed Free download manager or Flashget and their integration is enabled in your browser, a ADD URL dialoag box will open. from thet box just save the URL or download link.</em></p>
<p>Now back to the old download link again. If you are downloading the file, pause it. open the download item&#8217;s properties, you will get a dialogue box. Replace both the later saved URL and download link with the existing one. Click OK and resume download again.</p>
<p>I am using this trick successfully with flashget and free download manager. But I think, this method will work for all download managers and those sites allow downloading using download manager.</p>
<blockquote><p>The reason behind the success of this trick is nothing but download managers normally work in append mode. When they download something, they search for a pre-existing complete / incomplete file. If the previous [assuming the file already exists and incomplete] and current file&#8217;s referrer links are the same, they assume them as same file and instead of opening a new file, they just start downloading from the last of the previous file and append the download content to the previous file.</p></blockquote>
<p>Thanks to Rakib, my extra-ordinary genious classmate, who first brought this issue to my mind.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2008%2F05%2F25%2Fhow-to-overcome-download-time-limit%2F&amp;linkname=How%20to%20overcome%20download%20time%20limit">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/25/how-to-overcome-download-time-limit/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>8 easy steps to play with Google efficiently</title>
		<link>http://askbahar.com/2008/05/24/8-easy-steps-to-play-with-google-efficiently/</link>
		<comments>http://askbahar.com/2008/05/24/8-easy-steps-to-play-with-google-efficiently/#comments</comments>
		<pubDate>Sat, 24 May 2008 15:52:25 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Google]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[effective search]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search techniques]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=32</guid>
		<description><![CDATA[When you don&#8217;t find anything or don&#8217;t know where to find, the only probable answer you may get &#8220;Google it!&#8221;. But finding your desired result is really a hard job unless you search for the keyword &#8220;Google&#8221;, &#8220;Microsoft&#8221;, &#8220;Facebook&#8221; or something like that!. But surely you are not going to search them. You may want [...]]]></description>
			<content:encoded><![CDATA[<p>When you don&#8217;t find anything or don&#8217;t know where to find, the only probable answer you may get &#8220;<a title="Google" href="http://www.google.com" target="_blank">Google</a> it!&#8221;. But finding your desired result is really a hard job unless you search for the keyword &#8220;Google&#8221;, &#8220;Microsoft&#8221;, &#8220;Facebook&#8221; or something like that!. But surely you are not going to search them. You may want to find where your favorite song or movie or e-book can be downloaded or a specific note about a specific person.</p>
<p>To make easier the job, you may wish to follow the following steps..<br />
<span id="more-32"></span></p>
<p><strong>Step 1:: AND:</strong> With AND google tries to find all the words listed. By default google uses AND. So searching with</p>
<pre style="border:1px inset;overflow:auto;width:440px;height:55px;text-align:left;margin:0;padding:6px;">ask bahar your question<em>    </em>
or<em>
</em>ask AND bahar AND your AND question</pre>
<p>will yield the same result.</p>
<p><strong>Step 2::OR:</strong> With OR google will search for either of the terms/keywords. you may use &#8216;<strong>|</strong>&#8216;<strong> </strong>sign as OR instead of using the word &#8220;OR&#8221;. So if you search</p>
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">blogspot | wordpress</pre>
<p>you will get results on both blogspot and wordpress in the first page. If you are sure you want to include one term but also want to include a choice of other terms, you can group your search. For example, searching</p>
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">Dhaka city (college | corporation)</pre>
<p>will yield better result than searching the following.</p>
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">Dhaka city | college | corporation</pre>
<p><strong>Step3::Minus: </strong>The minus will exclude terms from your search. For example, if you want to search the free download able music sites, try</p>
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">download music -paid</pre>
<p>which will show you only the free sites.</p>
<p><strong>Step 4::</strong><strong>&#8221; &#8221; (Quotation Marks): </strong> if you want to search for an exact phrase [may be the title of a song] such as</p>
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">"What Silence Said"</pre>
<p>would show you the result about famous song of <a title="Biography of Susheela Raman" href="http://www.susheelaraman.com" target="_blank">Susheela Raman</a>.</p>
<p><strong>Step 5::</strong><strong>* Wildcard Search: </strong>You can use the * wildcard to replace any specific words you might have forgotten. For example assume that you were searching for one of Napoleon Bonaparte&#8217;s famous quotes &#8220;Never interrupt your enemy when he is making a mistake.&#8221; What if you couldn&#8217;t remember all the words? Just search for</p>
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">Never <strong>*</strong> your enemy when he is <strong>*</strong> a mistake</pre>
<p>So without remembering anything, you can find everything!</p>
<p><strong>Step 6::Search Free MP3:</strong> People leave music files in unprotected directories all of the time. Here&#8217;s how to get to them. If you properly query google, you can find open indexes of music files easily. Here are some hints to get you started.</p>
<div style="margin:5px 20px 20px;">
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">-inurl:htm -inurl:html intitle:"index of" "Last modified" mp3</pre>
</div>
<p>Using this string we are using the &#8220;index of&#8221; and the inurl commands to attempt to isolate directories only. The mp3 tag on the end tells google to look for mp3s in these open directories. You can change this to wma or ogg if you wish.<br />
You can add additional search criteria to focus your search more.</p>
<div style="margin:5px 20px 20px;">
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">-inurl:htm -inurl:html intitle:"index of" mp3 "System of Down"</pre>
</div>
<p>This command will find open directories with mp3 files with System of Down. Obviously you can change the band name or file type to better define your search.</p>
<p>People upload songs to their private space, FTP space. You can have them by</p>
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">What Silence Said public ftp</pre>
<p>You can use other song title or singer name instead of What Silence Said</p>
<p><strong>Step 7::Search Free Movies</strong>: Find those hidden directories just full of video files. This will search for avi, mpg, and wmv files. We&#8217;ll use the same trick to find open directories. This should find open directories full of video files.</p>
<div style="margin:5px 20px 20px;">
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">-inurl:htm -inurl:html -inurl:asp intitle:"index of"
+(wmv|mpg|avi)</pre>
</div>
<p>Just add additional search terms on the end if you want to focus your search. Say you wanted to find some Broune trilogy clips:</p>
<div style="margin:5px 20px 20px;">
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">-inurl:htm -inurl:html -inurl:asp intitle:"index of"
+(wmv|mpg|avi) +bourne</pre>
</div>
<p>If you want to focus your search further you can even add more and more search terms to limit it to directories:</p>
<div style="margin:5px 20px 20px;">
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">-inurl:htm -inurl:html -inurl:asp intitle:"index of" +
(wmv|mpg|avi) +"parent directory"</pre>
</div>
<p><strong>Step8:: Search Free Ebooks:</strong> Google will easily show you all those ebooks that are hanging out there for free! Want some ebooks? Try this:</p>
<div style="margin:5px 20px 20px;">
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">-inurl:htm -inurl:html intitle:"index of"
+("/ebooks"|"/book") +(chm|pdf|zip)</pre>
</div>
<p>Here were are telling google to look for book or ebook directories&#8230; and we have listed several common ebook formats (zip, pdf, chf).<br />
If you would like to look for a particular author or title just tack it to the end of your search.</p>
<div style="margin:5px 20px 20px;">
<pre style="border:1px inset;overflow:auto;width:440px;height:34px;text-align:left;margin:0;padding:6px;">-inurl:htm -inurl:html intitle:"index of" +
("/ebooks"|"/book") +(chm|pdf|zip) +"o'reilly"</pre>
</div>
<p>This uses the same idea but attempts to focus on directories that contain O&#8217;Reilly stuff, which may give you some potential results.</p>
<blockquote><p><em>Special Note: What does all of this mean? The -inurl htm and -inul html is attempting to get rid of regular webpages and show just index pages. Looking for index of in the title is doing the same. Using the pipe ( | ) tells google to look for something OR something else. </em></p></blockquote>
<p>So I hope, using these easy steps you can easily find your content on Google. Surely there are other effective ways. Please Comment them out using the comment form. I will update this post taking the relevant and effective comments to make the post more effective.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2008%2F05%2F24%2F8-easy-steps-to-play-with-google-efficiently%2F&amp;linkname=8%20easy%20steps%20to%20play%20with%20Google%20efficiently">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/24/8-easy-steps-to-play-with-google-efficiently/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is &#039;www&#039; necessary?</title>
		<link>http://askbahar.com/2008/05/18/is-www-necessary/</link>
		<comments>http://askbahar.com/2008/05/18/is-www-necessary/#comments</comments>
		<pubDate>Sun, 18 May 2008 02:49:52 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[apache redirection]]></category>
		<category><![CDATA[Browser]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[no-www]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=31</guid>
		<description><![CDATA[Have you checked this? write www.google.com and google.com  in your browser&#8217;s address bar, then hit Enter. Both will work. same as true for Yahoo!, Wordpress.com and other leading sites. Again there are some sites which won&#8217;t work without &#8216;www&#8216;, like www.buet.ac.bd will work but buet.ac.bd won&#8217;t work.
So what&#8217;s the reason behind this?

WWW [short form [...]]]></description>
			<content:encoded><![CDATA[<p>Have you checked this? write<strong><em> <a href="http://www.oogle.com" target="_blank">www.google.com</a></em></strong><em> </em>and <a href="http://google.com" target="_blank"><em><strong>google.com</strong></em> </a> in your browser&#8217;s address bar, then hit Enter. Both will work. same as true for <a href="http://www.yahoo.com" target="_blank">Yahoo!</a>, <a href="http://wordpress.com" target="_blank">Wordpress.com</a> and other leading sites. Again there are some sites which won&#8217;t work without &#8216;<a title="World Wide Web" href="http://en.wikipedia.org/wiki/World_Wide_Web" target="_blank"><strong>www</strong></a>&#8216;, like <a href="http://www.buet.ac.bd" target="_blank">www.buet.ac.bd</a> will work but <a title="This will not work" href="http://buet.ac.bd" target="_blank">buet.ac.bd</a> won&#8217;t work.</p>
<p>So what&#8217;s the reason behind this?</p>
<p><span id="more-31"></span></p>
<p>WWW [short form of <a href="http://dictionary.reference.com/search?q=world%20wide%20web" target="_blank">World Wide Web</a>] is not really a useful thing on internet. It work like a subdomain, where all your documents, HTML and other files reside which will be publicly viewable. This is what <a href="http://en.wikipedia.org/wiki/World_Wide_Web#WWW_prefix_in_Web_addresses" target="_blank">Wikipedia says</a> about it..</p>
<blockquote><p>The letters &#8220;www&#8221; are commonly found at the beginning of <a class="mw-redirect" title="Web address" href="http://en.wikipedia.org/wiki/Web_address">Web addresses</a> because of the long-standing practice of naming Internet hosts (servers) according to the services they provide. So for example, the host name for a <a title="Web server" href="http://en.wikipedia.org/wiki/Web_server">Web server</a> is often &#8220;www&#8221;; for an <a class="mw-redirect" title="FTP server" href="http://en.wikipedia.org/wiki/FTP_server">FTP server</a>, &#8220;ftp&#8221;; and for a <a class="mw-redirect" title="USENET" href="http://en.wikipedia.org/wiki/USENET">USENET</a> <a title="News server" href="http://en.wikipedia.org/wiki/News_server">news server</a>, &#8220;news&#8221; or &#8220;nntp&#8221; (after the news protocol <a class="mw-redirect" title="NNTP" href="http://en.wikipedia.org/wiki/NNTP">NNTP</a>). These host names appear as <a class="mw-redirect" title="Domain name system" href="http://en.wikipedia.org/wiki/Domain_name_system">DNS</a> <a title="Subdomain" href="http://en.wikipedia.org/wiki/Subdomain">subdomain</a> names, as in &#8220;www.example.com&#8221;.</p></blockquote>
<p>As a matter of fact, use of the www subdomain is redundant and time consuming to communicate.  The internet,    media, and society are all better off without it.</p>
<p>So the current web administrators are practicing the no www thing. But as people are used to use the www, so they keep the both settings in their server. Some of the admins redirect all the traffic to <em>www.example-domain.com</em> like Google do when some of them redirect every thing to <em>example-domain.com</em>. I will go with the later one, it should be the standard. Even Google crawlers like the no-www address.</p>
<p>So if you want to make your default address <em>example-domain.com</em> and want to redirect <em>www.example-domain.com</em> to <em>example-domain.com</em>, so that you can catch everyone&#8217;s traffic when they hit on your site, just open <a title="Apache htaccess tutorial" href="http://httpd.apache.org/docs/2.2/howto/htaccess.html" target="_self">.htaccess</a> file in your root directory [assuming you are using apache httpd] and write following lines.</p>
<blockquote><p><span>RewriteEngine On<br />
RewriteCond %{HTTP_HOST} ^www\.<span class="red">domain\.com</span>$ [NC]<br />
RewriteRule ^(.*)$ http://<span class="red">domain.com</span>/$1 [R=301,L] </span></p></blockquote>
<p>There is an organisation named <a title="No-www.org" href="http://no-www.org" target="_blank"><strong>No-www.org</strong></a> working on making internet www free <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Check them.</p>
<p>To validate your domain if it supports no-www, please use this link : <a href="http://no-www.org/verify.php" target="_blank">http://no-www.org/verify.php</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2008%2F05%2F18%2Fis-www-necessary%2F&amp;linkname=Is%20%26%23039%3Bwww%26%23039%3B%20necessary%3F">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/18/is-www-necessary/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Firefox 3.0 RC1 is out..grab it</title>
		<link>http://askbahar.com/2008/05/17/firefox-30rc1-is-out/</link>
		<comments>http://askbahar.com/2008/05/17/firefox-30rc1-is-out/#comments</comments>
		<pubDate>Sat, 17 May 2008 10:53:00 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Browser]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=30</guid>
		<description><![CDATA[Firefox 3.0 RC1 has been released yesterday [16 May, 2008]. It is different from Firefox 2.0 in many ways.

More secured
More personal
Easier to use
Improved performance

Read the full list of features here. Download it from FTP or HTTP mirror, or directly from here.
Share/Save]]></description>
			<content:encoded><![CDATA[<p>Firefox 3.0 RC1 has been released yesterday [16 May, 2008]. It is different from Firefox 2.0 in many ways.</p>
<ul>
<li>More secured</li>
<li>More personal</li>
<li>Easier to use</li>
<li>Improved performance</li>
</ul>
<p>Read the full list of features <a title="Firefox 3.0 features" href="http://en-us.www.mozilla.com/en-US/firefox/3.0rc1/releasenotes/#whatsnew" target="_blank">here</a>. Download it from <a title="Firefox 3.0 RC1 FTP download" href="ftp://releases.mozilla.org/pub/mozilla.org/firefox/releases/" target="_blank">FTP</a> or <a title="Firefox 3.0 RC1 HTTP download" href="http://releases.mozilla.org/pub/mozilla.org/firefox/releases/" target="_blank">HTTP</a> mirror, or directly from <a href="http://en-us.www.mozilla.com/en-US/firefox/all-rc.html" target="_blank">here</a>.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2008%2F05%2F17%2Ffirefox-30rc1-is-out%2F&amp;linkname=Firefox%203.0%20RC1%20is%20out..grab%20it">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/17/firefox-30rc1-is-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to verify an ISO image in linux before burning</title>
		<link>http://askbahar.com/2008/05/17/verify-iso-image-in-linux-before-burning/</link>
		<comments>http://askbahar.com/2008/05/17/verify-iso-image-in-linux-before-burning/#comments</comments>
		<pubDate>Sat, 17 May 2008 10:24:19 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Operating System]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[boot]]></category>
		<category><![CDATA[ISO]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[vmware player]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=29</guid>
		<description><![CDATA[There is no nice or 100% effective fast way to verify an ISO image of any OS [normally *INX based OS] without installing. But there are several ways one can test the ISO image. If the test(s) are successful, there is a high (to me which is almost 100%   ) probability, that the [...]]]></description>
			<content:encoded><![CDATA[<p>There is no nice or 100% effective fast way to verify an <a title="ISO image in Wikipedia" href="http://en.wikipedia.org/wiki/Iso_image" target="_blank">ISO image</a> of any OS [normally *INX based OS] without installing. But there are several ways one can test the ISO image. If the test(s) are successful, there is a high (to me which is almost 100% <img src='http://askbahar.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  ) probability, that the ISO is perfect to be burned in a CD or DVD which one is desirable.</p>
<p><span id="more-29"></span></p>
<ul>
<li>After downlaoding an ISO from any source, you must validate the SH1SUM or MD5SUM which one is required in your case to verify the security and integrity of your ISO.</li>
<li>You can manually mount the ISO image to check its content when you are in Linux using the code
<pre>su -c 'mount -o loop -t iso9660 &lt;isofilename&gt; &lt;mountpoint&gt;</pre>
</li>
<li>You can use <a href="https://www.vmware.com/products/player/" target="_blank">VMware Player</a> to boot your ISO image, even you can install it as a virtual OS in Linux. With this free software, you can not only verify the image but you can also test the installation without changing your current installation of Linux. Download it from <a title="Download VMware Player" href="https://www.vmware.com/download/player/" target="_blank">here</a>.</li>
</ul>
<p>Some useful links about the topic:</p>
<ul>
<li><a href="http://fedoraproject.org/en/verify" target="_self">http://fedoraproject.org/en/verify</a></li>
<li><a href="http://www.ubuntugeek.com/how-to-install-ubuntu-linux-from-usb-stick.html" target="_self">http://www.ubuntugeek.com/how-to-install-ubuntu-linux-from-usb-stick.html</a></li>
<li><a href="http://en.opensuse.org/Download_Help" target="_self">http://en.opensuse.org/Download_Help</a></li>
</ul>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2008%2F05%2F17%2Fverify-iso-image-in-linux-before-burning%2F&amp;linkname=How%20to%20verify%20an%20ISO%20image%20in%20linux%20before%20burning">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/17/verify-iso-image-in-linux-before-burning/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fedora 9 (Sulphur) is on earth&#8230;grab it!</title>
		<link>http://askbahar.com/2008/05/15/fedora9-released/</link>
		<comments>http://askbahar.com/2008/05/15/fedora9-released/#comments</comments>
		<pubDate>Thu, 15 May 2008 03:49:02 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Operating System]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[fedora 9]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[sulphur]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=23</guid>
		<description><![CDATA[
So after a long time, Fedora 9 (Sulphur) has been released. The version includes some must need features.
Here is the list..



This release features             GNOME             2.22. GNOME now includes a webcam photo [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://askbahar.files.wordpress.com/2008/05/f9launch.png"><img class="alignleft size-full wp-image-28" src="http://askbahar.files.wordpress.com/2008/05/f9launch.png" alt="Fedora 9 Launched" width="450" height="150" /></a></p>
<p>So after a long time, Fedora 9 (Sulphur) has been released. The version includes some must need features.</p>
<p>Here is the list..</p>
<p><span id="more-23"></span></p>
<div class="itemizedlist">
<ul type="disc">
<li>This release features             <a class="ulink" href="http://www.gnome.org/start/2.22/notes/C/" target="_top">GNOME             2.22</a>. GNOME now includes a webcam photo and video             creation utility called <span class="application"><strong>Cheese</strong></span>,             improved network filesystem support, a new international             clock applet, Google Calendar support and custom email             labels in Evolution, a new Remote Desktop Viewer, improved             accessibility features, and             <span class="application"><strong>PolicyKit</strong></span> integration.</li>
<li>KDE 4.0.3 is available with more upgraded features and overall its more stable.</li>
<li><a class="ulink" href="http://fedoraproject.org/wiki/NetworkManager" target="_top"> NetworkManager</a> 0.7 provides improved mobile             broadband support, including GSM and CDMA devices, and now             supports multiple devices and ad-hoc networking for sharing             connections. To me its the best feature of Fedora9.</li>
<li>The Fedora installer, <span class="application"><strong>Anaconda</strong></span>, 	    now supports partition resizing for ext2/3, NTFS 	    filesystems, creating and installing to encrypted file 	    systems, improved Rescue Mode with FirstAidKit, 	    independent locations for the second stage installer and 	    the software packages.</li>
<li>Live USB images now support persistence, so your data and 	    setting changes will be preserved even after rebooting.</li>
<li><a class="ulink" href="http://www.packagekit.org/" target="_top">PackageKit</a>, 	    a new set of graphical and console tools, with a framework 	    for cross-distribution software management, has 	    replaced <span class="application"><strong>Pirut</strong></span> in this release 	    of Fedora. The <span class="application"><strong>PackageKit</strong></span> graphical updater is available instead 	    of <span class="application"><strong>Pup</strong></span>. Behind <span class="application"><strong>PackageKit</strong></span>, 	    the performance of <code>yum</code> has been 	    significantly improved.</li>
<li><a class="ulink" href="http://en.wikipedia.org/wiki/Ext4" target="_top">Ext4</a>, 	    the next version of the mature and stable ext3 filesystem 	    is available as a option in this release. Ext4 features 	    better performance, higher storage capacity and several 	    other new features.</li>
<li>This release of Fedora uses 	    <a class="ulink" href="http://upstart.ubuntu.com/" target="_top"><span class="application"><strong>Upstart</strong></span></a>, 	    an event-based replacement for 	    the <code>/sbin/init</code> daemon.</li>
<li>Firefox 3 brings a number of major improvements including 	    a native look and feel, desktop integration, the new 	    Places replacement for bookmarks, and a re-worked address 	    bar.</li>
<li>The completely free and open source Java environment 	    OpenJDK 6 is installed by 	    default.</li>
<li><a class="ulink" href="http://fedoraproject.org/wiki/OpenOffice" target="_top">OpenOffice.org</a> 2.4, with many new features, is available as part of 	    Fedora 9.</li>
<li>Fedora now includes             <a class="ulink" href="http://perldoc.perl.org/perldelta.html" target="_top"> <span class="application"><strong>Perl 5.10.0</strong></span></a>, which             features a smaller memory footprint and other improvements.</li>
<li>Fedora now 	    includes <a class="ulink" href="http://www.tug.org/texlive/" target="_top">TeXLive</a> to replace the older, unmaintained TeX distribution.</li>
<li>Fedora 9 features a 2.6.25 based kernel.</li>
<li>And definitely Fedora 9 is much more stable than Fedora 8.</li>
</ul>
</div>
<div class="itemizedlist"></div>
<div class="itemizedlist">To see the detailed release note, <a title="Fedora 9 Release notes" href="http://docs.fedoraproject.org/release-notes/f9/" target="_blank">click here</a>. To grab your Fedora 9, please visit <a title=" Navigation      * Home     * Get Fedora     * Join Fedora  Tools      * Docs Fedora documentation.     * Wiki Collaborative knowledge.     * Planet The voices of the Fedora community.     * Communicate Speak with Fedora.     * Events Meet the Fedora community.  Website Language Fedora, For You." href="http://fedoraproject.org/en/get-fedora" target="_blank">Get Fedora</a></div>
<div class="itemizedlist"></div>
<div class="itemizedlist">So start enjoying the new Sulphar&#8230;.</div>
<div class="itemizedlist"></div>
<div class="itemizedlist"><span style="color:#808080;"><em>Source: http://fedoraproject.org</em></span></div>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2008%2F05%2F15%2Ffedora9-released%2F&amp;linkname=Fedora%209%20%28Sulphur%29%20is%20on%20earth%26%238230%3Bgrab%20it%21">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/15/fedora9-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to publish your wordpress.com blog in Facebook</title>
		<link>http://askbahar.com/2008/05/13/publish-your-wordpress-blog-in-facebook/</link>
		<comments>http://askbahar.com/2008/05/13/publish-your-wordpress-blog-in-facebook/#comments</comments>
		<pubDate>Tue, 13 May 2008 04:56:54 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[social networking]]></category>
		<category><![CDATA[wordpress.com. facebook]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=26</guid>
		<description><![CDATA[Joseph Scott from Wordpress.com has developed a new Facebook app called WordPress.com Facebook App which can publish your Wordpress.com blogs directly to Facebook when you have an account with Facebook.
With this app, you can post via Facebook to your blog. Your posts will appear both in Facebook and in your blog. Your friends will be [...]]]></description>
			<content:encoded><![CDATA[<p><img src="/Users/bahar/AppData/Local/Temp/moz-screenshot.jpg" alt="" />Joseph Scott from <a href="http://wordpress.com" target="_self">Wordpress.com</a> has developed a new <a title="Facebook" href="http://www.facebook.com" target="_blank">Facebook</a> app called <a title="Wordpress.com Facebook app" href="http://www.facebook.com/add.php?api_key=12a506b555ba2b33e57cbd495d8d041a" target="_blank">WordPress.com Facebook App</a> which can publish your Wordpress.com blogs directly to Facebook when you have an account with Facebook.<a href="http://askbahar.files.wordpress.com/2008/05/wordpress-facebook.jpg"><img class="alignright size-medium wp-image-27" src="http://askbahar.files.wordpress.com/2008/05/wordpress-facebook.jpg?w=300" alt="Wordpress.com Facebook app screen shot" width="300" height="157" /></a></p>
<p>With this app, you can post via Facebook to your blog. Your posts will appear both in Facebook and in your blog. Your friends will be notified by the mini-feed when there is a new post. You can view the stats of your blog directly in Facebook and can explore other friends blogs having the same app installed in their Facebook account.</p>
<p>To install the app, just point your browser to <a title="Wordpress.com Facebook app link" href="http://apps.facebook.com/wordpress-com/" target="_blank">http://apps.facebook.com/wordpress-com/</a>.</p>
<p>So lets start now&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;.</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2008%2F05%2F13%2Fpublish-your-wordpress-blog-in-facebook%2F&amp;linkname=How%20to%20publish%20your%20wordpress.com%20blog%20in%20Facebook">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/13/publish-your-wordpress-blog-in-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get nice and best pictures posted into your mail box for free</title>
		<link>http://askbahar.com/2008/05/11/how-to-get-the-best-pictures-posted-into-your-mail-box-for-free/</link>
		<comments>http://askbahar.com/2008/05/11/how-to-get-the-best-pictures-posted-into-your-mail-box-for-free/#comments</comments>
		<pubDate>Sun, 11 May 2008 11:43:32 +0000</pubDate>
		<dc:creator>Habib Ullah Bahar</dc:creator>
				<category><![CDATA[Media Stuffs]]></category>
		<category><![CDATA[Tips n Tricks]]></category>
		<category><![CDATA[free stuffs]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[picture]]></category>
		<category><![CDATA[Picture of the Day]]></category>
		<category><![CDATA[Wikimedia]]></category>

		<guid isPermaLink="false">http://askbahar.wordpress.com/?p=20</guid>
		<description><![CDATA[Hi all,
I think all of us always try to get nice, interesting pictures either for collection or for desktop background. You crawl on web like Google in search of nice pictures. When you grab one, you don&#8217;t know if its copyrighted or not! But you can always grab all the best pictures posted into your [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all,</p>
<p>I think all of us always try to get nice, interesting pictures either for collection or for desktop background. You crawl on web like Google in search of nice pictures. When you grab one, you don&#8217;t know if its copyrighted or not! But you can always grab all the best pictures posted into your mail box just for free.</p>
<p><span id="more-20"></span></p>
<p>Yes, <a title=" Wikimedia Commons" href="http://commons.wikimedia.org/wiki/Main_Page" target="_blank">Wikimedia Commons</a> has all these unique features. This is a sister concern of <a title="Wikimedia Foundation" href="http://wikimediafoundation.org/" target="_blank">Wikimedia Foundation</a>.</p>
<p>Everyday they select a picture as <a title="Commons Ppicture of the day" href="http://commons.wikimedia.org/wiki/Commons:Picture_of_the_day" target="_self">Picture of the Day</a> based on community feedback from a verity collection of pictures. All the pictures are licensed under <span class="description en"><a class="extiw" title="GNU_Free_Documentation_License" href="http://en.wikipedia.org/wiki/GNU_Free_Documentation_License">GNU Free Documentation license</a>, which mean they are free.</span></p>
<p>Wikimedia Commons maintain a mailing list to get picture of the day into your mail box. Just click on <span class="plainlinks"><a class="external text" title="http://lists.wikimedia.org/mailman/listinfo/daily-image-l" rel="nofollow" href="http://lists.wikimedia.org/mailman/listinfo/daily-image-l">Receive the Picture of the day via email.</a></span></p>
<p>You can also subscribe to their feed: <span class="plainlinks"><a class="external text" title="http://tools.wikimedia.de/~daniel/potd/commons/potd-400x300.rss" rel="nofollow" href="http://tools.wikimedia.de/%7Edaniel/potd/commons/potd-400x300.rss">Receive the Picture of the Day via RSS.</a></span></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Faskbahar.com%2F2008%2F05%2F11%2Fhow-to-get-the-best-pictures-posted-into-your-mail-box-for-free%2F&amp;linkname=How%20to%20get%20nice%20and%20best%20pictures%20posted%20into%20your%20mail%20box%20for%20free">Share/Save</a>]]></content:encoded>
			<wfw:commentRss>http://askbahar.com/2008/05/11/how-to-get-the-best-pictures-posted-into-your-mail-box-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
