<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-5079054</id><updated>2011-07-08T04:11:11.320-04:00</updated><title type='text'>scrap pad</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://laidefawei.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default?start-index=101&amp;max-results=100'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2209</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-5079054.post-3483475718706528323</id><published>2009-06-15T10:51:00.004-04:00</published><updated>2009-06-15T11:11:26.616-04:00</updated><title type='text'>DrupalCon Paris video</title><content type='html'>&lt;p&gt;I'm going to Paris this September for DrupalCon; as a professional Drupal developer it is an extremely useful event, and as a full-time web geek it's a great place to socialize with other people who do the same kind of work. I would also like the chance to present on some of the Drupal-as-a-GeoCMS work that has been happening this spring in front of a large audience who will ask sharp questions and then go use our work in their own projects.&lt;/p&gt;
&lt;p&gt;I've entered a video contest for a conference ticket refund-- I've been wanting to make a movie with these toys since Easter:&lt;/p&gt;
&lt;object width="425" height="344"&gt;&lt;param name="movie" value="http://www.youtube-nocookie.com/v/8dQvxhpUlSk&amp;hl=en&amp;fs=1&amp;rel=0"&gt;&lt;/param&gt;&lt;param name="allowFullScreen" value="true"&gt;&lt;/param&gt;&lt;param name="allowscriptaccess" value="always"&gt;&lt;/param&gt;&lt;embed src="http://www.youtube-nocookie.com/v/8dQvxhpUlSk&amp;hl=en&amp;fs=1&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;p&gt;You can &lt;a href="http://paris2009.drupalcon.org/content/which-one-your-favourite-video"&gt;vote for me on the DrupalCon Paris site&lt;/a&gt; and by rating my video on YouTube. You can also see the other contest entries listed as &lt;a href="http://www.youtube.com/watch?v=-cJbHE41f3E"&gt;video responses under the original contest announcement&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3483475718706528323?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3483475718706528323'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3483475718706528323'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2009/06/drupalcon-paris-video.html' title='DrupalCon Paris video'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6421754399082048973</id><published>2009-01-08T16:36:00.004-05:00</published><updated>2009-01-08T17:05:54.609-05:00</updated><title type='text'>php function of the day</title><content type='html'>&lt;p&gt;Fairly often in Drupal I get handed arrays that have significant keys, but the values are either a label or false-y. I generally don't care about the items with empty values, or I specifically want to remove them. The solution is to use &lt;code&gt;&lt;a href="http://php.net/array_filter"&gt;array_filter&lt;/a&gt;($arr)&lt;/code&gt; to remove any array items with false-y values. In fact, sometimes I don't even care about the labels at all, in which case I might do &lt;code&gt;&lt;a href="http://php.net/array_keys"&gt;array_keys&lt;/a&gt;(array_filter($arr))&lt;/code&gt;. Examples below.&lt;/p&gt;

&lt;pre&gt;$arr = array(
  'key1' =&gt; 'Label 1',
  'key2' =&gt; 'Second Label',
  'key3' =&gt; 0,
  'key4' =&gt; 'Label No. 4',
  'key5' =&gt; 0,
);

$arr_filtered = array_filter($arr);
/*
   $arr_filtered = array(
     'key1' =&gt; 'Label 1',
     'key2' =&gt; 'Second Label',
     'key4' =&gt; 'Label No. 4',
   );
*/

$arr_filtered_keys = array_keys(array_filter($arr));
/*
   $arr_filtered_keys = array(
     'key1',
     'key2',
     'key4',
   );
*/&lt;/pre&gt;

&lt;p&gt;array_filter() can also take a callback as the second argument, which lets you filter out items on your own terms. See the &lt;a href="http://php.net/array_filter"&gt;array_filter() documentation&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6421754399082048973?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6421754399082048973'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6421754399082048973'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2009/01/php-function-of-day.html' title='php function of the day'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2254655090798330794</id><published>2009-01-05T16:06:00.002-05:00</published><updated>2009-01-05T16:10:46.074-05:00</updated><title type='text'>flat footing</title><content type='html'>&lt;p&gt;My aunt shared these two "flat footing" videos on facebook:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=qIHL_Dzf1xo"&gt;Carrol M- from Ashville&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=5JY6jVWmrok"&gt;Anna Lindblad and Nic Gareiss in Limerick, Ireland&lt;/a&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2254655090798330794?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2254655090798330794'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2254655090798330794'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2009/01/flat-footing.html' title='flat footing'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-102134335052065069</id><published>2008-12-31T01:16:00.004-05:00</published><updated>2008-12-31T01:32:06.969-05:00</updated><title type='text'>Drupal Field Formatters</title><content type='html'>&lt;p&gt;I develop with &lt;a href="http://drupal.org/"&gt;Drupal 6&lt;/a&gt; at work. One of the things I've been finding useful recently is writing field formatters. Field formatters are handy because they're used to format CCK field content when it gets displayed in nodes and also to format fields in Views. You can choose between formatters for each field of a node type under the 'Display' tab in the node type's settings. In Views, if you choose a display type that uses fields, you can select a different field formatter when you add each field.&lt;/p&gt;

&lt;p&gt;To write your own field formatters, you implement &lt;code&gt;hook_field_formatter_info()&lt;/code&gt;, then create theme functions for your formatters and add them to your &lt;code&gt;hook_theme()&lt;/code&gt; implementation. At one point this was documented in examples packaged with CCK, but it seems the examples are no longer part of the CCK download.&lt;/p&gt;

&lt;p&gt;A simple &lt;code&gt;hook_field_formatter_info()&lt;/code&gt; implementation looks like this:&lt;/p&gt;

&lt;pre&gt;/**
* Implementation of hook_field_formatter_info().
*/
function example_field_formatter_info() {
  return array(
    'myformatter' =&gt; array(
      'label' =&gt; t('My Formatter'),
      'field types' =&gt; array('text'),
      'multiple values' =&gt; CONTENT_HANDLE_CORE,
    ),
  );
}&lt;/pre&gt;

&lt;ul&gt;
  &lt;li&gt;Your formatter should have a unique handle, in this case "&lt;code&gt;myformatter&lt;/code&gt;". Using "&lt;code&gt;x_formatter&lt;/code&gt;" or "&lt;code&gt;x_module_name&lt;/code&gt;" here makes the theme key name confusing.&lt;/li&gt;
  &lt;li&gt;The 'field types' array contains the names of cck field types applicable to this formatter.&lt;/li&gt;
  &lt;li&gt;'multiple values' determines the way field content is passed to the theme function. It may be either of two values:
    &lt;ul&gt;
      &lt;li&gt;&lt;code&gt;CONTENT_HANDLE_CORE&lt;/code&gt; means that the formatter is called separately for each value in the field. If a field contains multiple values, then the formatter is called multiple times. Field content is passed to the formatter in &lt;code&gt;$element['#item']&lt;/code&gt;. This is the default.&lt;/li&gt;
      &lt;li&gt;&lt;code&gt;CONTENT_HANDLE_MODULE&lt;/code&gt; means that the formatter is called only once for a field, and the theme formatter gets all the field values at once. In this case, field content is passed to the formatter in &lt;code&gt;$element[0]['#item']&lt;/code&gt;, &lt;code&gt;$element[1]['#item']&lt;/code&gt;, &lt;code&gt;$element[2]['#item']&lt;/code&gt;, etc. Note that the $elements array contains other information about the field, such as &lt;code&gt;$element['#field_name']&lt;/code&gt;&lt;/li&gt;
    &lt;/ul&gt;
  &lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;You will need to add the field formatter theme function to your &lt;code&gt;hook_theme()&lt;/code&gt; implementation:&lt;/p&gt;

&lt;pre&gt;/**
* Implementation of hook_theme().
*/
function exmaple_theme($existing, $type, $theme, $path) {
  return array(
    'example_formatter_myformatter' =&gt; array(
      'function' =&gt; 'theme_myformatter',
      'arguments' =&gt; array('element' =&gt; NULL),
    ),
  );
}&lt;/pre&gt;

&lt;ul&gt;
  &lt;li&gt;The theme array key, in this case '&lt;code&gt;example_formatter_myformatter&lt;/code&gt;' is constructed from &lt;code&gt;{module name}&lt;strong&gt;_formatter_&lt;/strong&gt;{formatter name}&lt;/code&gt;.&lt;/li&gt;
  &lt;li&gt;You don't need to include the &lt;code&gt;'function' =&gt; 'theme_myformatter'&lt;/code&gt; line; the default theme function name in this case would be '&lt;code&gt;theme_example_formatter_myformatter&lt;/code&gt;'.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The formatter function itself should return a stuff that is ready to output to the browser:&lt;/p&gt;

&lt;pre&gt;/**
* Theme function for myformatter from hook_field_formatter_info().
* @param $element
*   Array of formatter info and the item to theme. Field contents will either be
*   in $element['#item'] or $element[$i]['#item'].
*/
function theme_example_formatter_myformatter($element) {
  return strtoupper($element['#item']['safe']);
}&lt;/pre&gt;

This field formatter simply displays the contents of the text field in all caps. You'll need to clear your cache before your new formatter shows up in the field display choices.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-102134335052065069?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/102134335052065069'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/102134335052065069'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/12/drupal-field-formatters.html' title='Drupal Field Formatters'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2800225759869695902</id><published>2008-12-12T21:22:00.000-05:00</published><updated>2008-12-12T21:28:51.326-05:00</updated><title type='text'>birthday list</title><content type='html'>&lt;p&gt;I've been trying to think of a snappier way to introduce my birthday list this year, but nothing is surfacing. So: I'm turning 25 next week, this is a list of things I want for my birthday. If you send something via email, put "birthday list" in the subject line and I will not open it until the 18th.&lt;/p&gt;

&lt;ul&gt;
  &lt;li&gt;a picture of you and your cat (or Mabel)&lt;/li&gt;
  &lt;li&gt;a cookie recipe&lt;/li&gt;
  &lt;li&gt;a long quote&lt;/li&gt;
  &lt;li&gt;a code snippet via twitter&lt;/li&gt;
  &lt;li&gt;a pattern&lt;/li&gt;
  &lt;li&gt;a caf&amp;eacute; recommendation near my work in chicago&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2800225759869695902?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2800225759869695902'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2800225759869695902'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/12/birthday-list.html' title='birthday list'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-5952103219735886677</id><published>2008-12-12T14:36:00.003-05:00</published><updated>2008-12-12T14:38:22.821-05:00</updated><title type='text'>addresses</title><content type='html'>addresses are tricky.
