<?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>Soratobu Kuroneko の blog</title>
	<atom:link href="http://neko.kaze.ch/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://neko.kaze.ch</link>
	<description>The Flying Black Cat&#039;s blog</description>
	<lastBuildDate>Sun, 08 Jan 2012 00:21:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CyanogenMod Gingerbread build from git for HTC Ace (aka Desire HD)</title>
		<link>http://neko.kaze.ch/?p=130</link>
		<comments>http://neko.kaze.ch/?p=130#comments</comments>
		<pubDate>Sat, 07 Jan 2012 06:49:02 +0000</pubDate>
		<dc:creator>空飛ぶ黒猫</dc:creator>
				<category><![CDATA[Computer]]></category>

		<guid isPermaLink="false">http://neko.kaze.ch/?p=130</guid>
		<description><![CDATA[As there is no new nightly build since a few months, I built my own one following the instructions on CyanogenMod wiki. This is only Android Opensource 2.3.7, so if you want the Google apps (synchronisation with GMail and so &#8230; <a href="http://neko.kaze.ch/?p=130">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://neko.kaze.ch/?feed=rss2&#038;p=130</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Light Arch Linux 64 bits Virtual Machine with Fluxbox and a little more</title>
		<link>http://neko.kaze.ch/?p=98</link>
		<comments>http://neko.kaze.ch/?p=98#comments</comments>
		<pubDate>Fri, 06 Jan 2012 11:15:07 +0000</pubDate>
		<dc:creator>空飛ぶ黒猫</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[vm]]></category>

		<guid isPermaLink="false">http://neko.kaze.ch/?p=98</guid>
		<description><![CDATA[I recently configured a virtual machine with Arch Linux for a classmate. It features a quite light installation of Arch Linux 64 bits with Fluxbox as X11 windows manager. I put it online for download. Introduction The system is configured &#8230; <a href="http://neko.kaze.ch/?p=98">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://neko.kaze.ch/?feed=rss2&#038;p=98</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fork, lock file and mongoose.</title>
		<link>http://neko.kaze.ch/?p=82</link>
		<comments>http://neko.kaze.ch/?p=82#comments</comments>
		<pubDate>Sat, 31 Dec 2011 12:38:14 +0000</pubDate>
		<dc:creator>空飛ぶ黒猫</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://neko.kaze.ch/?p=82</guid>
		<description><![CDATA[I just wrote a small hello world-like example of mongoose (a C HTTP server and library) usage. I also tried out to use fork and a lock file. Maybe I don&#8217;t always use the best practices, but I still wanted &#8230; <a href="http://neko.kaze.ch/?p=82">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://neko.kaze.ch/?feed=rss2&#038;p=82</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A cello partition</title>
		<link>http://neko.kaze.ch/?p=51</link>
		<comments>http://neko.kaze.ch/?p=51#comments</comments>
		<pubDate>Sun, 18 Dec 2011 14:05:10 +0000</pubDate>
		<dc:creator>空飛ぶ黒猫</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[cello]]></category>
		<category><![CDATA[partition]]></category>

		<guid isPermaLink="false">http://neko.kaze.ch/?p=51</guid>
		<description><![CDATA[I&#8217;m a beginner cello player, just tried to compose something I can play at my (very low) level. Do not expect too much(/anything)! N.B.: the audio is not a record, but a virtual instrument. PDF partition]]></description>
		<wfw:commentRss>http://neko.kaze.ch/?feed=rss2&#038;p=51</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java and privileges on Linux</title>
		<link>http://neko.kaze.ch/?p=41</link>
		<comments>http://neko.kaze.ch/?p=41#comments</comments>
		<pubDate>Wed, 07 Dec 2011 07:41:34 +0000</pubDate>
		<dc:creator>空飛ぶ黒猫</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[capabilities]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[superuser]]></category>

		<guid isPermaLink="false">http://neko.kaze.ch/?p=41</guid>
		<description><![CDATA[For a Java project, I needed to listen to TCP port 80, which is a privileged port.That means a regular user cannot bind to it. I first tried to take advantage of Linux capability CAP_NET_BIND_SERVICE but a bug in the current &#8230; <a href="http://neko.kaze.ch/?p=41">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://neko.kaze.ch/?feed=rss2&#038;p=41</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Semis d&#8217;Araucaria araucana</title>
		<link>http://neko.kaze.ch/?p=33</link>
		<comments>http://neko.kaze.ch/?p=33#comments</comments>
		<pubDate>Tue, 08 Nov 2011 16:26:37 +0000</pubDate>
		<dc:creator>空飛ぶ黒猫</dc:creator>
				<category><![CDATA[Plantes]]></category>
		<category><![CDATA[plantes]]></category>
		<category><![CDATA[semis]]></category>

		<guid isPermaLink="false">http://neko.kaze.ch/?p=33</guid>
		<description><![CDATA[Mes semis d&#8217;Araucaria araucana ont germé et des petites plantes sortent de terre depuis 2 semaines environ. 2011-09-11: j&#8217;ai placé les graines dans de la sphaigne humide au réfrigérateur. 2011-09-24: les graines sont plantées par leur côté pointu dans un mélange &#8230; <a href="http://neko.kaze.ch/?p=33">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://neko.kaze.ch/?feed=rss2&#038;p=33</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Essai de semis in vitro &#8211; mise en bocal</title>
		<link>http://neko.kaze.ch/?p=4</link>
		<comments>http://neko.kaze.ch/?p=4#comments</comments>
		<pubDate>Sun, 23 Oct 2011 16:49:52 +0000</pubDate>
		<dc:creator>空飛ぶ黒猫</dc:creator>
				<category><![CDATA[Plantes]]></category>
		<category><![CDATA[in vitro]]></category>
		<category><![CDATA[plantes]]></category>
		<category><![CDATA[semis]]></category>

		<guid isPermaLink="false">http://neko.kaze.ch/?p=4</guid>
		<description><![CDATA[Depuis quelque temps, je songeais à tester la culture in vitro de plantes. J&#8217;ai donc commencé un premier essai avec de banales graines de courge. Voici donc la première partie de cette aventure. Matériel employé Pour le milieu de culture &#8230; <a href="http://neko.kaze.ch/?p=4">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
		<wfw:commentRss>http://neko.kaze.ch/?feed=rss2&#038;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

