<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><description></description><title>pb30</title><generator>Tumblr (3.0; @pb30)</generator><link>https://log.pb30.com/</link><item><title>Untidy beds may keep us healthy - BBC</title><description>&lt;a href="http://news.bbc.co.uk/2/hi/4181629.stm"&gt;Untidy beds may keep us healthy - BBC&lt;/a&gt;: &lt;blockquote&gt;
  &lt;p&gt;Failing to make your bed in the morning may actually help keep you healthy, scientists believe.
  Research suggests that while an unmade bed may look scruffy it is also unappealing to house dust mites thought to cause asthma and other allergies.&lt;/p&gt;
&lt;/blockquote&gt;</description><link>https://log.pb30.com/post/601151858</link><guid>https://log.pb30.com/post/601151858</guid><pubDate>Sat, 15 May 2010 11:08:46 -0500</pubDate></item><item><title>Dunning–Kruger Effect</title><description>&lt;a href="http://en.wikipedia.org/wiki/Dunning–Kruger_effect"&gt;Dunning–Kruger Effect&lt;/a&gt;: &lt;blockquote&gt;
  &lt;p&gt;The Dunning–Kruger effect is a cognitive bias in which “people reach erroneous conclusions and make unfortunate choices but their incompetence robs them of the metacognitive ability to realize it.” The unskilled therefore suffer from illusory superiority, rating their own ability as above average, much higher than in actuality; by contrast, the highly skilled underrate their abilities, suffering from illusory inferiority.&lt;/p&gt;
  
  &lt;p&gt;“In the modern world the stupid are cocksure while the intelligent are full of doubt.”&lt;/p&gt;
  
  &lt;blockquote&gt;
    &lt;p&gt;Bertrand Russel&lt;/p&gt;
  &lt;/blockquote&gt;
&lt;/blockquote&gt;</description><link>https://log.pb30.com/post/601080713</link><guid>https://log.pb30.com/post/601080713</guid><pubDate>Sat, 15 May 2010 10:36:48 -0500</pubDate></item><item><title>How to convert email addresses into name, age, ethnicity, sexual orientation     </title><description>&lt;a href="http://blog.cubeofm.com/how-to-convert-email-addresses-into-name-age"&gt;How to convert email addresses into name, age, ethnicity, sexual orientation     &lt;/a&gt;: &lt;blockquote&gt;
  &lt;p&gt;Save your email list as a CSV file (just comma separate those email addresses). Upload this file to your facebook account as if you wanted to add them as friends. Voila, facebook will give you all the profiles of all those users (in my test, about 80% of my email lists have facebook profiles). Now, click through each profile, and because of the new default facebook settings, which makes all information public, about 95% of the user info is available for you to harvest.&lt;/p&gt;
&lt;/blockquote&gt;</description><link>https://log.pb30.com/post/601004522</link><guid>https://log.pb30.com/post/601004522</guid><pubDate>Sat, 15 May 2010 10:01:46 -0500</pubDate></item><item><title>Install Wordpress in SVN using svn:externals</title><description>&lt;p&gt;&lt;em&gt;Note: This post requires working knowledge of SVN&lt;/em&gt;&lt;/p&gt;

&lt;h3&gt;Goals&lt;/h3&gt;

&lt;ul&gt;&lt;li&gt;Keep a complete Wordpress install in your SVN&lt;/li&gt;
&lt;li&gt;Have the Wordpress core files checked out from their SVN&lt;/li&gt;
&lt;li&gt;Have as many plugins as possible checked out from their SVN&lt;/li&gt;
&lt;li&gt;Still provide versioning of your custom themes/plugins&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;Other Methods&lt;/h3&gt;

&lt;ul&gt;&lt;li&gt;Copying/exporting the Wordpress files into your SVN

&lt;ul&gt;&lt;li&gt;Upgrading requires manually copying all the files over again&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Checkout a copy of Wordpress

&lt;ul&gt;&lt;li&gt;Directory will be a working copy of their SVN, any changes you make can&amp;rsquo;t be versioned in your SVN&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h3&gt;Benefits&lt;/h3&gt;

&lt;ul&gt;&lt;li&gt;Easy updates, change one line and run a command to download all the changes from a new version&lt;/li&gt;
&lt;li&gt;Allows you to keep your own themes or plugins in your SVN&lt;/li&gt;
&lt;li&gt;Easy to copy the same Wordpress install on multiple computers&lt;/li&gt;
&lt;li&gt;If you need to hack core Wordpress/plugin files, any new changes from new versions will be merged, or provide you with an opportunity to resolve any conflicts.

