<?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>re.adyma.de</title>
	<atom:link href="http://re.adyma.de/feed" rel="self" type="application/rss+xml" />
	<link>http://re.adyma.de</link>
	<description>detritus and more!</description>
	<lastBuildDate>Tue, 21 Feb 2012 04:34:46 +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>Things I learned today</title>
		<link>http://re.adyma.de/2012/things-i-learned-today?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=things-i-learned-today</link>
		<comments>http://re.adyma.de/2012/things-i-learned-today#comments</comments>
		<pubDate>Tue, 21 Feb 2012 04:26:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Learning]]></category>
		<category><![CDATA[daily log]]></category>
		<category><![CDATA[learning in public]]></category>

		<guid isPermaLink="false">http://re.adyma.de/?p=432</guid>
		<description><![CDATA[<ul>
<li>checked out <a href="http://tools.ietf.org/html/rfc5322">RFC 5322</a> (the Internet Message Format memo)</li>
<li>fiddled around with <a href="http://couchdb.apache.org/">couchDB</a></li>
<li>opened an amazon <a href="http://aws.amazon.com/dynamodb/">DynamoDB</a> account</li>
<li>made it halfway through <a href="http://gitimmersion.com">a proper git tutorial</a> </li>
&#8230;</ul>]]></description>
			<content:encoded><![CDATA[<ul>
<li>checked out <a href="http://tools.ietf.org/html/rfc5322">RFC 5322</a> (the Internet Message Format memo)</li>
<li>fiddled around with <a href="http://couchdb.apache.org/">couchDB</a></li>
<li>opened an amazon <a href="http://aws.amazon.com/dynamodb/">DynamoDB</a> account</li>
<li>made it halfway through <a href="http://gitimmersion.com">a proper git tutorial</a> </li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2012/things-i-learned-today/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Outliner</title>
		<link>http://re.adyma.de/2012/quick-outliner?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=quick-outliner</link>
		<comments>http://re.adyma.de/2012/quick-outliner#comments</comments>
		<pubDate>Sun, 15 Jan 2012 21:21:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[projects]]></category>

		<guid isPermaLink="false">http://re.adyma.de/?p=415</guid>
		<description><![CDATA[<p>So, I make things that I need and share them every now and again. This is one that I&#8217;ve shared. The idea for Quick Outliner arose from a conversation with a friend about the extent to which law school could &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>So, I make things that I need and share them every now and again. This is one that I&#8217;ve shared. The idea for Quick Outliner arose from a conversation with a friend about the extent to which law school could be automated. Naturally, the most tedious parts arose first and the idea of automated outline creation was born. Sites like outlinedepot.com notwithstanding, finding an outline for some of the more esoteric classes like Election Law, for example, are not trivial matters. What is easy, however, is compiling a list of citations for the cases that one has read in class.</p>
<p><span id="more-415"></span>
<p>Using the citation list as a jumping off point, I began to think about ways to scrape (I hate that word, by the way) Lexis for their beautiful case summaries. After a few hours considering using YML, and dropping the idea because it just seemed too complex, I decided that building a Google Chrome extension would be the quickest and easiest idea.</p>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2012/quick-outliner/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Addings WordPress shortcodes to custom widgets</title>
		<link>http://re.adyma.de/2012/addings-wordpress-shortcodes-to-custom-widgets?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=addings-wordpress-shortcodes-to-custom-widgets</link>
		<comments>http://re.adyma.de/2012/addings-wordpress-shortcodes-to-custom-widgets#comments</comments>
		<pubDate>Tue, 03 Jan 2012 21:37:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[text]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://re.adyma.de/?p=403</guid>
		<description><![CDATA[<p>To add plugin shortcode to some text area of a widget that you’ve built, follow these three steps. Keep your eye on the <code>my_content</code> tag.</p>
<ol>
<li>Make sure that the variable that you want to add the short code to has </li>&#8230;</ol>]]></description>
			<content:encoded><![CDATA[<p>To add plugin shortcode to some text area of a widget that you’ve built, follow these three steps. Keep your eye on the <code>my_content</code> tag.</p>
<ol>
<li>Make sure that the variable that you want to add the short code to has <code>apply_filters</code> applied to it.<br /> <code>$content = apply_filters('my_content', $instance['content']);</code></li>
<li>Throw the following two lines into your functions.php file.<br /> <code>add_filter( 'my_content', 'shortcode_unautop');</code><br /> <code>add_filter('my_content', 'do_shortcode');</code></li>
<li>Add the shortcode to your widget.</li>
</ol>
<p> </p>
<p>Steps two and three come from <a href="http://digwp.com/2010/03/shortcodes-in-widgets/">http://digwp.com/2010/03/shortcodes-in-widgets/</a>.<br /> Step one was sort of inferred from <a href="http://codex.wordpress.org/Function_Reference/do_shortcode">http://codex.wordpress.org/Function_Reference/do_shortcode</a></p>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2012/addings-wordpress-shortcodes-to-custom-widgets/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Luna Gifs</title>
		<link>http://re.adyma.de/2011/382?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=382</link>
		<comments>http://re.adyma.de/2011/382#comments</comments>
		<pubDate>Sat, 17 Dec 2011 16:59:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[projects]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[gifs]]></category>
		<category><![CDATA[little luna]]></category>

		<guid isPermaLink="false">http://re.adyma.de/?p=382</guid>
		<description><![CDATA[<div>So, I made these gifs of Little Luna in her element.</div>
<div><a href="http://re.adyma.de/2011/382/lulu" rel="attachment wp-att-409"><img class="alignnone size-full wp-image-409" title="lulu" src="http://re.adyma.de/wp-content/uploads/2011/12/lulu.gif" alt="" width="480" height="640" /><span id="more-382"></span></a></div>
<div><a href="http://re.adyma.de/2011/382/lulu2" rel="attachment wp-att-383"><img class="alignnone size-full wp-image-383" title="lulu2" src="http://re.adyma.de/wp-content/uploads/2011/12/lulu2.gif" alt="" width="480" height="640" /></a><a href="http://re.adyma.de/2011/382/lulu3-2" rel="attachment wp-att-385"><img class="alignnone size-full wp-image-385" title="lulu3" src="http://re.adyma.de/wp-content/uploads/2011/12/lulu31.gif" alt="" width="480" height="640" /></a></div>
<div><a href="http://re.adyma.de/2011/382/lulu4" rel="attachment wp-att-386"><img class="alignnone size-full wp-image-386" title="lulu4" src="http://re.adyma.de/wp-content/uploads/2011/12/lulu4.gif" alt="" width="480" height="640" /></a></div>
<div>&#8230;</div>]]></description>
			<content:encoded><![CDATA[<div>So, I made these gifs of Little Luna in her element.</div>
<div><a href="http://re.adyma.de/2011/382/lulu" rel="attachment wp-att-409"><img class="alignnone size-full wp-image-409" title="lulu" src="http://re.adyma.de/wp-content/uploads/2011/12/lulu.gif" alt="" width="480" height="640" /><span id="more-382"></span></a></div>
<div><a href="http://re.adyma.de/2011/382/lulu2" rel="attachment wp-att-383"><img class="alignnone size-full wp-image-383" title="lulu2" src="http://re.adyma.de/wp-content/uploads/2011/12/lulu2.gif" alt="" width="480" height="640" /></a><a href="http://re.adyma.de/2011/382/lulu3-2" rel="attachment wp-att-385"><img class="alignnone size-full wp-image-385" title="lulu3" src="http://re.adyma.de/wp-content/uploads/2011/12/lulu31.gif" alt="" width="480" height="640" /></a></div>
<div><a href="http://re.adyma.de/2011/382/lulu4" rel="attachment wp-att-386"><img class="alignnone size-full wp-image-386" title="lulu4" src="http://re.adyma.de/wp-content/uploads/2011/12/lulu4.gif" alt="" width="480" height="640" /></a></div>
<div></div>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2011/382/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Good Things</title>
		<link>http://re.adyma.de/2011/good-things?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=good-things</link>
		<comments>http://re.adyma.de/2011/good-things#comments</comments>
		<pubDate>Fri, 16 Dec 2011 04:09:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microstories]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://re.adyma.de/?p=378</guid>
		<description><![CDATA[<p>You told me that good things come to those who wait. I waited for you Janet, but you were bad.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>You told me that good things come to those who wait. I waited for you Janet, but you were bad.</p>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2011/good-things/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Light Gloves &#8211; Part I</title>
		<link>http://re.adyma.de/2011/light-gloves-part-i?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=light-gloves-part-i</link>
		<comments>http://re.adyma.de/2011/light-gloves-part-i#comments</comments>
		<pubDate>Mon, 28 Nov 2011 19:29:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[projects]]></category>
		<category><![CDATA[arduino]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[learning in public]]></category>

		<guid isPermaLink="false">http://re.adyma.de/?p=339</guid>
		<description><![CDATA[<p><img title="IMG_0511.JPG" src="http://re.adyma.de/wp-content/uploads/2011/11/IMG_0511.jpg" alt="prototype closeup" width="670" height="502" border="0" /></p>
<h3>Problem:</h3>
<p>I want an easy way to indicate to motorists which direction I&#8217;ll be headed when biking at night.</p>
<h3>Solution:</h3>
<p>Cobble together a pair of gloves, a couple of arduinos, some flex sensors, and a bunch of LEDs for fun &#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><img title="IMG_0511.JPG" src="http://re.adyma.de/wp-content/uploads/2011/11/IMG_0511.jpg" alt="prototype closeup" width="670" height="502" border="0" /></p>
<h3>Problem:</h3>
<p>I want an easy way to indicate to motorists which direction I&#8217;ll be headed when biking at night.</p>
<h3>Solution:</h3>
<p>Cobble together a pair of gloves, a couple of arduinos, some flex sensors, and a bunch of LEDs for fun and profit. In other words, make a glove that blinks when the index finger is fully extended.</p>
<h3><span id="more-339"></span>Process:</h3>
<p>As always, I start with a simple drawing. Being a former art major, it&#8217;s a bit embarrassing how bad these drawings always are. Regardless, the idea is that there&#8217;s a row of lights at the top of the second and third fingers, and a flex sensor at the bottom of the second finger. The power supply, switch , and arduino will be sewn into the back of the hand (on the glove of course). Since I&#8217;ll be wearing the gloves while I bike, my fingers will be gripping the handlebars about 95% of the time. All that I need to do is let the arduino know when my fingers are extended (i.e. off the handlebars and indicating a direction of movement).</p>
<p><img title="Initial sketch" src="http://re.adyma.de/wp-content/uploads/2011/11/IMG_0528.jpg" alt="Initial sketch of the light gloves, with a pseudo-schematic" width="670" border="0" /></p>
<p>I always start to prototype these projects on the <a href="http://arduino.cc/en/Main/arduinoBoardDuemilanove">Arduino Deumilanove</a> because it&#8217;s easy to plug into my laptop for power and data transfer. I&#8217;ve got a <a href="http://www.arduino.cc/en/Main/ArduinoBoardLilyPad">Lilypad</a> and a <a href="http://arduino.cc/en/Main/ArduinoBoardProMini">Mini</a> but nothing beats this board for ease of use. It&#8217;s been a while since I&#8217;ve done a hardware project so I had to re-familiarize myself with <a href="http://www.youtube.com/watch?v=1sGcL5Eeaeo">breadboards</a> and analog inputs as well as <a href="http://www.dannyg.com/examples/res2/resistor.htm">how to calculate resistance</a> in any sensible fashion. This <a href="http://www.ladyada.net/learn/sensors/fsr.html">tutorial on Force Sensitive Resistors</a> also pointed me in the right direction as far as hooking the whole thing up.</p>
<p><img title="the box.jpg" src="http://re.adyma.de/wp-content/uploads/2011/11/the-box.jpg" alt="the box of crap that I pull out every time that I want to start a new project" width="670" height="502" border="0" /></p>
<p>Once I had <a href="http://re.adyma.de/wp-content/uploads/2011/11/light_gloves.pde_.zip">some code written</a>, I hooked everything up and after a few test runs, got the lights blinking and the values on the flex sensor reading in properly. I&#8217;ve seen at a number of sites people getting values back in the 400-700 range, mine reads back in the 200-500 range. I&#8217;m pretty sure that it&#8217;s the resistor but it doesn&#8217;t matter that much; I only need to straighten the sensor past a certain threshold to get the lights blinking.</p>
<p>Anyhoo, this is how things turned out. Next time, I&#8217;ll document all of the actual soldering, sewing, and real life testing.</p>
<p><iframe src="http://www.youtube.com/embed/IsC4YwZzODI" frameborder="0" width="659" height="335"></iframe></p>
<h3>Downloads:</h3>
<p>Preliminary code - <a title="light_gloves.pde.zip" href="http://re.adyma.de/wp-content/uploads/2011/11/light_gloves.pde_.zip">light_gloves.pde.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2011/light-gloves-part-i/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A tribute to Mark Bittman</title>
		<link>http://re.adyma.de/2011/a-tribute-to-mark-bittman?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-tribute-to-mark-bittman</link>
		<comments>http://re.adyma.de/2011/a-tribute-to-mark-bittman#comments</comments>
		<pubDate>Sat, 26 Nov 2011 17:57:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[food]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[gif]]></category>

		<guid isPermaLink="false">http://re.adyma.de/?p=334</guid>
		<description><![CDATA[<p><a href="http://re.adyma.de/2011/a-tribute-to-mark-bittman/bittman" rel="attachment wp-att-335"><img class="alignnone size-full wp-image-335" title="bittman" src="http://re.adyma.de/wp-content/uploads/2011/11/bittman.gif" alt="" width="660" /></a>&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://re.adyma.de/2011/a-tribute-to-mark-bittman/bittman" rel="attachment wp-att-335"><img class="alignnone size-full wp-image-335" title="bittman" src="http://re.adyma.de/wp-content/uploads/2011/11/bittman.gif" alt="" width="660" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2011/a-tribute-to-mark-bittman/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A note on doing things</title>
		<link>http://re.adyma.de/2011/a-note-on-doing-things?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-note-on-doing-things</link>
		<comments>http://re.adyma.de/2011/a-note-on-doing-things#comments</comments>
		<pubDate>Wed, 23 Nov 2011 14:14:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[text]]></category>
		<category><![CDATA[life lessons]]></category>

		<guid isPermaLink="false">http://re.adyma.de/2011/a-note-on-doing-things</guid>
		<description><![CDATA[<p>Sometimes you don’t have to do it well, you just have to do it.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Sometimes you don’t have to do it well, you just have to do it.</p>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2011/a-note-on-doing-things/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The writer</title>
		<link>http://re.adyma.de/2011/the-writer?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-writer</link>
		<comments>http://re.adyma.de/2011/the-writer#comments</comments>
		<pubDate>Tue, 15 Nov 2011 18:25:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Microstories]]></category>
		<category><![CDATA[text]]></category>

		<guid isPermaLink="false">http://re.adyma.de/?p=253</guid>
		<description><![CDATA[<p>Vowing not to leave his apartment until he had completed his novel, James was found sitting at his desk &#8212; dead, pen in hand, paper blank.&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p>Vowing not to leave his apartment until he had completed his novel, James was found sitting at his desk &#8212; dead, pen in hand, paper blank.</p>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2011/the-writer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>China</title>
		<link>http://re.adyma.de/2011/china?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=china</link>
		<comments>http://re.adyma.de/2011/china#comments</comments>
		<pubDate>Thu, 10 Nov 2011 23:19:05 +0000</pubDate>
		<dc:creator>richard</dc:creator>
				<category><![CDATA[image]]></category>
		<category><![CDATA[china]]></category>
		<category><![CDATA[sunset]]></category>

		<guid isPermaLink="false">http://blog.adyma.de/?p=23</guid>
		<description><![CDATA[<p><a href="http://re.adyma.de/?attachment_id=274" rel="attachment wp-att-274"><img class="alignnone size-large wp-image-274" title="DSC_0769" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0769-1024x685.jpg" alt="" width="660" height="441" /></a><br />
<a href="http://re.adyma.de/?attachment_id=273" rel="attachment wp-att-273"><span id="more-23"></span><img class="alignnone size-large wp-image-273" title="DSC_0745" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0745-1024x685.jpg" alt="" width="660" height="441" /></a><a href="http://re.adyma.de/?attachment_id=276" rel="attachment wp-att-276"><img class="alignnone size-large wp-image-276" title="DSC_0919" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0919-1024x685.jpg" alt="" width="660" height="441" /></a><a href="http://re.adyma.de/?attachment_id=272" rel="attachment wp-att-272"><img class="alignnone size-full wp-image-272" title="china" src="http://re.adyma.de/wp-content/uploads/2011/11/china.jpg" alt="" width="1024" height="685" /></a><a href="http://re.adyma.de/?attachment_id=277" rel="attachment wp-att-277"><img class="alignnone size-large wp-image-277" title="DSC_0958" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0958-1024x685.jpg" alt="" width="660" height="441" /></a><a href="http://re.adyma.de/?attachment_id=275" rel="attachment wp-att-275"><img class="alignnone size-large wp-image-275" title="DSC_0890" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0890-1024x685.jpg" alt="" width="660" height="441" /></a></p>
<p>&#160;&#8230;</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://re.adyma.de/?attachment_id=274" rel="attachment wp-att-274"><img class="alignnone size-large wp-image-274" title="DSC_0769" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0769-1024x685.jpg" alt="" width="660" height="441" /></a><br />
<a href="http://re.adyma.de/?attachment_id=273" rel="attachment wp-att-273"><span id="more-23"></span><img class="alignnone size-large wp-image-273" title="DSC_0745" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0745-1024x685.jpg" alt="" width="660" height="441" /></a><a href="http://re.adyma.de/?attachment_id=276" rel="attachment wp-att-276"><img class="alignnone size-large wp-image-276" title="DSC_0919" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0919-1024x685.jpg" alt="" width="660" height="441" /></a><a href="http://re.adyma.de/?attachment_id=272" rel="attachment wp-att-272"><img class="alignnone size-full wp-image-272" title="china" src="http://re.adyma.de/wp-content/uploads/2011/11/china.jpg" alt="" width="1024" height="685" /></a><a href="http://re.adyma.de/?attachment_id=277" rel="attachment wp-att-277"><img class="alignnone size-large wp-image-277" title="DSC_0958" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0958-1024x685.jpg" alt="" width="660" height="441" /></a><a href="http://re.adyma.de/?attachment_id=275" rel="attachment wp-att-275"><img class="alignnone size-large wp-image-275" title="DSC_0890" src="http://re.adyma.de/wp-content/uploads/2011/11/DSC_0890-1024x685.jpg" alt="" width="660" height="441" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://re.adyma.de/2011/china/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

