<?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/"
	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/"
	>

<channel>
	<title>Think in bits!</title>
	<atom:link href="http://picoworld.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://picoworld.wordpress.com</link>
	<description>Just another WordPress.com weblog</description>
	<lastBuildDate>Wed, 24 Feb 2010 17:37:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='picoworld.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Think in bits!</title>
		<link>http://picoworld.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://picoworld.wordpress.com/osd.xml" title="Think in bits!" />
	<atom:link rel='hub' href='http://picoworld.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Boolean data-type in C</title>
		<link>http://picoworld.wordpress.com/2010/02/24/boolean-data-type-in-c/</link>
		<comments>http://picoworld.wordpress.com/2010/02/24/boolean-data-type-in-c/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 17:36:16 +0000</pubDate>
		<dc:creator>lexor90</dc:creator>
				<category><![CDATA[C programming language]]></category>
		<category><![CDATA[bool]]></category>
		<category><![CDATA[boolean]]></category>
		<category><![CDATA[c]]></category>
		<category><![CDATA[false]]></category>
		<category><![CDATA[true]]></category>

		<guid isPermaLink="false">http://picoworld.wordpress.com/?p=16</guid>
		<description><![CDATA[Hi, everyone knows the standard C99 provide a boolean implementation, anyway a lot of compilers does not implement a real standard C99, but provide their own boolean type. So, to keep the portability i use a my own implementation. If you are pedantic and you wanna follow the Linux Kernel Coding Style probably you do [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=picoworld.wordpress.com&amp;blog=12024160&amp;post=16&amp;subd=picoworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>everyone knows the standard C99 provide a boolean implementation, anyway a lot of compilers does not implement a real standard C99, but provide their own boolean type. So, to keep the portability i use a my own implementation.<br />
If you are pedantic and you wanna follow the <a title="Linux Coding Style" href="http://lxr.linux.no/#linux+v2.6.32/Documentation/CodingStyle" target="_blank">Linux Kernel Coding Style</a> probably you do not like to use a typedef with a enumeration:</p>
<blockquote><p>typedef enum {false, true} bool;</p></blockquote>
<p>With this simple declaration you define a type &#8220;bool&#8221; that accepts only two arguments (since enum does this) one named false, and another true. Enum define also false as 0, and true as 1. In std C 0 is false. So you can use this boolean type to define if a condition is true or not (eg. if(true) { printf(&#8220;true!&#8221;); })</p>
<p>Happy coding!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/picoworld.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/picoworld.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/picoworld.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/picoworld.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/picoworld.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/picoworld.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/picoworld.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/picoworld.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/picoworld.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/picoworld.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/picoworld.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/picoworld.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/picoworld.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/picoworld.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=picoworld.wordpress.com&amp;blog=12024160&amp;post=16&amp;subd=picoworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://picoworld.wordpress.com/2010/02/24/boolean-data-type-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a1310fd55297d4190b08f0e7981b130?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lexor90</media:title>
		</media:content>
	</item>
		<item>
		<title>Q: What&#8217;s more secure than a password? (SSH tip)</title>
		<link>http://picoworld.wordpress.com/2010/02/14/q-whats-more-secure-than-a-password-ssh-tip/</link>
		<comments>http://picoworld.wordpress.com/2010/02/14/q-whats-more-secure-than-a-password-ssh-tip/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 10:43:33 +0000</pubDate>
		<dc:creator>lexor90</dc:creator>
				<category><![CDATA[Network security]]></category>

		<guid isPermaLink="false">http://picoworld.wordpress.com/?p=10</guid>
		<description><![CDATA[A: Two passwords! No, i&#8217;m not kidding! If you are configuring your own ssh webserver (such as openssh) make sure to disallow the root login. So your users to get root privileges must log in with their account (knowing the password) and then invoke the &#8220;su&#8221; command that will ask the root password. You can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=picoworld.wordpress.com&amp;blog=12024160&amp;post=10&amp;subd=picoworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A: Two passwords!</p>
<p>No, i&#8217;m not kidding!<br />
If you are configuring your own ssh webserver (such as openssh) make sure to disallow the root login.<br />
So your users to get root privileges must log in with their account (knowing the password) and then invoke the &#8220;su&#8221; command that will ask the root password.<br />
You can configure your openssh adding this rule in its configuration:</p>
<blockquote><p>PermitRootLogin no</p></blockquote>
<p>Then remember to <strong>restart</strong> the ssh server!<br />
Thus if someone tries to gain root privileges, it will have to know two passwords.</p>
<p>Bye bye.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/picoworld.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/picoworld.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/picoworld.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/picoworld.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/picoworld.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/picoworld.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/picoworld.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/picoworld.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/picoworld.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/picoworld.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/picoworld.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/picoworld.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/picoworld.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/picoworld.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=picoworld.wordpress.com&amp;blog=12024160&amp;post=10&amp;subd=picoworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://picoworld.wordpress.com/2010/02/14/q-whats-more-secure-than-a-password-ssh-tip/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a1310fd55297d4190b08f0e7981b130?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lexor90</media:title>
		</media:content>
	</item>
		<item>
		<title>I like wordpress! (something about me)</title>
		<link>http://picoworld.wordpress.com/2010/02/14/hello-world/</link>
		<comments>http://picoworld.wordpress.com/2010/02/14/hello-world/#comments</comments>
		<pubDate>Sun, 14 Feb 2010 00:11:08 +0000</pubDate>
		<dc:creator>lexor90</dc:creator>
				<category><![CDATA[About me]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Hi there, I&#8217;m new with blogs, I just started few months ago another blog on Google&#8217;s blogger but never written on it. So i decided to close it. I&#8217;m an Italian teenager (19 years old) and I love the computer science and art (in any expression). I like music (symphonic music, metal, rock, a bit [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=picoworld.wordpress.com&amp;blog=12024160&amp;post=1&amp;subd=picoworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hi there,</p>
<p>I&#8217;m new with blogs, I just started few months ago another blog on Google&#8217;s blogger but never written on it. So i decided to close it.<br />
I&#8217;m an Italian teenager (19 years old) and I love the computer science and art (in any expression). I like music (symphonic music, metal, rock, a bit of pop), drawing, digital graphic art, and so on.<br />
I like to follow magazines that talks about videogame developing and I love to write stories. I like mart people that never give up in the face of challenges.</p>
<p>Anyway, i started to like wordpress because everytime that i chosen a nickname already used, the form doesn&#8217;t clear password fields (i hate when it happens).</p>
<p>I don&#8217;t like to bore you people, so i stop here.<br />
You&#8217;ll learn more about me asking or just following the blog but take in mind that i won&#8217;t write about me but about my world!</p>
<p>C ya then!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/picoworld.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/picoworld.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/picoworld.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/picoworld.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/picoworld.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/picoworld.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/picoworld.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/picoworld.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/picoworld.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/picoworld.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/picoworld.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/picoworld.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/picoworld.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/picoworld.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=picoworld.wordpress.com&amp;blog=12024160&amp;post=1&amp;subd=picoworld&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://picoworld.wordpress.com/2010/02/14/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/7a1310fd55297d4190b08f0e7981b130?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lexor90</media:title>
		</media:content>
	</item>
	</channel>
</rss>