&lt;ul&gt;&lt;li&gt;Note that changes to these files cannot be committed to your SVN, however this should encourage you to not hack core files&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;h2&gt;&lt;!-- more --&gt;&lt;/h2&gt;

&lt;h3&gt;Setup Directories&lt;/h3&gt;

&lt;ul&gt;&lt;li&gt;Create a new directory for the blog in SVN

&lt;ul&gt;&lt;li&gt;&lt;code&gt;svn mkdir &lt;a href="http://svn.example.com/projects/wpblog"&gt;http://svn.example.com/projects/wpblog&lt;/a&gt; -m "Creating blog directory"&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Make directory on server

&lt;ul&gt;&lt;li&gt;&lt;code&gt;mkdir blog&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;cd blog&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Checkout directory from SVN

&lt;ul&gt;&lt;li&gt;&lt;code&gt;svn co &lt;a href="http://svn.example.com/projects/wpblog"&gt;http://svn.example.com/projects/wpblog&lt;/a&gt; .&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;hr&gt;&lt;h3&gt;Get Wordpress&lt;/h3&gt;

&lt;ul&gt;&lt;li&gt;Add svn:externals entry for the core of Wordpress

&lt;ul&gt;&lt;li&gt;&lt;code&gt;svn pe svn:externals .&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Add the line:

&lt;ul&gt;&lt;li&gt;&lt;code&gt;core &lt;a href="http://core.svn.wordpress.org/tags/2.9.2/"&gt;http://core.svn.wordpress.org/tags/2.9.2/&lt;/a&gt;&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Replace &lt;code&gt;2.9.2&lt;/code&gt; with the latest version/tag from &lt;a href="http://core.svn.wordpress.org/tags/"&gt;here&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Commit new externals property

&lt;ul&gt;&lt;li&gt;&lt;code&gt;svn ci -m "Add externals for Wordpress"&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Download the latest version of Wordpress by running &lt;code&gt;svn up&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;hr&gt;&lt;h3&gt;Setup &lt;code&gt;wp-content&lt;/code&gt;&lt;/h3&gt;

&lt;p&gt;Since we want to keep our theme, plugins, and uploads under SVN, we need to make a new wp-content directory outside of core. Export the current directory from core by running:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;code&gt;svn export core/wp-content wp-content&lt;/code&gt;

&lt;ul&gt;&lt;li&gt;This will copy over all the files except the .svn directories used by the Wordpress repository&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Then add the directory and commit it to SVN

&lt;ul&gt;&lt;li&gt;&lt;code&gt;svn add wp-content&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;svn ci wp-content/ -m "Add wp-content"&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;hr&gt;&lt;h3&gt;&lt;code&gt;wp-config.php&lt;/code&gt;&lt;/h3&gt;

&lt;p&gt;Next step is to copy our wp-config.php outside of the core directory&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;&lt;code&gt;cp core/wp-config-sample.php wp-config.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Add and commit the file to SVN before we make any changes

&lt;ul&gt;&lt;li&gt;&lt;code&gt;svn add wp-config.php&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;svn ci wp-config.php -m "Add default wp-config.php"&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Edit the file as usual with proper database settings or other options&lt;/li&gt;
&lt;li&gt;Add the following lines above the &lt;code&gt;require_once(ABSPATH . 'wp-settings.php');&lt;/code&gt; line:

&lt;ul&gt;&lt;li&gt;&lt;code&gt;define('WP_CONTENT_DIR', realpath(ABSPATH.'../wp-content/'));&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;define('WP_CONTENT_URL', 'http://www.example.com/blog/wp-content');&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;define('WP_HOME', 'http://www.example.com/blog');&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Commit the changes: &lt;code&gt;svn ci wp-config.php -m "Add database and wp-content settings"&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;hr&gt;&lt;h3&gt;&lt;code&gt;.htaccess&lt;/code&gt;&lt;/h3&gt;

&lt;p&gt;Create an &lt;code&gt;.htaccess&lt;/code&gt; file in the &lt;code&gt;blog&lt;/code&gt; directory with the following:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;# BEGIN WordPress
&amp;lt;IfModule mod_rewrite.c&amp;gt;
    RewriteEngine On
    # Base is the URL path of the home directory
    RewriteBase /blog/
    RewriteRule ^$ core/index.php [L]
    # Skip real files and directories
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    # Otherwise send it to WordPress
    RewriteRule .* core/index.php [L]
