<?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>Bespoke Blog</title>
	<atom:link href="http://bespokeblog.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://bespokeblog.wordpress.com</link>
	<description>Science! Culture! Computational Engines!</description>
	<lastBuildDate>Fri, 06 Jan 2012 22:32:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='bespokeblog.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Bespoke Blog</title>
		<link>http://bespokeblog.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://bespokeblog.wordpress.com/osd.xml" title="Bespoke Blog" />
	<atom:link rel='hub' href='http://bespokeblog.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Sunset Time Series</title>
		<link>http://bespokeblog.wordpress.com/2011/09/04/sunset-time-series/</link>
		<comments>http://bespokeblog.wordpress.com/2011/09/04/sunset-time-series/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 08:22:25 +0000</pubDate>
		<dc:creator>nfitzgerald</dc:creator>
				<category><![CDATA[art]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[sunset]]></category>
		<category><![CDATA[vancouver island]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=969</guid>
		<description><![CDATA[Inspired by a reddit image post (which I cannot for the life of me find again), I decided to take &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/09/04/sunset-time-series/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=969&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Inspired by a reddit image post (which I cannot for the life of me find again), I decided to take a series of photos of the sunset from my parents&#8217; house at Cedar-by-the-Sea, Vancouver Island. I many photos over the course of several hours using a digital camera fixed in position on a tripod.</p>
<p>I thought it would look good to blend the images one into the other, so I wrote a quick python script using the <a href="http://www.pythonware.com/products/pil/">Python Image Library</a>. The script blends consecutive images using linear interpolation. An artistic choice to make was how wide the blended regions should be. I tried everything from relatively thin blending regions:</p>
<p><a href="http://bespokeblog.files.wordpress.com/2011/09/im_output3_640.jpg"><img class="alignnone size-full wp-image-973" title="im_output3_640" src="http://bespokeblog.files.wordpress.com/2011/09/im_output3_640.jpg?w=529&#038;h=396" alt="" width="529" height="396" /></a></p>
<p>To almost completely blended images:</p>
<p><a href="http://bespokeblog.files.wordpress.com/2011/09/im_output700_640.jpg"><img class="alignnone size-full wp-image-976" title="im_output700_640" src="http://bespokeblog.files.wordpress.com/2011/09/im_output700_640.jpg?w=529&#038;h=396" alt="" width="529" height="396" /></a></p>
<p>In the end, however, I decided that what looked the best was actually to have no blending, but rather sharp boundaries between the images. This actually accentuates the effect I was going for, which was to show the changing light over time. Blending the images together actually lessens the effect, rather than enhancing it as had hoped. I plan to get the finished product printed and framed:</p>
<p><a href="http://bespokeblog.files.wordpress.com/2011/09/cropped_final_640.jpg"><img class="alignnone size-full wp-image-977" title="cropped_final_640" src="http://bespokeblog.files.wordpress.com/2011/09/cropped_final_640.jpg?w=529&#038;h=395" alt="" width="529" height="395" /></a></p>
<p>Here&#8217;s the code for the script I used (apologies for quick-and-dirtiness):</p>
<p><pre class="brush: python;">
import sys
from PIL import Image

def imageblend(imdir, numimages = 5, blendwidth=0):
    if not blendwidth%2 == 0:
        raise Exception('blendwidth not even')

    im = Image.open(imdir+&quot;im1.jpg&quot;)
    (width, height) = im.size

    for i in range(1, numimages):
        imnum = i+1
        centre = i*width/numimages - 1

        im_i = Image.open(imdir+'im%d.jpg'%(imnum))

        for x in range(blendwidth):
            col_ind = centre - (blendwidth/2) + x +1
            col_box = (col_ind, 0, col_ind+1, height-1)
            col_o = im.copy().crop(col_box)
            col_i = im_i.copy().crop(col_box)
            col = Image.blend(col_o, col_i, float(x)/blendwidth)
            im.paste(col, col_box)

        rest_box = (centre+blendwidth/2+1, 0, width-1, height-1)
        rest = im_i.copy().crop(rest_box)
        im.paste(rest, rest_box)

    im.save(imdir+&quot;im_output.jpg&quot;)

def main():
    imdir = sys.argv[1]
    imageblend(imdir)

if __name__=='__main__':
    main()
 </pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/969/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/969/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/969/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/969/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/969/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/969/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/969/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/969/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/969/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/969/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/969/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/969/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/969/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/969/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=969&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/09/04/sunset-time-series/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfc429b05eda922a72e8c71443c85a1c?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">nfitzgerald</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/09/im_output3_640.jpg" medium="image">
			<media:title type="html">im_output3_640</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/09/im_output700_640.jpg" medium="image">
			<media:title type="html">im_output700_640</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/09/cropped_final_640.jpg" medium="image">
			<media:title type="html">cropped_final_640</media:title>
		</media:content>
	</item>
		<item>
		<title>I&#8217;m back</title>
		<link>http://bespokeblog.wordpress.com/2011/08/30/im-back/</link>
		<comments>http://bespokeblog.wordpress.com/2011/08/30/im-back/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 23:53:46 +0000</pubDate>
		<dc:creator>bwkeller</dc:creator>
				<category><![CDATA[projects]]></category>
		<category><![CDATA[100daychallenge]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=963</guid>
		<description><![CDATA[So, as you are all fully aware, I have been silent for the past few weeks.  Moving across the country &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/08/30/im-back/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=963&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, as you are all fully aware, I have been silent for the past few weeks.  Moving across the country can do that to you.  Now that I am no longer living out of boxes, expect a rapid catchup as I make up the posts I missed.</p>
<p>I&#8217;ll be keeping track at the bottom of my posts.</p>
<p>24</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/963/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/963/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/963/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=963&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/08/30/im-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d0736dfa302829221b9c34e01d5dbec0?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">bwkeller</media:title>
		</media:content>
	</item>
		<item>
		<title>Change I Can Count On</title>
		<link>http://bespokeblog.wordpress.com/2011/08/14/change-i-can-count-on/</link>
		<comments>http://bespokeblog.wordpress.com/2011/08/14/change-i-can-count-on/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 04:25:03 +0000</pubDate>
		<dc:creator>nfitzgerald</dc:creator>
				<category><![CDATA[math]]></category>
		<category><![CDATA[coins]]></category>
		<category><![CDATA[counting]]></category>
		<category><![CDATA[estimation]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=944</guid>
		<description><![CDATA[On my first day of University five years ago, whilst shopping for dorm supplies, I bought this large beer-and-hockey themed &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/08/14/change-i-can-count-on/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=944&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>On my first day of University five years ago, whilst shopping for dorm supplies, I bought this large beer-and-hockey themed piggy bank. Since then, I have deposited any coins smaller than a quarter (ie pennies, nickels and dimes). Today, just 2 weeks shy of moving to the US to start grad school, was time to finally cash in.</p>
<div id="attachment_948" class="wp-caption alignnone" style="width: 210px"><a href="http://bespokeblog.files.wordpress.com/2011/08/imag0200.jpg"><img class="size-medium wp-image-948" title="IMAG0200" src="http://bespokeblog.files.wordpress.com/2011/08/imag0200.jpg?w=200&#038;h=300" alt="" width="200" height="300" /></a><p class="wp-caption-text">2L bottle provided for size-comparison.</p></div>
<p>Before counting, I wanted to see if I could reasonably estimate how much money there would be. I considered doing a &#8220;random sample&#8221; approach, counting the value of a small portion and scaling up to the full weight. However, unfortunately the only means at my disposal to weigh the samples was a bathroom scale inteded for weighing people in 0.1kg increments, so I didn&#8217;t think this would be accurate enough. Instead I weighed the entire piggy-bank (which came out to an impressive 4.2kg) and made some simple estimations of what the relative proportions of the coins would be as so:</p>
<p><span id="more-944"></span></p>
<p>In considering purchases which would result in me receiving small change, I assume that all values of &#8220;cents&#8221; are equally likely. I further assume that change is almost always given with the minimum number of coins heuristic. Making these two assumptions, and considering the possible values of change between $0.01 and $0.24 (since all other values will be isomorphic with the addition of some number of dollars and quarters), results in the following relative proportions: 25% dimes, 12.5% nickels and 62.5% pennies.</p>
<p>From this, and from considering the weights of each coin (dime = 1.75g, nickel = 3.95g, penny = 2.35g according to Wikipedia) I can estimate the total number of coins thus:</p>
<p><a href="http://bespokeblog.files.wordpress.com/2011/08/coin_equation.jpg"><img class="alignnone size-full wp-image-949" title="Coin_Equation" src="http://bespokeblog.files.wordpress.com/2011/08/coin_equation.jpg?w=529" alt=""   /></a></p>
<p>Using the estimated proportions, I therefore get the following estimations for the number of value of each coin type:</p>
<table border="0" rules="NONE" cellspacing="0">
<col width="178" />
<col width="86" />
<col width="86" />
<col width="86" />
<tbody>
<tr>
<td align="LEFT" width="178" height="17"></td>
<td align="LEFT" width="86"><span style="text-decoration:underline;">Dimes</span></td>
<td align="LEFT" width="86"><span style="text-decoration:underline;">Nickels</span></td>
<td align="LEFT" width="86"><span style="text-decoration:underline;">Pennies</span></td>
</tr>
<tr>
<td align="LEFT" height="17"><strong>Estimated Number:</strong></td>
<td align="RIGHT">437.5</td>
<td align="RIGHT">218.75</td>
<td align="RIGHT">1093.75</td>
</tr>
<tr>
<td align="LEFT" height="17"><strong>Estimated Proportion:</strong></td>
<td align="RIGHT">0.250</td>
<td align="RIGHT">0.125</td>
<td align="RIGHT">0.625</td>
</tr>
<tr>
<td align="LEFT" height="17"><strong>Estimated Value:</strong></td>
<td align="RIGHT">$43.75</td>
<td align="RIGHT">$10.94</td>
<td align="RIGHT">$10.94</td>
</tr>
<tr>
<td align="LEFT" height="17"><strong><br />
</strong></td>
<td align="LEFT"></td>
<td align="LEFT"></td>
<td align="LEFT"></td>
</tr>
<tr>
<td align="LEFT" height="17"><strong>Total Estimated Value:</strong></td>
<td align="RIGHT">$65.63</td>
<td align="LEFT"></td>
<td align="LEFT"></td>
</tr>
</tbody>
</table>
<p><a href="http://bespokeblog.files.wordpress.com/2011/08/imag0201.jpg"><br />
<img class="alignnone size-medium wp-image-953" title="IMAG0201" src="http://bespokeblog.files.wordpress.com/2011/08/imag0201.jpg?w=200&#038;h=300" alt="" width="200" height="300" /></a><a href="http://bespokeblog.files.wordpress.com/2011/08/imag0202.jpg"><img class="alignnone size-medium wp-image-954" title="IMAG0202" src="http://bespokeblog.files.wordpress.com/2011/08/imag0202.jpg?w=300&#038;h=200" alt="" width="300" height="200" /></a><a href="http://bespokeblog.files.wordpress.com/2011/08/imag0203.jpg"><img title="IMAG0203" src="http://bespokeblog.files.wordpress.com/2011/08/imag0203.jpg?w=300&#038;h=200" alt="" width="300" height="200" /></a>$65.63! That&#8217;s a lot of money! Let&#8217;s see how my estimations stack up to reality:</p>
<p>Final counts:</p>
<table border="0" rules="NONE" cellspacing="0">
<col width="178" />
<col width="86" />
<col width="86" />
<col width="86" />
<tbody>
<tr>
<td align="LEFT" width="178" height="17"></td>
<td align="LEFT" width="86"><span style="text-decoration:underline;">Dimes</span></td>
<td align="LEFT" width="86"><span style="text-decoration:underline;">Nickels</span></td>
<td align="LEFT" width="86"><span style="text-decoration:underline;">Pennies</span></td>
</tr>
<tr>
<td align="LEFT" height="17"><strong>Counted Number:</strong></td>
<td align="RIGHT">462</td>
<td align="RIGHT">280</td>
<td align="RIGHT">812</td>
</tr>
<tr>
<td align="LEFT" height="17"><strong>Counted Proportion:</strong></td>
<td align="RIGHT">0.297</td>
<td align="RIGHT">0.180</td>
<td align="RIGHT">0.523</td>
</tr>
<tr>
<td align="LEFT" height="17"><strong>Counted Value:</strong></td>
<td align="RIGHT">$46.20</td>
<td align="RIGHT">$14.00</td>
<td align="RIGHT">$8.12</td>
</tr>
<tr>
<td align="LEFT" height="17"><strong><br />
</strong></td>
<td align="LEFT"></td>
<td align="LEFT"></td>
<td align="LEFT"></td>
</tr>
<tr>
<td align="LEFT" height="17"><strong>Total Counted Value:</strong></td>
<td align="RIGHT">$68.32</td>
<td align="LEFT"></td>
<td align="LEFT"></td>
</tr>
</tbody>
</table>
<p>So, the final value was quite close (&lt;5% error), but I think we can put that down to fluke. Obviously, my estimated proportions were quite a bit off, although I was correct in predicting that pennies would be significantly more numerous than dimes, which were in turn significantly more numerous than nickels. Most saliently, the proportion of pennies was significantly less than predicted by my simple <em>a priori</em> method. This can likely be attributed to the tendency of pennies to be discarded or ignored which receiving change. I&#8217;m not sure why nickels would be tend to be relatively more numerous relative to dimes than I had predicted. Also interesting is that if I use the Wikipedia-listed weights of the coins multiplied by the real counts, the weight should only be around 3.8kg. Perhaps my scale was inaccurate at such a low weight (as it is designed for weighing humans).</p>
<p>Anyways, it was quite interesting to see how much small-change I had accumulated in 5 years. Tomorrow I&#8217;ll be off to the bank with 4kg of coins!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/944/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/944/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/944/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/944/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/944/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/944/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/944/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/944/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/944/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/944/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/944/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/944/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/944/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/944/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=944&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/08/14/change-i-can-count-on/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/cfc429b05eda922a72e8c71443c85a1c?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">nfitzgerald</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/08/imag0200.jpg?w=200" medium="image">
			<media:title type="html">IMAG0200</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/08/coin_equation.jpg" medium="image">
			<media:title type="html">Coin_Equation</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/08/imag0201.jpg?w=200" medium="image">
			<media:title type="html">IMAG0201</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/08/imag0202.jpg?w=300" medium="image">
			<media:title type="html">IMAG0202</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/08/imag0203.jpg?w=300" medium="image">
			<media:title type="html">IMAG0203</media:title>
		</media:content>
	</item>
		<item>
		<title>Milky Way Nights</title>
		<link>http://bespokeblog.wordpress.com/2011/07/29/milky-way-nights/</link>
		<comments>http://bespokeblog.wordpress.com/2011/07/29/milky-way-nights/#comments</comments>
		<pubDate>Fri, 29 Jul 2011 09:31:59 +0000</pubDate>
		<dc:creator>bwkeller</dc:creator>
				<category><![CDATA[astrophysics]]></category>
		<category><![CDATA[astronomy]]></category>
		<category><![CDATA[M16]]></category>
		<category><![CDATA[science]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=938</guid>
		<description><![CDATA[I just got back from the University of Calgary&#8217;s fantastic Rothney Astrophysical Observatory.  Since there is a new moon in &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/07/29/milky-way-nights/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=938&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I just got back from the University of Calgary&#8217;s fantastic <a href="http://www.ucalgary.ca/rao/">Rothney Astrophysical Observatory</a>.  Since there is a new moon in Calgary, we have had late night open houses yesterday, today, and one tomorrow from 10PM until 2AM.  Since I am exhausted, let me show you the awesome picture of the beautiful tendrils of cool dust in the <a href="http://en.wikipedia.org/wiki/Eagle_nebula">Eagle Nebula</a> we were able to capture using the 16&#8243; Clark-Milone Telescope:</p>
<div id="attachment_939" class="wp-caption aligncenter" style="width: 539px"><a href="http://bespokeblog.files.wordpress.com/2011/07/m16.png"><img class="size-full wp-image-939" title="M16" src="http://bespokeblog.files.wordpress.com/2011/07/m16.png?w=529&#038;h=528" alt="M16" width="529" height="528" /></a><p class="wp-caption-text">Messier 16, the Eagle Nebula</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/938/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/938/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/938/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=938&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/07/29/milky-way-nights/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d0736dfa302829221b9c34e01d5dbec0?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">bwkeller</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/07/m16.png" medium="image">
			<media:title type="html">M16</media:title>
		</media:content>
	</item>
		<item>
		<title>Are Password Lockers Safe?</title>
		<link>http://bespokeblog.wordpress.com/2011/07/28/are-password-lockers-safe/</link>
		<comments>http://bespokeblog.wordpress.com/2011/07/28/are-password-lockers-safe/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 06:37:33 +0000</pubDate>
		<dc:creator>bwkeller</dc:creator>
				<category><![CDATA[computer science]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[passwords]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=934</guid>
		<description><![CDATA[Well, I was hoping to make a more interesting post today, but seem to have lost the route through my &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/07/28/are-password-lockers-safe/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=934&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Well, I was hoping to make a more interesting post today, but seem to have lost the route through my cluttered mind to get to the synapses that store my github private key passphrase.  So, in an attempt to keep up the quantity if not the quality of my blogging, let me turn to this dire state of mnemonic affairs.  I can&#8217;t remember my passwords very well anymore.  I&#8217;ve always been leery of password storage utilities, but I think I need to rethink them.  I keep my machines with full disk encryption, and commit those passwords well into my memory, so I should be somewhat secure, right?  Talk me in to this, dear readers, or tell me the path of folly I am embarking upon.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/934/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/934/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/934/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/934/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/934/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/934/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/934/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/934/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/934/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/934/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/934/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/934/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/934/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/934/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=934&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/07/28/are-password-lockers-safe/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d0736dfa302829221b9c34e01d5dbec0?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">bwkeller</media:title>
		</media:content>
	</item>
		<item>
		<title>Backup Your Google Life: gback</title>
		<link>http://bespokeblog.wordpress.com/2011/07/27/backup-your-google-life-gback/</link>
		<comments>http://bespokeblog.wordpress.com/2011/07/27/backup-your-google-life-gback/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 06:47:54 +0000</pubDate>
		<dc:creator>bwkeller</dc:creator>
				<category><![CDATA[computer science]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[projects]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[cloud]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[gback]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=928</guid>
		<description><![CDATA[There was a rant that bounced up and down the tubes of the internet this week, talking about how one &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/07/27/backup-your-google-life-gback/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=928&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://bespokeblog.files.wordpress.com/2011/07/gback.png"><img class="size-medium wp-image-930 alignright" title="You should all be watching Steins;Gate " src="http://bespokeblog.files.wordpress.com/2011/07/gback.png?w=300&#038;h=300" alt="You should all be watching Steins;Gate " width="300" height="300" /></a>There was a <a href="http://www.twitlonger.com/show/bsdnia">rant</a> that bounced up and down the tubes of the internet this week, talking about how one poor fellow migrated all of his important data into google services, only to have google pull the digital rug out from under him by deleting his account after it was algorithmically flagged.  This sucks, but one thing I have always been pestered about is the importance of regular backups.  Just because google is &#8220;the cloud&#8221; doesn&#8217;t mean your data is in a deadly limbo state of potential destruction if you don&#8217;t back it up.  The problem is, backing up a machine you control is <em>damn easy</em>, while backing up your cloudified data is not. <span id="more-928"></span>With my linux machine, backing up the entire user directory is as simple as</p>
<pre>tar -cvzf /media/backupdrive/backup.tar.gz /home/myuser</pre>
<p>There isn&#8217;t anything that simple with all my google stuff.  So, I&#8217;ve decided to start working on a python and/or bash tool called gback for automatically making a backup of all your google things:  I&#8217;m going to be starting with gmail and docs, and move onto picasa and other services.  I&#8217;ve yet to lay down any code, but the project will be hosted on my github account <a href="https://github.com/bwkeller/gback">here</a>.  Updates will come as work progresses.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/928/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/928/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/928/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=928&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/07/27/backup-your-google-life-gback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d0736dfa302829221b9c34e01d5dbec0?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">bwkeller</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/07/gback.png?w=300" medium="image">
			<media:title type="html">You should all be watching Steins;Gate </media:title>
		</media:content>
	</item>
		<item>
		<title>What The Hell Is Wrong With My Computer?</title>
		<link>http://bespokeblog.wordpress.com/2011/07/26/what-the-hell-is-wrong-with-my-computer/</link>
		<comments>http://bespokeblog.wordpress.com/2011/07/26/what-the-hell-is-wrong-with-my-computer/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 16:51:43 +0000</pubDate>
		<dc:creator>bwkeller</dc:creator>
				<category><![CDATA[computer science]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[computers]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=923</guid>
		<description><![CDATA[So, after my machine ran out of battery power while suspended, I booted it up to be greeted with the &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/07/26/what-the-hell-is-wrong-with-my-computer/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=923&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>So, after my machine ran out of battery power while suspended, I booted it up to be greeted with the most strange bug I&#8217;ve ever seen on a linux machine:  All my text was screwed up.  In every application, including GDM.  It disappeared after I ran an apt-get upgrade and rebooted.  Has anyone else ever seen this bug?  I&#8217;m running Ubuntu 10.04, for the record.  Screenshot after the jump.</p>
<p><span id="more-923"></span></p>
<div id="attachment_925" class="wp-caption aligncenter" style="width: 539px"><a href="http://bespokeblog.files.wordpress.com/2011/07/screenshot.png"><img class="size-full wp-image-925" title="Screenshot" src="http://bespokeblog.files.wordpress.com/2011/07/screenshot.png?w=529&#038;h=396" alt="Screenshot" width="529" height="396" /></a><p class="wp-caption-text">TEXT, Y U NO READABLE?</p></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/923/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/923/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/923/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/923/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/923/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/923/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/923/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/923/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/923/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/923/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/923/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/923/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/923/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/923/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=923&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/07/26/what-the-hell-is-wrong-with-my-computer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d0736dfa302829221b9c34e01d5dbec0?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">bwkeller</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/07/screenshot.png" medium="image">
			<media:title type="html">Screenshot</media:title>
		</media:content>
	</item>
		<item>
		<title>Battlestations!</title>
		<link>http://bespokeblog.wordpress.com/2011/07/25/battlestations/</link>
		<comments>http://bespokeblog.wordpress.com/2011/07/25/battlestations/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 06:19:22 +0000</pubDate>
		<dc:creator>bwkeller</dc:creator>
				<category><![CDATA[computer science]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[technology]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=919</guid>
		<description><![CDATA[I&#8217;m a huge redditor, and one of my favourite little-known subreddits is r/battlestations.  It&#8217;s a nifty page where people show &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/07/25/battlestations/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=919&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a huge <a href="http://reddit.com">redditor</a>, and one of my favourite little-known subreddits is <a href="http://www.reddit.com/r/battlestations/top/">r/battlestations</a>.  It&#8217;s a nifty page where people show off their computer/desk areas and compare notes for cool monitor setups, epic workstations, and efficient office layouts.  Check it out if you want to kill some time and drool over other peoples offices. That was a short lame-o link post.  Sorry about that, I&#8217;ll be including vouchers for free nothing in the next post.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/919/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/919/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/919/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/919/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/919/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/919/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/919/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/919/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/919/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/919/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/919/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/919/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/919/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/919/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=919&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/07/25/battlestations/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d0736dfa302829221b9c34e01d5dbec0?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">bwkeller</media:title>
		</media:content>
	</item>
		<item>
		<title>Morbid Statistics &amp; The 27 Club</title>
		<link>http://bespokeblog.wordpress.com/2011/07/23/morbid-statistics-the-27-club/</link>
		<comments>http://bespokeblog.wordpress.com/2011/07/23/morbid-statistics-the-27-club/#comments</comments>
		<pubDate>Sun, 24 Jul 2011 04:57:04 +0000</pubDate>
		<dc:creator>bwkeller</dc:creator>
				<category><![CDATA[math]]></category>
		<category><![CDATA[27 Club]]></category>
		<category><![CDATA[drugs]]></category>
		<category><![CDATA[music]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=913</guid>
		<description><![CDATA[Sorry about the late post, I was out far too late yesterday evening, and I missed the last train out &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/07/23/morbid-statistics-the-27-club/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=913&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="27 Club" src="http://locomotivesdesign.files.wordpress.com/2011/01/27-club1.jpg?w=284&#038;h=251" alt="" width="284" height="251" />Sorry about the late post, I was out far too late yesterday evening, and I missed the last train out of down town.  I had to bike for 2 hours to get home, ugh.   Anyways, as I&#8217;m sure many of you are aware, Amy Winehouse died today, at the age of 27.  There is a semi-common urban legend that for celebrities, and musicians in particular, 27 is something of a cursed age.  Jimmi Hendrix, Kurt Cobain, Janis Joplin, and others all died at age 27.  I was intrigued by this idea.  It&#8217;s entirely possible that 27 is just the median age in a distribution of ages for celebrities dying from drugs and alcohol, and that this has been picked up on in the pop culture.  So, I figured I would do some back-of-the envelope type research to see if this idea is plausible.<span id="more-913"></span>What I first set out to do was get a list of celebrities who died from drug and alcohol related shenanigans. The Wikipedia had a page already set up for me, including the birth and death years for the unfortunates listed there.  So, I downloaded the xhtml for the page, and using sed and grep, pulled out the birth/death years for all the people, totalling 376 celebrities.  Here&#8217;s the distribution of ages I found:</p>
<div id="attachment_916" class="wp-caption aligncenter" style="width: 539px"><a href="http://bespokeblog.files.wordpress.com/2011/07/deaths.png"><img class="size-full wp-image-916" title="deaths" src="http://bespokeblog.files.wordpress.com/2011/07/deaths.png?w=529&#038;h=396" alt="All Celebrity Deaths" width="529" height="396" /></a><p class="wp-caption-text">Age at Death for Celebrities</p></div>
<p>In that distribution, the median age is actually 38, and the most likely age for dying from drugs or alcohol is 34.</p>
<p>But, the myth is about musicians especially, so what about them?  Thankfully, the Wikipedia article also listed the professions of the people cataloged.  The page listed a total of 72 musicians.  What I found when looking at this subset surprised me:  the most likely age for a musician to die from drugs <em>is </em>in fact 27!  The median is also much lower, at 31 years.</p>
<div id="attachment_915" class="wp-caption aligncenter" style="width: 539px"><a href="http://bespokeblog.files.wordpress.com/2011/07/musiciandeaths.png"><img class="size-full wp-image-915" title="musiciandeaths" src="http://bespokeblog.files.wordpress.com/2011/07/musiciandeaths.png?w=529&#038;h=396" alt="Musician Death Ages" width="529" height="396" /></a><p class="wp-caption-text">Age at Death for Musicians</p></div>
<p>So perhaps the 27 Club is one of the rare cases of pop culture and urban legends actually stumbling on an accurate statistical occurrence.  Naturally, take what I found with a grain of salt, as it was whipped up in an hour, using a single Wiki article as a source.  Nonetheless, it looks like 27 is indeed a bad year for musicians.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/913/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/913/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/913/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=913&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/07/23/morbid-statistics-the-27-club/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d0736dfa302829221b9c34e01d5dbec0?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">bwkeller</media:title>
		</media:content>

		<media:content url="http://locomotivesdesign.files.wordpress.com/2011/01/27-club1.jpg" medium="image">
			<media:title type="html">27 Club</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/07/deaths.png" medium="image">
			<media:title type="html">deaths</media:title>
		</media:content>

		<media:content url="http://bespokeblog.files.wordpress.com/2011/07/musiciandeaths.png" medium="image">
			<media:title type="html">musiciandeaths</media:title>
		</media:content>
	</item>
		<item>
		<title>Sunk Cost Fallacy</title>
		<link>http://bespokeblog.wordpress.com/2011/07/21/sunk-cost-fallacy/</link>
		<comments>http://bespokeblog.wordpress.com/2011/07/21/sunk-cost-fallacy/#comments</comments>
		<pubDate>Fri, 22 Jul 2011 04:52:41 +0000</pubDate>
		<dc:creator>bwkeller</dc:creator>
				<category><![CDATA[philosophy]]></category>
		<category><![CDATA[cognitive]]></category>
		<category><![CDATA[fallacy]]></category>

		<guid isPermaLink="false">http://bespokeblog.wordpress.com/?p=908</guid>
		<description><![CDATA[I consider myself to be a pretty rational person, and try to avoid the cognitive pitfalls that, as a human &#8230;<p><a href="http://bespokeblog.wordpress.com/2011/07/21/sunk-cost-fallacy/">Continue reading &#187;</a></p><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=908&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I consider myself to be a pretty rational person, and try to avoid the cognitive pitfalls that, as a human being, I am prone to falling into.  One logical fallacy that always seems to get me, no matter how much I try to banish that mode of thought, is the <em>sunk cost fallacy. </em></p>
<p>This fallacy is the idea that you&#8217;ve already invested enough time/money/whatever into something, so to stop now would be a waste.  It has its root in a number of frailties, from loss aversion to simple pride. It is a fallacy though, because how much you have invested so far in a venture has no bearing on whether that venture is going to be a success or not.  If you wouldn&#8217;t have started it, it is wasteful to continue it, rather than the opposite.</p>
<p>Despite knowing full well the fallacious nature of it, whenever I am making a big decision, it always creeps into my head.  How about you, dear readers, what logical fallacy have you had the hardest time keeping out of your mind?</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/bespokeblog.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/bespokeblog.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/bespokeblog.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/bespokeblog.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/bespokeblog.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/bespokeblog.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/bespokeblog.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/bespokeblog.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/bespokeblog.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/bespokeblog.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/bespokeblog.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/bespokeblog.wordpress.com/908/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/bespokeblog.wordpress.com/908/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/bespokeblog.wordpress.com/908/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=bespokeblog.wordpress.com&amp;blog=3972196&amp;post=908&amp;subd=bespokeblog&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://bespokeblog.wordpress.com/2011/07/21/sunk-cost-fallacy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/d0736dfa302829221b9c34e01d5dbec0?s=96&#38;d=http%3A%2F%2F1.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=X" medium="image">
			<media:title type="html">bwkeller</media:title>
		</media:content>
	</item>
	</channel>
</rss>
