<?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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" version="2.0">

<channel>
	<title>Phoxis</title>
	
	<link>http://phoxis.org</link>
	<description>Don't just think ... Do it.</description>
	<lastBuildDate>Wed, 16 May 2012 08:32:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain="phoxis.org" port="80" path="/?rsscloud=notify" registerProcedure="" protocol="http-post" />
<image>
		<url>http://1.gravatar.com/blavatar/bd09f76ed73ca3d061c79185b60cbc84?s=96&amp;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Phoxis</title>
		<link>http://phoxis.org</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://phoxis.org/osd.xml" title="Phoxis" />
	
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/phoxis" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="phoxis" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://phoxis.org/?pushpress=hub" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc-sa/3.0/</creativeCommons:license><item>
		<title>Number of trailing zeros in factorial of an integer</title>
		<link>http://phoxis.org/2012/05/11/number-of-trailing-zeros-in-factorial-of-an-integer/</link>
		<comments>http://phoxis.org/2012/05/11/number-of-trailing-zeros-in-factorial-of-an-integer/#comments</comments>
		<pubDate>Fri, 11 May 2012 16:15:04 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[counting]]></category>
		<category><![CDATA[numerical]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=2003</guid>
		<description><![CDATA[An integer n is given, the task is to find the number of trailing zeros in n! . Solution First we need to see what produces trailing zeros. We assume that the integers are represented in base 10. A pair &#8230; <a href="http://phoxis.org/2012/05/11/number-of-trailing-zeros-in-factorial-of-an-integer/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=2003&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/05/11/number-of-trailing-zeros-in-factorial-of-an-integer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Find Sum (i … j) in a list</title>
		<link>http://phoxis.org/2012/05/04/sum-i-j-in-a-list/</link>
		<comments>http://phoxis.org/2012/05/04/sum-i-j-in-a-list/#comments</comments>
		<pubDate>Fri, 04 May 2012 16:40:46 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[counting]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1989</guid>
		<description><![CDATA[The problem is to sum the ith to jth element of a given list. The easiest solution runs in time, which starts are the ith index and adds up the numbers in the list until it reaches the jth index. &#8230; <a href="http://phoxis.org/2012/05/04/sum-i-j-in-a-list/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1989&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/05/04/sum-i-j-in-a-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Find a String in an Alphabet Grid</title>
		<link>http://phoxis.org/2012/05/04/find-a-string-in-an-alphabet-grid/</link>
		<comments>http://phoxis.org/2012/05/04/find-a-string-in-an-alphabet-grid/#comments</comments>
		<pubDate>Thu, 03 May 2012 18:41:32 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1982</guid>
		<description><![CDATA[Everybody of us has definitely played the word search game in which a grid of characters are given, and a list of words are given which are to be found in the grid horizontally, vertically or diagonally. In this post &#8230; <a href="http://phoxis.org/2012/05/04/find-a-string-in-an-alphabet-grid/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1982&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/05/04/find-a-string-in-an-alphabet-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Towers of Hanoi Iterative process: simulating recursion</title>
		<link>http://phoxis.org/2012/05/01/towers-of-hanoi-iterative-process-simulating-recursion/</link>
		<comments>http://phoxis.org/2012/05/01/towers-of-hanoi-iterative-process-simulating-recursion/#comments</comments>
		<pubDate>Tue, 01 May 2012 18:04:26 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1973</guid>
		<description><![CDATA[The last post Recursive Solution to Towers of Hanoi described the well-known recursive definition and implementation of the Towers of Hanoi problem. This post is an extension presenting the same problem iteratively by simulating the recursion stack. This implementation will &#8230; <a href="http://phoxis.org/2012/05/01/towers-of-hanoi-iterative-process-simulating-recursion/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1973&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/05/01/towers-of-hanoi-iterative-process-simulating-recursion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Recursive Solution to Towers of Hanoi</title>
		<link>http://phoxis.org/2012/03/22/towers_of_hanoi_r/</link>
		<comments>http://phoxis.org/2012/03/22/towers_of_hanoi_r/#comments</comments>
		<pubDate>Thu, 22 Mar 2012 18:11:41 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Coding Discussions]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1945</guid>
		<description><![CDATA[Towers of Hanoi is a mathematical game or a puzzle in which there are three pegs, and some disks (originally 8) of different radius placed on top of one another such that no larger disk is placed on a smaller &#8230; <a href="http://phoxis.org/2012/03/22/towers_of_hanoi_r/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1945&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/03/22/towers_of_hanoi_r/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Using scanf safely</title>
		<link>http://phoxis.org/2012/03/11/using-scanf-safely/</link>
		<comments>http://phoxis.org/2012/03/11/using-scanf-safely/#comments</comments>
		<pubDate>Sun, 11 Mar 2012 13:39:40 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[C Language]]></category>
		<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[C program]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1939</guid>
		<description><![CDATA[Beginners find that the scanf function behaves strangely when you input a character when scanf expects an integer or float. When used inside a loop (taking options), it loops infinitely. Here is a short post which explains what it happens, &#8230; <a href="http://phoxis.org/2012/03/11/using-scanf-safely/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1939&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/03/11/using-scanf-safely/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>
	</item>
		<item>
		<title>Fix dark video in Skype for Linux</title>
		<link>http://phoxis.org/2012/02/24/fix-dark-video-in-skype-for-linux/</link>
		<comments>http://phoxis.org/2012/02/24/fix-dark-video-in-skype-for-linux/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 14:28:29 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[GNU+Linux+FOSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[skype]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1913</guid>
		<description><![CDATA[I was very much disappointed when i installed Skype in Fedora, three causes which are as follows in the order. First, Skype for Linux is very old version (2.2 beta) than the Windows Skype, second, the video was too dark &#8230; <a href="http://phoxis.org/2012/02/24/fix-dark-video-in-skype-for-linux/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1913&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/02/24/fix-dark-video-in-skype-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>

		<media:content url="http://phoxis.files.wordpress.com/2010/02/logo_fedoralogo-e1266130275560.png" medium="image">
			<media:title type="html">fedora_logo</media:title>
		</media:content>

		<media:content url="http://phoxis.files.wordpress.com/2012/02/skypedark3.png?w=264" medium="image">
			<media:title type="html">guvcview -o  or  guvcview --control_only</media:title>
		</media:content>

		<media:content url="http://phoxis.files.wordpress.com/2012/02/skypedark1.png?w=400" medium="image">
			<media:title type="html">Skype video test: dark video</media:title>
		</media:content>

		<media:content url="http://phoxis.files.wordpress.com/2012/02/skypedark2.png?w=400" medium="image">
			<media:title type="html">Skype video test: fixed video</media:title>
		</media:content>
	</item>
		<item>
		<title>Simple script to restart services automatically when stopped in Fedora/Redhat</title>
		<link>http://phoxis.org/2012/02/23/simple-script-to-restart-services-automatically-when-stopped-in-fedoraredhat/</link>
		<comments>http://phoxis.org/2012/02/23/simple-script-to-restart-services-automatically-when-stopped-in-fedoraredhat/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 11:20:14 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[Computer Science]]></category>
		<category><![CDATA[GNU+Linux+FOSS]]></category>
		<category><![CDATA[Linux / Unix Shell]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1886</guid>
		<description><![CDATA[When occasionally the services like Apache or MySQL or other rc.d script crashes and stops working, then instead of restarting them manually, it may be more desirable to restart them automatically. A friend of mine asked about such an issue &#8230; <a href="http://phoxis.org/2012/02/23/simple-script-to-restart-services-automatically-when-stopped-in-fedoraredhat/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1886&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/02/23/simple-script-to-restart-services-automatically-when-stopped-in-fedoraredhat/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>

		<media:content url="http://phoxis.files.wordpress.com/2010/02/logo_fedoralogo-e1266130275560.png" medium="image">
			<media:title type="html">fedora_logo</media:title>
		</media:content>
	</item>
		<item>
		<title>Running Skype for Fedora x86 in Fedora x86_64</title>
		<link>http://phoxis.org/2012/02/22/running-skype-for-fedora-x86-in-fedora-x86_64/</link>
		<comments>http://phoxis.org/2012/02/22/running-skype-for-fedora-x86-in-fedora-x86_64/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 17:56:01 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[GNU+Linux+FOSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[skype]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1879</guid>
		<description><![CDATA[After I installed Fedora 16 x86_64, i needed to install manually Skype for linux, which is available from This link, as it is not in Fedora repositories. After clicking the Skype icon from the kickstart menu, the Skype icon kept &#8230; <a href="http://phoxis.org/2012/02/22/running-skype-for-fedora-x86-in-fedora-x86_64/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1879&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/02/22/running-skype-for-fedora-x86-in-fedora-x86_64/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>

		<media:content url="http://phoxis.files.wordpress.com/2010/02/logo_fedoralogo-e1266130275560.png" medium="image">
			<media:title type="html">fedora_logo</media:title>
		</media:content>

		<media:content url="http://phoxis.files.wordpress.com/2012/02/skypesucc.png" medium="image">
			<media:title type="html">Skype for linux</media:title>
		</media:content>
	</item>
		<item>
		<title>Installing the applications from older version in a new fresh installation of fedora</title>
		<link>http://phoxis.org/2012/02/21/installing-the-applications-from-older-version-in-a-new-fresh-installation-of-fedora/</link>
		<comments>http://phoxis.org/2012/02/21/installing-the-applications-from-older-version-in-a-new-fresh-installation-of-fedora/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 20:45:12 +0000</pubDate>
		<dc:creator>phoxis</dc:creator>
				<category><![CDATA[GNU+Linux+FOSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[fedora]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://phoxis.org/?p=1872</guid>
		<description><![CDATA[I was using Fedora 15 32 bit for a long time but i felt the need to install a 64 bit edition for some memory limitations in the system. Therefore I downloaded the Fedora 16 x86_64 iso file from https://fedoraproject.org/ &#8230; <a href="http://phoxis.org/2012/02/21/installing-the-applications-from-older-version-in-a-new-fresh-installation-of-fedora/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=phoxis.org&#038;blog=5405372&#038;post=1872&#038;subd=phoxis&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://phoxis.org/2012/02/21/installing-the-applications-from-older-version-in-a-new-fresh-installation-of-fedora/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>22.505694 88.351861</georss:point>
		<geo:lat>22.505694</geo:lat>
		<geo:long>88.351861</geo:long>
		<media:content url="http://0.gravatar.com/avatar/e2a400cef6dbb94a8777c161d5b43d0c?s=96&amp;d=identicon&amp;r=G" medium="image">
			<media:title type="html">phoxis</media:title>
		</media:content>

		<media:content url="http://phoxis.files.wordpress.com/2010/02/logo_fedoralogo-e1266130275560.png" medium="image">
			<media:title type="html">fedora_logo</media:title>
		</media:content>
	</item>
	</channel>
</rss>