&amp;lt;/IfModule&amp;gt;
# END WordPress
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;To prevent Wordpress from overwriting this file, change its permissions by running &lt;code&gt;chmod u-w .htaccess&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Then add and commit it to SVN&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;svn add .htacess
svn ci .htaccess -m "Add .htaccess"
&lt;/code&gt;&lt;/pre&gt;

&lt;hr&gt;&lt;h3&gt;Setup Wordpress&lt;/h3&gt;

&lt;p&gt;Go to &lt;code&gt;&lt;a href="http://www.example.com/blog/"&gt;http://www.example.com/blog/&lt;/a&gt;&lt;/code&gt; and walk through the standard Wordpress install process.&lt;/p&gt;

&lt;h3&gt;Install Plugins&lt;/h3&gt;

&lt;p&gt;Plugins can also be installed using the &lt;code&gt;svn:externals&lt;/code&gt; method. Many of the common Wordpress plugins have a SVN repo at &lt;a href="http://plugins.svn.wordpress.org/"&gt;http://plugins.svn.wordpress.org/&lt;/a&gt;. As an example, lets install the All in One SEO Pack:&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;Find and click &lt;code&gt;all-in-one-seo-pack&lt;/code&gt; in the list from the above link&lt;/li&gt;
&lt;li&gt;You have two options, you can select &lt;code&gt;trunk&lt;/code&gt; to always have the latest version of the plugin, or go under &lt;code&gt;tags&lt;/code&gt; and click the latest version at the bottom. Copy the URL.&lt;/li&gt;
&lt;li&gt;Navigate into the plugins folder in your custom &lt;code&gt;wp-content&lt;/code&gt;

&lt;ul&gt;&lt;li&gt;&lt;code&gt;cd wp-content/plugins/&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Add the &lt;code&gt;svn:externals&lt;/code&gt; entry for the plugin:

&lt;ul&gt;&lt;li&gt;&lt;code&gt;svn pe svn:externals .&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Add the line: &lt;code&gt;all-in-one-seo-pack &lt;a href="http://plugins.svn.wordpress.org/all-in-one-seo-pack/tags/1.6.9/"&gt;http://plugins.svn.wordpress.org/all-in-one-seo-pack/tags/1.6.9/&lt;/a&gt;&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;Commit the new property and run update to download the plugin

&lt;ul&gt;&lt;li&gt;&lt;code&gt;svn ci -m "Add all-in-one-seo-pack"&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;svn up&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;p&gt;Repeat the process for any other plugins&lt;/p&gt;

&lt;hr&gt;&lt;h3&gt;Updating Wordpress or Plugins&lt;/h3&gt;

&lt;p&gt;When a new version of Wordpress or a plugin is released, updating is very easy. If you used the &lt;code&gt;trunk&lt;/code&gt; URL, running &lt;code&gt;svn up&lt;/code&gt; will download all of the changes. If you used &lt;code&gt;tag&lt;/code&gt; URL&amp;rsquo;s, &lt;code&gt;svn up&lt;/code&gt; will download all the updates only after changing &lt;code&gt;svn:externals&lt;/code&gt; to the latest version.&lt;/p&gt;

&lt;ul&gt;&lt;li&gt;From the blog root: &lt;code&gt;svn pe svn:externals .&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Change the version number after &lt;code&gt;tags&lt;/code&gt; to the latest release&lt;/li&gt;
&lt;li&gt;Save and commit the property: &lt;code&gt;svn ci -m "Update Wordpress to #.#.#"&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;Get the updates: &lt;code&gt;svn up&lt;/code&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;hr&gt;&lt;h3&gt;Other Resources&lt;/h3&gt;

&lt;ul&gt;&lt;li&gt;&lt;a href="http://freepressblog.org/2009/07/26/svn-externals-with-wordpress/"&gt;&amp;lsquo;svn:externals with WordPress&amp;rsquo; from FreePress Blog&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</description><link>https://log.pb30.com/post/565889524</link><guid>https://log.pb30.com/post/565889524</guid><pubDate>Sun, 02 May 2010 10:35:00 -0500</pubDate></item><item><title>XAuth</title><description>&lt;p&gt;&lt;a href="http://stakeventures.com/articles/2010/04/19/xauth-a-useful-service-with-a-poor-name"&gt;StakeVentures&lt;/a&gt; has a good article on the new XAuth stardard/service&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;The problem that this aims to fix is really a UI one, not a security one. If you know the user already uses Google accounts and Meebo, there is no need to over clutter your user interface with login buttons to 40 different social networks.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;The article includes some sample code for both parties, and a key criticism:&lt;/p&gt;

