<?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/"
	>

<channel>
	<title>Tinker Blog</title>
	<atom:link href="http://runningaround.org/wp/feed/" rel="self" type="application/rss+xml" />
	<link>http://runningaround.org/wp</link>
	<description>Make and break:  food, gadgets, and internet things.</description>
	<pubDate>Fri, 18 Dec 2009 07:31:44 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>12172009</title>
		<link>http://runningaround.org/wp/2009/12/17/12172009/</link>
		<comments>http://runningaround.org/wp/2009/12/17/12172009/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 07:31:44 +0000</pubDate>
		<dc:creator>photos</dc:creator>
		
		<category><![CDATA[ShoZu]]></category>

		<guid isPermaLink="false">http://runningaround.org/wp/2009/12/17/12172009/</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p><a href="http://media.shozu.com/cache/portal/media/135b13a/16777402"><img src="http://media.shozu.com/cache/portal/media/135b13a/16777402_blog" /></a>
<p align="right"><a href="http://www.shozu.com/portal/?utm_source=upload&amp;utm_medium=graphic&amp;utm_campaign=upload_graphic/" target="_blank"><img src="http://www.shozu.com/resources/messages/logo_blog.gif" alt="Posted by ShoZu" border="0" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://runningaround.org/wp/2009/12/17/12172009/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Five iPhone development sound tips</title>
		<link>http://runningaround.org/wp/2009/04/24/five-iphone-development-sound-tips/</link>
		<comments>http://runningaround.org/wp/2009/04/24/five-iphone-development-sound-tips/#comments</comments>
		<pubDate>Fri, 24 Apr 2009 22:32:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[audio]]></category>

		<category><![CDATA[gamedev]]></category>

		<category><![CDATA[iphonedev]]></category>

		<guid isPermaLink="false">http://runningaround.org/wp/?p=26</guid>
		<description><![CDATA[A few sound-related tips I&#8217;ve discovered along the way that I&#8217;d like to share:
1. You can&#8217;t play two compressed (aac, mp3, alac) files at the same time because there is only one hardware uncompressor available. Here&#8217;s a little more info from Apple&#8217;s documentation:
The following list summarizes how iPhone OS supports audio formats for single or [...]]]></description>
			<content:encoded><![CDATA[<p>A few sound-related tips I&#8217;ve discovered along the way that I&#8217;d like to share:</p>
<p>1. You can&#8217;t play two compressed (aac, mp3, alac) files at the same time because there is only one hardware uncompressor available. Here&#8217;s a little more info from Apple&#8217;s <a href="http://developer.apple.com/iphone/library/documentation/iPhone/Conceptual/iPhoneOSProgrammingGuide/AudioandVideoTechnologies/AudioandVideoTechnologies.html#//apple_ref/doc/uid/TP40007072-CH19-SW9" target="_blank">documentation</a>:</p>
<blockquote><p>The following list summarizes how iPhone OS supports audio formats for single or multiple playback:</p>
<ul class="spaceabove">
<li class="li"><strong>Linear PCM and IMA4 (IMA/ADPCM)</strong> You can play multiple linear PCM or IMA4 format sounds simultaneously in iPhone OS without incurring CPU resource problems. The same is true for the AMR and iLBC speech-quality formats, and for the µ-law and a-law compressed formats.</li>
<li class="li"><strong>AAC, MP3, and ALAC (Apple Lossless)</strong> Playback for AAC, MP3, and ALAC sounds uses efficient hardware-based decoding on iPhone OS–based devices, but these codecs all share a single hardware path. The device can play only a single instance of one of these formats at a time.</li>
</ul>
<p>The single hardware path for AAC, MP3, and ALAC audio entails implications for &#8220;play along” style applications, such as a virtual piano. If the user is playing a sound in one of these three formats in the iPod application, then your application—to play along over that audio—must use one of the software-decoded formats: linear PCM, IMA4, AMR, iLBC, µ-law, or a-law.</p></blockquote>
<p>2. Use the compressed format for the largest file (for example, background music.) In my case, I&#8217;m using a very compressed mp3. (22050 sample rate, mono, low quality VBR).</p>
<p>3. Use <a href="http://audacity.sourceforge.net/" target="_self">Audacity</a> (I&#8217;m using the beta with no problems) to create your compressed mp3s. It provides a nice GUI for you to trim your sound file.  The sampling rate is in the lower left corner of the window, and you can change the variable-bit-rate range by selecting File-&gt;Export&#8230;, selecting mp3 as your format, and clicking the &#8216;Options&#8217; button.</p>
<p>4. For your other sounds, like sound effects, that you&#8217;d like to play concurrently with your background music, run the following command in Terminal to convert your sounds to a software-compressed format (I&#8217;m using IMA4, seems to be the best size/quality compromise). I first tried to use <a href="http://sox.sourceforge.net" target="_blank">sox</a>, but afconvert will more reliably give you a file that the apple development environment is happy with:</p>
<blockquote><p><code>% afconvert -d 'ima4' -f 'caff' inputfile.mp3 outputfile.caf</code></p></blockquote>
<p>You can also check to make sure they are readable by the iPhone SDK with <code>afinfo</code> and listen to them with <code>afplay</code>. IMA4 is a compressed format but the quality seems to be pretty decent.</p>
<p>5. AVAudioPlayer is a very easy way to get compatible sound files into your application. It only works on OS 2.2 or greater. To use it,</p>
<blockquote><p><code><br />
<code>#import &lt;AVFoundation/AVFoundation.h&gt;</code></code></p>
<p><code>bgMusicPlayer = [AVAudioPlayer alloc ];<br />
[bgMusicPlayer initWithContentsOfURL: [NSURL fileURLWithPath:<br />
[ [ NSBundle mainBundle ] pathForResource: @&#8221;street_level-small&#8221;<br />
ofType:@&#8221;mp3&#8243;<br />
inDirectory:@&#8221;/&#8221; ] ]<br />
error:nil<br />
];</code></p>
<p><code>[bgMusicPlayer prepareToPlay];</code></p>
<p><code>// when you want to play the file</code></p>
<p><code>[bgMusicPlayer play];</code></p></blockquote>
<p>You will also need to include the AVFoundation framework. Ctrl-click (or right click) on Frameworks in your Xcode window, then select Add-&gt;Existing Frameworks&#8230;  The AVFoundation framework is in <code>/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.2.sdk/System/Library/Frameworks/<br />
</code></p>
<p>Good luck!</p>
<p><strong>Hat tips</strong> to AkumaStreak on the #cocos2d-iphone irc channel and Sirr &amp; Vadan Less from<a href="http://www.integratedalchemy.com" target="_blank"> Integrated Alchemy</a> for pointing me in the right directions.</p>
]]></content:encoded>
			<wfw:commentRss>http://runningaround.org/wp/2009/04/24/five-iphone-development-sound-tips/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tool time</title>
		<link>http://runningaround.org/wp/2009/04/20/tool-time/</link>
		<comments>http://runningaround.org/wp/2009/04/20/tool-time/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 05:01:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[development]]></category>

		<category><![CDATA[game]]></category>

		<category><![CDATA[gamedev]]></category>

		<category><![CDATA[iphonedev]]></category>

		<guid isPermaLink="false">http://runningaround.org/wp/?p=24</guid>
		<description><![CDATA[I have recently started working on a new iPhone application for a client that looks to be very fun. It&#8217;s a very simple game concept, so I thought I&#8217;d check out some development options. I thought about using the existing user interface tools that come with the iPhone SDK. As I did a little more [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="cocos2d logo" src="http://cocos2d-iphone-discuss.googlegroups.com/web/cocos2d-Icon.png?gda=dtcIckEAAADmapDTkODa_Wl0GGwYS-5Crt3xc2pT5ZdoN2SKyVCdgmG1qiJ7UbTIup-M2XPURDQk5f62ONdfhCLG5H-jVQ9oNOfskmWVvHzB1T8lPOHyJg" alt="" width="187" height="186" />I have recently started working on a new iPhone application for a client that looks to be very fun. It&#8217;s a very simple game concept, so I thought I&#8217;d check out some development options. I thought about using the existing user interface tools that come with the iPhone SDK. As I did a little more research, I found a nice little framework called cocos2d that specializes in helping to create two dimensional (2D) games. Like the old school Sega Genesis Sonic the Hedgehog rather than the newfangled Sonic Adventure.</p>
<p>Anyway, I have just started out, so not much to report yet other than encouraging anyone else interested in iPhone game development to download it. (<a href="http://code.google.com/p/cocos2d-iphone/" target="_blank">link</a>)</p>
<p>It has a nice object model around Scenes, Layers, and Sprites, and has a lot of fun game functionality built in. I&#8217;ll post more as my project continues.</p>
]]></content:encoded>
			<wfw:commentRss>http://runningaround.org/wp/2009/04/20/tool-time/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Happy Holidays! Passover, Easter, and OTBN</title>
		<link>http://runningaround.org/wp/2009/04/10/happy-holidays-passover-easter-and-otbn/</link>
		<comments>http://runningaround.org/wp/2009/04/10/happy-holidays-passover-easter-and-otbn/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 04:35:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Food]]></category>

		<category><![CDATA[dinner]]></category>

		<category><![CDATA[otbn]]></category>

		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://runningaround.org/wp/?p=15</guid>
		<description><![CDATA[My wife and I had some friends over for dinner tonight, as a non-seder Passover celebration, just to hang out and enjoy some good food and company. Inspired by reading Dr. Sue&#8217;s Open That Bottle Night blog post, I decided to open a dusty birthday present from years ago to go along with the lamb [...]]]></description>
			<content:encoded><![CDATA[<p><div class="wp-caption alignleft" style="width: 249px"><a href="http://www.flickr.com/photos/arlophoto/3277486134/"><img src="http://farm4.static.flickr.com/3384/3277486134_d65a61fec5_m_d.jpg" alt="flickr photo by Arlo Bates" width="239" height="240" /></a><p class="wp-caption-text">flickr photo by Arlo Bates</p></div></p>
<p>My wife and I had some friends over for dinner tonight, as a non-seder Passover celebration, just to hang out and enjoy some good food and company. Inspired by reading Dr. Sue&#8217;s Open That Bottle Night <a href="http://dr-sues-kitchen.blogspot.com/2009/04/otbn-february-28-2009-for-this-years.html" target="_blank">blog post</a>, I decided to open a dusty birthday present from years ago to go along with the lamb chops I was making. It ended up being delicious, a dry red wine, as it said on the bottle, with a beautiful dark burgundy color. I made lamb chops with a pan sauce (referring to the Joy of Cooking a bit to get the general idea). My wife made soup, sides and dessert and our friends brought another bottle of wine and a fancy salad. I&#8217;m so glad we were inspired to open the wine, it was awesome to share a good meal and good wine.</p>
<p>Here&#8217;s the full menu:</p>
<p style="text-align: center;">1999 Barone Cornacchia Montepulciano d&#8217;Abruzzo</p>
<p style="text-align: center;">Vegetarian matzoh ball soup</p>
<p style="text-align: center;">Mixed greens with dried cranberries, candied walnuts and goat cheese</p>
<p style="text-align: center;">Green beans with almonds</p>
<p style="text-align: center;">Curried apples with sweet potatoes</p>
<p style="text-align: center;">Lamb chops with red wine reduction</p>
<p style="text-align: center;">Chocolate-covered matzoh and candied fruit slices</p>
]]></content:encoded>
			<wfw:commentRss>http://runningaround.org/wp/2009/04/10/happy-holidays-passover-easter-and-otbn/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lemon Cubes</title>
		<link>http://runningaround.org/wp/2009/03/21/lemon-cubes/</link>
		<comments>http://runningaround.org/wp/2009/03/21/lemon-cubes/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 01:50:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://runningaround.org/wp/?p=12</guid>
		<description><![CDATA[
Quick tip - my parents have a Meyer Lemon tree in their backyard. I got a big bag of lemons from the tree to make a delicious sorbet, but it turned out I only needed eight lemons, not a giant bag-full. So I juiced all of the lemons, then put the juice into an ice [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-thumbnail wp-image-10" title="Lemons" src="http://runningaround.org/wp/wp-content/uploads/2009/03/img_4681-150x150.jpg" alt="Lemons" width="150" height="150" /><img class="alignnone size-thumbnail wp-image-11" title="Lemon cubes" src="http://runningaround.org/wp/wp-content/uploads/2009/03/img_4687-1-150x150.jpg" alt="Lemon cubes" width="150" height="150" /></p>
<p>Quick tip - my parents have a Meyer Lemon tree in their backyard. I got a big bag of lemons from the tree to make a delicious sorbet, but it turned out I only needed eight lemons, not a giant bag-full. So I juiced all of the lemons, then put the juice into an ice cube tray. Perfect for cocktails or just with some club soda.</p>
]]></content:encoded>
			<wfw:commentRss>http://runningaround.org/wp/2009/03/21/lemon-cubes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Bread - failure and success</title>
		<link>http://runningaround.org/wp/2009/01/25/bread-failure-and-success/</link>
		<comments>http://runningaround.org/wp/2009/01/25/bread-failure-and-success/#comments</comments>
		<pubDate>Mon, 26 Jan 2009 06:37:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Food]]></category>

		<guid isPermaLink="false">http://runningaround.org/wp/?p=6</guid>
		<description><![CDATA[ Success! After a do-over due to failed yeast, I made a tasty loaf of Classic Sandwich Bread from the King Arthur Flour website. I used nonfat milk and 2 cups of white bread flour and one cup of whole wheat. It turned out delicious!
My first try, which failed, was because my yeast was dead. [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://lh5.ggpht.com/_wGoCrILBZiA/SX1Rg3DobaI/AAAAAAAABUA/Tb0yc_yfEJM/s400/01252009%28004%29.jpg" alt="" /> Success! After a do-over due to failed yeast, I made a tasty loaf of<a href="http://www.kingarthurflour.com/shop/RecipeDisplay?RID=R425" target="_blank"> Classic Sandwich Bread</a> from the King Arthur Flour website. I used nonfat milk and 2 cups of white bread flour and one cup of whole wheat. It turned out delicious!</p>
<p>My first try, which failed, was because my yeast was dead. I followed the directions (I thought), and it smelled yeasty, but once I mixed it all together and kneaded it in the mixer, with the dough hook, it never got past the sticky stage. I let it sit overnight but it never got to the &#8216;fingerprint doesn&#8217;t bounce back&#8217; stage of the first rising. I googled a lot for &#8216;failed dough&#8217; and tried some of the dough to make breadsticks but they didn&#8217;t quite taste right.</p>
<p>This time, I made sure the water was nice and hot (110 degrees F) and stuck the measuring cup with the water and yeast into our turned-off oven (since the rest of the apartment is so cold). You can see from the pictures that it is much more bubbly and frothy when the yeast is actually working. After that, I just followed the recipe and used both the thump and temperature test at the end. Result: tasty home-made bread!</p>
<div style="text-align:center;"><img src="http://lh5.ggpht.com/_wGoCrILBZiA/SX1ReoO59TI/AAAAAAAABTw/HkPwDU1tt6M/s288/IMG_4656.JPG" alt="" /><br />
Bad yeast</p>
<p><img src="http://lh6.ggpht.com/_wGoCrILBZiA/SX1Rf9o5naI/AAAAAAAABT4/slyZ0_0NiPs/s288/01252009.jpg" alt="" /><br />
Good yeast</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://runningaround.org/wp/2009/01/25/bread-failure-and-success/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Waffles</title>
		<link>http://runningaround.org/wp/2009/01/17/waffles/</link>
		<comments>http://runningaround.org/wp/2009/01/17/waffles/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 20:15:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Food]]></category>

		<category><![CDATA[breakfast]]></category>

		<category><![CDATA[waffles]]></category>

		<guid isPermaLink="false">http://runningaround.org/wp/?p=5</guid>
		<description><![CDATA[









Today&#8217;s project was some delicious belgian waffles. mmm! I made them a little healthier than the recipe called for, but didn&#8217;t do any super low-fat, apple-sauce substitutions. I used the Joy of Cooking recipe, which is:
Preheat the waffle iron. Mix the dry ingredients in a bowl:

1 3/4 cups flour (I used whole wheat)
1 tablespoon baking [...]]]></description>
			<content:encoded><![CDATA[<table style="width:auto;" border="0">
<tbody>
<tr>
<td><a href="http://picasaweb.google.com/lh/photo/Fm3OUX7fj5zD6k1Hm6G8Fw?authkey=fbL0Bkso6tQ&amp;feat=embedwebsite"><img src="http://lh6.ggpht.com/_wGoCrILBZiA/SXI7yzSAiPI/AAAAAAAABSA/gziNw_NOPno/s400/01172009%28001%29.jpg" alt="" /></a></td>
</tr>
<tr>
<td style="font-family:arial,sans-serif; font-size:11px; text-align:right"></td>
</tr>
</tbody>
</table>
<p>Today&#8217;s project was some delicious belgian waffles. mmm! I made them a little healthier than the recipe called for, but didn&#8217;t do any super low-fat, apple-sauce substitutions. I used the Joy of Cooking recipe, which is:</p>
<p>Preheat the waffle iron. Mix the dry ingredients in a bowl:</p>
<ul>
<li>1 3/4 cups flour <em>(I used whole wheat)</em></li>
<li>1 tablespoon baking powder</li>
<li>1 tablespoon sugar</li>
<li>1/2 teaspoon salt</li>
</ul>
<p>Blend well in another bowl:</p>
<ul>
<li>3 eggs<em> (I used 2 eggs and 2 whites)</em></li>
<li>1/2 to 2 sticks butter <em>(I used a half stick, melted in the microwave)</em></li>
<li>1 1/2 cup milk<em> (I used nonfat)</em></li>
</ul>
<p>Make a well in the center of the dry ingredients and pour in the wet ingredients. Combine with a few swift strokes of the whisk.</p>
<p>They came out amazingly well, thanks to a good waffle iron and some home-made maple syrup from a friend in upstate New York. Delish!</p>
]]></content:encoded>
			<wfw:commentRss>http://runningaround.org/wp/2009/01/17/waffles/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Project: Laser Morse Code sender</title>
		<link>http://runningaround.org/wp/2009/01/13/new-project-laser-morse-code-sender/</link>
		<comments>http://runningaround.org/wp/2009/01/13/new-project-laser-morse-code-sender/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 01:06:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Gadgets]]></category>

		<category><![CDATA[arduino]]></category>

		<category><![CDATA[hack]]></category>

		<category><![CDATA[laser]]></category>

		<guid isPermaLink="false">http://runningaround.org/wp/?p=4</guid>
		<description><![CDATA[I found a laser pointer in a drawer, so I looked at all of the arduino laser projects on instructables.com; I may try to build a laser-based sound transmitter thing but for now I&#8217;m going to try a morse code sender. If I get crazy, I may try a webcam based decoder; but first the [...]]]></description>
			<content:encoded><![CDATA[<p>I found a laser pointer in a drawer, so I looked at all of the arduino laser projects on <a href="http://instructables.com" target="_blank">instructables.com</a>; I may try to build a laser-based sound transmitter thing but for now I&#8217;m going to try a morse code sender. If I get crazy, I may try a webcam based decoder; but first the encoder.</p>
<p>Step 1: connect the laser pointer to the arduino. I stuffed one wire into the spring, and wired that to the GND pin. Then I taped the 5V wire to an alligator clip and clipped that to the end of the barrel. Plugged into usb and voila - the arduino is powering the laser.</p>
<p><img class="alignnone" src="http://i354.photobucket.com/albums/r412/schpyda/tinker/Photo137.jpg" alt="Laserduino" /></p>
<p>Step 2. A few google searches later, and I found a handy blog entry with a <a href="http://www.flatline.net/journal/2008/04/18/arduino-generating-the-morse-code/" target="_blank">morse code generator</a> for Arduino. Upload the sketch, change the pin to my pin for the laser, and voila!</p>
]]></content:encoded>
			<wfw:commentRss>http://runningaround.org/wp/2009/01/13/new-project-laser-morse-code-sender/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Hello World</title>
		<link>http://runningaround.org/wp/2009/01/13/hello-world-2/</link>
		<comments>http://runningaround.org/wp/2009/01/13/hello-world-2/#comments</comments>
		<pubDate>Wed, 14 Jan 2009 00:40:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<category><![CDATA[intro]]></category>

		<guid isPermaLink="false">http://runningaround.org/wp/?p=3</guid>
		<description><![CDATA[I have been tinkering a bit more, so I thought I&#8217;d blog about it too! Recently, I&#8217;ve made bread, beef stew, a GPS tracker, and started a temperature logger (also based on an arduino).
]]></description>
			<content:encoded><![CDATA[<p>I have been tinkering a bit more, so I thought I&#8217;d blog about it too! Recently, I&#8217;ve made bread, beef stew, a GPS tracker, and started a temperature logger (also based on an arduino).</p>
]]></content:encoded>
			<wfw:commentRss>http://runningaround.org/wp/2009/01/13/hello-world-2/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>

