<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:series="http://unfoldingneurons.com/" version="2.0">

<channel>
	<title>Digital Management</title>
	
	<link>http://dak9.com</link>
	<description>Manage your digital assets</description>
	<lastBuildDate>Wed, 26 Oct 2011 11:47:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/dak9" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="dak9" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Check If Valid Indian Mobile Number</title>
		<link>http://dak9.com/check-if-valid-indian-mobile-number</link>
		<comments>http://dak9.com/check-if-valid-indian-mobile-number#comments</comments>
		<pubDate>Sun, 26 Jun 2011 04:14:50 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://dak9.com/?p=849</guid>
		<description><![CDATA[<p></p><p>Code Below check for valid Indian Mobile Number&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><p>Code Below check for valid Indian Mobile Number</p>
<pre class="brush: php; title: ; notranslate">// PHP Function below can be used to check
// if a given number is valid Indian mobile number or not.
function is_mobile($number)
{
	$result = true;
	// unless prooved otherwise, mobile number is valid.

	$number = preg_replace('/\D/', '', $number);
	// Strip out non digits.

	$first_digit = substr($number,0,1);
	if( strcmp($first_digit,&quot;6&quot;) &lt; 0 )	$result = false;
	// first digit should be greater then 6.

	if(strlen(&quot;$number&quot;) != 10)			$result = false;
	// Should be of exactl ten digits.

	return $result;
}</pre>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/check-if-valid-indian-mobile-number/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reading a text file in PHP</title>
		<link>http://dak9.com/reading-a-text-file-in-php</link>
		<comments>http://dak9.com/reading-a-text-file-in-php#comments</comments>
		<pubDate>Sun, 27 Mar 2011 19:01:55 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://dak9.com/?p=847</guid>
		<description><![CDATA[<p></p><p>Read a text file in php&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><p>Read a text file in php</p>
<pre class="brush: php; title: ; notranslate">
// Using the code below a text file can be read in PHP

$myFile = &quot;config/navigation.txt&quot;;
$fh = fopen($myFile, 'r');
$theData = fread($fh, filesize($myFile));
fclose($fh);
echo $theData;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/reading-a-text-file-in-php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List PHP Pre Defined Variables</title>
		<link>http://dak9.com/list-php-pre-defined-variables</link>
		<comments>http://dak9.com/list-php-pre-defined-variables#comments</comments>
		<pubDate>Sun, 27 Mar 2011 15:29:10 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://dak9.com/?p=844</guid>
		<description><![CDATA[<p></p><p>Get list of predefined constants.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><p>Get list of predefined constants.</p>
<pre class="brush: php; title: ; notranslate">
// list of pre-defined variables.

print '&lt;pre&gt;';
print_r(get_defined_constants());
print '&lt;/pre&gt;';
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/list-php-pre-defined-variables/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Me Government Job</title>
		<link>http://dak9.com/get-me-government-job</link>
		<comments>http://dak9.com/get-me-government-job#comments</comments>
		<pubDate>Sun, 23 Jan 2011 05:31:14 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://dak9.com/?p=840</guid>
		<description><![CDATA[<p></p><p>Get me a government job<br />
<a href="http://dak9.com/files/governemnt_job_100kb.jpg"><img src="http://dak9.com/files/governemnt_job_100kb-300x140.jpg" alt="" title="governemnt_job_100kb" width="300" height="140" class="alignleft size-medium wp-image-839" /></a>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><p>Get me a government job<br />
<a href="http://dak9.com/files/governemnt_job_100kb.jpg"><img src="http://dak9.com/files/governemnt_job_100kb-300x140.jpg" alt="" title="governemnt_job_100kb" width="300" height="140" class="alignleft size-medium wp-image-839" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/get-me-government-job/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Precious Words</title>
		<link>http://dak9.com/precious-words</link>
		<comments>http://dak9.com/precious-words#comments</comments>
		<pubDate>Tue, 18 Jan 2011 00:52:01 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://dak9.com/?p=830</guid>
		<description><![CDATA[<p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><div id="attachment_828" class="wp-caption alignleft" style="width: 300px">
	<a href="http://dak9.com/files/Precious_Words.jpg"><img src="http://dak9.com/files/Precious_Words-300x178.jpg" alt="" title="Precious_Words" width="300" height="178" class="size-medium wp-image-828" /></a>
	<p class="wp-caption-text">Precious_Words</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/precious-words/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Old and Rare Photographs of India</title>
		<link>http://dak9.com/old-and-rare-photographs-of-india</link>
		<comments>http://dak9.com/old-and-rare-photographs-of-india#comments</comments>
		<pubDate>Tue, 12 Oct 2010 18:39:13 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[Place]]></category>

		<guid isPermaLink="false">http://dak9.com/?p=814</guid>
		<description><![CDATA[<p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><iframe class='pdf-ppt-viewer' src='http://docs.google.com/gview?url=http://dak9.com/files/India.ppt&embedded=true' style='width:540px; height:405px;' frameborder='0'></iframe>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/old-and-rare-photographs-of-india/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Just Type a word to go to any page on the Internet</title>
		<link>http://dak9.com/just-type-a-word-to-go-to-any-page-on-the-internet</link>
		<comments>http://dak9.com/just-type-a-word-to-go-to-any-page-on-the-internet#comments</comments>
		<pubDate>Wed, 06 Oct 2010 10:40:48 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[tips-n-tricks]]></category>

		<guid isPermaLink="false">http://reena.in/?p=322</guid>
		<description><![CDATA[<p></p><p>In firefox there is an option to change many settings of  it, this can be done using typing</p>
<p><strong>about:config</strong></p>
<p>in address bar of Mozilla firefox. On this settings page now do following.</p>
<p><strong>keyword.enabled</strong> set to <strong>true</strong>, if not already&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><p>In firefox there is an option to change many settings of  it, this can be done using typing</p>
<p><strong>about:config</strong></p>
<p>in address bar of Mozilla firefox. On this settings page now do following.</p>
<p><strong>keyword.enabled</strong> set to <strong>true</strong>, if not already</p>
<p><strong>keyword.url = http://dak9.com/ </strong>, instead of http://dak9.com/ you can type any url.</p>
<p>Now If  I type <strong>xyz</strong> and press enter, then firefox will lead me to http://dak9.com/<strong>xyz</strong>.</p>
<p>And since I am using my domain http://dak9.com as url shortner using a MySql-PHP script, I just type a word in the firefox loacation bar and I am redirected to my target page.</p>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/just-type-a-word-to-go-to-any-page-on-the-internet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Stylesheet</title>
		<link>http://dak9.com/using-stylesheet</link>
		<comments>http://dak9.com/using-stylesheet#comments</comments>
		<pubDate>Fri, 24 Sep 2010 19:02:42 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[WebSite]]></category>

		<guid isPermaLink="false">http://dak9.com/?p=753</guid>
		<description><![CDATA[<p>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><pre class="brush: xml; title: ; notranslate">
/* in your html file you will have to insert following line to use your stylesheet */

&lt;link href=&quot;http://dak9.com/dak.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt;

/* instead of &quot;http://dak9.com/dak.css&quot; you may need to use relative or full path of your style sheet */
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/using-stylesheet/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Plugins for WordPress plugin installation.</title>
		<link>http://dak9.com/plugins-for-wordpress-plugin-installation</link>
		<comments>http://dak9.com/plugins-for-wordpress-plugin-installation#comments</comments>
		<pubDate>Sun, 19 Sep 2010 14:37:50 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[post]]></category>

		<guid isPermaLink="false">http://reena.in/2010/09/19/plugins-for-wordpress-plugin-installation/</guid>
		<description><![CDATA[<p></p><p>1. One click plugin installer<br />
2. Plugin Central<br />
3. WordPress.org One-Click Install ( Best &#8211; use greasmonkey script )<br />
4. Improved Plugin Installation ( Use Bookmarklet for installation )&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><p>1. One click plugin installer<br />
2. Plugin Central<br />
3. WordPress.org One-Click Install ( Best &#8211; use greasmonkey script )<br />
4. Improved Plugin Installation ( Use Bookmarklet for installation )</p>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/plugins-for-wordpress-plugin-installation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia Bluetooth hands free BH-104 manual</title>
		<link>http://dak9.com/nokia-bluetooth-hands-free-bh-104-manual</link>
		<comments>http://dak9.com/nokia-bluetooth-hands-free-bh-104-manual#comments</comments>
		<pubDate>Sun, 19 Sep 2010 14:23:36 +0000</pubDate>
		<dc:creator>MD</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://reena.in/?p=282</guid>
		<description><![CDATA[<p></p><p>Attached: <a href="http://dak9.com/files/nokia_bh-104_apac_ug_en.pdf">Nokia_BH-104_apac_ug_en</a>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p></p><p>Attached: <a href="http://dak9.com/files/nokia_bh-104_apac_ug_en.pdf">Nokia_BH-104_apac_ug_en</a></p>
]]></content:encoded>
			<wfw:commentRss>http://dak9.com/nokia-bluetooth-hands-free-bh-104-manual/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