&lt;blockquote&gt;
  &lt;p&gt;I find probably the biggest issue with XAuth is the choice of name. XAuth is not an authentication protocol. I would call it a discovery protocol. It has more in common with WebFinger (again in a complimentary way) than with authentication protocols like OpenID and OAuth.&lt;/p&gt;
  
  &lt;p&gt;I also think the choice of Extenders and Retrievers is confusing. I think using Provider and Client would be clearer. Lets not invent more terminology if it isn’t necessary.&lt;/p&gt;
&lt;/blockquote&gt;</description><link>https://log.pb30.com/post/539522594</link><guid>https://log.pb30.com/post/539522594</guid><pubDate>Wed, 21 Apr 2010 19:58:03 -0500</pubDate></item><item><title>HTML5 presentation</title><description>&lt;a href="http://apirocks.com/html5/html5.html"&gt;HTML5 presentation&lt;/a&gt;: &lt;p&gt;Demo of upcoming HTML5/CSS3 features written with HTML5. Best viewed in Chrome.&lt;/p&gt;</description><link>https://log.pb30.com/post/529010278</link><guid>https://log.pb30.com/post/529010278</guid><pubDate>Sat, 17 Apr 2010 16:33:32 -0500</pubDate></item><item><title>Snacksquare: A Foursquare Directory Of Deals And Venues</title><description>&lt;a href="http://snacksquare.com/"&gt;Snacksquare: A Foursquare Directory Of Deals And Venues&lt;/a&gt;: &lt;blockquote&gt;
  &lt;p&gt;Select a city and it shows you all the venues currently offering deals on a Google map, as well as by badge.&lt;/p&gt;
&lt;/blockquote&gt;</description><link>https://log.pb30.com/post/524670250</link><guid>https://log.pb30.com/post/524670250</guid><pubDate>Thu, 15 Apr 2010 21:03:19 -0500</pubDate></item><item><title>webdesktoplife:

The perfect iPad stand - you probably have one...</title><description>&lt;img src="https://64.media.tumblr.com/tumblr_l0py1fr1iq1qzxzqbo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://webdesktoplife.com/post/513291136/the-perfect-ipad-stand-you-probably-have-one" class="tumblr_blog"&gt;webdesktoplife&lt;/a&gt;:&lt;/p&gt;

&lt;blockquote&gt;&lt;p&gt;The perfect iPad stand - you probably have one already.&lt;/p&gt;&lt;/blockquote&gt;</description><link>https://log.pb30.com/post/513419950</link><guid>https://log.pb30.com/post/513419950</guid><pubDate>Sun, 11 Apr 2010 11:46:46 -0500</pubDate></item><item><title>“Simplifying the interface of the terminal would not be accepted by most users because, as...</title><description>&lt;blockquote&gt;&lt;blockquote&gt;“Simplifying the interface of the terminal would not be accepted by most users because, as ethnographic studies show, they take pride on manipulating Bloomberg’s current “complex” interface. The pain inflicted by blatant UI flaws such as black background color and yellow and orange text is strangely transformed into the rewarding experience of feeling and looking like a hard-core professional.”&lt;/blockquote&gt; &lt;p&gt;— &lt;a href="http://uxmag.com/design/the-impossible-bloomberg-makeover"&gt;UX Magazine: The Impossible Bloomberg Makeover&lt;/a&gt; (via &lt;a href="http://twitter.com/Rabourn/status/10996411816"&gt;Tanya Rabourn&lt;/a&gt;)

&lt;/p&gt;&lt;div class="quote-commentary"&gt;
&lt;p&gt;A great example of a case where listening to users will not produce the most usable design.  We ran into the same phenomenon when I worked on Soundtrack Pro.  In many cases we wanted to reinvent how particular audio editings tasks were done, but found editors resistant to anything other than the clunky old Pro Tools ways of doing things.&lt;/p&gt;
&lt;/div&gt;&lt;/blockquote&gt;</description><link>https://log.pb30.com/post/473690173</link><guid>https://log.pb30.com/post/473690173</guid><pubDate>Thu, 25 Mar 2010 20:29:08 -0500</pubDate></item><item><title>WhenIsGood</title><description>&lt;a href="http://whenisgood.net/"&gt;WhenIsGood&lt;/a&gt;: &lt;blockquote&gt;
  &lt;p&gt;An easy way to find out when everyone is free for your next meeting or event. Click the grid for all the times that are good for you - you get a link to email to your invitees. They see your proposed times and click on when they are free. You visit your results page and see when everyone can do.&lt;/p&gt;
