<?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>LINUX ADMINISTRATION NOTES &#38; CODE SNIPPETS &#187; Uncategorized</title>
	<atom:link href="http://linuxbloggers.org/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://linuxbloggers.org</link>
	<description>pTCsxunH</description>
	<lastBuildDate>Sun, 28 Feb 2010 18:43:55 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Advanced Search gmail for unread emails &#8211; unread search query</title>
		<link>http://linuxbloggers.org/advanced-search-gmail-for-unread-emails-unready-search-query/</link>
		<comments>http://linuxbloggers.org/advanced-search-gmail-for-unread-emails-unready-search-query/#comments</comments>
		<pubDate>Thu, 29 May 2008 09:21:33 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.linuxconfig.org/?p=93</guid>
		<description><![CDATA[From time to time I need to search for eamils in my gmail account for unread emails.
Even advanced gmail search does not have that option available however the solutions is simpler thna that. Into search text box type: &#8221; label:Unread &#8221; and hit search button.
If you would like to search just in your lables or [...]]]></description>
		<wfw:commentRss>http://linuxbloggers.org/advanced-search-gmail-for-unread-emails-unready-search-query/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fibonacci number in while loop</title>
		<link>http://linuxbloggers.org/fibonacci-number-in-while-loop/</link>
		<comments>http://linuxbloggers.org/fibonacci-number-in-while-loop/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 06:54:16 +0000</pubDate>
		<dc:creator>linux</dc:creator>
				<category><![CDATA[Perl]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.linuxconfig.org/fibonacci-number-in-while-loop/</guid>
		<description><![CDATA[Using single while loop to calculate Fibonacci number. This script is in Perl  but can be easily translated to any other language:
#!/usr/bin/perl
$i=0;
$fibonacci_number=0;
$a=1;
$b=0;
while ($i &#60; 30) {
$b = $fibonacci_number;
$fibonacci_number = $a + $b;
print $fibonacci_number . &#8220;,&#8221;;
$a = $b;
$i++;
}
print &#8220;\n&#8221;;
Output:
./fibonacci.pl
1,1,2,3,5,8,13,21,34,55,89,144,233,377,610,987,1597,2584,4181,6765,
10946,17711,28657,46368,75025,121393,196418,317811,514229,832040,
]]></description>
		<wfw:commentRss>http://linuxbloggers.org/fibonacci-number-in-while-loop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
