<?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>metabiosis &#187; hardware</title>
	<atom:link href="http://metabiosis.kuri.mu/category/hardware/feed/" rel="self" type="application/rss+xml" />
	<link>http://metabiosis.kuri.mu</link>
	<description>Dependence of one organism on another for the preparation of an environment in which it can live.</description>
	<lastBuildDate>Mon, 12 Apr 2010 18:43:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Dot Matrix patterns</title>
		<link>http://metabiosis.kuri.mu/2008/03/25/dot-matrix-patterns/</link>
		<comments>http://metabiosis.kuri.mu/2008/03/25/dot-matrix-patterns/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 00:18:32 +0000</pubDate>
		<dc:creator>aymeric</dc:creator>
				<category><![CDATA[code]]></category>
		<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://metabiosis.goto10.org/2008/03/25/dot-matrix-patterns/</guid>
		<description><![CDATA[In &#8220;hello process&#8221;, each iteration, through all the small bits of FORTH code inside the block file image, is visualized as one line of graphics on paper from the dot matrix printer. These graphics are not generated as an image and sent to the printer, but instead are directly using the 8-pin graphics mode of [...]]]></description>
			<content:encoded><![CDATA[<p>In &#8220;hello process&#8221;, each iteration, through all the small bits of FORTH code inside the block file image, is visualized as one line of graphics on paper from the dot matrix printer. These graphics are not generated as an image and sent to the printer, but instead are directly using the 8-pin graphics mode of the printer.</p>
<p>In this case, each of the eight bits in a byte of data sent to the printer corresponds to one pin on the printhead. A bit&#8217;s value can be either 1 or 0. When the printer receives the data, it interprets a bit with a value of 1 as a command to fire the corresponding pin. Bits that are set to 0 don&#8217;t cause pins to fire.</p>
<p>Each block code will end up with its own &#8220;byte ID&#8221; so it can be visualized and identified on paper in the graphics line. But before getting there, a few tests have been done to try different bit combos and select the generators the most aesthetically pleasing for us :)</p>
<p><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-06.jpg' title='Dot Matrix patterns 6'><img src='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-06-128x95.jpg' alt='Dot Matrix patterns 6' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-02.jpg' title='Dot Matrix patterns 2'><img src='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-02-128x95.jpg' alt='Dot Matrix patterns 2' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-03.jpg' title='Dot Matrix patterns 3'><img src='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-03-128x95.jpg' alt='Dot Matrix patterns 3' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-07.jpg' title='Dot Matrix patterns 7'><img src='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-07-128x95.jpg' alt='Dot Matrix patterns 7' /></a></p>
<p><span id="more-365"></span></p>
<p>Below, one of the small quick and dirty shell scripts used to quickly test different patterns:</p>
<p><code>#!/bin/sh<br />
# OKI 320 ML tests<br />
# this test is to generate (crap) random 8 pin mode patterns<br />
#PRNG<br />
function rand {<br />
    echo "obase=8;`expr $RANDOM % 256`" | bc<br />
}<br />
function randpat {<br />
    n=1<br />
    while [ $n -le 256 ]; do<br />
        RND=`rand`<br />
        echo -ne '\'$RND<br />
        n=$((n+1))<br />
    done<br />
}<br />
PATTERN=`randpat`<br />
# noise<br />
# PATTERN2=`head /dev/urandom -c 1024`<br />
echo -e '^[@^[5^[9^[*1\4'$PATTERN'^[@' | lp -o raw</code></p>
<p><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-05.jpg' title='Dot Matrix patterns 5'><img src='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-05-128x95.jpg' alt='Dot Matrix patterns 5' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-01.jpg' title='Dot Matrix patterns 6'><img src='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-01-128x95.jpg' alt='Dot Matrix patterns 1' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-04.jpg' title='Dot Matrix patterns 4'><img src='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-04-128x95.jpg' alt='Dot Matrix patterns 4' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-08.jpg' title='Dot Matrix patterns 8'><img src='http://metabiosis.kuri.mu/files/2008/03/dot_pattern-08-128x95.jpg' alt='Dot Matrix patterns 8' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://metabiosis.kuri.mu/2008/03/25/dot-matrix-patterns/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>meshy factory</title>
		<link>http://metabiosis.kuri.mu/2007/12/10/meshy-factory/</link>
		<comments>http://metabiosis.kuri.mu/2007/12/10/meshy-factory/#comments</comments>
		<pubDate>Mon, 10 Dec 2007 13:01:11 +0000</pubDate>
		<dc:creator>aymeric</dc:creator>
				<category><![CDATA[hardware]]></category>

		<guid isPermaLink="false">http://metabiosis.goto10.org/2007/12/17/meshy-factory/</guid>
		<description><![CDATA[All the nodes are now complete! Last batch was done 4 at a time in a brainless repeat mode enjoying the fume from the melting lead&#8230;]]></description>
			<content:encoded><![CDATA[<p>All the nodes are now complete! Last batch was done 4 at a time in a brainless repeat mode enjoying the fume from the melting lead&#8230;</p>
<p><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00459.jpg' title='meshy_build-dsc00459.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00459-128x95.jpg' alt='meshy_build-dsc00459.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00463.jpg' title='meshy_build-dsc00463.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00463-128x95.jpg' alt='meshy_build-dsc00463.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00465.jpg' title='meshy_build-dsc00465.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00465-128x95.jpg' alt='meshy_build-dsc00465.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00466.jpg' title='meshy_build-dsc00466.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00466-128x95.jpg' alt='meshy_build-dsc00466.JPG' /></a></p>
<p><span id="more-306"></span></p>
<p><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00470.jpg' title='meshy_build-dsc00470.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00470-128x95.jpg' alt='meshy_build-dsc00470.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00471.jpg' title='meshy_build-dsc00471.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00471-128x95.jpg' alt='meshy_build-dsc00471.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00472.jpg' title='meshy_build-dsc00472.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00472-128x95.jpg' alt='meshy_build-dsc00472.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00473.jpg' title='meshy_build-dsc00473.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00473-128x95.jpg' alt='meshy_build-dsc00473.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00474.jpg' title='meshy_build-dsc00474.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00474-128x95.jpg' alt='meshy_build-dsc00474.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc004761.jpg' title='meshy_build-dsc00476.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc004761-128x95.jpg' alt='meshy_build-dsc00476.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc004761.jpg' title='meshy_build-dsc00476.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc004761-128x95.jpg' alt='meshy_build-dsc00476.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00477.jpg' title='meshy_build-dsc00477.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00477-128x95.jpg' alt='meshy_build-dsc00477.JPG' /></a><a rel="thumbnail" href='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00478.jpg' title='meshy_build-dsc00478.JPG'><img src='http://metabiosis.kuri.mu/files/2007/12/meshy_build-dsc00478-128x95.jpg' alt='meshy_build-dsc00478.JPG' /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://metabiosis.kuri.mu/2007/12/10/meshy-factory/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

