<?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>ROBERTTWOMEY.COM</title>
	<atom:link href="http://roberttwomey.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://roberttwomey.com</link>
	<description></description>
	<lastBuildDate>Mon, 15 Mar 2010 15:38:13 +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>Generating NTSC with Arduino</title>
		<link>http://roberttwomey.com/2010/03/generating-ntsc-with-arduino/</link>
		<comments>http://roberttwomey.com/2010/03/generating-ntsc-with-arduino/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 21:58:57 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=1498</guid>
		<description><![CDATA[Convert an indexed grayscale image (16-color) to a list of hex values for use in arduino program. 
png2avr.py


 # copy-it-right
 import sys
 from PIL import Image

 def main():
     image =Image.open("robert_index.png")
     out_f = open("robert_index.txt", "w")

    #image = Image.open(sys.argv[1])

    assert image.mode == 'P', [...]]]></description>
			<content:encoded><![CDATA[<p>Convert an indexed grayscale image (16-color) to a list of hex values for use in arduino program. </p>
<p>png2avr.py</p>
<pre>
<code>
 # copy-it-right
 import sys
 from PIL import Image

 def main():
     image =Image.open("robert_index.png")
     out_f = open("robert_index.txt", "w")

    #image = Image.open(sys.argv[1])

    assert image.mode == 'P', 'image must be indexed'

    #sys.stdout.write(chr(int('11111100', 2)))

    for i, px in enumerate(image.getdata()):
        if(i%160==0):
            out_f.write('\n// '+str(i/160))
            print('\n// '+str(i/160))
            #sys.stdout.write('\n')

        out_f.write(hex(px)+', '),
        print(hex(16-px)+', '),
        #sys.stdout.write(hex(px))
        #print('.')

    out_f.close()

if __name__ == '__main__':
    main()
</code>
</pre>
<p>Indexed 16 Color Grayscale Image (160&#215;120x4bits)<br />
<a href="http://www.flickr.com/photos/rtwomey/4435692288/" title="robert_index by roberttwomey916, on Flickr"><img src="http://farm5.static.flickr.com/4003/4435692288_cd853944c9_o.png" width="160" height="120" alt="robert_index" /></a></p>
<p>Displayed through the Arduino to NTSC video<br />
<a href="http://www.flickr.com/photos/rtwomey/sets/72157623621745142/" title="0314001807 by roberttwomey916, on Flickr"><img src="http://farm3.static.flickr.com/2745/4434105562_3c842e0c3a.jpg" width="375" height="500" alt="0314001807" /></a></p>
<p><a href="http://www.flickr.com/photos/rtwomey/4435680550/" title="ntsc_out_schematic by roberttwomey916, on Flickr"><img src="http://farm5.static.flickr.com/4001/4435680550_8c776631b9.jpg" width="375" alt="ntsc_out_schematic" /></a></p>
<p>Thanks to <a href="http://www.youtube.com/watch?v=dZVFQIFUhwA">MeowJapan</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2010/03/generating-ntsc-with-arduino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Writeup in Venus Zine: A Show of Their Own</title>
		<link>http://roberttwomey.com/2010/02/writeup-in-venus-zine-a-show-of-their-own/</link>
		<comments>http://roberttwomey.com/2010/02/writeup-in-venus-zine-a-show-of-their-own/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 07:34:38 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=1462</guid>
		<description><![CDATA[

A Show of Their Own.
LA’s fem-centric gallery, compactspace, explores the nostalgic side of men with and the world is ours
By Jennifer S. Li
Published: February 17th, 2010 &#124; 11:25pm 
https://venuszine.com/articles/art_and_culture/art/6600/A_Show_of_Their_Own

]]></description>
			<content:encoded><![CDATA[<p><a href="https://venuszine.com/articles/art_and_culture/art/6600/A_Show_of_Their_Own"><br />
<img src="http://asset0.venuszine.com/article_image/image/12244/viewer_wide/andtheworldisours2.jpg"><br />
A Show of Their Own.<br />
LA’s fem-centric gallery, compactspace, explores the nostalgic side of men with and the world is ours</p>
<p>By Jennifer S. Li<br />
Published: February 17th, 2010 | 11:25pm </p>
<p>https://venuszine.com/articles/art_and_culture/art/6600/A_Show_of_Their_Own</p>
<p></a></p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2010/02/writeup-in-venus-zine-a-show-of-their-own/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>and the world is ours</title>
		<link>http://roberttwomey.com/2010/02/and-the-world-is-ours-compactspace/</link>
		<comments>http://roberttwomey.com/2010/02/and-the-world-is-ours-compactspace/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 21:17:36 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Shows]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=1453</guid>
		<description><![CDATA[
at compactspace, Los Angeles through 3/30/2010.  New works by Robert Twomey and Tim Schwartz. read about it  here.
]]></description>
			<content:encoded><![CDATA[<p><img src="http://roberttwomey.com/wp-content/uploads/2010/02/andtheworldisours.jpg" alt="" title="andtheworldisours" width="640" height="417" class="alignnone size-full wp-image-1455" /></p>
<p>at compactspace, Los Angeles through 3/30/2010.  New works by Robert Twomey and Tim Schwartz. read about it <a href="http://compactspace.com"> here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2010/02/and-the-world-is-ours-compactspace/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>if a thing doesn&#8217;t exist</title>
		<link>http://roberttwomey.com/2009/12/if-a-thing-doesnt-exist-yet/</link>
		<comments>http://roberttwomey.com/2009/12/if-a-thing-doesnt-exist-yet/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 05:13:25 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=1177</guid>
		<description><![CDATA[http://www.google.com/#hl=en&#038;q=%22typing+into+nothing%22&#038;aq=f&#038;aqi=&#038;oq=&#038;fp=cbc2f75bf9d43a8f
but you had already titled one of your efforts in that manner.
a project, for instance,,,
is it yours?
should you populate that space? (by naming it&#8211;your project.  even it is just a sketch)
claiming it.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.google.com/#hl=en&#038;q=%22typing+into+nothing%22&#038;aq=f&#038;aqi=&#038;oq=&#038;fp=cbc2f75bf9d43a8f">http://www.google.com/#hl=en&#038;q=%22typing+into+nothing%22&#038;aq=f&#038;aqi=&#038;oq=&#038;fp=cbc2f75bf9d43a8f</a><br />
but you had already titled one of your efforts in that manner.<br />
a project, for instance,,,<br />
is it yours?<br />
should you populate that space? (by naming it&#8211;your project.  even it is just a sketch)<br />
claiming it.</p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2009/12/if-a-thing-doesnt-exist-yet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>talk at DAC 2009</title>
		<link>http://roberttwomey.com/2009/12/talk-at-dac-2009/</link>
		<comments>http://roberttwomey.com/2009/12/talk-at-dac-2009/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 03:57:50 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=1172</guid>
		<description><![CDATA[On Monday, I presented my paper about language processing and language-based interaction at Digital Arts and Culture 2009.  A lot of people I respect were in the room.  It went&#8230; ok.  It will only get better.
http://dac09.uci.edu/day2.html
]]></description>
			<content:encoded><![CDATA[<p>On Monday, I presented my paper about language processing and language-based interaction at Digital Arts and Culture 2009.  A lot of people I respect were in the room.  It went&#8230; ok.  It will only get better.</p>
<p><a href="http://dac09.uci.edu/day2.html">http://dac09.uci.edu/day2.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2009/12/talk-at-dac-2009/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Noise Reduction</title>
		<link>http://roberttwomey.com/2009/12/noise-reduction/</link>
		<comments>http://roberttwomey.com/2009/12/noise-reduction/#comments</comments>
		<pubDate>Wed, 02 Dec 2009 05:30:32 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=1099</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="500" height="338"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=6768969&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=6768969&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;show_portrait=0&amp;color=00ADEF&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="338"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2009/12/noise-reduction/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Industry Drawings</title>
		<link>http://roberttwomey.com/2009/11/industry-drawings/</link>
		<comments>http://roberttwomey.com/2009/11/industry-drawings/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 17:31:17 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=950</guid>
		<description><![CDATA[
Information Industry Nascent Years. Drawings in progress.
 
]]></description>
			<content:encoded><![CDATA[<p><a href="http://farm3.static.flickr.com/2503/4088003923_d20f552a88_b.jpg" class="tt-flickr tt-flickr tt-flickr-Medium" title="1108091803"><img src="http://farm3.static.flickr.com/2503/4088003923_d20f552a88.jpg" alt="1108091803" width="500" height="375" border="0" /></a><br />
Information Industry Nascent Years. <em>Drawings in progress.</em><br />
<a href="http://farm3.static.flickr.com/2558/4060540205_24aa45ddc1_b.jpg" class="tt-flickr tt-flickr tt-flickr-Medium" title="projector to canvas"><img src="http://farm3.static.flickr.com/2558/4060540205_24aa45ddc1.jpg" alt="projector to canvas" width="500" height="324" border="0" /></a> </p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2009/11/industry-drawings/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>generator / analyst</title>
		<link>http://roberttwomey.com/2009/11/generator-analyst/</link>
		<comments>http://roberttwomey.com/2009/11/generator-analyst/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 17:15:42 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=930</guid>
		<description><![CDATA[diagram for collaboration with language processing software.  cognitive feedback device.  collaborative loop.  

]]></description>
			<content:encoded><![CDATA[<p>diagram for collaboration with language processing software.  cognitive feedback device.  collaborative loop.  </p>
<p><a href="http://farm3.static.flickr.com/2706/4069181900_3fb3953be4.jpg"><img alt="" src="http://farm3.static.flickr.com/2706/4069181900_3fb3953be4.jpg" class="alignnone" width="500" height="387" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2009/11/generator-analyst/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>three mirrors</title>
		<link>http://roberttwomey.com/2009/11/three-mirrors/</link>
		<comments>http://roberttwomey.com/2009/11/three-mirrors/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 17:01:03 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=927</guid>
		<description><![CDATA[plans for a small installation consisting of a mirror, a see-through mirror (with camera), and a monitor: exploring perception and voyeurism through multiple interlocking circuits of gaze.
]]></description>
			<content:encoded><![CDATA[<p><div class="flickr-photos"><a class="tt-flickr tt-flickr-Small" href="http://farm3.static.flickr.com/2473/4068379223_9ea612a6e1_o.png" rel="album-72157622593805791" id="photo-4068379223" title="three mirrors - one two three - mirror, see-through mirror, camera-monitor"><img src="http://farm3.static.flickr.com/2473/4068379223_1ea480566f_m.jpg" width="240" height="133" alt="three mirrors" /></a> <a class="tt-flickr tt-flickr-Small" href="http://farm3.static.flickr.com/2503/4068379295_434f5821ae_o.png" rel="album-72157622593805791" id="photo-4068379295" title="three mirrors - one two three - mirror, see-through mirror, camera-monitor"><img src="http://farm3.static.flickr.com/2503/4068379295_c6ff4d57b3_m.jpg" width="240" height="133" alt="three mirrors" /></a> <a class="tt-flickr tt-flickr-Small" href="http://farm4.static.flickr.com/3496/4069133740_cb2f856ca6_o.png" rel="album-72157622593805791" id="photo-4069133740" title="three mirrors - one two three - mirror, see-through mirror, camera-monitor"><img src="http://farm4.static.flickr.com/3496/4069133740_97f9750171_m.jpg" width="240" height="133" alt="three mirrors" /></a> </div><br />
plans for a small installation consisting of a mirror, a see-through mirror (with camera), and a monitor: exploring perception and voyeurism through multiple interlocking circuits of gaze.</p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2009/11/three-mirrors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to</title>
		<link>http://roberttwomey.com/2009/10/how-to-make-a-drawing/</link>
		<comments>http://roberttwomey.com/2009/10/how-to-make-a-drawing/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 15:52:54 +0000</pubDate>
		<dc:creator>Robert</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://roberttwomey.com/?p=920</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><img src="http://farm3.static.flickr.com/2558/4060540205_24aa45ddc1_b.jpg" alt="projector to canvas" width="600" height="388" border="0" /></p>
]]></content:encoded>
			<wfw:commentRss>http://roberttwomey.com/2009/10/how-to-make-a-drawing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