&lt;/blockquote&gt;</description><link>https://log.pb30.com/post/453487994</link><guid>https://log.pb30.com/post/453487994</guid><pubDate>Tue, 16 Mar 2010 21:22:14 -0500</pubDate></item><item><title>Canon to begin acquisition of the ".canon" Top-Level Domain name</title><description>&lt;a href="http://www.canon.com/news/2010/mar16e.html"&gt;Canon to begin acquisition of the ".canon" Top-Level Domain name&lt;/a&gt;</description><link>https://log.pb30.com/post/453486051</link><guid>https://log.pb30.com/post/453486051</guid><pubDate>Tue, 16 Mar 2010 21:21:15 -0500</pubDate></item><item><title>Jenga Interview</title><description>&lt;blockquote&gt;
  &lt;p&gt;Where I work, we do our best to weed out the unhappy and cynical employees before they even get hired. Coworkers who are constantly cynical and unhappy are absolutely terrible for morale, and we do whatever we can to avoid it both before and after hiring.&lt;/p&gt;
  
  &lt;p&gt;After each candidate goes through his/her well-rehearsed and pre-meditated interviews with HR and management, the entire engineering team (small company) comes into the room, closes the door, and starts a game of Jenga like it&amp;rsquo;s no big deal. Meanwhile, we strike up a casual conversation with the candidate and insist s/he play with us.&lt;/p&gt;
  
  &lt;p&gt;Without fail, the candidates true colors are almost immediately revealed. Candidate scoffs at the idea of playing a game in an interview? Obviously too uptight for our group and not capable of handling rapidly changing situations. Focusing on Jenga also takes the candidate&amp;rsquo;s mind off of all of the pre-meditated answers and pages of &amp;lsquo;interview tips&amp;rsquo; articles that we&amp;rsquo;ve all read at one point or another. The trick is to treat the game of Jenga like it&amp;rsquo;s serious business so the candidate follows suit and forgets about the formalities of the interview and whatever persona s/he is trying to craft for the interviewers. If the person can discuss intense technical topics without breaking a sweat while playing Jenga, then s/he likely knows the subject matter pretty well.&lt;/p&gt;
  
  &lt;p&gt;Works every time. We end up with engineers who get along, think on their feet, are laid back, and known their stuff.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;(via &lt;a href="http://www.reddit.com/tb/bdbra"&gt;reddit&lt;/a&gt;)&lt;/p&gt;</description><link>https://log.pb30.com/post/448870274</link><guid>https://log.pb30.com/post/448870274</guid><pubDate>Sun, 14 Mar 2010 20:20:00 -0500</pubDate></item><item><title>The FCC Wants You to Test Your Broadband Speeds</title><description>&lt;a href="http://www.broadband.gov/"&gt;The FCC Wants You to Test Your Broadband Speeds&lt;/a&gt;</description><link>https://log.pb30.com/post/442413871</link><guid>https://log.pb30.com/post/442413871</guid><pubDate>Thu, 11 Mar 2010 20:40:23 -0600</pubDate></item><item><title>The Pop-up Book of Phobias on Vimeo</title><description>&lt;iframe src="https://player.vimeo.com/video/7668240?h=88bcc3bdca&amp;title=0&amp;byline=0&amp;portrait=0&amp;app_id=122963" width="400" height="225" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen title="The Pop-up Book of Phobias"&gt;&lt;/iframe&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;&lt;a href="http://vimeo.com/7668240"&gt;The Pop-up Book of Phobias on Vimeo&lt;/a&gt;&lt;/p&gt;</description><link>https://log.pb30.com/post/433672375</link><guid>https://log.pb30.com/post/433672375</guid><pubDate>Sun, 07 Mar 2010 20:23:52 -0600</pubDate></item><item><title>Boba Fett. Playing Zelda music. In the subway. On an accordion....</title><description>&lt;object width="400" height="324"&gt;&lt;param name="movie" value="http://www.twitvid.com/player/57B8D"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;embed type="application/x-shockwave-flash" src="http://www.twitvid.com/player/57B8D" quality="high" allowscriptaccess="always" allowNetworking="all" allowfullscreen="true" wmode="transparent" height="324" width="400"&gt;&lt;/object&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Boba Fett. Playing Zelda music. In the subway. On an accordion. (via &lt;a href="http://www.reddit.com/r/geek/comments/b9thv/boba_fett_playing_zelda_music_in_the_subway_on_an/"&gt;reddit&lt;/a&gt;)&lt;/p&gt;</description><link>https://log.pb30.com/post/430764133</link><guid>https://log.pb30.com/post/430764133</guid><pubDate>Sat, 06 Mar 2010 14:00:26 -0600</pubDate></item><item><title>Interesting talk about why games like FarmVille, Guitar Hero,...</title><description>&lt;object classId="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="348" id="VideoPlayerLg44277"&gt;&lt;param name="movie" value="http://g4tv.com/lv3/44277" /&gt;&lt;param name="allowScriptAccess" value="always" /&gt;&lt;param name="allowFullScreen" value="true" /&gt;&lt;embed src="http://g4tv.com/lv3/44277" type="application/x-shockwave-flash" name="VideoPlayer" width="400" height="382" allowScriptAccess="always" allowFullScreen="true" /&gt;&lt;/object&gt;&lt;div style="margin:0;text-align:center;width:480px;font-family:Arial,sans-serif;font-size:12px;color:#FF9B00;"&gt;&lt;a href="http://g4tv.com/games/xbox-360/index" style="color:#FF9B00;" target="_blank"&gt;Xbox 360 Games&lt;/a&gt; - &lt;a href="http://g4tv.com/e32010" style="color:#FF9B00;" target="_blank"&gt;E3 2010&lt;/a&gt; - &lt;a href="http://g4tv.com/games/ps3/61899/guitar-hero-5/index" style="color:#FF9B00;" target="_blank"&gt;Guitar Hero 5&lt;/a&gt;&lt;/div&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Interesting talk about why games like FarmVille, Guitar Hero, and Wii Fit are taking off. All of them are based in reality, which will be the next big phase in gaming. The last 10 minutes provide an interesting look at what life would be like if things like Foursquare or other achievement points were extended across our entire life.&lt;/p&gt;</description><link>https://log.pb30.com/post/409272308</link><guid>https://log.pb30.com/post/409272308</guid><pubDate>Wed, 24 Feb 2010 10:32:50 -0600</pubDate></item><item><title>Photo</title><description>&lt;img src="https://64.media.tumblr.com/tumblr_kyck2iBdbi1qz4skjo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;</description><link>https://log.pb30.com/post/409233274</link><guid>https://log.pb30.com/post/409233274</guid><pubDate>Wed, 24 Feb 2010 10:01:53 -0600</pubDate></item><item><title>
  (via Feel The Power! - Epic Win FTW)
