<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>Horms</title>
		<link>http://horms.org/</link>
		<description>Themable Horms!</description>
		<language>en</language>
		<lastBuildDate>Mon, 15 Aug 2011 16:41:34 +0900</lastBuildDate>
		<generator>Horms' genBlog v0.1</generator>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<ttl>60</ttl>
		<skipHours>
			<hour>15</hour>
			<hour>16</hour>
			<hour>17</hour>
			<hour>18</hour>
			<hour>19</hour>
			<hour>20</hour>
			<hour>21</hour>
			<hour>22</hour>
			<hour>23</hour>
			<hour>0</hour>
			<hour>1</hour>
			<hour>13</hour>
			<hour>14</hour>
		</skipHours>
		<item>
			<guid isPermaLink='true'>http://horms.org/pleb_blossom/permalink/2011/2011-08-15T16_41_34.shtml</guid>
			<link>http://horms.org/pleb_blossom/permalink/2011/2011-08-15T16_41_34.shtml</link>
			<pubDate>Mon, 15 Aug 2011 16:41:34 +0900</pubDate>
			<title>Horms Solutions is Hiring</title>
			<description>
				<![CDATA[
				I am looking for an intern to work on a project with me
				as a Linux Kernel Developer focused on networking.
				For details please see
				<a href="http://horms.net/employment/">horms.net/employment/</a>
				]]>
			</description>
		</item>
		<item>
			<guid isPermaLink='true'>http://horms.org/pleb_blossom/permalink/2011/2011-06-03T11_17_23.shtml</guid>
			<link>http://horms.org/pleb_blossom/permalink/2011/2011-06-03T11_17_23.shtml</link>
			<pubDate>Fri, 03 Jun 2011 11:17:23 +0900</pubDate>
			<title>An Introduction to Open vSwitch</title>
			<description>
				<![CDATA[
				<img src="http://www.horms.org/pleb_blossom/pics/5-8356.jpg" height="76"
				width="115" Shed in Shirakawa-go" align="right">
				Yesterday afternoon I made a presentation
				introducing Open vSwitch at Linux Con Japan.
				This is an update on the presentation of the same title that
				I made at the Netfilter Workshop 2011.
				<p>
				<a href="http://horms.net/projects/openvswitch/">slides</a>
				<br clear="right">
				]]>
			</description>
		</item>
		<item>
			<guid isPermaLink='true'>http://horms.org/pleb_blossom/permalink/2011/2011-05-20T14_58_27.shtml</guid>
			<link>http://horms.org/pleb_blossom/permalink/2011/2011-05-20T14_58_27.shtml</link>
			<pubDate>Fri, 20 May 2011 14:58:27 +0900</pubDate>
			<title>SH-Mobile ARM zboot presentation</title>
			<description>
				<![CDATA[
				<img src="http://www.horms.org/pleb_blossom/pics/4-8216.jpg" width="76"
				height="115" alt="Hikari" align="left">
				This afternoon I made a short presentation
				at Japan Technical Jamboree 37
				the work that I have been doing to allow
				booting Linux directly on the SH-Mobile ARM platform.
				This is an update on the presentation on the same topic
				in January at MobileFOSS Miniconf, part of linux.conf.au Brisbane 2011.
				<p>
				<a href="http://horms.net/projects/zboot/">slides, etc...</a>
				<br clear="left">
				]]>
			</description>
		</item>
		<item>
			<guid isPermaLink='true'>http://horms.org/pleb_blossom/permalink/2011/2011-05-03T07_56_37.shtml</guid>
			<link>http://horms.org/pleb_blossom/permalink/2011/2011-05-03T07_56_37.shtml</link>
			<pubDate>Thu, 10 Mar 2011 11:01:08 +0900</pubDate>
			<title>A New Command</title>
			<description>
				<![CDATA[
				<a href="http://horms.org/gallery/hikari-2010-11/a/5_8872_s.shtml#nav">
				<img src="http://horms.org/pleb_blossom/pics/5_8872.jpg"
				 width="76" height="115" alt="[Hikari]" align="left"></a>
				<p>
				The following command is in my shell history
				<p>
				<pre>
				A青ポ0〜〜〜〜?
				</pre>
				<p>
				I think we can assume that is the work of
				<a href="http://horms.org/gallery/hikari/">Hikari</a>.
				<p>
				I think it translates as:
				<p>
				<quote>
				A blue "po" Oooooooooh?
				</quote>
				<br clear="left">
				]]>
			</description>
		</item>
		<item>
			<guid isPermaLink='true'>http://horms.org/pleb_blossom/permalink/2011/2011-03-10T11_01_08.shtml</guid>
			<link>http://horms.org/pleb_blossom/permalink/2011/2011-03-10T11_01_08.shtml</link>
			<pubDate>Thu, 10 Mar 2011 11:01:08 +0900</pubDate>
			<title>Mitigating Fork Disasters</title>
			<description>
				<![CDATA[
				<img src="http://horms.org/pleb_blossom/pics/5-7178.jpg"
				 width="120" height="79" alt="[Coast]" align="right">
				<p>
				I recently managed to make a bit of a mess of things while
				doing some multi-process programming using fork(). While the
				box was still semi-usable I was unable to kill off the processes
				faster than they were being created and I ended up resorting to a reboot.
				<p>
				At the time I wasn't entirely sure what the problem was and
				not cherishing the prospect of more reboots I used taskset to
				constrain my shell, its child processes including test runs
				of my program and of course its forked children to a single CPU.
				<p>
				<tt># taskset -p 01 $$</tt>
				<p>
				The result? A subsequent fork explosion was indeed constrained to
				one CPU and I was able to kill off all the processes quite easily.
				<p>
				My system is a single socket with four cores. I have disabled hyper-threading
				so there is only one thread per core.  I am unsure how well this technique
				would work in other situations, especially in the case of multiple threads
				but only one socket and one core.
				<br clear="right">
				]]>
			</description>
		</item>
	</channel>
</rss>