&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.columbia.edu/kermit/postal.html"&gt;Frank's Compulsive Guide to Postal Addresses&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.uxmatters.com/MT/archives/000295.php"&gt;web address forms for various countries&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-5952103219735886677?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5952103219735886677'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5952103219735886677'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/12/addresses.html' title='addresses'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3238947306966856432</id><published>2008-10-20T13:21:00.000-04:00</published><updated>2008-10-20T13:21:22.851-04:00</updated><title type='text'>CVS update output</title><content type='html'>&lt;a href="http://ximbiot.com/cvs/manual/cvs-1.11.23/cvs_16.html#SEC167"&gt;key to the letters in the output from "cvs up"&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3238947306966856432?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://ximbiot.com/cvs/manual/cvs-1.11.23/cvs_16.html#SEC167' title='CVS update output'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3238947306966856432'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3238947306966856432'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/10/cvs-update-output.html' title='CVS update output'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3785497786890452762</id><published>2008-10-15T14:56:00.000-04:00</published><updated>2008-10-15T14:56:35.221-04:00</updated><title type='text'>wheat</title><content type='html'>&lt;a href="http://wiki.answers.com/Q/What_is_the_average_yield_of_wheat_per_acre"&gt;What is the average yield of wheat per acre?&lt;/a&gt; Also: an acre is 43,560 square feet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3785497786890452762?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://wiki.answers.com/Q/What_is_the_average_yield_of_wheat_per_acre' title='wheat'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3785497786890452762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3785497786890452762'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/10/wheat.html' title='wheat'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-5625815080790073312</id><published>2008-10-07T00:49:00.000-04:00</published><updated>2008-10-07T00:49:40.799-04:00</updated><title type='text'>mac drawing app</title><content type='html'>vector based, core image filters, layers. another Mac indie graphics app, &lt;a href="http://www.getdrawit.com/"&gt;DrawIt&lt;/a&gt;. (note to self: try this sometime)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-5625815080790073312?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.getdrawit.com/' title='mac drawing app'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5625815080790073312'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5625815080790073312'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/10/mac-drawing-app.html' title='mac drawing app'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-8892383442954907927</id><published>2008-10-02T14:24:00.003-04:00</published><updated>2008-10-02T14:40:14.461-04:00</updated><title type='text'>following cvs messages on drupal.org</title><content type='html'>&lt;p&gt;There are links you can click to find these feeds, but I lost my interactive point-and-click tutorial so I guess I'm stuck hacking URLs.&lt;/p&gt;

for a web view of the latest drupal.org cvs messages, go to:
&lt;pre&gt;&lt;a href="http://drupal.org/cvs"&gt;http://drupal.org/cvs&lt;/a&gt;&lt;/pre&gt;

You can narrow it by module by adding an 'nid' query, where the nid corresponds to the project's nid:
&lt;pre&gt;&lt;a href="http://drupal.org/cvs?nid=38678"&gt;http://drupal.org/cvs?nid=38678&lt;/a&gt;&lt;/pre&gt;

You can also click on the 'View CVS messages' link on a project page, which will take you to a url like this:
&lt;pre&gt;&lt;a href="http://drupal.org/project/cvs/38678"&gt;http://drupal.org/project/cvs/38678&lt;/a&gt;&lt;/pre&gt;

To either of those URLs, you can append a 'branch' query to filter the CVS messages by branch:
&lt;pre&gt;&lt;a href="http://drupal.org/cvs?nid=38678&amp;branch=HEAD"&gt;http://drupal.org/cvs?nid=38678&amp;branch=HEAD&lt;/a&gt;
&lt;a href="http://drupal.org/project/cvs/38678?branch=HEAD"&gt;http://drupal.org/project/cvs/38678?branch=HEAD&lt;/a&gt;&lt;/pre&gt;

