<?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>bodom_lx blog and things &#187; tiny c</title>
	<atom:link href="http://bd-things.net/tag/tiny-c/feed/" rel="self" type="application/rss+xml" />
	<link>http://bd-things.net</link>
	<description>Trying to be mathematically simple and precise</description>
	<lastBuildDate>Fri, 05 Mar 2010 16:36:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>BD-shell 1.0.0 released</title>
		<link>http://bd-things.net/bd-shell-100-released/</link>
		<comments>http://bd-things.net/bd-shell-100-released/#comments</comments>
		<pubDate>Sun, 14 Sep 2008 16:25:48 +0000</pubDate>
		<dc:creator>bodom_lx</dc:creator>
				<category><![CDATA[Free*]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[BD-shell]]></category>
		<category><![CDATA[bodom_lx free software]]></category>
		<category><![CDATA[C language]]></category>
		<category><![CDATA[c unix]]></category>
		<category><![CDATA[debugging]]></category>
		<category><![CDATA[extreme programming]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[pro]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[tiny c]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[unix shell]]></category>

		<guid isPermaLink="false">http://bd-things.net/?p=419</guid>
		<description><![CDATA[I&#8217;m very pleased to announce the final release of my tiny C Unix Shell. Every requirement has been satisfied. I hope I will find the time to expand it

http://bd-things.net/projects/bd-shell/

	Related posts
	
	A simple, tiny, Unix Shell written in C language, opensource (0)
	BD-shell 1.0.0 RC1 is out! (0)
	Projects (0)
	BD-shell 1.0.0 beta 1 (0)
	BD-shell (0)


]]></description>
		<wfw:commentRss>http://bd-things.net/bd-shell-100-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An example of mutual recursion using C</title>
		<link>http://bd-things.net/an-example-of-mutual-recursion-using-c/</link>
		<comments>http://bd-things.net/an-example-of-mutual-recursion-using-c/#comments</comments>
		<pubDate>Tue, 26 Feb 2008 12:01:46 +0000</pubDate>
		<dc:creator>bodom_lx</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[pro]]></category>
		<category><![CDATA[PUT]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[set]]></category>
		<category><![CDATA[tiny c]]></category>

		<guid isPermaLink="false">http://bd-things.net/an-example-of-mutual-recursion-using-c/</guid>
		<description><![CDATA[The first lecture of DSA was already interesting for me, I learned something about &#8220;Mutual Recursion&#8221; (when two procedures call each other). The pseudo-code example was about checking if a number is either even or odd.
Given that

0 is even
N is even if n-1 is odd
N is odd if n-1 is even

And the algorithm:

even
INPUT: n – ]]></description>
		<wfw:commentRss>http://bd-things.net/an-example-of-mutual-recursion-using-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sorting array elements with C language</title>
		<link>http://bd-things.net/sorting-array-elements-with-c-language/</link>
		<comments>http://bd-things.net/sorting-array-elements-with-c-language/#comments</comments>
		<pubDate>Sat, 23 Feb 2008 14:09:59 +0000</pubDate>
		<dc:creator>bodom_lx</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[algorithms]]></category>
		<category><![CDATA[C language]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[data structures]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[elements of]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[language]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[pageTracker]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[pointer]]></category>
		<category><![CDATA[pointers]]></category>
		<category><![CDATA[pro]]></category>
		<category><![CDATA[PUT]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[tiny c]]></category>
		<category><![CDATA[Unibz]]></category>
		<category><![CDATA[Wiki]]></category>
		<category><![CDATA[wikipedia]]></category>

		<guid isPermaLink="false">http://bd-things.net/sorting-array-elements-with-c-language/</guid>
		<description><![CDATA[UPDATE 17:19: it seems that the program I implemented today uses a kind of Bubble Sort algorithm, give it a try, it&#8217;s quite interesting!
After 3 long days studying C, I think I&#8217;ve assimilated a good knowledge base for the incoming semester.
So there is a tiny C program that sorts the elements of a given integer ]]></description>
		<wfw:commentRss>http://bd-things.net/sorting-array-elements-with-c-language/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Projects</title>
		<link>http://bd-things.net/projects/</link>
		<comments>http://bd-things.net/projects/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 14:12:35 +0000</pubDate>
		<dc:creator>bodom_lx</dc:creator>
				<category><![CDATA[My Life]]></category>
		<category><![CDATA[BD-blog]]></category>
		<category><![CDATA[bd-i]]></category>
		<category><![CDATA[BD-incollo]]></category>
		<category><![CDATA[BD-shell]]></category>
		<category><![CDATA[BD-theme]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[c shell]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[document]]></category>
		<category><![CDATA[domain]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[dynamic]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[gpl]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[HTTPS]]></category>
		<category><![CDATA[incollo]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[JavaEE]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[monopoli]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[pastebin]]></category>
		<category><![CDATA[pomodoro]]></category>
		<category><![CDATA[pomotux]]></category>
		<category><![CDATA[POST]]></category>
		<category><![CDATA[pro]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[programming project]]></category>
		<category><![CDATA[project]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[PUT]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[release]]></category>
		<category><![CDATA[rest]]></category>
		<category><![CDATA[review]]></category>
		<category><![CDATA[scrum]]></category>
		<category><![CDATA[set]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[sid]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[source code]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tiny c]]></category>
		<category><![CDATA[tiny c shell]]></category>
		<category><![CDATA[Unibz]]></category>
		<category><![CDATA[university]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[zen]]></category>

		<guid isPermaLink="false">http://bd-things.net/projects/</guid>
		<description><![CDATA[Pomodroid
A Java/Android application that interacts with a Trac
system, retrieves developer&#8217;s tasks and lets him work following the basic rules of the Pomodoro technique.
Pomotux
A task manager implementing the Pomodoro Technique
BD-review
A dynamic website to allow people to review releases (albums, demos, EPs, singles) of (young, unsigned) music bands. Written using a small subset of JavaEE technologies, without ]]></description>
		<wfw:commentRss>http://bd-things.net/projects/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