</title><description>&lt;img src="https://64.media.tumblr.com/tumblr_kxu6z1aoTI1qz4skjo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;blockquote&gt;
  &lt;p&gt;(via &lt;a href="http://epicwinftw.com/2010/02/14/epic-win-photos-feel-the-power/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+EpicWinFtw+%28Epic+Win+FTW%29&amp;utm_content=Google+Reader"&gt;Feel The Power! - Epic Win FTW&lt;/a&gt;)&lt;/p&gt;
&lt;/blockquote&gt;</description><link>https://log.pb30.com/post/389110585</link><guid>https://log.pb30.com/post/389110585</guid><pubDate>Sun, 14 Feb 2010 10:01:03 -0600</pubDate></item><item><title>George Carlin - Modern Man</title><description>&lt;br/&gt;&lt;br/&gt;&lt;p&gt;George Carlin - Modern Man&lt;/p&gt;</description><link>https://log.pb30.com/post/387345720</link><guid>https://log.pb30.com/post/387345720</guid><pubDate>Sat, 13 Feb 2010 10:00:52 -0600</pubDate></item><item><title>Nerdery Lego luge course (via @kensykora)</title><description>&lt;img src="https://64.media.tumblr.com/tumblr_kxn2kfsxCr1qz4skjo1_500.jpg"/&gt;&lt;br/&gt;&lt;br/&gt;&lt;p&gt;Nerdery Lego luge course (via &lt;a href="http://twitter.com/kensykora"&gt;@kensykora&lt;/a&gt;)&lt;/p&gt;</description><link>https://log.pb30.com/post/382188263</link><guid>https://log.pb30.com/post/382188263</guid><pubDate>Wed, 10 Feb 2010 12:45:41 -0600</pubDate></item></channel></rss>