You can also use 'rss' in the query if you want to follow the messages in a feed reader:
&lt;pre&gt;&lt;a href="http://drupal.org/cvs?nid=38678&amp;branch=HEAD&amp;rss=true"&gt;http://drupal.org/cvs?nid=38678&amp;branch=HEAD&amp;rss=true&lt;/a&gt;
&lt;a href="http://drupal.org/project/cvs/38678?branch=HEAD&amp;rss=true"&gt;http://drupal.org/project/cvs/38678?branch=HEAD&amp;rss=true&lt;/a&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-8892383442954907927?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8892383442954907927'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8892383442954907927'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/10/following-cvs-messages-on-drupalorg.html' title='following cvs messages on drupal.org'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4588104391626376423</id><published>2008-10-02T12:16:00.000-04:00</published><updated>2008-10-02T12:16:57.312-04:00</updated><title type='text'>three ways to install Bazaar on Mac OS X</title><content type='html'>&lt;ol&gt;
&lt;li&gt;fink (fails)&lt;/li&gt;
&lt;li&gt;easy_install ("sudo easy_install -U paramiko pycrypto bzr" works)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://bazaar-vcs.org/Download"&gt;download the OS X Bazaar installer&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;guh, don't make me explain.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4588104391626376423?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://dysinger.net/2008/01/26/install-bazaar-subversion-on-mac-os-x-leopard-105/' title='three ways to install Bazaar on Mac OS X'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4588104391626376423'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4588104391626376423'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/10/three-ways-to-install-bazaar-on-mac-os.html' title='three ways to install Bazaar on Mac OS X'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3915586004756272054</id><published>2008-09-30T15:37:00.000-04:00</published><updated>2008-09-30T15:37:23.788-04:00</updated><title type='text'>accidental misspelling?</title><content type='html'>"accidentally accidently neither of them gets marked as misspelled for me. I feel like one of them must be wrong." But no! &lt;a href="http://www.bartleby.com/68/76/76.html"&gt;The Columbia Guide to Standard American English: accidentally, accidently&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3915586004756272054?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.bartleby.com/68/76/76.html' title='accidental misspelling?'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3915586004756272054'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3915586004756272054'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/09/accidental-misspelling.html' title='accidental misspelling?'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2254992675190911558</id><published>2008-09-23T10:40:00.001-04:00</published><updated>2008-09-23T13:31:00.436-04:00</updated><title type='text'>frost</title><content type='html'>&lt;p&gt;The "dew point" is the temperature where water vapor condenses into dew; it changes based on the amount of water in the air. When the dew point drops below the air temperature, you get dew.&lt;/p&gt;
&lt;p&gt;When the dew point drops below freezing, it is called the "frost point"; when the air temperature drops below freezing and the dew/frost point drops below the air temperature, you get frost.&lt;/p&gt;
&lt;p&gt;more &lt;a href="http://www.shorstmeyer.com/wxfaqs/frost/frost.html"&gt;about frost&lt;/a&gt;. I've been waiting for the first frost here but I don't think it has come yet.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2254992675190911558?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2254992675190911558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2254992675190911558'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/09/frost.html' title='frost'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-1064903293621065499</id><published>2008-09-22T11:24:00.002-04:00</published><updated>2008-09-22T11:30:45.910-04:00</updated><title type='text'>rails</title><content type='html'>Robbie is saving a piece of railroad rail because "you can chunk it up into pieces about this long [2 ft] and it's useful for banging other pieces of metal on"--an improvised anvil. To cut up something like a rail, you would use an acetylene torch. (I had to ask, so I figured I'd write it down).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-1064903293621065499?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1064903293621065499'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1064903293621065499'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/09/rails.html' title='rails'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7953636997826082177</id><published>2008-09-22T11:19:00.002-04:00</published><updated>2008-09-22T11:22:36.699-04:00</updated><title type='text'>organic apples</title><content type='html'>apparently in apple farming one organic alternative to chemical pesticides is clay. I am guessing that would mean that they make a light slurry of clay and water and spray it on the apples.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7953636997826082177?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7953636997826082177'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7953636997826082177'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/09/organic-apples.html' title='organic apples'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6174176180449541972</id><published>2008-09-20T10:33:00.001-04:00</published><updated>2008-09-20T10:33:43.332-04:00</updated><title type='text'>css "image replacement"</title><content type='html'>&lt;a href="http://wellstyled.com/css-replace-text-by-image.html"&gt;image replacement by covering the text with the image&lt;/a&gt; (used today, for future reference).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6174176180449541972?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6174176180449541972'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6174176180449541972'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/09/css-image-replacement.html' title='css &quot;image replacement&quot;'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-5206349612893300668</id><published>2008-09-18T17:02:00.002-04:00</published><updated>2008-09-19T03:01:39.696-04:00</updated><title type='text'>launchd and cron</title><content type='html'>cron is deprecated under Mac OS X 10.4 and 10.5; it is replaced by &lt;a href="http://developer.apple.com/macosx/launchd.html"&gt;launchd&lt;/a&gt;. You can schedule tasks with launchd by making a .plist, putting the plist in ~/Library/LaunchAgents/, and running something like &lt;code&gt;launchd load ~/Library/LaunchAgents/my-task.plist&lt;/code&gt;. Cron is still present on the system, though. If you still want to use cron, just set up your crontab as usual with &lt;code&gt;crontab -e&lt;/code&gt; and cron will automagically be turned on (launchd will load com.vix.cron, which tells it to check the crontab). &lt;a href="http://archive.netbsd.se/?ml=darwinports&amp;amp;a=2005-04&amp;amp;t=869190"&gt;a couple more details on launchd and cron&lt;/a&gt;, see also &lt;a href="http://www.opengroup.org/onlinepubs/007908775/xcu/crontab.html"&gt;crontab&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-5206349612893300668?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5206349612893300668'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5206349612893300668'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/09/launchd-and-cron.html' title='launchd and cron'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-5493521803552928262</id><published>2008-09-18T15:57:00.000-04:00</published><updated>2008-09-18T15:57:05.743-04:00</updated><title type='text'>scp, finally</title><content type='html'>&lt;a href="http://kb.iu.edu/data/agye.html"&gt;scp examples with Darth Vader&lt;/a&gt;. yarr, I see less sftp in my future.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-5493521803552928262?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://kb.iu.edu/data/agye.html' title='scp, finally'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5493521803552928262'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5493521803552928262'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/09/scp-finally.html' title='scp, finally'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6281966869582806730</id><published>2008-09-17T23:51:00.003-04:00</published><updated>2008-09-18T00:06:36.901-04:00</updated><title type='text'>PDO</title><content type='html'>&lt;a href="http://us2.php.net/manual/en/intro.pdo.php"&gt;wtf is PDO?&lt;/a&gt; -- a PHP extension that gives you a class with a standard set of methods for working with data in databases. Why? You can use that standard set of methods. And apparently &lt;a href="http://www.devolio.com/blog/archives/314-Practical-and-impractical-PHP-Optimizations.html"&gt;PDO MySQL operations are faster than native PHP MySQL operations&lt;/a&gt;, at least in some cases. The catch? Comes with PHP 5.1. You might have to compile PHP with the pdo_mysql driver (&lt;a href="http://www.phpro.org/tutorials/Introduction-to-PHP-PDO.html#2"&gt;exhibit a&lt;/a&gt;, &lt;a href="http://gidden.net/tom/2008/06/30/mysql-and-pdo-on-os-x-leopard-intel/"&gt;exhibit b&lt;/a&gt;).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6281966869582806730?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6281966869582806730'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6281966869582806730'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/09/pdo.html' title='PDO'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4954711123856345659</id><published>2008-09-08T18:46:00.004-04:00</published><updated>2008-09-10T18:11:23.388-04:00</updated><title type='text'>Eclipse install notes</title><content type='html'>&lt;p&gt;Today I installed Eclipse. Like my ubuntu-eee install notes, the following is &lt;strong&gt;not&lt;/strong&gt; a how-to. I'm documenting my experiences so that knowlegeable users can compare (and correct me), and so that I have a reference for future Eclipsy activities.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Update:&lt;/strong&gt; &lt;em&gt;2008-09-10&lt;/em&gt; Eclipse has not really worked out for me at all. Checking stuff out of SVN and setting up projects worked fine, but when I went to write code, the code-completion features did not work at all--in fact, they crashed Eclipse entirely. I turned them off... and Eclipse still crashed. So maybe the following should serve as a "what not to do"...&lt;/p&gt;
&lt;ol&gt;
  &lt;li&gt;First of all I knew I needed to use &lt;a href="http://www.eclipse.org/pdt/"&gt;PDT (PHP Development Tools for Eclipse)&lt;/a&gt;. So I installed the Eclipse 3.3/PDT 1.0.3 bundle--Eclipse + PDT all pre-packaged. While this was labeled "stable", it turned out to be seriously crashy. So I went all cybermen and deleted it.&lt;/li&gt;
  &lt;li&gt;&lt;p&gt;The second time around, I installed &lt;a href="http://www.eclipse.org/downloads/packages/eclipse-ide-java-developers/ganymeder"&gt;plain Eclipse (Ganymede)&lt;/a&gt;, and used Eclipse's internal "update manager" to install...&lt;/p&gt;
  &lt;ul&gt;
    &lt;li&gt;&lt;a href="http://download.eclipse.org/technology/dltk/downloads/drops/R1.0/I-I200809081043-200809081043/"&gt;dltk (Dynamic Languages ToolKit, 'integration core frameworks' package, dltk-core-I)&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="http://wiki.eclipse.org/PDT/Installation"&gt;php features (PDT)&lt;/a&gt;&lt;/li&gt;
    &lt;li&gt;&lt;a href="http://subclipse.tigris.org/"&gt;subclipse (SVN integration)&lt;/a&gt;&lt;/li&gt;
  &lt;/ul&gt;
  &lt;p&gt;Eclipse's update manager is under the help menu as "Software Updates..." (at least on the Mac). The first two plugins I downloaded as .zips and added within the Update Manager via Add Site... &amp;gt; Local... &amp;gt; path/to/unzipped/plugin. Subclipse I installed by adding the update site directly: Add Site... &amp;gt; http://subclipse.tigris.org/update_1.4.x (the other two were less clear about their Eclipse update manager URLs). yay, PHP and SVN support.&lt;/p&gt;&lt;/li&gt;
  &lt;li&gt;I work with Drupal, which uses the .module and .install extensions for some php files, and I had tell Eclipse to treat files with those extensions as PHP. &lt;a href="http://riobautista.wordpress.com/2008/01/15/syntax-highlighting-cakephp-using-eclipse/"&gt;how to force php syntax highlighting in Eclipse&lt;/a&gt;--you get more than just syntax highlighting with this.&lt;/li&gt;
  &lt;li&gt;When I first checked out my project from svn using subclipse, Eclipse didn't set it up as a PHP project, meaning that no code features were available. This FAQ was helpful: &lt;a href="http://wiki.eclipse.org/IRC_FAQ#How_do_I_manually_assign_a_project_Nature_or_BuildCommand.3F"&gt;How do I manually assign a project Nature or BuildCommand?&lt;/a&gt; Project "nature" I guess has some sort of "project type" implications that make various project features and behaviors available, and "build commands" are "parse-y things that report php warnings and errors". As the link above specifies, I went into the .project file in my project's base directory and added the right "nature" and "build commands"; I got the correct values by creating a fresh php project and looking at its .project file.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;It remains to be seen whether I actually like working in Eclipse, but I've resolved to give it a good try.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4954711123856345659?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4954711123856345659'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4954711123856345659'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/09/eclipse-install-notes.html' title='Eclipse install notes'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2034493703362399583</id><published>2008-08-18T21:23:00.005-04:00</published><updated>2008-08-18T23:31:12.105-04:00</updated><title type='text'>Ubuntu on my Eee 1000</title><content type='html'>&lt;p&gt;Last week I got an Asus Eee 1000H, and this weekend I installed Ubuntu on it (this is the "Windows" version and came with XP installed--NewEgg had a $100 instant rebate on the 1000H). Thanks to some fantastic software and how-tos from the community, it was mostly straightforward.&lt;/p&gt;

&lt;p&gt;The following is &lt;strong&gt;not&lt;/strong&gt; a how-to. I'm documenting my experiences so that knowlegeable users can compare, and so that I have a reference for future linuxy exploits.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;I got a 4 GB flash drive and turned it into an Ubuntu Live USB. Right on the Eee, I downloaded the Ubuntu ISO via bittorrent (linked on the &lt;a href="http://www.ubuntu-eee.com/index.php5?title=Get_Ubuntu_Eee"&gt;get Ubuntu Eee&lt;/a&gt; page) and &lt;a href="http://unetbootin.sourceforge.net/"&gt;UNetbootin&lt;/a&gt;, and used UNetbootin to put the ISO stuff on the flash drive. I also downloaded the Ubuntu Eeee kernel from these &lt;a href="http://www.array.org/ubuntu/setup901.html"&gt;installing the Ubuntu-eee kernel manually&lt;/a&gt; which should fix Eees with Ubuntu but no internet access.&lt;/li&gt;

&lt;li&gt;&lt;a href="http://www.ubuntu-eee.com/index.php5?title=Install:_from_a_Live_Ubuntu_image_on_a_USB_stick"&gt;How to put a live Ubuntu image on a USB stick&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;I saw instructions to hit escape during startup to switch the boot device, but it wasn't working for me, so hitting f2 (over and over) let me enter the BIOS and switch the boot device.&lt;/li&gt;
&lt;li&gt;Originally I couldn't seem to boot to the flash drive... to make it work I dumped the contents of the USBTest.zip file from this &lt;a href="http://www.pendrivelinux.com/2007/09/17/testing-your-system-for-usb-boot-compatibility/"&gt;Pen Drive Linux boot test&lt;/a&gt; on my freshly formatted flash drive, running the makeboot.bat file (from the flash drive only!) and then putting the Ubuntu ISO on again with UNetbootin (and choosing to overwrite the exisiting syslinux). So that worked, but may not have been necessary, because I also twiddled some BIOS settings--I'm a total PC noob, and I wasn't exactly sure what needed to be changed.&lt;/li&gt;

&lt;li&gt;In the BIOS I also disabled "quick boot" and "quiet boot" for the time being. I re-enabled "quick boot" but I haven't paid attention to any difference it might make.&lt;/li&gt;

&lt;li&gt;I installed Ubuntu over the whole Windows partition.&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Once I rebooted into my new Ubuntu installation, my flash drive refused to automount--it kept saying "Invalid mount option". It turned out that the fstab (a file that describes how the OS should deal with mounting devices) was messed up. Apparently a bunch of Ubuntu users were having similar issues after installing 8.04.1. My fstab had my USB devices trying to mount as a CDROM (I suspect because Ubuntu assumed that my install device was a CDROM rather than a flash drive).&lt;/p&gt;&lt;p&gt;First of all I read this page on &lt;a href="http://www.tuxfiles.org/linuxhelp/fstab.html"&gt;understanding and editing fstab&lt;/a&gt;. fstab is a plain text file located at /etc/fstab. You can only edit it with root permissions, because messing it up can prevent your system from booting.&lt;/p&gt;
&lt;p&gt;Basically, I had a line that looked like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/dev/sdb1       /media/cdrom0   udf,iso9660 user,noauto,exec,utf8 0       0&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;that needed to look like this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/dev/sdb1       /media/usb      auto    auto,user,exec,rw,utf8  0       0&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I examined the fstab with:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;tail /etc/fstab&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I confirmed the device path (in this case, "/dev/sdb1") by plugging in my USB drive, opening a terminal, and typing:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo fdisk -l&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This will prompt for a password, then spit out a block of info about each available drive; the block describing my 4 GB flash drive looked like this (note the "device" and "system", which in this case are "/dev/sdb1" and "W95 FAT32" respectively):&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;Disk /dev/sdb: 4009 MB, 4009754624 bytes
255 heads, 63 sectors/track, 487 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x00000000

   Device Boot      Start         End      Blocks   Id  System
/dev/sdb1   *           1         488     3915733+   b  W95 FAT32
Partition 1 has different physical/logical endings:
     phys=(1023, 254, 63) logical=(487, 124, 63)&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;I created the mount point (/media/usb), made a backup, then edited my fstab with vi (for gui, use gedit):&lt;/p&gt;
&lt;code&gt;&lt;pre&gt;sudo mkdir /media/usb
sudo cp /etc/fstab /etc/fstab.bak
sudo vi /etc/fstab&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;This made my flash drives automount as expected.&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;Once I could automount my flash drive, I followed the instructions I mentioned earlier on &lt;a href="http://www.array.org/ubuntu/setup901.html"&gt;installing the Ubuntu-eee kernel manually and using the array.org ubuntu-eee repository&lt;/a&gt;. This got internet access (and swishy UI effects) working.&lt;/li&gt;

&lt;li&gt;I updated installed programs via the clicky red arrow and didn't bother to find out the consistent way to access this.&lt;/li&gt;

&lt;li&gt;I installed Apache, MySQL, and PHP according to these &lt;a href="https://help.ubuntu.com/community/ApacheMySQLPHP"&gt;instructions for LAMP on Ubuntu&lt;/a&gt;. Basically:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;sudo tasksel install lamp-server&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;Patience is a virtue. I think that after installing AMP via tasksel, you can stop and start Apache and MySQL via the Services panel (in the menus at System &amp;gt; Administration &amp;gt; Services).&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2034493703362399583?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2034493703362399583'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2034493703362399583'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/08/ubuntu-on-my-eee-1000.html' title='Ubuntu on my Eee 1000'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-170686639796523536</id><published>2008-08-18T15:39:00.000-04:00</published><updated>2008-08-18T15:39:18.417-04:00</updated><title type='text'>fish list</title><content type='html'>&lt;a href="http://www.nrdc.org/health/effects/mercury/guide.asp"&gt;Consumer Guide to Mercury in Fish&lt;/a&gt;. Also notes whether the species are "in trouble".&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-170686639796523536?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.nrdc.org/health/effects/mercury/guide.asp' title='fish list'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/170686639796523536'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/170686639796523536'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/08/fish-list.html' title='fish list'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2885411988687735803</id><published>2008-08-12T23:16:00.002-04:00</published><updated>2008-08-12T23:51:08.221-04:00</updated><title type='text'>subnotebook purchase</title><content type='html'>&lt;p&gt;Since I won't be able to get the MSI Wind before I go out of the country at the end of the month, I need to get something else to travel with (am not taking my main laptop out of the country with current border policies). I almost got the &lt;a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16834147675"&gt;HP Mini-Note&lt;/a&gt;, but then I settled on the larger/faster &lt;a href="http://www.newegg.com/Product/Product.aspx?Item=N82E16834220370"&gt;Asus eee 1000&lt;/a&gt;. Pros: ships now. Cons: having to settle.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2885411988687735803?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2885411988687735803'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2885411988687735803'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/08/subnotebook-purchase.html' title='subnotebook purchase'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4974657371156181158</id><published>2008-08-07T23:19:00.001-04:00</published><updated>2008-08-07T23:19:43.738-04:00</updated><title type='text'>the future of shopping malls: take 'em away</title><content type='html'>&lt;p&gt;Daydreams for redeveloping closed shopping malls: &lt;a href="http://www.worldchanging.com/local/seattle/archives/008250.html"&gt;The Future of Shopping Malls: An Image Essay&lt;/a&gt;. This made me think of visiting that huge posh empty mall in downtown Vancouver.&lt;/p&gt;&lt;p&gt;I think the fallacy here is that the mall construction is fundamentally shitty. First, malls are built with a short lifespan in mind--I'd guess 20 years or so. Second, they're built without considering environmental factors; for example, they have flat roofs and the plan for dealing with snow is to heat the building enough to melt it off; they don't take advantage of solar energy for heat and light, or of trees for shade. If the power is out, you can't heat, cool, or light a mall. Runoff has nowhere to go. Third, many of them aren't accessible without a car: they're surrounded by acres of baking asphalt and have their own exit off the freeway. Unfortunately, malls are a sunk cost, the results of a series of horrible decisions that we need to move past rather than investing ourselves in revitalizing. Rip it up, recycle the parts, and put something green and growing there.&lt;/p&gt;
&lt;p&gt;link &lt;a href="http://www.boingboing.net/2008/08/07/deadmalls-as-new-urb.html"&gt;via boingboing&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4974657371156181158?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4974657371156181158'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4974657371156181158'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/08/worldchanging-seattle-future-of.html' title='the future of shopping malls: take &apos;em away'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-1918429651892301351</id><published>2008-08-07T13:53:00.000-04:00</published><updated>2008-08-07T13:53:17.236-04:00</updated><title type='text'>topo maps</title><content type='html'>&lt;a href="http://www.kk.org/cooltools/archives/002970.php"&gt;free topographical maps&lt;/a&gt; - kmz layer for google earth, also pdfs of USGS topo maps. Also mentions "Teslin paper", which is extra-durable and waterproof paper, perfect for printing maps and probably plenty of other things, too. thx kb.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-1918429651892301351?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.kk.org/cooltools/archives/002970.php' title='topo maps'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1918429651892301351'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1918429651892301351'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/08/topo-maps.html' title='topo maps'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3786506338225806006</id><published>2008-08-04T09:50:00.002-04:00</published><updated>2008-08-04T09:54:47.718-04:00</updated><title type='text'>freewheel</title><content type='html'>&lt;a href="http://www.sheldonbrown.com/freewheels.html"&gt;Sheldon Brown on freewheels&lt;/a&gt;, &lt;a href="http://www.youtube.com/watch?v=WTfs3gEhgKo"&gt;how to replace a freewheel&lt;/a&gt; (youtube). Turns out I have a freewheel, so I don't have to replace the whole wheel.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3786506338225806006?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3786506338225806006'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3786506338225806006'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/08/freewheel.html' title='freewheel'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6750354323427976796</id><published>2008-08-01T19:57:00.000-04:00</published><updated>2008-08-01T19:57:13.483-04:00</updated><title type='text'>"business mohawk"</title><content type='html'>this story stuck in my head--I read it years ago but it came up in discussion last night so here it is: &lt;a href="http://www.eyeshot.net/brown1.html"&gt;The Business Mohawk by Ben Brown&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6750354323427976796?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.eyeshot.net/brown1.html' title='&quot;business mohawk&quot;'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6750354323427976796'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6750354323427976796'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/08/business-mohawk.html' title='&quot;business mohawk&quot;'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-471005337150406429</id><published>2008-07-18T13:06:00.000-04:00</published><updated>2008-07-18T13:06:03.110-04:00</updated><title type='text'>lost my old .bashrc</title><content type='html'>&lt;p&gt;&lt;a href="http://www.cyberciti.biz/tips/howto-linux-unix-bash-shell-setup-prompt.html"&gt;Bash prompt customization cheat sheet&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;my usual .tcshrc looks approximately like this:&lt;/p&gt;
&lt;pre&gt;set complete = enhance
set autolist = ambiguous
set prompt="[%t %n@%m:%c03] %# "    # prompt like [1:04pm bec@hat:~] % 
alias ls "ls -AF"&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-471005337150406429?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.cyberciti.biz/tips/howto-linux-unix-bash-shell-setup-prompt.html' title='lost my old .bashrc'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/471005337150406429'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/471005337150406429'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/07/lost-my-old-bashrc.html' title='lost my old .bashrc'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6880464181876458713</id><published>2008-07-18T11:54:00.000-04:00</published><updated>2008-07-18T11:54:03.171-04:00</updated><title type='text'>spatial concepts</title><content type='html'>listing, description, and diagrams of (some?) &lt;a href="http://www.filibeto.org/sun/lib/nonsun/oracle/11.1.0.6.0/B28359_01/appdev.111/b28400/sdo_intro.htm#i880253"&gt;spatial relationships&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6880464181876458713?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.filibeto.org/sun/lib/nonsun/oracle/11.1.0.6.0/B28359_01/appdev.111/b28400/sdo_intro.htm#i880253' title='spatial concepts'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6880464181876458713'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6880464181876458713'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/07/spatial-concepts.html' title='spatial concepts'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-5850543327259206211</id><published>2008-07-14T10:36:00.003-04:00</published><updated>2008-07-14T14:05:37.284-04:00</updated><title type='text'>ʇxǝʇ spɹɐʍʞɔɐq puɐ uʍop ǝpısdn</title><content type='html'>&lt;a href="http://www.revfad.com/flip.html"&gt;turn regular text into upside-down, backwards unicode text&lt;/a&gt;. via this techcrunch article on &lt;a href="http://www.techcrunch.com/2008/07/14/google-trends-subverted-again/"&gt;subverting google trends&lt;/a&gt;. (thx t-dub)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-5850543327259206211?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5850543327259206211'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5850543327259206211'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/07/x-spq-pu-uop-psdn.html' title='ʇxǝʇ spɹɐʍʞɔɐq puɐ uʍop ǝpısdn'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-5704388021010283205</id><published>2008-07-12T15:43:00.000-04:00</published><updated>2008-07-12T15:43:01.945-04:00</updated><title type='text'>water treatment</title><content type='html'>last week I was enjoying these &lt;a href="http://www.inthewake.org/b1water3.html"&gt;charts and descriptions of DIY water treatment methods&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-5704388021010283205?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.inthewake.org/b1water3.html' title='water treatment'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5704388021010283205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5704388021010283205'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/07/water-treatment.html' title='water treatment'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-9055434463651192214</id><published>2008-07-10T12:46:00.000-04:00</published><updated>2008-07-10T12:47:41.714-04:00</updated><title type='text'>wheat in Maine</title><content type='html'>&lt;a href="http://pressherald.mainetoday.com/story.php?id=196548"&gt;wheat production is coming back in Maine&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-9055434463651192214?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/9055434463651192214'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/9055434463651192214'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/07/wheat-in-maine.html' title='wheat in Maine'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6774157699938818128</id><published>2008-06-28T18:33:00.002-04:00</published><updated>2008-06-28T19:11:26.323-04:00</updated><title type='text'>importing m3u playlists into iTunes</title><content type='html'>&lt;p&gt;I haven't found a way to import m3u playlists into iTunes and have them come through in the correct order. This afternoon I wrote an AppleScript to do it for me. AppleScript makes me crazy--&lt;a href="http://docs.info.apple.com/article.html?artnum=50096"&gt;a PDF manual&lt;/a&gt;? "natural language"? seriously?&lt;/p&gt;
&lt;p&gt;Anyway, this script:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;takes a .m3u playlist file that contains relative paths to the music in the playlist--generally, the playlist file will be in the same directory as the music--creates a playlist in iTunes, imports the tracks, and adds them to the new playlist.&lt;/li&gt;
&lt;li&gt;may be used by &lt;ul&gt;&lt;li&gt;drag-and-dropping m3u files on the script from the Finder&lt;/li&gt;&lt;li&gt;double clicking the script and then choosing a file&lt;/li&gt;&lt;li&gt;or putting this script in your "~/Library/iTunes/Scripts" folder (create it if it doesn't exist) and accessing it via iTunes' scripts menu.&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;
&lt;li&gt;may be edited by you--open it with the Script Editor application that comes with Mac OS X (in /Applications/AppleScript)&lt;/li&gt;
&lt;li&gt;This script is provided without warranty! It is not necessarily well-implemented!&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;download: &lt;a href="http://circuitous.org/scraps/Import m3u Playlist into iTunes.zip"&gt;Import m3u Playlist into iTunes.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Remind me to use &lt;a href="http://www.apple.com/applescript/features/scriptingbridge.html"&gt;something else&lt;/a&gt; the next time I feel compelled to do any application scripting.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6774157699938818128?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6774157699938818128'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6774157699938818128'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/importing-m3u-playlists-into-itunes.html' title='importing m3u playlists into iTunes'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-8037093736294464421</id><published>2008-06-19T10:39:00.001-04:00</published><updated>2008-06-19T10:41:02.513-04:00</updated><title type='text'>house full of teacups</title><content type='html'>&lt;a href="http://www.domestic-construction.com/for_the_home/ted_lights.shtml"&gt;hanging lights made from teacups&lt;/a&gt;. via boingboing.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-8037093736294464421?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8037093736294464421'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8037093736294464421'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/house-full-of-teacups.html' title='house full of teacups'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7804222821936343704</id><published>2008-06-18T14:45:00.000-04:00</published><updated>2008-06-18T14:47:09.370-04:00</updated><title type='text'>fixing bikes</title><content type='html'>&lt;a href="http://bicycletutor.com/"&gt;bicycle how-to videos&lt;/a&gt;. via kb.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7804222821936343704?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7804222821936343704'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7804222821936343704'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/fixing-bikes.html' title='fixing bikes'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-1867282276414832521</id><published>2008-06-16T12:17:00.002-04:00</published><updated>2008-06-16T12:20:45.997-04:00</updated><title type='text'>measure: how hard is it to misuse?</title><content type='html'>Eads pointed me to this ordered list of &lt;a href="http://www.pointy-stick.com/blog/2008/01/09/api-design-rusty-levels/"&gt;ways programming interfaces can suck&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-1867282276414832521?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1867282276414832521'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1867282276414832521'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/measure-how-hard-is-it-to-misuse.html' title='measure: how hard is it to misuse?'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6102658108595152339</id><published>2008-06-14T11:35:00.001-04:00</published><updated>2008-06-14T11:35:57.205-04:00</updated><title type='text'>homemade "plastic"</title><content type='html'>&lt;a href="http://www.instructables.com/id/Homemade-Plastic/"&gt;make plastic from milk&lt;/a&gt;. via nick and make.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6102658108595152339?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6102658108595152339'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6102658108595152339'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/homemade-plastic.html' title='homemade &quot;plastic&quot;'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-5316589995030618277</id><published>2008-06-13T12:34:00.000-04:00</published><updated>2008-06-13T12:34:59.948-04:00</updated><title type='text'>retro terminal</title><content type='html'>&lt;a href="http://riffraff.livejournal.com/356503.html"&gt;GLTerminal&lt;/a&gt;: term that emulates screen curvature. hilarious.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-5316589995030618277?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://riffraff.livejournal.com/356503.html' title='retro terminal'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5316589995030618277'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5316589995030618277'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/retro-terminal.html' title='retro terminal'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-996074321804377157</id><published>2008-06-10T20:07:00.001-04:00</published><updated>2008-06-10T20:08:03.961-04:00</updated><title type='text'>growing sprouts</title><content type='html'>Jen recently inspired me to try to &lt;a href="http://waltonfeed.com/grain/sprouts.html"&gt;grow sprouts&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-996074321804377157?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/996074321804377157'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/996074321804377157'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/growing-and-using-sprouts.html' title='growing sprouts'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-1623181374014892055</id><published>2008-06-05T22:10:00.000-04:00</published><updated>2008-06-05T22:10:04.260-04:00</updated><title type='text'>drupalcon presentation</title><content type='html'>In March two of my coworkers and I gave a presentation at DrupalCon Boston 2008; The video is (or will soon be) online at the Internet Archive: &lt;a href="http://www.archive.org/details/DrupalconBoston2008-DrupalAsAGismappingPlatform"&gt;DrupalCon Boston 2008 - Drupal as a GIS/Mapping Platform&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-1623181374014892055?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.archive.org/details/DrupalconBoston2008-DrupalAsAGismappingPlatform' title='drupalcon presentation'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1623181374014892055'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1623181374014892055'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/drupalcon-presentation.html' title='drupalcon presentation'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-8465095416552480863</id><published>2008-06-04T20:14:00.001-04:00</published><updated>2008-06-04T20:16:49.711-04:00</updated><title type='text'>word: halophyte</title><content type='html'>A salt-tolerant plant. &lt;a href="http://www.ussl.ars.usda.gov/pls/caliche/halophyte.query?k=Species&amp;q=tetragonoides"&gt;New Zealand Spinach&lt;/a&gt; is a halophyte.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-8465095416552480863?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8465095416552480863'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8465095416552480863'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/word-halophyte.html' title='word: halophyte'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4409335674887317874</id><published>2008-06-04T15:27:00.004-04:00</published><updated>2008-06-04T15:36:09.095-04:00</updated><title type='text'>word: Hegelian</title><content type='html'>&lt;p&gt;An 18th century philosopher named Hegel had the idea that you can evolve an idea into an absolute, perfect idea. You do this by taking a thesis and it's antithesis and finding another thesis that addresses both... rinse and repeat. This idea is called the "Hegelian Dialectic"; &lt;a href="http://www.calvertonschool.org/waldspurger/pages/hegelian_dialectic.htm"&gt;a diagram&lt;/a&gt; may be somewhat helpful.&lt;/p&gt;
&lt;p&gt;Hegel also had other ideas... &lt;a href="http://en.wikipedia.org/wiki/Hegel"&gt;wikipedia&lt;/a&gt;, lazybones.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4409335674887317874?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4409335674887317874'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4409335674887317874'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/word-hegelian.html' title='word: Hegelian'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2215367597698459724</id><published>2008-06-03T18:53:00.000-04:00</published><updated>2008-06-03T18:53:48.276-04:00</updated><title type='text'>tiny laptops</title><content type='html'>&lt;a href="http://gadgets.boingboing.net/2008/06/03/round-up-subnotebook.html"&gt;Subnotebook roundup at Boing Boing Gadgets&lt;/a&gt;. Like the boingboing editors, I'm drooling over the MSI Wind.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2215367597698459724?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://gadgets.boingboing.net/2008/06/03/round-up-subnotebook.html' title='tiny laptops'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2215367597698459724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2215367597698459724'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/tiny-laptops.html' title='tiny laptops'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4077995804603548042</id><published>2008-06-02T22:36:00.002-04:00</published><updated>2008-06-04T12:24:15.530-04:00</updated><title type='text'>rhubarb season</title><content type='html'>&lt;a href="http://www.rhubarbinfo.com/recipe-cobbler.html##index_cobbler_21"&gt;rhubarb crisp&lt;/a&gt;. I've read recipes with half the sugar.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4077995804603548042?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4077995804603548042'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4077995804603548042'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/06/rhubarb-season.html' title='rhubarb season'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-8349935750359113255</id><published>2008-05-30T21:30:00.003-04:00</published><updated>2008-05-30T21:52:05.158-04:00</updated><title type='text'>oEmbed</title><content type='html'>&lt;p&gt;&lt;a href="http://oembed.com/"&gt;oEmbed&lt;/a&gt; was introduced recently (beginning of this month) as a standardized way to get enough info about a resource to embed it; ie, get the format, dimensions, url, title, etc., so that you can build an &amp;lt;img&amp;gt; or &amp;lt;embed&amp;gt; tag for rendering the resource on your page. This is an extremely useful idea; it would let people paste a URL places rather than the youtube embed codes or whatever. However! This scheme requires two URLs to represent the same resource; a more RESTful approach would simply ask the resource's URL for a particular HTTP response. Backdrifter explains: &lt;a href="http://www.backdrifter.com/2008/05/09/oembed-fail-represent-restfully/"&gt;oEmbed FAIL! Represent RESTfully.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;(similar, but less readable spec: &lt;a href="http://xrds-simple.net/"&gt;XRDS&lt;/a&gt;)&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-8349935750359113255?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8349935750359113255'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8349935750359113255'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/oembed.html' title='oEmbed'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-270786782199786256</id><published>2008-05-30T20:51:00.002-04:00</published><updated>2008-05-30T20:54:45.945-04:00</updated><title type='text'>laser cutter access</title><content type='html'>&lt;a href="http://www.ponoko.com/"&gt;Ponoko&lt;/a&gt; lets you design stuff to get cut by a laser cutter. I think that the way industrial tools like laser cutters are becoming more and more available to people is very cool.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-270786782199786256?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/270786782199786256'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/270786782199786256'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/laser-cutter-access.html' title='laser cutter access'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-5411307641171757377</id><published>2008-05-28T19:37:00.002-04:00</published><updated>2008-05-28T19:41:51.584-04:00</updated><title type='text'>on using open source</title><content type='html'>"If you want to use open source, you have to learn to stop being a customer...you have to become a collaborator" -- from a talk on Plone given by Steve McMahon here at &lt;a href="http://www.netsquared.org/2008/conference/"&gt;NetSquared&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-5411307641171757377?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5411307641171757377'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5411307641171757377'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/on-using-open-source.html' title='on using open source'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7098942640604493092</id><published>2008-05-27T12:03:00.000-04:00</published><updated>2008-05-27T12:04:01.201-04:00</updated><title type='text'>Christine recommends</title><content type='html'>Fun Home, a graphic novel by Alison Bechdel.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7098942640604493092?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7098942640604493092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7098942640604493092'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/christine-recommends.html' title='Christine recommends'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2374512973220227944</id><published>2008-05-13T19:58:00.001-04:00</published><updated>2008-05-13T20:20:51.405-04:00</updated><title type='text'>font making</title><content type='html'>&lt;a href="http://fontstruct.fontshop.com/"&gt;web app for making truetype fonts&lt;/a&gt; via &lt;a href="http://www.kottke.org/remainder/08/05/15639.html"&gt;kottke&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2374512973220227944?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2374512973220227944'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2374512973220227944'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/font-making.html' title='font making'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2941278553129775310</id><published>2008-05-09T14:44:00.001-04:00</published><updated>2008-05-09T14:46:09.163-04:00</updated><title type='text'>weird</title><content type='html'>&lt;a href="http://www.nytimes.com/2008/05/08/science/08platypus.html?_r=1&amp;oref=slogin"&gt;Platypus...&lt;/a&gt;
&lt;ol&gt;
&lt;li&gt;are venomous.&lt;/li&gt;
&lt;li&gt;nurse their young through their abdominal skin(?)&lt;/li&gt;
&lt;/ol&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2941278553129775310?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2941278553129775310'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2941278553129775310'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/weird.html' title='weird'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3049519603350407505</id><published>2008-05-08T22:49:00.005-04:00</published><updated>2008-05-08T23:06:54.834-04:00</updated><title type='text'>bike repair book</title><content type='html'>&lt;p&gt;I'm looking for a good bicycle repair book: one that talks about tools, has a ton of diagrams (preferably hand drawn), and plenty of description and best practices. Today I came across a book called "Fix Your Bicycle", by Eric Jorgensen and Joe Bergman, put out by Clymer Publications between 1972 and 1979. It is full of diagrams and photos, from photos describing how to patch tires to technical illustrations of exploded bottom brackets. It also describes bicycle tools and how to use them. In short: I want it. I'm trolling Amazon's used sellers for it this very moment (there are several misspellings, &lt;a href="http://www.amazon.com/dp/B000NX1PG2"&gt;for example&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Also looking good: Anybody's Bike Book, by Tom Cuthbertson (kb has a 1979 edition).&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3049519603350407505?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3049519603350407505'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3049519603350407505'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/bike-repair-book.html' title='bike repair book'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6523303825363387331</id><published>2008-05-08T22:33:00.002-04:00</published><updated>2008-05-08T22:48:43.450-04:00</updated><title type='text'>MEC backpacks</title><content type='html'>&lt;p&gt;uh, backpack shopping alert. sorry.&lt;/p&gt;
&lt;p&gt;MEC is a Canadian outdoor gear company that is a little bit like a slimmer, hipper LLBean with all the flannel-fireside-lifestyle crap trimmed away. They have a very good backpack selection, too. As a simple, minimalist overnight pack or travel bag, I liked the &lt;a href="http://www.mec.ca/Products/product_detail.jsp?prd_id=845524441776413"&gt;30 liter Brio Crag daypack&lt;/a&gt;. Also the &lt;a href="http://www.mec.ca/Products/product_detail.jsp?prd_id=845524441773119"&gt;tiny Pika daypack&lt;/a&gt; is almost exactly like the tiny simple bag I inherited (translation: appropriated) from my mother, exactly right for casual hikes.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6523303825363387331?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6523303825363387331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6523303825363387331'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/mec-backpacks.html' title='MEC backpacks'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-1132181297453850458</id><published>2008-05-08T22:23:00.002-04:00</published><updated>2008-05-08T22:32:28.661-04:00</updated><title type='text'>apples</title><content type='html'>kb pointed me to this fantastic &lt;a href="http://www.theatlantic.com/doc/200805/apples"&gt;Atlantic article about an apple collector and curator&lt;/a&gt;. Linked in the article is the &lt;a href="http://www.fedcoseeds.com/trees.htm"&gt;Fedco Seeds tree catalog&lt;/a&gt;, which has tons of info about cultivating trees as well as descriptions of varieties for sale.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-1132181297453850458?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1132181297453850458'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1132181297453850458'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/apples.html' title='apples'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6480298648680225676</id><published>2008-05-06T21:09:00.000-04:00</published><updated>2008-05-06T21:10:34.136-04:00</updated><title type='text'>word</title><content type='html'>"peregrinations". lovely.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6480298648680225676?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6480298648680225676'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6480298648680225676'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/word.html' title='word'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2829392069938001947</id><published>2008-05-03T12:02:00.001-04:00</published><updated>2008-05-03T12:04:08.473-04:00</updated><title type='text'>fire in the hole</title><content type='html'>CNN video: &lt;a href="http://www.cnn.com/video/#/video/us/2008/05/02/vo.ma.manhole.explosion.whdh"&gt;flames shooting out of a manhole&lt;/a&gt; in Cambridge MA yesterday. (thx Justin)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2829392069938001947?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2829392069938001947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2829392069938001947'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/fire-in-hole.html' title='fire in the hole'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-8912392099773012180</id><published>2008-05-01T19:07:00.000-04:00</published><updated>2008-05-01T19:08:08.776-04:00</updated><title type='text'>from work today...</title><content type='html'>&lt;blockquote&gt;&lt;p&gt;[6:32pm] becw: DRY?&lt;br /&gt;
[6:32pm] eads: Don't repeat yourself.&lt;br /&gt;
[6:32pm] t-dub: Don't Repeat Yourself&lt;br /&gt;
[6:32pm] t-dub: Or eads&lt;br /&gt;
...&lt;br /&gt;
[6:33pm] nikCTC: oh, it gets better...&lt;br /&gt;
[6:33pm] nikCTC: let me double-check my logs&lt;br /&gt;
[6:36pm] nikCTC: from April 10th of this year: ﻿(02:13:28 PM) becw: DRY, t-dub?&lt;/p&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-8912392099773012180?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8912392099773012180'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8912392099773012180'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/from-work-today.html' title='from work today...'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4715218823681572706</id><published>2008-05-01T15:07:00.004-04:00</published><updated>2008-05-01T22:04:47.591-04:00</updated><title type='text'>cross-browser</title><content type='html'>I would agree &lt;em&gt;more&lt;/em&gt; if each browser displayed it differently: &lt;a href="http://dowebsitesneedtolookexactlythesameineverybrowser.com/"&gt;do web sites need to look exactly the same in every browser&lt;/a&gt;? (&lt;a href="http://daringfireball.net/linked/2008/may#thu-01-no"&gt;via&lt;/a&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4715218823681572706?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4715218823681572706'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4715218823681572706'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/05/cross-browser.html' title='cross-browser'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3813701626884537347</id><published>2008-04-29T19:42:00.002-04:00</published><updated>2008-04-29T19:48:52.456-04:00</updated><title type='text'>waterproofing canvas</title><content type='html'>for future reference: &lt;a href="http://www.diy-boat.com/index.php?option=com_content&amp;task=view&amp;id=154&amp;Itemid=49"&gt;five canvas waterproofers&lt;/a&gt;. Iosso Water Repellent is the only nontoxic one there.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3813701626884537347?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3813701626884537347'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3813701626884537347'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/waterproofing-canvas.html' title='waterproofing canvas'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4706296488796020149</id><published>2008-04-28T16:28:00.001-04:00</published><updated>2008-04-28T16:32:16.753-04:00</updated><title type='text'>front bike racks</title><content type='html'>&lt;a href="http://cetmaracks.com/"&gt;platform racks for the front of bikes&lt;/a&gt;. (&lt;a href="http://www.grist.org/advice/ask/2008/04/28/index.html?source=rss"&gt;via&lt;/a&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4706296488796020149?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4706296488796020149'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4706296488796020149'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/front-bike-racks.html' title='front bike racks'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4048117660478401340</id><published>2008-04-27T21:25:00.003-04:00</published><updated>2008-04-27T21:35:16.565-04:00</updated><title type='text'>I admit it.</title><content type='html'>I just took a personality test which asked if I "prefer to stick with things that I know", which I do, but the corollary is that I prefer to know a lot of things.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4048117660478401340?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4048117660478401340'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4048117660478401340'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/i-admit-it.html' title='I admit it.'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2853092162605526315</id><published>2008-04-27T16:01:00.002-04:00</published><updated>2008-04-27T16:03:29.180-04:00</updated><title type='text'>two "DIY" shoes</title><content type='html'>&lt;p&gt;... from shoe companies. youtube videos:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=fDjKXBAr0ho"&gt;from Simple&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="http://www.youtube.com/watch?v=cqn_riEIFBw"&gt;from Patagonia&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2853092162605526315?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2853092162605526315'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2853092162605526315'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/two-diy-shoes.html' title='two &quot;DIY&quot; shoes'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2486108179152796237</id><published>2008-04-27T15:25:00.006-04:00</published><updated>2008-04-27T19:30:39.348-04:00</updated><title type='text'>backpack shopping</title><content type='html'>&lt;p&gt;I wish there was more outdoor gear designed like this &lt;a href="http://www.trailspace.com/gear/lafuma/eco-40/"&gt;Lafuma "Eco" backpack&lt;/a&gt;. It's hemp plus recycled polyester, and designed with less fabric and fewer plastic bits. Plus, they don't have weird brightly colored panels like most packs. The color of the pack on &lt;a href="http://www.lafumausa.com/index.php?id=catalog_list2_us&amp;L=6&amp;cPath=3_17_22&amp;products_id=42&amp;typo_prod=1:us"&gt;Lafuma's site&lt;/a&gt; is pretty flash: mottled grey with red tabs.&lt;/p&gt;
&lt;p&gt;The other pack I'm looking at is the &lt;a href="http://www.backcountry.com/store/OSP0115"&gt;Osprey Stratos 40&lt;/a&gt;, which has a bunch of straps for compression and gets universally awesome reviews. Also, I can go check this bag out in person at REI. If I were to get a new pack this spring (doubtful: I already have a pack), this would probably be the one.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2486108179152796237?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2486108179152796237'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2486108179152796237'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/backpack-shopping.html' title='backpack shopping'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4597738775844967542</id><published>2008-04-27T11:50:00.002-04:00</published><updated>2008-04-27T11:59:05.425-04:00</updated><title type='text'>recent wikipedia lookups</title><content type='html'>&lt;ul&gt;
  &lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Haberdashery"&gt;Haberdashery&lt;/a&gt; - a shop that sells accessories like hats and gloves, and also sometimes buttons and ribbons.&lt;/li&gt;
  &lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Muntjac"&gt;Muntjac&lt;/a&gt; - a small omnivorous deer with tusks.&lt;/li&gt;
  &lt;li&gt;&lt;a href="http://en.wikipedia.org/wiki/Round_robin"&gt;Round robin&lt;/a&gt; - a pact or petition.&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4597738775844967542?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4597738775844967542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4597738775844967542'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/recent-wikipedia-lookups.html' title='recent wikipedia lookups'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2106973677874802693</id><published>2008-04-26T12:13:00.001-04:00</published><updated>2008-04-26T12:14:51.873-04:00</updated><title type='text'>shoe sizes</title><content type='html'>&lt;a href="http://www.i18nguy.com/l10n/shoes.html#adult"&gt;international shoe size conversion chart&lt;/a&gt;. with inches and centimeters as well as shoe sizes.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2106973677874802693?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2106973677874802693'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2106973677874802693'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/shoe-sizes.html' title='shoe sizes'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7557321947379813687</id><published>2008-04-20T00:37:00.002-04:00</published><updated>2008-04-20T00:55:33.966-04:00</updated><title type='text'>current book list</title><content type='html'>&lt;p&gt;Books that I have started recently but have not finished, oldest to newest:&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;Feminism and Science Fiction, by Sarah Lefanu. This needs to be read with a good SF library at hand.&lt;/li&gt;
  &lt;li&gt;Skin, by Dorothy Allison.&lt;/li&gt;
  &lt;li&gt;Trampoline, a short story anthology edited by Kelly Link.&lt;/li&gt;
  &lt;li&gt;The Best American Short Stories, 2006, edited by Ann Patchett. I haven't gotten past the table of contents.&lt;/li&gt;
  &lt;li&gt;The Body in Pain, by Elaine Scarry.&lt;/li&gt;
  &lt;li&gt;Tin House, Vol. 9, #3: Off the Grid.&lt;/li&gt;
  &lt;li&gt;Learning Python, by Mark Lutz.&lt;/li&gt;
  &lt;li&gt;The SFWA European Hall of Fame, a scifi short story collection edited by James Morrow and Kathryn Morrow.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This stack is only seven inches high but feels overwhelming. I probably won't need any more books until at least July; I won't have finished the stack by then, only gotten more impatient with it.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7557321947379813687?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7557321947379813687'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7557321947379813687'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/current-book-list.html' title='current book list'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2969356387130442487</id><published>2008-04-18T22:50:00.002-04:00</published><updated>2008-04-20T01:13:43.401-04:00</updated><title type='text'>quoth HBO</title><content type='html'>Says John Adams in part 5 of the eponymous HBO series: "Thanks be to god that he gave me stubbornness, especially when I know that I am right."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2969356387130442487?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2969356387130442487'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2969356387130442487'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/quoth-hbo.html' title='quoth HBO'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-5176867489481022612</id><published>2008-04-18T18:40:00.000-04:00</published><updated>2008-04-18T18:40:29.617-04:00</updated><title type='text'>CHDK</title><content type='html'>&lt;a href="http://chdk.wikia.com/wiki/CHDK_in_Brief"&gt;CHDK&lt;/a&gt; -- extra firmware for Cannon digital cameras. Looks like fun. (&lt;a href="http://www.evilmadscientist.com/article.php/linkdump200804"&gt;via&lt;/a&gt;)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-5176867489481022612?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://chdk.wikia.com/wiki/CHDK_in_Brief' title='CHDK'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5176867489481022612'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/5176867489481022612'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/chdk.html' title='CHDK'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7779619288376201738</id><published>2008-04-18T18:21:00.003-04:00</published><updated>2008-04-18T18:25:47.703-04:00</updated><title type='text'>soil test</title><content type='html'>&lt;a href="http://www.umass.edu/plsoils/soiltest/"&gt;UMass soil testing service&lt;/a&gt;. $9, tests for heavy metals, among other things. Important for anyone gardening in cities or next to houses that may have been painted with lead paint! If there's lead in the soil and you're a long-term resident, you can do plant-based remediation (so cool).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7779619288376201738?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7779619288376201738'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7779619288376201738'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/soil-test.html' title='soil test'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-29588292741670780</id><published>2008-04-17T18:44:00.000-04:00</published><updated>2008-04-17T18:44:03.516-04:00</updated><title type='text'>magazine of *stuff*</title><content type='html'>&lt;a href="http://www.cityofsound.com/blog/2008/02/materials-month.html"&gt;Materials Monthly&lt;/a&gt; -- a monthly publication from Princeton Architectural Press that includes actual material samples. For example, issue 11 has "Prismatic Stainless Steel", "Hand-finished Acrylic Floor", and "Silver Reflective Film". It comes in a box! via kottke.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-29588292741670780?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.cityofsound.com/blog/2008/02/materials-month.html' title='magazine of *stuff*'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/29588292741670780'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/29588292741670780'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/magazine-of-stuff.html' title='magazine of *stuff*'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3650533240232621027</id><published>2008-04-14T02:21:00.000-04:00</published><updated>2008-04-14T02:21:00.147-04:00</updated><title type='text'>cell phone customization</title><content type='html'>&lt;p&gt;Got a fancy new cell phone tonight (thanks ben!) and found that the only ring tones it will play are .mmf format. Converted my aiffs to wav, then used a crunky but free and handy tool from Yamaha to turn those into mmfs. The phone is a Samsung T509, and the converter software is &lt;a href="http://smaf-yamaha.com/tools/downloads.html"&gt;Yamaha's "Wave to SMAF Converter"&lt;/a&gt;. mmf!&lt;/p&gt;
&lt;p&gt;Now if only I could replace those menu icons...&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3650533240232621027?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://smaf-yamaha.com/tools/downloads.html' title='cell phone customization'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3650533240232621027'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3650533240232621027'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/cell-phone-customization.html' title='cell phone customization'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-1312998295488647717</id><published>2008-04-12T15:37:00.000-04:00</published><updated>2008-04-12T15:37:48.797-04:00</updated><title type='text'>words for "poor"</title><content type='html'>Ben recently asked a question about &lt;a href="http://island94.org/articles/progressive-terminology-discussing-poverty"&gt;what words to use when talking about poverty&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-1312998295488647717?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://island94.org/articles/progressive-terminology-discussing-poverty' title='words for &quot;poor&quot;'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1312998295488647717'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1312998295488647717'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/words-for-poor.html' title='words for &quot;poor&quot;'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-8609223355408347611</id><published>2008-04-09T21:06:00.002-04:00</published><updated>2008-04-09T21:39:32.209-04:00</updated><title type='text'>"coworking"</title><content type='html'>&lt;a href="http://coworking.pbwiki.com/CoworkingBoston"&gt;Coworking in Boston&lt;/a&gt;. This &lt;a href="http://www.bostonherald.com/blogs/news/hub_20/index.php/2008/03/03/co-working-the-future-of-boston-tech/"&gt;article on Betahouse culture&lt;/a&gt; is pretty off-putting, though. (Betahouse is a Boston coworking space)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-8609223355408347611?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8609223355408347611'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8609223355408347611'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/coworking.html' title='&quot;coworking&quot;'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7713574634191490640</id><published>2008-04-08T01:53:00.000-04:00</published><updated>2008-04-08T01:53:54.306-04:00</updated><title type='text'>bike insurance</title><content type='html'>&lt;a href="http://www.velonews.com/article/71286"&gt;VeloNews on bike insurance&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7713574634191490640?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.velonews.com/article/71286' title='bike insurance'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7713574634191490640'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7713574634191490640'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/bike-insurance.html' title='bike insurance'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-1198191880596694977</id><published>2008-04-02T21:08:00.002-04:00</published><updated>2008-04-02T21:19:24.713-04:00</updated><title type='text'>spicy oven fries</title><content type='html'>&lt;p&gt;My friend Rachel posted a potato recipe on her lj a few weeks ago, and I made it and it turned out really well. My variation goes like this:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;Preheat the oven to 450°.&lt;/p&gt;
&lt;p&gt;Put in two tablespoons or so of flour, some adobo powder, and some cumin in a little bowl and mix it up. (alternatively, use flour, salt, pepper, paprika, and onion and garlic powder)&lt;/p&gt;
&lt;p&gt;Rinse and dry a couple of potatoes (Yukon golds are delicious of course) and slice them into eighths, lengthwise. Put the slices in a big bowl, drizzle with olive oil and mix up. Drop the flour mixture on top and stir the slices 'till they're coated. Set them skin-down in a pan, then stick 'em in the oven and cook for 15-20 minutes or until they start to get brown.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;These are kind of like home-spicy-fries, crispy and spicy on the outside. I think I ate an entire cookie sheet of them.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-1198191880596694977?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1198191880596694977'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1198191880596694977'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/spicy-oven-fries.html' title='spicy oven fries'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7684377281720295324</id><published>2008-04-02T01:04:00.000-04:00</published><updated>2008-04-02T01:05:27.553-04:00</updated><title type='text'>eads recommends</title><content type='html'>The BBC TV series "Planet Earth": "It is the coolest nature show ever."&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7684377281720295324?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7684377281720295324'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7684377281720295324'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/04/eads-recommends.html' title='eads recommends'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-8683550677886569142</id><published>2008-03-28T22:43:00.000-04:00</published><updated>2008-03-28T22:43:10.382-04:00</updated><title type='text'>repetition</title><content type='html'>&lt;p&gt;Tonight's dose of thinking: possibly alternating "rock o'clock" with my current response, "ain't got no job o'clock" would save a little sanity for anyone who has ever asked me the time twice. (If you ask three times, I guess there's nothing I can do for you.)&lt;/p&gt;
&lt;p&gt;Noting the above, it would be an extremely bad idea for me to own &lt;a href="http://scarygoround.com/shop-tshirts.php#rockoclock"&gt;this tshirt&lt;/a&gt;.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-8683550677886569142?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://scarygoround.com/shop-tshirts.php#rockoclock' title='repetition'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8683550677886569142'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8683550677886569142'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/repetition.html' title='repetition'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-8694691420659257823</id><published>2008-03-27T00:48:00.000-04:00</published><updated>2008-03-27T00:48:25.994-04:00</updated><title type='text'>skiing to the North Pole</title><content type='html'>&lt;a href="http://north.bensaunders.com/"&gt;North Pole Speed Record&lt;/a&gt;. This blows me away. This guy is trying to set a speed record for the trip to the North Pole, which he is doing unsupported (carrying all his own food and gear), on skis, and hopefully in 30 days. The standing record is 37 days, set in 2005 by a team using dog sleds and resupplying multiple times. (via kottke I think.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-8694691420659257823?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://north.bensaunders.com/' title='skiing to the North Pole'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8694691420659257823'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8694691420659257823'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/skiing-to-north-pole.html' title='skiing to the North Pole'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6389525967156991203</id><published>2008-03-27T00:23:00.000-04:00</published><updated>2008-03-27T00:23:03.626-04:00</updated><title type='text'>need to make some more beer</title><content type='html'>&lt;a href="http://mcsweeneys.net/links/lists/6KevinScheitrum.html"&gt;Brews to Accessorize the Modern Hipster.&lt;/a&gt; via kb.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6389525967156991203?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://mcsweeneys.net/links/lists/6KevinScheitrum.html' title='need to make some more beer'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6389525967156991203'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6389525967156991203'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/need-to-make-some-more-beer.html' title='need to make some more beer'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-8656447878339810466</id><published>2008-03-26T00:41:00.000-04:00</published><updated>2008-03-26T00:41:03.631-04:00</updated><title type='text'>microblogging</title><content type='html'>&lt;a href="http://www.phoboslab.org/log/2008/03/asaph-microblog-beta"&gt;Asaph&lt;/a&gt; - a very light 'microblogging' tool with a neat posting interface: apparently all posts are made via a javascript bookmarklet that interacts with the current page (post currently selected text, interactively select a picture, or just post the url). &lt;a href="http://daringfireball.net/linked/2008/march#tue-25-asaph"&gt;via&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-8656447878339810466?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.phoboslab.org/log/2008/03/asaph-microblog-beta' title='microblogging'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8656447878339810466'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/8656447878339810466'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/microblogging.html' title='microblogging'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7112818210520011655</id><published>2008-03-24T10:30:00.000-04:00</published><updated>2008-03-24T10:30:09.963-04:00</updated><title type='text'>tea</title><content type='html'>Eads gave me two teabags of this tea, it is delicious: &lt;a href="http://www.worldpantry.com/cgi-bin/ncommerce3/ProductDisplay?prmenbr=175633&amp;amp;prrfnbr=198442&amp;amp;pcgrfnbr=191368"&gt;Smoky Tarry Lapsang Souchong&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7112818210520011655?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.worldpantry.com/cgi-bin/ncommerce3/ProductDisplay?prmenbr=175633&amp;prrfnbr=198442&amp;pcgrfnbr=191368' title='tea'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7112818210520011655'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7112818210520011655'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/tea.html' title='tea'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3142708581717167161</id><published>2008-03-21T13:11:00.000-04:00</published><updated>2008-03-21T13:11:34.882-04:00</updated><title type='text'>shoes</title><content type='html'>I am pretty sure that I am going to get these &lt;a href="http://store.delias.com/item.do?categoryID=447&amp;amp;itemID=48946"&gt;canvas shoe-boot things&lt;/a&gt; (um... "booties"?) but I can't decide whether to get them in black or grey.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3142708581717167161?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://store.delias.com/item.do?categoryID=447&amp;itemID=48946' title='shoes'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3142708581717167161'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3142708581717167161'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/shoes.html' title='shoes'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4014969131303320957</id><published>2008-03-20T15:13:00.002-04:00</published><updated>2008-03-20T15:15:59.898-04:00</updated><title type='text'>a little alliteration</title><content type='html'>&lt;blockquote&gt;&lt;p&gt;[My suggestion was] not concocted with enough consideration of the context.&lt;/p&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4014969131303320957?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4014969131303320957'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4014969131303320957'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/little-alliteration.html' title='a little alliteration'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-4422317093261084830</id><published>2008-03-20T03:56:00.000-04:00</published><updated>2008-03-20T03:56:58.760-04:00</updated><title type='text'>listen to</title><content type='html'>eads recommends &lt;a href="http://www.lcmedia.com/mindprgm.htm"&gt;the Infinite Mind programs&lt;/a&gt;, a series of radio shows on sciencey and social sciency things.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-4422317093261084830?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://www.lcmedia.com/mindprgm.htm' title='listen to'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4422317093261084830'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/4422317093261084830'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/listen-to.html' title='listen to'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7476014366819381814</id><published>2008-03-19T14:23:00.001-04:00</published><updated>2008-03-19T14:24:44.738-04:00</updated><title type='text'>crafty foil+paper</title><content type='html'>&lt;a href="http://www.evilmadscientist.com/article.php/papercircuitry"&gt;techniques for laminating foil onto paper&lt;/a&gt; @ evilmadscientist.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7476014366819381814?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7476014366819381814'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7476014366819381814'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/crafty-foilpaper.html' title='crafty foil+paper'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7654247960426766950</id><published>2008-03-19T14:22:00.001-04:00</published><updated>2008-03-19T14:23:32.293-04:00</updated><title type='text'>AppleScript 'dialects'</title><content type='html'>&lt;p&gt;a commenter on this &lt;a href="http://lambda-the-ultimate.org/node/1724"&gt;AppleScript history piece&lt;/a&gt; says:&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;... I do think it's a pity they didn't ship AS with both English and Programmer dialects. The English syntax is ideal for inferring the intent of a script, even without knowing the language, while the Programmer syntax's explicit, unambiguous semantics would have been better for understanding the actual mechanics. Users could then switch between the two on the fly to provide whichever view they find most appropriate at the time. ...&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Applescript's 'English' makes me crazy every time I use it, I don't even necessarily agree that it is good for 'inferring the intent of a script', but the idea of having 'dialects' that you could just toggle between... that's pretty interesting/funny. (&lt;a href="http://del.icio.us/blech"&gt;via&lt;/a&gt;)&lt;/p&gt;
&lt;p&gt;p.s. applescript's 'programmer' dialect was developed but never part of shipped versions of applescript.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7654247960426766950?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7654247960426766950'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7654247960426766950'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/applescript-dialects.html' title='AppleScript &apos;dialects&apos;'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2824834656184188141</id><published>2008-03-18T23:23:00.002-04:00</published><updated>2008-03-18T23:27:19.609-04:00</updated><title type='text'>"anything but country" and rural environmentalism</title><content type='html'>&lt;a href="http://www.orionmagazine.org/index.php/articles/article/2845"&gt;One Nation Under Elvis&lt;/a&gt; - article at Orion Magazine on how class divisions have hurt the environmental movement. &lt;a href="http://fromthearchives.blogspot.com/2008/03/go-to-work.html"&gt;via megan&lt;/a&gt; (if you follow &lt;a href="http://www.google.com/reader/shared/16125515359310509958"&gt;my google reader shared items&lt;/a&gt; you've seen this before.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2824834656184188141?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2824834656184188141'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2824834656184188141'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/anything-but-country-and-rural.html' title='&quot;anything but country&quot; and rural environmentalism'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-1206226465709683137</id><published>2008-03-18T22:09:00.002-04:00</published><updated>2008-03-18T22:13:01.762-04:00</updated><title type='text'>history as a wiki for time travelers</title><content type='html'>awesome: &lt;a href="http://www.abyssandapex.com/200710-wikihistory.html"&gt;International Association of Time Travelers Members' Forum&lt;/a&gt;. &lt;a href="http://simonwillison.net/2008/Mar/19/abyss/"&gt;via&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-1206226465709683137?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1206226465709683137'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1206226465709683137'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/history-as-wiki-for-time-travelers.html' title='history as a wiki for time travelers'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2234067723448904524</id><published>2008-03-18T14:28:00.003-04:00</published><updated>2008-03-18T15:12:56.276-04:00</updated><title type='text'>talk like a physicist day</title><content type='html'>apparently someone named last friday as &lt;a href="http://scienceblogs.com/principles/2008/03/talk_like_a_physicist.php"&gt;Talk Like a Physicist Day&lt;/a&gt; ("because we're at least as cool as pirates"), which is awesome, except that friday was Pi Day and I have to insist that talk like a physicist day have its own date.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2234067723448904524?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2234067723448904524'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2234067723448904524'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/talk-like-physicist-day.html' title='talk like a physicist day'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6319938644667422218</id><published>2008-03-18T13:24:00.005-04:00</published><updated>2008-03-18T13:39:27.691-04:00</updated><title type='text'>myspace music hate</title><content type='html'>&lt;p&gt;I hate it when new little bands only have a myspace page with a couple non-downloadable tracks. I want them to have a real web page from which I can download their two or three tracks as mp3s, so that I can put the tracks in playlists and remember who they are five months from now when they may eventually be releasing an album.&lt;/p&gt;
&lt;p&gt;p.s. dear bands: take a night off from beering and spend $30 to set up a real site. have someone go grab an account for you at &lt;a href="https://www.nearlyfreespeech.net/"&gt;nearlyfreespeech.net&lt;/a&gt;, where you can get domain names and feature-complete pay-as-you-go hosting. have them throw &lt;a href="http://wordpress.org/"&gt;Wordpress&lt;/a&gt; or &lt;a href="http://chyrp.net/"&gt;Chyrp&lt;/a&gt; on your new site, or even use a Blogger account. Post your songs, and the occasional narcissistic photo of yourself looking impossibly hip. If you bother to do it yourself, this can even turn into your post-music-dreams career (see: 25% of the web designer-developers who think they're hot shit).&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6319938644667422218?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6319938644667422218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6319938644667422218'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/myspace-music-hate.html' title='myspace music hate'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2030002862101431354</id><published>2008-03-14T11:05:00.001-04:00</published><updated>2008-03-14T11:07:32.149-04:00</updated><title type='text'>family movie</title><content type='html'>for future reference: My grandfather's dog Chico (a great dane) was in the movie "Breakfast for Two", which was made sometime in the 1930s.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2030002862101431354?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2030002862101431354'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2030002862101431354'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/family-movie.html' title='family movie'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3694502317664922506</id><published>2008-03-14T03:45:00.002-04:00</published><updated>2008-03-14T03:49:41.896-04:00</updated><title type='text'>Equation Service</title><content type='html'>I'm surprised that I didn't mention &lt;a href="http://www.esm.psu.edu/mac-tex/EquationService/"&gt;Equation Service&lt;/a&gt; here years ago; it's a sweet little service for Mac OS X that lets you write LaTeX equations just about anywhere (TextEdit, Keynote, etc.) and render them to images in place with a keyboard shortcut (or item in the Application-&amp;gt;Services menu). This was one of my favorite utilities when I was in school, but I haven't set it back up on Leopard yet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3694502317664922506?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3694502317664922506'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3694502317664922506'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/equation-service.html' title='Equation Service'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-9019283576197038183</id><published>2008-03-14T03:35:00.001-04:00</published><updated>2008-03-14T03:38:14.836-04:00</updated><title type='text'>waxed canvas</title><content type='html'>&lt;a href="http://www.stabo.co.uk/Shop/mens/trouser.htm"&gt;pants made out of old army tents&lt;/a&gt; (&lt;a href="http://www.boingboing.net/2008/03/13/trousers-made-from-r.html"&gt;via&lt;/a&gt;). also, a &lt;a href="http://www.stabo.co.uk/Shop/mens/wax%20cag.htm"&gt;waxed canvas parka&lt;/a&gt;. waxed canvas is one of my favorite materials, though I really don't have any in my life. yet.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-9019283576197038183?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/9019283576197038183'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/9019283576197038183'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/waxed-canvas.html' title='waxed canvas'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-7658672604660951121</id><published>2008-03-14T02:52:00.000-04:00</published><updated>2008-03-14T02:52:35.319-04:00</updated><title type='text'>thing I am trying to fix in my brain</title><content type='html'>&lt;a href="http://drupal.org/node/1354"&gt;Doxygen formatting conventions&lt;/a&gt; (specifically for any drupal coding I'm doing.)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-7658672604660951121?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://drupal.org/node/1354' title='thing I am trying to fix in my brain'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7658672604660951121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/7658672604660951121'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/thing-i-am-trying-to-fix-in-my-brain.html' title='thing I am trying to fix in my brain'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-9073976137177161856</id><published>2008-03-14T01:56:00.000-04:00</published><updated>2008-03-14T01:56:21.893-04:00</updated><title type='text'>lolcat</title><content type='html'>&lt;a href="http://icanhascheezburger.com/2008/03/08/funny-pictures-interpretive-dance-i-does-it/"&gt;lolcat for the day&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-9073976137177161856?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://icanhascheezburger.com/2008/03/08/funny-pictures-interpretive-dance-i-does-it/' title='lolcat'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/9073976137177161856'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/9073976137177161856'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/lolcat.html' title='lolcat'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-2030153134501566297</id><published>2008-03-12T15:34:00.000-04:00</published><updated>2008-03-12T15:34:08.767-04:00</updated><title type='text'>postal code resolution</title><content type='html'>&lt;a href="http://blech.vox.com/library/post/a-minor-nit-with-fire-eagle.html?_c=feed-atom"&gt;interesting note on geographic resolution of postal codes&lt;/a&gt;--in the US, the five-digit postal code covers a largish land area, whereas in some places (like Canada and the UK) postal codes resolve to a block, sometimes even indicating the side of the street or the building.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-2030153134501566297?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blech.vox.com/library/post/a-minor-nit-with-fire-eagle.html?_c=feed-atom' title='postal code resolution'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2030153134501566297'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/2030153134501566297'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/postal-code-resolution.html' title='postal code resolution'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-1826002469256966530</id><published>2008-03-11T19:57:00.000-04:00</published><updated>2008-03-11T19:57:56.616-04:00</updated><title type='text'>browser compatibility testing</title><content type='html'>&lt;a href="http://litmusapp.com/blog/24-hour-passes"&gt;Litmus "day passes"&lt;/a&gt; -- Litmus is a web app for testing browser compatibility. $18/24 hours. &lt;a href="http://daringfireball.net/linked/2008/march#wed-05-litmus"&gt;via&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-1826002469256966530?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://litmusapp.com/blog/24-hour-passes' title='browser compatibility testing'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1826002469256966530'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/1826002469256966530'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/browser-compatibility-testing.html' title='browser compatibility testing'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-73379041206068115</id><published>2008-03-11T12:25:00.002-04:00</published><updated>2008-03-11T12:31:12.946-04:00</updated><title type='text'>depth of field hate</title><content type='html'>&lt;p&gt;check out &lt;a href="http://www.flickr.com/search/?w=38687875%40N00&amp;q=bokeh&amp;m=text"&gt;some photos that use depth of field&lt;/a&gt; in an acceptable manner (from &lt;a href="http://www.dustindiaz.com/photography/"&gt;this post on photography&lt;/a&gt;)&lt;/p&gt;&lt;p&gt;VS.&lt;p&gt;any food blog ever (see &lt;a href="http://www.elise.com/recipes/"&gt;Simply Recipes&lt;/a&gt; or &lt;a href="http://www.101cookbooks.com/"&gt;101 Cookbooks&lt;/a&gt;; almost any photo on any food blog will illustrate depth of field abuse, but A-list food blogs are extremely consistent about it).&lt;/p&gt;
&lt;p&gt;aside: this &lt;a href="http://www.101cookbooks.com/archives/anzac-cookies-recipe.html"&gt;cookie recipe at 101 Cookbooks&lt;/a&gt; looks delicious.&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-73379041206068115?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/73379041206068115'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/73379041206068115'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/depth-of-field-hate.html' title='depth of field hate'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-3814967887504409276</id><published>2008-03-04T18:44:00.000-05:00</published><updated>2008-03-04T18:44:34.468-05:00</updated><title type='text'>google maps api demos</title><content type='html'>for later: &lt;a href="http://code.google.com/apis/maps/documentation/demogallery.html"&gt;Google Maps API Demo Gallery&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-3814967887504409276?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://code.google.com/apis/maps/documentation/demogallery.html' title='google maps api demos'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3814967887504409276'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/3814967887504409276'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/google-maps-api-demos.html' title='google maps api demos'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6617435006941716904</id><published>2008-03-04T01:57:00.000-05:00</published><updated>2008-03-04T01:57:48.663-05:00</updated><title type='text'>talk last night</title><content type='html'>was talking with Ben about the grand topic of capitalism and he brought up this bit about &lt;a href="http://island94.org/capitalism-and-morality"&gt;Capitalism and Morality (Thai Beer and Monks)&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6617435006941716904?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://island94.org/capitalism-and-morality' title='talk last night'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6617435006941716904'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6617435006941716904'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/talk-last-night.html' title='talk last night'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry><entry><id>tag:blogger.com,1999:blog-5079054.post-6231629664518466619</id><published>2008-03-02T00:46:00.000-05:00</published><updated>2008-03-02T00:46:40.414-05:00</updated><title type='text'>EveryBlock maps</title><content type='html'>&lt;a href="http://blog.everyblock.com/2008/feb/18/maps/"&gt;EveryBlock on making their maps&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5079054-6231629664518466619?l=laidefawei.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='related' href='http://blog.everyblock.com/2008/feb/18/maps/' title='EveryBlock maps'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6231629664518466619'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/5079054/posts/default/6231629664518466619'/><link rel='alternate' type='text/html' href='http://laidefawei.blogspot.com/2008/03/everyblock-maps.html' title='EveryBlock maps'/><author><name>bec</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://circuitous.org/scraps/one-slice-toaster.png'/></author></entry></feed>
