<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>This sentence is false &#187; Uncategorized</title>
	<atom:link href="http://obfuscatedcode.wordpress.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://obfuscatedcode.wordpress.com</link>
	<description>functional programming, software, and emacs.</description>
	<lastBuildDate>Sat, 21 Nov 2009 16:11:44 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='obfuscatedcode.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/317eb4176193dba02fca7fa7d3429b53?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>This sentence is false &#187; Uncategorized</title>
		<link>http://obfuscatedcode.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://obfuscatedcode.wordpress.com/osd.xml" title="This sentence is false" />
		<item>
		<title>Converting RealMedia Audio to MP3</title>
		<link>http://obfuscatedcode.wordpress.com/2009/07/04/converting-realmedia-audio-to-mp3/</link>
		<comments>http://obfuscatedcode.wordpress.com/2009/07/04/converting-realmedia-audio-to-mp3/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 17:11:57 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[realmedia]]></category>
		<category><![CDATA[rm]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/?p=320</guid>
		<description><![CDATA[I used mplayer and lame.  MPlayer decodes the input rm audio stream into a WAVE file; lame encodes that to an mp3.
Just save the following script to a file and run it on your favorite rm file.
#!/bin/bash

FILE="$1"

OUTDIR="mp3"
OUTPUT=$OUTDIR/`basename "$FILE" .rm`.mp3

# We use a fifo file so that encoding the mp3 with lame can start immediately
# [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=320&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I used <a href="http://www.mplayerhq.hu/">mplayer</a> and <a href="http://lame.sourceforge.net/">lame</a>.  MPlayer decodes the input rm audio stream into a WAVE file; lame encodes that to an mp3.</p>
<p>Just save the following script to a file and run it on your favorite rm file.</p>
<blockquote><pre>#!/bin/bash

FILE="$1"

OUTDIR="mp3"
OUTPUT=$OUTDIR/`basename "$FILE" .rm`.mp3

# We use a fifo file so that encoding the mp3 with lame can start immediately
# after decoding with mplayer starts.
FIFO=rm2mp3.fifo

if ! test -f "$FILE"; then
    echo "error: '$FILE' does not exist"
    exit 1
fi
if ! test -p "$FIFO"; then
    mkfifo "$FIFO"
fi
if ! test -d "$OUTDIR"; then
    mkdir mp3
fi

echo "Input: '$FILE'"
echo "Output: '$OUTPUT'"
sleep 2 # Give time for user to kill if the input/output is wrong

# Show commands as they are executed.
set -x

# Send rm audio to fifo
mplayer -ao pcm:fast -ao pcm:file=$FIFO -vc null -vo null "$FILE" &gt;/dev/null 2&gt;&amp;1 &amp;

# Create MP3 from WAV
lame -h -V 6 $FIFO "$OUTPUT"

rm -f "$FIFO"
</pre>
</blockquote>
<p>Please send along any improvements (such as better flags for mplayer/lame).</p>
Posted in Uncategorized Tagged: mp3, realmedia, rm <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/320/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/320/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/320/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=320&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2009/07/04/converting-realmedia-audio-to-mp3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>
	</item>
		<item>
		<title>New Blogger</title>
		<link>http://obfuscatedcode.wordpress.com/2007/04/07/new-blogger/</link>
		<comments>http://obfuscatedcode.wordpress.com/2007/04/07/new-blogger/#comments</comments>
		<pubDate>Sat, 07 Apr 2007 15:03:00 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/2007/04/07/new-blogger/</guid>
		<description><![CDATA[I have recently been preparing some posts that require typesetting some math. Blogger does not support this. I have seen other Blogger blogs try to use HTML to typeset math&#8230; it&#8217;s not pretty.
I&#8217;m trying out WordPress, which supports embedded LaTeX. Here&#8217;s my blog.
I may be switching blogs soon. If so, it will be obvious.
this site [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=31&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have recently been preparing some posts that require typesetting some math. Blogger does not support this. I have seen other Blogger blogs try to use HTML to typeset math&#8230; it&#8217;s not pretty.</p>
<p>I&#8217;m trying out <a href="http://www.wordpress.com/">WordPress</a>, which supports embedded <a href="http://en.wikipedia.org/wiki/LaTeX">LaTeX</a>. Here&#8217;s my <a href="http://obfuscatedcode.wordpress.com/">blog</a>.</p>
<p>I may be switching blogs soon. If so, it will be obvious.
<div class="blogger-post-footer">this site brought to you by the letter p and the number e.</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obfuscatedcode.wordpress.com/31/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obfuscatedcode.wordpress.com/31/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/31/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/31/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/31/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=31&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2007/04/07/new-blogger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>
	</item>
		<item>
		<title>Trying this out</title>
		<link>http://obfuscatedcode.wordpress.com/2007/04/06/trying-this-out/</link>
		<comments>http://obfuscatedcode.wordpress.com/2007/04/06/trying-this-out/#comments</comments>
		<pubDate>Fri, 06 Apr 2007 20:12:44 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/2007/04/06/trying-this-out/</guid>
		<description><![CDATA[I&#8217;m looking for a blogging solution that lets me typeset mathematics. So&#8230; starting here.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=3&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;m looking for a blogging solution that lets me typeset mathematics. So&#8230; starting here.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obfuscatedcode.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obfuscatedcode.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=3&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2007/04/06/trying-this-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>
	</item>
		<item>
		<title>1, 2, 3&#8230;</title>
		<link>http://obfuscatedcode.wordpress.com/2006/05/04/1-2-3/</link>
		<comments>http://obfuscatedcode.wordpress.com/2006/05/04/1-2-3/#comments</comments>
		<pubDate>Fri, 05 May 2006 01:50:00 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/2006/05/04/1-2-3/</guid>
		<description><![CDATA[I would have found the following useful when I was first learning to count. Perhaps you  would have found it useful, too.

I haven&#8217;t found any such matrix in any of the books I&#8217;ve studied on counting and probability. The information is all there, sure. But the matrix is helpful for the subtle distinctions.
this site [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=23&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I would have found the following useful when I was first learning to count. Perhaps you  would have found it useful, too.</p>
<p><a href="http://photos1.blogger.com/blogger/3166/1088/1600/counting.0.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://photos1.blogger.com/blogger/3166/1088/400/counting.jpg" border="0" alt="" /></a></p>
<p>I haven&#8217;t found any such matrix in any of the books I&#8217;ve studied on <a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;tag=thissentencis-20&amp;camp=1789&amp;creative=9325&amp;path=http%3A%2F%2Fwww.amazon.com%2Fgp%2Fproduct%2F0201726343%2Fqid%3D1146794349%2Fsr%3D1-1%2Fref%3Dsr_1_1%3Fs%3Dbooks%26v%3Dglance%26n%3D283155">counting</a><img src="http://www.assoc-amazon.com/e/ir?t=thissentencis-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important;margin:0 !important;" /> and <a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;tag=thissentencis-20&amp;camp=1789&amp;creative=9325&amp;path=http%3A%2F%2Fwww.amazon.com%2Fgp%2Fproduct%2F0131464132%2Fref%3Dsr_11_1%3F%255Fencoding%3DUTF8">probability</a><img src="http://www.assoc-amazon.com/e/ir?t=thissentencis-20&amp;l=ur2&amp;o=1" width="1" height="1" border="0" alt="" style="border:none !important;margin:0 !important;" />. The information is all there, sure. But the matrix is helpful for the subtle distinctions.
<div class="blogger-post-footer">this site brought to you by the letter p and the number e.</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obfuscatedcode.wordpress.com/23/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obfuscatedcode.wordpress.com/23/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/23/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/23/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/23/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=23&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2006/05/04/1-2-3/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>

		<media:content url="http://photos1.blogger.com/blogger/3166/1088/400/counting.jpg" medium="image" />

		<media:content url="http://www.assoc-amazon.com/e/ir?t=thissentencis-20&#38;l=ur2&#38;o=1" medium="image" />

		<media:content url="http://www.assoc-amazon.com/e/ir?t=thissentencis-20&#38;l=ur2&#38;o=1" medium="image" />
	</item>
		<item>
		<title>Liars &amp; Truth-tellers</title>
		<link>http://obfuscatedcode.wordpress.com/2006/04/11/liars-truth-tellers/</link>
		<comments>http://obfuscatedcode.wordpress.com/2006/04/11/liars-truth-tellers/#comments</comments>
		<pubDate>Tue, 11 Apr 2006 14:01:00 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/2006/04/11/liars-truth-tellers/</guid>
		<description><![CDATA[Finally some self-referential goodness from the Anti-Department Department:
There&#8217;s something you need to know about me.
this site brought to you by the letter p and the number e.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=22&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Finally some self-referential goodness from the Anti-Department Department:</p>
<p><a href="http://itre.cis.upenn.edu/~myl/languagelog/archives/000330.html">There&#8217;s something you need to know about me</a>.
<div class="blogger-post-footer">this site brought to you by the letter p and the number e.</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obfuscatedcode.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obfuscatedcode.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=22&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2006/04/11/liars-truth-tellers/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>
	</item>
		<item>
		<title>More Emma</title>
		<link>http://obfuscatedcode.wordpress.com/2006/02/21/more-emma/</link>
		<comments>http://obfuscatedcode.wordpress.com/2006/02/21/more-emma/#comments</comments>
		<pubDate>Wed, 22 Feb 2006 02:17:00 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/2006/02/21/more-emma/</guid>
		<description><![CDATA[Here are some recent pictures.





this site brought to you by the letter p and the number e.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=18&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here are some recent pictures.</p>
<p><a href="http://photos1.blogger.com/blogger/3166/1088/1600/DSCN0484.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0484.jpg" border="0" alt="" /></a></p>
<p><a href="http://photos1.blogger.com/blogger/3166/1088/1600/DSCN0478.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0478.jpg" border="0" alt="" /></a></p>
<p><a href="http://photos1.blogger.com/blogger/3166/1088/1600/DSCN0477.0.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0477.0.jpg" border="0" alt="" /></a></p>
<p><a href="http://photos1.blogger.com/blogger/3166/1088/1600/DSCN0476.0.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0476.0.jpg" border="0" alt="" /></a></p>
<p><a href="http://photos1.blogger.com/blogger/3166/1088/1600/DSCN0475.1.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0475.0.jpg" border="0" alt="" /></a>
<div class="blogger-post-footer">this site brought to you by the letter p and the number e.</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obfuscatedcode.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obfuscatedcode.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=18&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2006/02/21/more-emma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>

		<media:content url="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0484.jpg" medium="image" />

		<media:content url="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0478.jpg" medium="image" />

		<media:content url="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0477.0.jpg" medium="image" />

		<media:content url="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0476.0.jpg" medium="image" />

		<media:content url="http://photos1.blogger.com/blogger/3166/1088/400/DSCN0475.0.jpg" medium="image" />
	</item>
		<item>
		<title>Emanuela Arcadia Bueno</title>
		<link>http://obfuscatedcode.wordpress.com/2006/01/05/emanuela-arcadia-bueno/</link>
		<comments>http://obfuscatedcode.wordpress.com/2006/01/05/emanuela-arcadia-bueno/#comments</comments>
		<pubDate>Fri, 06 Jan 2006 04:40:00 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/2006/01/05/emanuela-arcadia-bueno/</guid>
		<description><![CDATA[
Please welcome my first daughter into the world. She was born on 30 December at 0319, weighing 8lbs 10oz, and being 20 inches long. There are other pictures.

Mother is very glad that she was born (finally&#8230; it&#8217;s always finally) and father is glad that she was born between semesters (phew).
this site brought to you by [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=16&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://photos1.blogger.com/blogger/3166/1088/1600/1.0.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://photos1.blogger.com/blogger/3166/1088/320/1.0.jpg" border="0" alt="" /></a></p>
<p>Please welcome my first daughter into the world. She was born on 30 December at 0319, weighing 8lbs 10oz, and being 20 inches long. There are other <a href="http://churn.ath.cx/pictures/emma-birth/emma-birth.html">pictures</a>.</p>
<p><a href="http://photos1.blogger.com/blogger/3166/1088/1600/4.0.jpg"><img style="display:block;text-align:center;cursor:hand;margin:0 auto 10px;" src="http://photos1.blogger.com/blogger/3166/1088/320/4.0.jpg" border="0" alt="" /></a></p>
<p>Mother is very glad that she was born (finally&#8230; it&#8217;s always finally) and father is glad that she was born between semesters (phew).
<div class="blogger-post-footer">this site brought to you by the letter p and the number e.</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obfuscatedcode.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obfuscatedcode.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=16&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2006/01/05/emanuela-arcadia-bueno/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>

		<media:content url="http://photos1.blogger.com/blogger/3166/1088/320/1.0.jpg" medium="image" />

		<media:content url="http://photos1.blogger.com/blogger/3166/1088/320/4.0.jpg" medium="image" />
	</item>
		<item>
		<title>a scholar&#8217;s legacy</title>
		<link>http://obfuscatedcode.wordpress.com/2006/01/02/a-scholars-legacy/</link>
		<comments>http://obfuscatedcode.wordpress.com/2006/01/02/a-scholars-legacy/#comments</comments>
		<pubDate>Mon, 02 Jan 2006 13:21:00 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/2006/01/02/a-scholars-legacy/</guid>
		<description><![CDATA[Via a blog up with which I keep, I found this certainly fecund line of research: McNugget Numbers. To wit,
&#34;A number which can be obtained by adding together orders of McDonald&#8217;s® Chicken McNuggetsTM (prior to consuming any), which originally came in boxes of 6, 9, and 20.&#34;
I&#8217;m banking on some DARPA funding for my idea: [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=15&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Via a <a href="http://www.wingie.org/math/?p=53">blog</a> up with which I keep, I found this certainly fecund line of research: <a href="http://mathworld.wolfram.com/McNuggetNumber.html">McNugget Numbers</a>. To wit,</p>
<p><i>&quot;A number which can be obtained by adding together orders of McDonald&#8217;s® Chicken McNuggetsTM (prior to consuming any), which originally came in boxes of 6, 9, and 20.&quot;</i></p>
<p>I&#8217;m banking on some <a href="http://www.darpa.mil/">DARPA</a> funding for my idea: just which numbers are those which can be obtained by adding together the number of <a href="http://www.cornichon.org/archives/Canlis%20steak%2011.jpg">grilling lines</a> on various types of <a href="http://www.ruthschris.com/">Ruth&#8217;s Chris</a> steak? I would certainly need a large sample size in order to guarantee my results.
<div class="blogger-post-footer">this site brought to you by the letter p and the number e.</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obfuscatedcode.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obfuscatedcode.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=15&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2006/01/02/a-scholars-legacy/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>
	</item>
		<item>
		<title>drawing names, take 2</title>
		<link>http://obfuscatedcode.wordpress.com/2005/12/22/drawing-names-take-2/</link>
		<comments>http://obfuscatedcode.wordpress.com/2005/12/22/drawing-names-take-2/#comments</comments>
		<pubDate>Thu, 22 Dec 2005 13:00:00 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/2005/12/22/drawing-names-take-2/</guid>
		<description><![CDATA[It turns out, the consummate dunce who originally posted the Perl code mentioned in my previous post (and whose code I used as a model to write mine) was thoughtful enough to include the possibility of infinite recursion in some cases.
Suppose you have drawn n - 2 names, and Ann and Bill still need gift-recipients; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=14&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>It turns out, <a href="http://senojsitruc.blogspot.com/">the consummate dunce</a> who originally posted the <a href="http://senojsitruc.blogspot.com/2005/12/drawing-names-for-christmas.html">Perl code</a> mentioned in <a href="http://obfuscatedcode.blogspot.com/2005/12/drawing-names.html">my previous post</a> (and whose code I used as a model to write mine) was thoughtful enough to include the possibility of infinite recursion in some cases.</p>
<p>Suppose you have drawn <code>n - 2</code> names, and <b>Ann</b> and <b>Bill</b> still need gift-recipients; <b>Curtis The Dunce</b> and <b>Bill</b> are the names in the hat. So, <b>Ann</b> reaches in and gets <b>Curtis</b>. (Of course, he is a bad little boy who won&#8217;t get any presents. But that&#8217;s another story.) Then <b>Bill</b> chooses&#8230; well, duh. Problem. This is the bug in <a href="http://www.chornbe.com/uploads/perlboy.jpg">Perl-boy</a>&#8217;s code.</p>
<p>As a public service, I have updated my code to eliminate this possibility. Enjoy your bug-free gift-name-drawing.
<pre>(* Draw randomly-selected names for each person in `nameList'. *)structure DrawNames = structlocaltype match = {name: string, match: string}

(* Set of strings. *)structure S = BinarySetFn(type ord_key = string                          val compare = String.compare)

(* List of all names. *)val nameList = ["Denis", "Lisa", "Dave", "Beth", "Tim", "Emma"]val names = S.addList (S.empty, nameList)

(* For the random-number generator seed. This seed is only sufficient. *)fun getpid () =    SysWord.toInt (Posix.Process.pidToWord (Posix.ProcEnv.getpid ()))fun now () =    let val time = Time.toMilliseconds (Time.now ())        val time' = case Int.maxInt                     of NONE =&gt; time                      | SOME x =&gt; LargeInt.mod (time, Int.toLarge x)    in Int.fromLarge time'    end

in

(* Match up all the names. *)fun match () =    let val seed = Random.rand (now (), getpid ())        fun randomElt l =            List.nth (l, (Random.randRange (0, (length l) - 1) seed))        fun getName set =            randomElt (S.listItems set)        fun getNameExcluding (excl, set) =            randomElt (S.listItems (S.difference (set, S.singleton excl)))

        (* Find a match for the given `name'. *)        fun findMatch (mapFrom, mapTo, matches) =            if S.isEmpty mapFrom            then matches            else let val name = getName mapFrom                     val match = getNameExcluding (name, mapTo)                     val mapFrom' = S.delete (mapFrom, name)                     val mapTo' = S.delete (mapTo, match)                 (* If the only choice is to map to oneself, we made the                  * wrong choice: try again. *)                 in if S.numItems mapFrom' = 1                       andalso S.equal (mapFrom', mapTo')                    then findMatch (mapFrom, mapTo, matches)                    else findMatch (mapFrom', mapTo',                                    {from=name, to=match} :: matches)                 end        fun printMatch {from, to} = print (from ^ " -&gt; " ^ to ^ "\n")

        val matches = findMatch (names, names, [])    in app printMatch matches    end

end (* local *)end (* struct *)</pre>
<div class="blogger-post-footer">this site brought to you by the letter p and the number e.</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obfuscatedcode.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obfuscatedcode.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=14&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2005/12/22/drawing-names-take-2/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>
	</item>
		<item>
		<title>drawing names</title>
		<link>http://obfuscatedcode.wordpress.com/2005/12/21/drawing-names/</link>
		<comments>http://obfuscatedcode.wordpress.com/2005/12/21/drawing-names/#comments</comments>
		<pubDate>Wed, 21 Dec 2005 17:09:00 +0000</pubDate>
		<dc:creator>dbueno</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://obfuscatedcode.wordpress.com/2005/12/21/drawing-names/</guid>
		<description><![CDATA[A colleague of mine recently posted Perl (ugh) code to draw names for gift-giving purposes for Christmas. Because I felt like it*, I wrote a version in SML/NJ.
(* Draw randomly-selected names for each person in `nameList'. *)structure DrawNames = structlocaltype match = {name: string, match: string}

(* Set of strings. *)structure S = BinarySetFn(type ord_key = [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=13&subd=obfuscatedcode&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>A <a href="http://senojsitruc.blogspot.com/">colleague</a> of mine recently posted Perl (ugh) code to draw names for gift-giving purposes for Christmas. Because I felt like it*, I wrote a version in <a href="http://www.smlnj.org/">SML/NJ</a>.</p>
<pre>(* Draw randomly-selected names for each person in `nameList'. *)structure DrawNames = structlocaltype match = {name: string, match: string}

(* Set of strings. *)structure S = BinarySetFn(type ord_key = string                          val compare = String.compare)

(* List of all names. *)val nameList = ["Denis",                "Lisa",                "Dave",                "Beth",                "Tim",                "Emma"]val names = S.addList (S.empty, nameList)

(* For the random-number generator seed. *)fun getpid () =    SysWord.toInt (Posix.Process.pidToWord (Posix.ProcEnv.getpid ()))fun now () =    let val time = Time.toMilliseconds (Time.now ())        val time' = case Int.maxInt                     of NONE =&gt; time                      | SOME x =&gt; LargeInt.mod (time, Int.toLarge x)    in Int.fromLarge time'    end

in

(* Match up all the names. *)fun match () =    let val seed = Random.rand (now (), getpid ())        fun randomElt l =            List.nth (l, (Random.randRange (0, (length l) - 1) seed))        fun getName exclude =            randomElt (S.listItems (S.delete (names, exclude)))

        (* Find a match for the given `name'. *)        fun findMatch (name, (matches, mappedFrom, mappedTo)) =            if S.member (mappedFrom, name)            then (matches, mappedFrom, mappedTo)            else let val match = getName name                 in (if S.member (mappedTo, match)                     then findMatch (name, (matches, mappedFrom, mappedTo))                     else ({from=name, to=match} :: matches,                           S.add (mappedFrom, name),                           S.add (mappedTo, match)))                 end        fun printMatch {from, to} = print (from ^ " -&gt; " ^ to ^ "\n")

        val (matches, _, _) =            S.foldl findMatch ([], S.empty, S.empty) names    in app printMatch matches    end

end (* local *)end (* struct *)</pre>
<p><b>Update:</b> For those who want to run this, but haven&#8217;t the slightest clue how:
<ul>
<li>Load the file into SML/NJ.
<li><code>DrawNames.match()</code></ul>
<p>* <font size="-1">Doing what feels good is always right. After all, how can it be wrong, when it feels so right?</font>
<div class="blogger-post-footer">this site brought to you by the letter p and the number e.</div>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/obfuscatedcode.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/obfuscatedcode.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/obfuscatedcode.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/obfuscatedcode.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/obfuscatedcode.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/obfuscatedcode.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/obfuscatedcode.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/obfuscatedcode.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/obfuscatedcode.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/obfuscatedcode.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/obfuscatedcode.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/obfuscatedcode.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=obfuscatedcode.wordpress.com&blog=958235&post=13&subd=obfuscatedcode&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://obfuscatedcode.wordpress.com/2005/12/21/drawing-names/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/0aa0013bf7a5451dfb36bbce25f75526?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dbueno</media:title>
		</media:content>
	</item>
	</channel>
</rss>