<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><description>The greatest blog in the world.

  var _gaq = _gaq || [];
  _gaq.push([‘_setAccount’, ‘UA-605’+’807-11’]);
  _gaq.push([‘_trackPageview’]);

  (function() {
    var ga = document.createElement(‘script’); ga.type = ‘text/javascript’; ga.async = true;
    ga.src = (‘https:’ == document.location.protocol ? ‘https://ssl’ : ‘http://www’) + ‘.google-analytics.com/ga.js’;
    var s = document.getElementsByTagName(‘script’)[0]; s.parentNode.insertBefore(ga, s);
  })();</description><title>Bryce Kerley</title><generator>Tumblr (3.0; @bryceblog)</generator><link>http://blog.brycekerley.net/</link><feedburner:info uri="bkerley" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://tumblr.superfeedr.com/" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://brycekerley.net/rss/" /><feedburner:feedFlare href="http://add.my.yahoo.com/rss?url=http%3A%2F%2Fbrycekerley.net%2Frss%2F" src="http://us.i1.yimg.com/us.yimg.com/i/us/my/addtomyyahoo4.gif">Subscribe with My Yahoo!</feedburner:feedFlare><feedburner:feedFlare href="http://www.newsgator.com/ngs/subscriber/subext.aspx?url=http%3A%2F%2Fbrycekerley.net%2Frss%2F" src="http://www.newsgator.com/images/ngsub1.gif">Subscribe with NewsGator</feedburner:feedFlare><feedburner:feedFlare href="http://feeds.my.aol.com/add.jsp?url=http%3A%2F%2Fbrycekerley.net%2Frss%2F" src="http://o.aolcdn.com/favorites.my.aol.com/webmaster/ffclient/webroot/locale/en-US/images/myAOLButtonSmall.gif">Subscribe with My AOL</feedburner:feedFlare><feedburner:feedFlare href="http://www.bloglines.com/sub/http://brycekerley.net/rss/" src="http://www.bloglines.com/images/sub_modern11.gif">Subscribe with Bloglines</feedburner:feedFlare><feedburner:feedFlare href="http://www.netvibes.com/subscribe.php?url=http%3A%2F%2Fbrycekerley.net%2Frss%2F" src="http://www.netvibes.com/img/add2netvibes.gif">Subscribe with Netvibes</feedburner:feedFlare><feedburner:feedFlare href="http://fusion.google.com/add?feedurl=http%3A%2F%2Fbrycekerley.net%2Frss%2F" src="http://buttons.googlesyndication.com/fusion/add.gif">Subscribe with Google</feedburner:feedFlare><feedburner:feedFlare href="http://www.pageflakes.com/subscribe.aspx?url=http%3A%2F%2Fbrycekerley.net%2Frss%2F" src="http://www.pageflakes.com/ImageFile.ashx?instanceId=Static_4&amp;fileName=ATP_blu_91x17.gif">Subscribe with Pageflakes</feedburner:feedFlare><item><title>You can't use prime numbers to cheat on CRDTs</title><description>&lt;p&gt;Conflict-free Replicated Data Types, or CRDTs, are a simple way to make a data structure that works well in an eventually consistent environment, such as the &lt;a href="http://basho.com/products/riak-overview/"&gt;Riak distributed database&lt;/a&gt; my employer makes. I&amp;#8217;ve had &amp;#8220;google CRDTs&amp;#8221; on my to-do list for months; each time I had a hard time getting in to it. Last week, somebody linked me to &lt;a href="http://aphyr.com/"&gt;Kyle Kingsbury&amp;#8217;s&lt;/a&gt; Ruby implementation of them, and I was very &lt;em&gt;very&lt;/em&gt; happy to see that the README file is awesome.&lt;/p&gt;

&lt;p&gt;Seriously: &lt;a href="https://github.com/aphyr/meangirls"&gt;&lt;a href="https://github.com/aphyr/meangirls"&gt;https://github.com/aphyr/meangirls&lt;/a&gt;&lt;/a&gt; has an awesome README, easily the best CRDT resource I&amp;#8217;ve read. Thanks, Kyle and &lt;a href="http://seancribbs.com/"&gt;Sean Cribbs&lt;/a&gt;!&lt;/p&gt;

&lt;h1&gt;Counters and Primary Keys&lt;/h1&gt;

&lt;p&gt;One thing that you get with a consistent database (such as Postgres, MySQL, and Redis) is a counter that you can use to generate nice-looking IDs that are not enormous. Think the &amp;#8220;943&amp;#8221; in &lt;a href="https://github.com/blog/943-rubyconf-block-party"&gt;&lt;a href="https://github.com/blog/943-rubyconf-block-party"&gt;https://github.com/blog/943-rubyconf-block-party&lt;/a&gt;&lt;/a&gt;, vs. the &amp;#8220;182302468733018112&amp;#8221; in &lt;a href="https://twitter.com/#!/HIMANSHU/status/182302468733018112"&gt;&lt;a href="https://twitter.com/#!/HIMANSHU/status/182302468733018112"&gt;https://twitter.com/#!/HIMANSHU/status/182302468733018112&lt;/a&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;You can use a G-Counter (see the meangirls README) to count things, but it doesn&amp;#8217;t work as a primary key: if two nodes increment their entries at the same time, they&amp;#8217;ll both have the same value.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{
  'type': 'g-counter',
  'e': {
    'a': 1,
    'b': 5,
    'c': 2
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;If &lt;code&gt;a&lt;/code&gt; and &lt;code&gt;b&lt;/code&gt; increment at the same time, they&amp;#8217;ll both get a new value of &lt;code&gt;(1+5+2) + 1 = 9&lt;/code&gt;. Since the whole point of a primary key is to be unique, that won&amp;#8217;t do.&lt;/p&gt;

&lt;h1&gt;Prime numbers&lt;/h1&gt;

&lt;p&gt;Now, what if each node has a different prime number that they increment by? Let&amp;#8217;s make nodes &lt;code&gt;a&lt;/code&gt;, &lt;code&gt;b&lt;/code&gt;, and &lt;code&gt;c&lt;/code&gt; use &lt;code&gt;3&lt;/code&gt;, &lt;code&gt;5&lt;/code&gt;, and &lt;code&gt;7&lt;/code&gt;, respectively.&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;{
  'type': 'g-counter',
  'e': {
    'a': 3,
    'b': 25,
    'c': 14
  }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;This counter has a value of &lt;code&gt;(3+25+14) = 42&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;Now, if &lt;code&gt;a&lt;/code&gt; and &lt;code&gt;b&lt;/code&gt; increment at the same time, &lt;code&gt;a&lt;/code&gt; will see &lt;code&gt;(3+25+14) + 3 = 45&lt;/code&gt;, &lt;code&gt;b&lt;/code&gt; will see &lt;code&gt;(3+25+14) + 5 = 47&lt;/code&gt;. When &lt;code&gt;c&lt;/code&gt; looks later and merges them, it&amp;#8217;ll come up with &lt;code&gt;49&lt;/code&gt;, but that&amp;#8217;s not a problem: we just didn&amp;#8217;t want &lt;code&gt;a&lt;/code&gt; and &lt;code&gt;b&lt;/code&gt; to increment to the same value.&lt;/p&gt;

&lt;p&gt;Here&amp;#8217;s the problem: if &lt;code&gt;a&lt;/code&gt; increments 5 times in the same duration that &lt;code&gt;b&lt;/code&gt; increments 3 times without their versions getting merged, they&amp;#8217;ll land on the same number, since &lt;code&gt;5 * 3 = 3 * 5&lt;/code&gt;.&lt;/p&gt;

&lt;h1&gt;Big prime numbers&lt;/h1&gt;


&lt;p&gt;
You can use prime numbers larger than 
&lt;code&gt;
3
&lt;/code&gt;
 and 
&lt;code&gt;
5
&lt;/code&gt;
 to mitigate this a bit. I&amp;#8217;ll be using the RSA key generator from 
&lt;a href="http://ats.oka.nu/titaniumcore/js/crypto/RSA.sample1.html"&gt;

&lt;/a&gt;&lt;a href="http://ats.oka.nu/titaniumcore/js/crypto/RSA.sample1.html"&gt;
&lt;a href="http://ats.oka.nu/titaniumcore/js/crypto/RSA.sample1.html"&gt;http://ats.oka.nu/titaniumcore/js/crypto/RSA.sample1.html&lt;/a&gt;
&lt;/a&gt;


 set to 16 bit keys for this.
&lt;/p&gt;

&lt;p&gt;
Here are two bigger primes: 
&lt;code&gt;
a = 185399
&lt;/code&gt;
 and 
&lt;code&gt;
b = 125729
&lt;/code&gt;
. You&amp;#8217;d have to increment 
&lt;code&gt;
a
&lt;/code&gt;
 125729 times and 
&lt;code&gt;
b
&lt;/code&gt;
 185399 times without a merge to run into a conflict. Let&amp;#8217;s see the friendly numbers from the previous example (
&lt;code&gt;
c = 200819
&lt;/code&gt;
):
&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;
{
  'type': 'g-counter',
  'e': {
    'a': 185399,
    'b': 628645,
    'c': 401638
  }
}
&lt;/code&gt;&lt;/pre&gt;



&lt;p&gt;
This counter has a total of… 
&lt;code&gt;
1215682
&lt;/code&gt;
. Not quite a friendly 
&lt;code&gt;
943
&lt;/code&gt;
, but not as hostile as 
&lt;code&gt;
FD22C314836F11E19425AB7961E300D6
&lt;/code&gt;
 either.
&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/HOMEZ4NZPx0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/HOMEZ4NZPx0/20874991387</link><guid isPermaLink="false">http://blog.brycekerley.net/post/20874991387</guid><pubDate>Tue, 10 Apr 2012 20:50:16 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/20874991387</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-12-11)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1323604800"&gt;My Top 5 Artists (Week Ending 2011-12-11)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Brian+Wilson"&gt;Brian Wilson (15)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Lady+Gaga"&gt;Lady Gaga (14)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Faunts"&gt;Faunts (10)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Justice"&gt;Justice (10)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Radiohead"&gt;Radiohead (8)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/HpQ3wOl_ifI" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/HpQ3wOl_ifI/14295575212</link><guid isPermaLink="false">http://blog.brycekerley.net/post/14295575212</guid><pubDate>Thu, 15 Dec 2011 23:09:02 -0500</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/14295575212</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-12-4)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1323000000"&gt;My Top 5 Artists (Week Ending 2011-12-4)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/The+Mae+Shi"&gt;The Mae Shi (14)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Saul+Williams"&gt;Saul Williams (14)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Okkervil+River"&gt;Okkervil River (11)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Brian%2BEno%2B%2526%2BDavid%2BByrne"&gt;Brian Eno &amp; David Byrne (11)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Fever+Ray"&gt;Fever Ray (10)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/GocNMhLWV1A" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/GocNMhLWV1A/14111184677</link><guid isPermaLink="false">http://blog.brycekerley.net/post/14111184677</guid><pubDate>Mon, 12 Dec 2011 03:50:19 -0500</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/14111184677</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-11-27)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1322395200"&gt;My Top 5 Artists (Week Ending 2011-11-27)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/The+Mountain+Goats"&gt;The Mountain Goats (38)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Saul+Williams"&gt;Saul Williams (33)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Peter+Gabriel"&gt;Peter Gabriel (32)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Ladytron"&gt;Ladytron (32)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Mos+Def"&gt;Mos Def (20)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/ZSJfxwWyN0k" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/ZSJfxwWyN0k/13495506425</link><guid isPermaLink="false">http://blog.brycekerley.net/post/13495506425</guid><pubDate>Tue, 29 Nov 2011 08:58:22 -0500</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/13495506425</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-11-20)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1321790400"&gt;My Top 5 Artists (Week Ending 2011-11-20)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Nero"&gt;Nero (41)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Saul+Williams"&gt;Saul Williams (29)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Wavves"&gt;Wavves (22)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Justice"&gt;Justice (14)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Ravi+Shankar"&gt;Ravi Shankar (12)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/3c403bWd9Ko" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/3c403bWd9Ko/13158684749</link><guid isPermaLink="false">http://blog.brycekerley.net/post/13158684749</guid><pubDate>Tue, 22 Nov 2011 14:12:59 -0500</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/13158684749</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-11-13)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1321185600"&gt;My Top 5 Artists (Week Ending 2011-11-13)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Spoon"&gt;Spoon (140)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/J%C3%B3hann+J%C3%B3hannsson"&gt;Jóhann Jóhannsson (17)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Peter+Gabriel"&gt;Peter Gabriel (16)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Steve+Reich"&gt;Steve Reich (14)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Das+Racist"&gt;Das Racist (10)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/JixaI5P7IhM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/JixaI5P7IhM/12876545828</link><guid isPermaLink="false">http://blog.brycekerley.net/post/12876545828</guid><pubDate>Wed, 16 Nov 2011 08:41:05 -0500</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/12876545828</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-11-6)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1320580800"&gt;My Top 5 Artists (Week Ending 2011-11-6)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Justice"&gt;Justice (25)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Das+Racist"&gt;Das Racist (19)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/The+Streets"&gt;The Streets (14)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Vybz+Kartel"&gt;Vybz Kartel (12)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Spoon"&gt;Spoon (11)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/6VXzp7aj4JQ" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/6VXzp7aj4JQ/12545939851</link><guid isPermaLink="false">http://blog.brycekerley.net/post/12545939851</guid><pubDate>Wed, 09 Nov 2011 03:39:11 -0500</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/12545939851</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-10-30)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1319976000"&gt;My Top 5 Artists (Week Ending 2011-10-30)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Das+Racist"&gt;Das Racist (42)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Spoon"&gt;Spoon (20)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/The+Flaming+Lips"&gt;The Flaming Lips (18)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Ladytron"&gt;Ladytron (16)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Mos+Def"&gt;Mos Def (16)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/f9QWpNDPxPo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/f9QWpNDPxPo/12388745590</link><guid isPermaLink="false">http://blog.brycekerley.net/post/12388745590</guid><pubDate>Sat, 05 Nov 2011 22:32:28 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/12388745590</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-10-16)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1318766400"&gt;My Top 5 Artists (Week Ending 2011-10-16)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Peter+Gabriel"&gt;Peter Gabriel (37)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Spoon"&gt;Spoon (35)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Ladytron"&gt;Ladytron (24)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Dio"&gt;Dio (24)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Daft+Punk"&gt;Daft Punk (22)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/vgjKbi4yfvE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/vgjKbi4yfvE/11592444113</link><guid isPermaLink="false">http://blog.brycekerley.net/post/11592444113</guid><pubDate>Tue, 18 Oct 2011 00:22:56 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/11592444113</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-10-9)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1318161600"&gt;My Top 5 Artists (Week Ending 2011-10-9)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Carter+Burwell"&gt;Carter Burwell (22)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/DJ+Shadow"&gt;DJ Shadow (18)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Aperture+Science+Psychoacoustics+Laboratory"&gt;Aperture Science Psychoacoustics Laboratory (16)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Jim+Guthrie"&gt;Jim Guthrie (15)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Bad+Religion"&gt;Bad Religion (14)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/W8scec11-ig" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/W8scec11-ig/11436794461</link><guid isPermaLink="false">http://blog.brycekerley.net/post/11436794461</guid><pubDate>Fri, 14 Oct 2011 15:06:38 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/11436794461</feedburner:origLink></item><item><title>Photo</title><description>&lt;img src="http://25.media.tumblr.com/tumblr_lrfvt8d2JR1qbkrjxo1_500.png"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/O3qWj4RATuA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/O3qWj4RATuA/10150668737</link><guid isPermaLink="false">http://blog.brycekerley.net/post/10150668737</guid><pubDate>Mon, 12 Sep 2011 22:19:56 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/10150668737</feedburner:origLink></item><item><title>globochem:

Anamanaguchi - Rainbow in the Dark (Das Racist...</title><description>&lt;embed type="application/x-shockwave-flash" src="http://assets.tumblr.com/swf/audio_player_black.swf?audio_file=http://www.tumblr.com/audio_file/9531576617/tumblr_l6m6xnTAkB1qzujsg&amp;color=FFFFFF" height="27" width="207" quality="best" wmode="opaque"&gt;&lt;/embed&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://globochem.tumblr.com/post/901756865" class="tumblr_blog"&gt;globochem&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;Anamanaguchi - Rainbow in the Dark (Das Racist Remix)&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;i’m in the building, building with belding&lt;/p&gt;
&lt;p&gt;&lt;img src="http://media.tumblr.com/tumblr_l6m6w8psjS1qzuvzb.gif"/&gt;&lt;/p&gt;
&lt;p&gt;somethin like a neo-rap zack attack&lt;/p&gt;&lt;/blockquote&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/a28p0_8705Y" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/a28p0_8705Y/9531576617</link><guid isPermaLink="false">http://blog.brycekerley.net/post/9531576617</guid><pubDate>Sun, 28 Aug 2011 23:14:25 -0400</pubDate><category>music</category><feedburner:origLink>http://blog.brycekerley.net/post/9531576617</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-8-21)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1313928000"&gt;My Top 5 Artists (Week Ending 2011-8-21)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/The+Very+Best"&gt;The Very Best (25)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Rush"&gt;Rush (12)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/The+Beach+Boys"&gt;The Beach Boys (4)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Chromeo"&gt;Chromeo (2)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Radiohead"&gt;Radiohead (2)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/g3LuC3saSXM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/g3LuC3saSXM/9360429504</link><guid isPermaLink="false">http://blog.brycekerley.net/post/9360429504</guid><pubDate>Thu, 25 Aug 2011 02:41:27 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/9360429504</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-8-14)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1313323200"&gt;My Top 5 Artists (Week Ending 2011-8-14)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Belle+and+Sebastian"&gt;Belle and Sebastian (11)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Jim+Guthrie"&gt;Jim Guthrie (10)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Kanye+West"&gt;Kanye West (10)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Dio"&gt;Dio (9)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Radiohead"&gt;Radiohead (8)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/mqwTbiX7zZs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/mqwTbiX7zZs/9147673354</link><guid isPermaLink="false">http://blog.brycekerley.net/post/9147673354</guid><pubDate>Sat, 20 Aug 2011 02:07:31 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/9147673354</feedburner:origLink></item><item><title>Car Review: 2011 Chevrolet Cruze</title><description>&lt;p&gt;&lt;em&gt;The cars used in this review were provided by General Motors.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;The Chevrolet Cruze is what I would consider to be an &amp;#8220;compact car;&amp;#8221; it&amp;#8217;s not frighteningly big, not frighteningly small, good on gas, and is the kind of car I would drive to work in if I had a commute.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.flickr.com/photos/bonzoesc/5935153132/" title="Cruze 3/4 by BonzoESC, on Flickr"&gt;&lt;img src="http://farm7.static.flickr.com/6021/5935153132_5fe2bc8205_z.jpg" width="640" height="480" alt="Cruze 3/4"/&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Most of my impressions are from a weekend where I drove from Miami to Melbourne, three hours each way. The trip went like this:&lt;/p&gt;
&lt;ol&gt;&lt;li&gt;Use switchblade key to open trunk.
&lt;/li&gt;&lt;li&gt;Load trunk with bags, notice that there&amp;#8217;s slightly more room than in the trunk of my 1997 Mitsubishi Mirage, much more room than the 2011 Chrysler 200 Convertible or the 2009 Chevrolet Corvette Convertible, and much less room than the Ford Crown Victoria Police Interceptor used for taxis in Miami.
&lt;/li&gt;&lt;li&gt;Close trunk.
&lt;/li&gt;&lt;li&gt;Unlock car, sit down, and buckle up (always buckle your seat belt when you enter a car or truck).
&lt;/li&gt;&lt;li&gt;Plug iPhone 3GS into armrest for charging and music.
&lt;/li&gt;&lt;li&gt;Start car, drive away.
&lt;/li&gt;&lt;/ol&gt;&lt;p&gt;The driving experience of the &amp;#8220;LTZ RS&amp;#8221; version I had was pretty standard. It didn&amp;#8217;t feel floaty, shaky, or otherwise frightening at highway speeds in the least; but at the same time it didn&amp;#8217;t have a ton of power to spare for passing. I suspect I&amp;#8217;d enjoy the manual transmission version more on this front, since the auto is slow, even when manually commanded (although it does have six gears). Coming off of a stop, there&amp;#8217;s a sweet spot above 3500 rpm where you can feel the extra power from the turbo, but it&amp;#8217;s not a sports car by any means. This also means that it&amp;#8217;s not loud and that the suspension isn&amp;#8217;t hair-raising and jittery, which is nice.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.flickr.com/photos/bonzoesc/5934591871/" title="Cruze and Corvette by BonzoESC, on Flickr"&gt;&lt;img src="http://farm7.static.flickr.com/6014/5934591871_d81894c844_z.jpg" width="640" height="480" alt="Cruze and Corvette"/&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The interior is quite nice for the size of the car; it&amp;#8217;s better than the &lt;a href="/post/1011640522/car-review-toyota-prius-2010"&gt;2010 Prius&lt;/a&gt;, but not the &lt;a href="/post/1029472059/car-review-2009-mercedes-benz-c300"&gt;2009&amp;#160;C-klasse&lt;/a&gt;. The fabric covering on the dashboard looks nice, and doesn&amp;#8217;t feel as hot as a plastic dashboard does after a day in the sun. The leather seats were okay, although I think fabric ones would be nicer in Florida. The instruments are easy to read, but I think the VFD display between the gauges could stand to show a bit more information.&lt;/p&gt;

&lt;p&gt;In particular, while the display does give you some nice options such as the next navigation item, average fuel economy, and range until empty, it could stand to maybe put two things on the same page, provide an instantaneous fuel economy readout, and maybe a bit of audio information.&lt;/p&gt;

&lt;p&gt;The OnStar navigation works, but it&amp;#8217;s a bit janky and slow to get it set up. It&amp;#8217;s nice that the car doesn&amp;#8217;t store any map data that will be out of date long before it&amp;#8217;s actually loaded into the car, but calling OnStar and using voice recognition to load in a new route, and being unable to quickly recover from a missed turn is pretty lame compared to what you see on a cell phone or other cars with navigation.&lt;/p&gt;

&lt;p&gt;The audio system was pretty reasonable; it sounded fine, the XM worked well, but browsing a large collection (&amp;gt; 100 albums) on my iPhone was hard, since there&amp;#8217;s no voice search, just a four-line screen and a dial to page through it. Dialing the phone over Bluetooth was also a dicey proposition; I never was able to call somebody by name (including difficult entries such as &amp;#8220;Home&amp;#8221; or &amp;#8220;Shawn Baker,&amp;#8221;) and had to use the dial to pick from the whole phone book or recent call lists pretty often. My #1 annoyance was that the navigation system wouldn&amp;#8217;t duck out in a phone call like the stereo would, so everyone got an earful of turn-by-turn directions.&lt;/p&gt;

&lt;p&gt;Since it&amp;#8217;s a compact car, I didn&amp;#8217;t try and put four 6&amp;#8217; guys in it for a trip to Epcot; my parents got the vehicle for the day, and liked it. My dad in particular said that he&amp;#8217;d consider one once the reliability is a known factor, and that him and my mom didn&amp;#8217;t have any really problems with it around town.&lt;/p&gt;

&lt;p&gt;I didn&amp;#8217;t see &lt;a href="/post/1011640522/car-review-toyota-prius-2010"&gt;&lt;em&gt;fantastic&lt;/em&gt; gas mileage&lt;/a&gt; during my travels, but did get about 35mpg on the highway with A/C on. Other than that, there&amp;#8217;s not much to say; it&amp;#8217;s a quietly competent compact car, with nice toys inside.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.flickr.com/photos/bonzoesc/5935153516/" title="Cruze Front by BonzoESC, on Flickr"&gt;&lt;img src="http://farm7.static.flickr.com/6008/5935153516_116c7ff031_z.jpg" width="480" height="640" alt="Cruze Front"/&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/Ez8OgWEgBf4" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/Ez8OgWEgBf4/7589239955</link><guid isPermaLink="false">http://blog.brycekerley.net/post/7589239955</guid><pubDate>Wed, 13 Jul 2011 18:35:00 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/7589239955</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-6-26)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1309089600"&gt;My Top 5 Artists (Week Ending 2011-6-26)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Beastie+Boys"&gt;Beastie Boys (32)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Cee+Lo+Green"&gt;Cee Lo Green (14)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Faunts"&gt;Faunts (13)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Sufjan+Stevens"&gt;Sufjan Stevens (11)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Dio"&gt;Dio (4)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/5OUV-4b8YU4" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/5OUV-4b8YU4/7077940285</link><guid isPermaLink="false">http://blog.brycekerley.net/post/7077940285</guid><pubDate>Thu, 30 Jun 2011 10:28:08 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/7077940285</feedburner:origLink></item><item><title>Short BusyCal Review</title><description>&lt;p&gt;iCal annoyed me with frequent error messages about Google&amp;#8217;s janky-ass calendar service being occasionally unreachable. On occasion, these messages would block the UI in such a way that required me to force-quit iCal.&lt;/p&gt;

&lt;p&gt;BusyCal doesn&amp;#8217;t! I&amp;#8217;m willing to overlook some UI strangeness (goofy panels, fonts that aren&amp;#8217;t pixel-perfect to iCal) for this.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://busymac.com/?utm_source=bryceblog&amp;amp;utm_medium=http&amp;amp;utm_campaign=review"&gt;Try it for 30 days perhaps!&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;This review is based on my experiences reviewing BusyCal during the 30-day trial period. I have not received any compensation, and nobody affiliated with BusyMac contacted me prior to publication.&lt;/em&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/AiM89qHu_Hk" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/AiM89qHu_Hk/6770490247</link><guid isPermaLink="false">http://blog.brycekerley.net/post/6770490247</guid><pubDate>Tue, 21 Jun 2011 19:00:53 -0400</pubDate><category>review</category><category>busycal</category><category>mac</category><category>software</category><category>calendar</category><category>ical</category><feedburner:origLink>http://blog.brycekerley.net/post/6770490247</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-6-5)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1307275200"&gt;My Top 5 Artists (Week Ending 2011-6-5)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Faunts"&gt;Faunts (69)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Metallica"&gt;Metallica (21)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Daft+Punk"&gt;Daft Punk (11)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Brian+Eno"&gt;Brian Eno (10)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/a-ha"&gt;a-ha (2)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/71jtpFSerr8" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/71jtpFSerr8/6309980793</link><guid isPermaLink="false">http://blog.brycekerley.net/post/6309980793</guid><pubDate>Wed, 08 Jun 2011 04:16:59 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/6309980793</feedburner:origLink></item><item><title>My Top 5 Artists (Week Ending 2011-5-29)</title><description>&lt;a href="http://www.last.fm/user/bonzoesc/charts?charttype=weekly&amp;date_to=1306670400"&gt;My Top 5 Artists (Week Ending 2011-5-29)&lt;/a&gt;: &lt;ol&gt;&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Rush"&gt;Rush (17)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Lady+Gaga"&gt;Lady Gaga (14)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Hot+Chip"&gt;Hot Chip (10)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/jj"&gt;jj (9)&lt;/a&gt; &lt;/li&gt;
&lt;li&gt;
&lt;a rel="nofollow" target="_blank" href="http://www.last.fm/music/Faunts"&gt;Faunts (3)&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;&lt;p&gt;Imported from &lt;a rel="nofollow" target="_blank" href="http://joelaz.com/post/23488847/last-fm-tumblr-weekly-top-artists"&gt;Last.fm Tumblr&lt;/a&gt; by &lt;a rel="nofollow" target="_blank" href="http://joelaz.com"&gt;JoeLaz&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/Ar38AQOEObI" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/Ar38AQOEObI/6188195890</link><guid isPermaLink="false">http://blog.brycekerley.net/post/6188195890</guid><pubDate>Sat, 04 Jun 2011 21:15:52 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/6188195890</feedburner:origLink></item><item><title>New Jargon for Gadget Blogs</title><description>&lt;p&gt;I read a troubling article today suggesting that a plastic mock-up containing a printed-on screen and no electronics was a product. With that in mind, let&amp;#8217;s clarify what wording should be used in this situation:&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&amp;#8220;make-believe:&amp;#8221; a thing that doesn&amp;#8217;t work, has a simulated screen, or contains no electronics.&lt;/li&gt;
&lt;li&gt;&amp;#8220;pretended:&amp;#8221; unveiling a make-believe product&lt;/li&gt;
&lt;li&gt;&amp;#8220;playing with toys:&amp;#8221; hands-on &amp;#8220;usage&amp;#8221; of a make-believe product &lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;&lt;a href="http://www.engadget.com/2011/05/30/asus-targets-christmas-ice-cream-sandwich-for-padfone-launch-v/"&gt;For example:&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Wrong:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;We just got to spend some quality time with ASUS&amp;#8217; newly unveiled &lt;a href="http://www.engadget.com/2011/05/30/asus-announced-padfone/"&gt;Padfone&lt;/a&gt; and you can see the smartphone that doubles up as a tablet on video after the break.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Right:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;We just got to have playtime with ASUS&amp;#8217;s newly pretended &lt;a href="http://www.engadget.com/2011/05/30/asus-announced-padfone/"&gt;Padfone&lt;/a&gt; and you can see the make-believe smartphone that doubles up as a make-believe tablet on video of us playing with plastic toys after the break.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Thanks for your cooperation.&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/bkerley/~4/LyYYssAMTnc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/bkerley/~3/LyYYssAMTnc/6004493100</link><guid isPermaLink="false">http://blog.brycekerley.net/post/6004493100</guid><pubDate>Mon, 30 May 2011 12:39:41 -0400</pubDate><feedburner:origLink>http://blog.brycekerley.net/post/6004493100</feedburner:origLink></item></channel></rss>

