<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.5" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>MeyerBros</title>
	<link>http://blog.meyerbros.org</link>
	<description>things we think</description>
	<pubDate>Tue, 05 Feb 2008 20:54:30 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.5</generator>
	<language>en</language>
			<item>
		<title>how to rip streaming audio to mp3 in Linux (bonus: silence trimming and id3 tags)</title>
		<link>http://blog.meyerbros.org/2007/09/17/how-to-rip-streaming-audio-to-mp3-in-linux-bonus-silence-trimming-and-id3-tags/</link>
		<comments>http://blog.meyerbros.org/2007/09/17/how-to-rip-streaming-audio-to-mp3-in-linux-bonus-silence-trimming-and-id3-tags/#comments</comments>
		<pubDate>Tue, 18 Sep 2007 00:19:29 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>geek toys</category>

		<category>technology</category>

		<category>audio</category>

		<category>linux</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2007/09/17/how-to-rip-streaming-audio-to-mp3-in-linux-bonus-silence-trimming-and-id3-tags/</guid>
		<description><![CDATA[The usual readers of this blog (all three of you) may find this quite uninteresting, but I&#8217;m posting it here as Google-fodder in hopes it may be useful to someone out there.
Say there&#8217;s an internet audio stream that interests you (like, for example, a radio feed).  But say you&#8217;d rather not listen to it [...]]]></description>
			<content:encoded><![CDATA[<p>The usual readers of this blog (all three of you) may find this quite uninteresting, but I&#8217;m posting it here as Google-fodder in hopes it may be useful to someone out there.</p>
<p>Say there&#8217;s an internet audio stream that interests you (like, for example, a radio feed).  But say you&#8217;d rather not listen to it while tied to a device with an internet connection - you need to rip it to a file on disk.  And lastly, just for kicks, say the radio feed already has its advertisements kindly blanked out with silence by the stream provider,  but you find those three-minute silences irritating to skip over manually.</p>
<p><a id="more-248"></a></p>
<p>You&#8217;ll need the following software packages installed: mplayer, sox, lame, and id3v2 (this last only if you&#8217;re ripping to mp3 and want id3 tags in your file).  All of these were available pre-packaged in Ubuntu&#8217;s repositories, so installing them is no more difficult than &#8220;sudo aptitude install mplayer sox lame id3v2&#8243;.  (You may also need some additional codecs packages for mplayer depending on the format of the stream you&#8217;re ripping).</p>
<p>And here&#8217;s the bash script I wrote to do all the work for me: getstream.sh<br />
<code><br />
#!/bin/sh<br />
# getstream.sh<br />
# script to download a stream and convert to mp3<br />
if [ -z ${2} ]; then<br />
    echo "Usage: ${0##*/} playlist-file outfile-base-name [id3-album]"<br />
    exit;<br />
fi<br />
if [ -z ${3} ]; then<br />
    album='NFL';<br />
else<br />
    album=${3};<br />
fi<br />
mplayer -playlist ${1} -ao pcm:file=${2}-original.wav -vc null -vo null<br />
sox ${2}-original.wav ${2}.wav silence 1 00:00:01 0.5% -1 00:00:05 0.5%<br />
lame ${2}.wav ${2}.mp3<br />
id3v2 -g 101 -A "${album}" -t "${2}" "${2}.mp3"<br />
</code></p>
<p>A quick example of how this script might be used, before we delve into the details:</p>
<p><code>getstream.sh stream-playlist.ram StreamTitle StreamAlbum</code></p>
<p>The first parameter is the playlist file for the stream, the second parameter is the title (used both for filename and id3 title tag), and the third (optional) parameter is the id3 album name. </p>
<p>The playlist file is a very short file (with a .ram extension if it&#8217;s a RealPlayer stream) that is usually the target of a website link to a stream.  It doesn&#8217;t actually contain any audio, just links to the actual audio file(s) (which would have a .rm extension for RealPlayer).  Normally you never see the playlist file, because your browser just opens up RealPlayer to handle it and RealPlayer finds the audio and starts playing the stream.  To rip the stream, instead download the playlist file through your method of choice (right-click, &#8220;Save Link As&#8221; in your browser will work) and pass it as the first parameter to getstream.sh.</p>
<p>Now, onto the nitty-gritty of getstream.sh:</p>
<p>The first few lines just output a help message if the script doesn&#8217;t get at least two command line parameters (in bash scripting, ${1} is the first parameter, ${2} is the second, etc &#8212; the &#8220;-z&#8221; tests for emptiness).  The next few lines set the album name to a default value if it isn&#8217;t given as the third parameter.  Then we get to the interesting part:</p>
<p><code>mplayer -playlist ${1} -ao pcm:file=${2}-original.wav -vc null -vo null</code></p>
<p><a href="http://www.mplayerhq.hu">MPlayer</a> understands the format of various playlist files, the &#8220;-playlist&#8221; parameter tells it to look in this playlist file for the URLs of the actual audio.  &#8220;-ao pcm:file=&#8230;&#8221; tells mplayer that rather than sending the audio to your sound card, it should just dump it to raw PCM data (by default mplayer also sticks a WAV header in front of the data, making it a WAV file).  &#8220;-vc null -vo null&#8221; speeds things up by cluing mplayer into the fact that it&#8217;s an audio-only stream, so don&#8217;t worry about video.</p>
<p><code>sox ${2}-original.wav ${2}.wav silence 1 00:00:01 0.5% -1 00:00:05 0.5%<br />
</code></p>
<p><a href="http://sox.sourceforge.net">sox</a> is a neat little audio-processing command-line utility that can do all kinds of fun effects and tricks.  We&#8217;ll just use its silence-detecting and trimming function.  The parameters to the &#8220;silence&#8221; function are a bit arcane, refer to the sox manpage for more detail.  The first three parameters &#8220;1 00:00:01 0.5%&#8221; tell sox to not start processing audio until it finds a period of one second with non-silence (which the third parameter defines as a volume of greater than half a percent of the maximum volume - sox will also let you specify the threshold in decibels, just use a &#8220;d&#8221; instead of the &#8220;%&#8221; suffix).  The second three parameters &#8220;-1 00:00:05 0.5%&#8221; tell sox to stop processing audio when it finds a period of at least five seconds of silence (i.e. under the 0.5% threshold).  The fact that the fourth parameter is negative tells sox that after it stops processing because of silence, it shouldn&#8217;t just assume the end of the audio but instead should look for more non-silence to start processing again.</p>
<p><code>lame ${2}.wav ${2}.mp3</code></p>
<p>After the complexity of sox, <a href="http://lame.sourceforge.net">lame</a> (Lame Ain&#8217;t an Mp3 Encoder) is refreshingly easy to use: give it the input file and an output file and off it goes.</p>
<p><code>id3v2 -g 101 -A "${album}" -t "${2}" "${2}.mp3"</code></p>
<p>Lastly, <a href="http://id3v2.sourceforge.net">id3v2</a> is a command-line utility to set ID3 tags in MP3 files.  This command line sets the genre to 101 (which is Speech), the album to whatever you passed as the third parameter (or the default), and the title to the base filename.</p>
<p>Voila - you&#8217;ve got an mp3 file ready to go.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2007/09/17/how-to-rip-streaming-audio-to-mp3-in-linux-bonus-silence-trimming-and-id3-tags/feed/</wfw:commentRss>
		</item>
		<item>
		<title>new iraq = old pine ridge</title>
		<link>http://blog.meyerbros.org/2007/03/20/new-iraq-old-pine-ridge/</link>
		<comments>http://blog.meyerbros.org/2007/03/20/new-iraq-old-pine-ridge/#comments</comments>
		<pubDate>Tue, 20 Mar 2007 15:34:47 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>political</category>

		<category>iraq</category>

		<category>pineridge</category>

		<category>indigenous</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2007/03/20/new-iraq-old-pine-ridge/</guid>
		<description><![CDATA[I&#8217;ve been kicking this article idea around in my head for awhile, but Sam Hurst actually wrote it.  Good stuff.
Hurst: New Iraq sounds an awful lot like the Old Pine Ridge (Rapid City Journal, Mar 18 2007)
bonus:
No land, no shalom: Indigenous group wins land battle
We didn&#8217;t know about this until we saw it on [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been kicking this article idea around in my head for awhile, but Sam Hurst actually wrote it.  Good stuff.</p>
<p><a href="http://www.rapidcityjournal.com/articles/2007/02/18/news/opinion/opin03.txt">Hurst: New Iraq sounds an awful lot like the Old Pine Ridge (Rapid City Journal, Mar 18 2007)</a></p>
<p><strong>bonus:</strong></p>
<p><a href="http://mcc.org/news/news/article.html?id=158">No land, no shalom: Indigenous group wins land battle</a></p>
<p>We didn&#8217;t know about this until we saw it on MCC&#8217;s website - and we still don&#8217;t know how to get in touch with these people.  MCC seriously needs a dedicated &#8220;indigenous issues&#8221; desk, or at least an email group or something.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2007/03/20/new-iraq-old-pine-ridge/feed/</wfw:commentRss>
		</item>
		<item>
		<title>patriarchy and me(n)</title>
		<link>http://blog.meyerbros.org/2007/03/08/patriarchy-and-me/</link>
		<comments>http://blog.meyerbros.org/2007/03/08/patriarchy-and-me/#comments</comments>
		<pubDate>Thu, 08 Mar 2007 19:50:34 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>gender</category>

		<category>sexism</category>

		<category>patriarchy</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2007/03/08/231/</guid>
		<description><![CDATA[I was just reminded at Ilyka&#8217;s that today is not only International Women&#8217;s Day, but also blog against sexism day.  So I thought it would be a good time to take a break from our other recent conversations and, um, blog against sexism.
The gender-split commentary over on this post at Hugo Schwyzer&#8217;s got me [...]]]></description>
			<content:encoded><![CDATA[<p>I was just reminded at <a href="http://ilykadamen.blogspot.com/2007/03/we-dont-go-for-that-sexism-round-these.html">Ilyka&#8217;s</a> that today is not only International Women&#8217;s Day, but also <a href="http://takingplace.org/2007/02/24/blog-against-sexism-day-2007/">blog against sexism day</a>.  So I thought it would be a good time to take a break from our <a href="http://blog.meyerbros.org/2007/03/08/the-rule/">other</a> <a href="http://blog.meyerbros.org/2007/03/05/more-on-the-patriarchy/">recent</a> <a href="http://blog.meyerbros.org/2007/02/24/sexism-showdown-in-the-blogosphere/">conversations</a> and, um, blog against sexism.</p>
<p>The <a href="http://hugoschwyzer.net/2007/03/05/fatherhood-age-and-male-privilege/#comment-32513">gender-split commentary</a> over on <a href="http://hugoschwyzer.net/2007/03/05/fatherhood-age-and-male-privilege/">this post at Hugo Schwyzer&#8217;s</a> got me thinking about how patriarchy hurts men (or, in <a href="http://ilykadamen.blogspot.com/2007/03/we-dont-go-for-that-sexism-round-these.html">gennimcmahon&#8217;s ever-so-much-more-eloquent version</a>, &#8220;how the cultural view of men as irresponsible children whose backs hurt from the weight of following their dicks around, hovering in the air like a divining rod that’s found a ocean beneath their feet, is damaging and limiting&#8221;), and conversely how men so often love to divert conversation about patriarchy into &#8220;but women do bad things to men too!&#8221;, which is a technique for denial and minimization of <a href="http://colours.mahost.org/org/maleprivilege.html">male privilege</a>.  </p>
<p>I do think it&#8217;s important for privileged people to reflect on how privilege warps and damages our spirits, because until we do this internal work, any anti-privilege work we do is all about &#8220;helping out those poor oppressed women/people of color/queers&#8221; and not about a mutual struggle for liberation (cf the tagline quote over at <a href="http://allywork.solidaritydesign.net">AllyWork</a>).  It&#8217;s equally important for us to recognize that our privilege benefits us in lots of very concrete ways - recognizing our own hurts doesn&#8217;t make things &#8220;even&#8221;.  And we&#8217;d better not think it gives us the right to take over a marginalized group&#8217;s conversation space with our tales of woe-is-me.  That&#8217;s why I&#8217;m posting this here.  And lastly, this can really verge on navel-gazing, so I&#8217;ll try to skim the edge of that cliff and (hopefully) keep this interesting or relevant to someone besides me.</p>
<p>Anyway, two personal stories come to mind.  Not surprisingly, they both have to do with parents - hi Mom and Dad!</p>
<p>The first story I don&#8217;t remember myself, but Mom has told me several times.  I guess at age three or so I had a pair of Raggedy Ann/Raggedy Andy dolls that I loved to pieces, including &#8220;nursing&#8221; them (Mom must have been breastfeeding Eric at that point).  I told Mom that when I grew up I was going to be a Mommy, and she (very compassionately, I&#8217;m sure) informed me that I would never be a Mommy, but that she was sure I&#8217;d be a very good Daddy.  Apparently this was crushing news to me, and I put those dolls away and never played with them again.  (Mom makes it clear when she tells the story that she still regrets that, and given a do-over would just tell me &#8220;I&#8217;m sure you&#8217;ll be a great Mommy&#8221; and leave it at that).</p>
<p>What does that say about my images of mommy-ness and daddy-ness at that age?  How much of this difference is due to the biological reality of mother-child attachment (maybe some, but I&#8217;d guess not the bulk of it), and how much is due to what I had already experienced from my parents (or observing other parents)?  And what will I do to help my child, due next month, see both Mommy and Daddy as tender, attentive caregivers?   (Given that I&#8217;m totally speaking out my rear end here, having never been a parent, I&#8217;d love some reflective - and patriarchy-aware - commentary on this from actual parents - including my own!).  Also, if I so clearly understood Mommy to be the one responsible for tenderness towards children, and I was told early on that I couldn&#8217;t be one, how might that have impacted my later perception of myself as able to relate tenderly towards children?</p>
<p>The second story that comes to mind (I was reminded of it by gennimcmahon&#8217;s quote above), is the whole saga of parental reactions to my wife and I sharing a room in one context or another before we were married.  Both her parents and mine reacted strongly to this at different points.  In both cases, I initially thought it was just a generational issue of worry over &#8220;what others might think&#8221; - and to some degree it was.  But the more we got into conversation about it, the more stunned I was how much of the resistance seemed (at some level) rooted in the idea that, essentially, men are unable to control sexual urges or make good choices about them.</p>
<p>Now, clearly men make awful (even evil) choices all the time, up to and including rape and sexual assault.  I&#8217;ve made some pretty poor choices myself (though thankfully not to that point).  But assuming that men are inherently unable to control themselves justifies rape and sexual assault.  Instead of putting the onus firmly on men to take responsibility to stop being violent and dominating, the responsibility gets put back on women to &#8220;not put themselves in the wrong situation&#8221; &#8212; because the man can&#8217;t be responsible for something he apparently can&#8217;t control.  Others have written more clearly about this whole issue - <a href="http://www.feministe.us/blog/archives/2007/03/06/beyond-enabling/">this post at Feministe</a> is a good recent place to start.  </p>
<p>The idea that men are incapable of self-control is also insulting and damaging to the spirit of men.  It limits my vision of who I can become as a man, and even perhaps becomes self-fulfilling.</p>
<p>Anyone else have stories or thoughts to share?  How has patriarchy/sexism impacted you?
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2007/03/08/patriarchy-and-me/feed/</wfw:commentRss>
		</item>
		<item>
		<title>openID</title>
		<link>http://blog.meyerbros.org/2007/03/06/openid/</link>
		<comments>http://blog.meyerbros.org/2007/03/06/openid/#comments</comments>
		<pubDate>Tue, 06 Mar 2007 22:08:50 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>geeky</category>

		<category>identity</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2007/03/06/openid/</guid>
		<description><![CDATA[Check out openID: the open (i.e. not-vendor-locked-in &#8212; hello MS Passport) single-sign-on web identity standard.  Pretty cool.  I just got myself a free identity page at myopenid.com.  I thought about setting up an openID server at meyerbros.org, which doesn&#8217;t look hard, but then I  ran across these instructions on using openID [...]]]></description>
			<content:encoded><![CDATA[<p>Check out <a href="http://openid.net">openID</a>: the open (i.e. not-vendor-locked-in &#8212; hello MS Passport) single-sign-on web identity standard.  Pretty cool.  I just got myself a free <a href="http://carljm.myopenid.com">identity page</a> at <a href="http://www.myopenid.com">myopenid.com</a>.  I thought about setting up an openID server at meyerbros.org, which doesn&#8217;t look hard, but then I  ran across <a href="http://gentoo-wiki.com/Host_your_own_OpenID_server">these instructions on using openID delegation</a>.  So I let myopenid.com handle the details of running the server and I can still use carl.meyerbros.org as my openID login URI.  Nice.</p>
<p>Next step - setting up blog.meyerbros.org as an openID consumer (so people can login to comment using their openID identity instead of having to register).  <a href="http://verselogic.net/projects/wordpress/wordpress-openid-plugin/">Looks pretty easy</a>.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2007/03/06/openid/feed/</wfw:commentRss>
		</item>
		<item>
		<title>herald of things to come</title>
		<link>http://blog.meyerbros.org/2007/03/03/herald-of-things-to-come/</link>
		<comments>http://blog.meyerbros.org/2007/03/03/herald-of-things-to-come/#comments</comments>
		<pubDate>Sun, 04 Mar 2007 03:31:10 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>life</category>

		<category>baby</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2007/03/03/herald-of-things-to-come/</guid>
		<description><![CDATA[

]]></description>
			<content:encoded><![CDATA[<p><a class="imagelink" href="http://blog.meyerbros.org/wp-content/uploads/2007/03/img_9211-modified.JPG" title="baby clothes on the rack"><img id="image225" src="http://blog.meyerbros.org/wp-content/uploads/2007/03/img_9211-modified.thumbnail.JPG" alt="baby clothes on the rack" /></a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2007/03/03/herald-of-things-to-come/feed/</wfw:commentRss>
		</item>
		<item>
		<title>sexism showdown in the blogosphere</title>
		<link>http://blog.meyerbros.org/2007/02/24/sexism-showdown-in-the-blogosphere/</link>
		<comments>http://blog.meyerbros.org/2007/02/24/sexism-showdown-in-the-blogosphere/#comments</comments>
		<pubDate>Sat, 24 Feb 2007 21:46:53 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>anti-racism</category>

		<category>geeky</category>

		<category>web 2.0</category>

		<category>gender</category>

		<category>anti-sexism</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2007/02/24/diversity-showdown-in-the-blogosphere/</guid>
		<description><![CDATA[Interesting (and, not surprisingly, somewhat fiery) conversations in the blogosphere recently about diversity, gender, exclusion, and affirmative action in the web-geek world.  Our favorite Meyerbro homonym web-geek Eric Meyer started things off by posting his personal manifesto about why he doesn&#8217;t care about diversity, and why when he plans conferences he chooses speakers based [...]]]></description>
			<content:encoded><![CDATA[<p>Interesting (and, not surprisingly, somewhat fiery) conversations in the blogosphere recently about diversity, gender, exclusion, and affirmative action in the web-geek world.  Our favorite Meyerbro homonym web-geek <a href="http://meyerweb.com/eric/thoughts/2007/02/23/diverse-it-gets/">Eric Meyer started things off</a> by posting his personal manifesto about why he doesn&#8217;t care about diversity, and why when he plans conferences he chooses speakers based purely on &#8220;merit&#8221; and without considering gender or race.  (To borrow liberally from the pithy genius of <a href="http://eric.meyerbros.org">the other Eric Meyer</a>: &#8220;Race and gender are irrelevant.  That&#8217;s what I (white male) always (white) say (male).&#8221;)</p>
<p>(<strong>update:</strong> I shouldn&#8217;t have given Eric Meyer credit for &#8220;kicking things off&#8221; - he was responding to <a href="http://www.kottke.org/07/02/gender-diversity-at-web-conferences">this Jason Kottke post</a> where he simply lists the percentage of female presenters at various recent &#8220;webby&#8221; conferences.)</p>
<p>Tantek quickly weighed in with <a href="http://tantek.com/log/2007/02.html#d23t0724">his thoughts</a>, in which he a) blames women for not taking enough initiative to promote themselves in the industry, and b) wonders why nobody is concerned about including enough green-eyed people.  (&#8221;It&#8217;s women&#8217;s fault for not working hard enough.  And anyway, gender doesn&#8217;t make any more difference than eye color.  That&#8217;s what I (male) always (male) say (male).&#8221;)</p>
<p>Then <a href="http://www.dashes.com/anil/2007/02/23/the_old_boys_cl">Anil Dash jumped into the fray</a> and chastised Eric Meyer and <a href="http://daringfireball.net/2007/02/web_nerd_gender_diversity">John Gruber</a> for &#8220;defending the boys-only nature of [their] treehouse,&#8221; and followed it up by offering <a href="http://www.dashes.com/anil/2007/02/23/the_essentials_">a list of &#8220;the essentials of Web 2.0 your event doesn&#8217;t cover&#8221;</a>, following which he notes &#8220;Where are the men?  Don&#8217;t worry - the door is open to them.  As soon as one of you has done something with the impact of Flickr&#8230;&#8221;</p>
<p>Today things took an interesting twist.  Apparently Eric Meyer  (the non-Meyerbro one) is doing <a href="http://meyerweb.com/eric/thoughts/2007/02/24/diverse-reactions/">some serious soul-searching</a> about all of this, which is great.  (Though apparently there hasn&#8217;t been sufficient soul-searching yet for him to stop trying to defend the innocent goodness of what he was &#8220;really trying to say&#8221;).</p>
<p>In all seriousness, wrestling with privilege &#8212; with the stupidity and blindness it sometimes causes us to display, even with the best of intentions &#8212; is really gut-wrenching stuff, and I wish Eric all the best.  I hope he can come to a place where he might even recognize that &#8220;what he was really trying to say&#8221; itself might have been coming from a place of privilege and ignorance, and that &#8220;who he really is&#8221; is a good person whose identity, like all of us with privilege, has been deeply warped and shaped by the blindness of privilege.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2007/02/24/sexism-showdown-in-the-blogosphere/feed/</wfw:commentRss>
		</item>
		<item>
		<title>getting things done</title>
		<link>http://blog.meyerbros.org/2007/02/17/getting-things-done/</link>
		<comments>http://blog.meyerbros.org/2007/02/17/getting-things-done/#comments</comments>
		<pubDate>Sat, 17 Feb 2007 17:53:29 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>productivity</category>

		<category>lifehacks</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2007/02/17/getting-things-done/</guid>
		<description><![CDATA[See, I&#8217;ve always put &#8220;personal productivity&#8221; schemes in the same box as &#8220;motivational speakers&#8221; and cheesy shallow self-help books.   In other words, I scoffed in their general direction.  But I&#8217;ve been humbled - humbled by Getting Things Done.
I&#8217;m not going to thoroughly describe the system here, so follow that link if you [...]]]></description>
			<content:encoded><![CDATA[<p>See, I&#8217;ve always put &#8220;personal productivity&#8221; schemes in the same box as &#8220;motivational speakers&#8221; and cheesy shallow self-help books.   In other words, I scoffed in their general direction.  But I&#8217;ve been humbled - humbled by <a href="http://www.43folders.com/2004/09/08/getting-started-with-getting-things-done/">Getting Things Done</a>.</p>
<p>I&#8217;m not going to thoroughly describe the system here, so follow that link if you want to read about it (or just read this <a href="http://www.minezone.org/wiki/MVance/GettingThingsDone">excellent shorthand summary of GTD</a>).  I&#8217;m just going to tell you why I love it.</p>
<p>I love GTD because it doesn&#8217;t try to totally change the way I work.  Instead, it takes the tricks I&#8217;ve already discovered on my own and helps me make them more effective.  </p>
<p>For instance, usually somewhere between once a week and once a month I&#8217;ll realize I&#8217;m totally stressed out and I don&#8217;t even know why.  I&#8217;ve learned on my own that I can deal with that - I sit down with a pen and paper and try to dump out everything that&#8217;s on my mind that might be contributing to my anxiety.  Usually I discover that I don&#8217;t really have as much to be anxious about as I thought.</p>
<p>Also usually somewhere between once a week and once a month I gather up all the little papers that I&#8217;ve scribbled notes on, the Amnesty International action alert I want to act on, the phone and electricity bill, the card from Aunt Jane that I want to respond to, and all the rest.  I go through the pile one by one, either dealing with each item or consolidating it onto my main todo list.  It feels great.</p>
<p>(Alright Mr. LiteralPants, I don&#8217;t really have an Aunt Jane.  But I didn&#8217;t want to single out any of my real aunts, and if I did have an Aunt Jane I&#8217;d try to reply to her cards.  For reals.)</p>
<p>But there have been some problems with these tricks.  For one, I don&#8217;t do them nearly often enough or regularly enough.  I let myself be stressed out and completely procrastinatingly unproductive for weeks or even months sometimes without doing either of those things.  </p>
<p>For another, my resulting &#8220;todo list&#8221; has always been a massive gargantuan creature, with a few small actionable items that I will actually do mixed in among a menagerie of amorphous vague scary phrases like &#8220;think about Project X&#8221; and &#8220;organize my life&#8221; that I will NEVER actually get around to doing, and some of which have actually sat on my todo list unchanged for over three years.  I see all those giant unapproachable todo list items that never go anywhere and I feel small and ineffective.  So instead I go play a few games of <a href="http://www.littlegolem.net">StreetSoccer on LittleGolem</a>.</p>
<p>GTD solves these problems.  The &#8220;empty my mind onto paper&#8221; trick?   It&#8217;s the first step in the GTD workflow - the &#8220;mind-sweep&#8221; to collect all my &#8220;open loops&#8221; (unfinished items causing my brain anxiety) into one place, ready for processing.  The &#8220;collect all my bits of paper&#8221; trick?  Part of the same first step, &#8220;Collect&#8221;.  But then GTD gives me an effective and all-encompassing system in which to place all these collected items - a &#8220;project list&#8221; on which I only include multi-step projects that I am actually committed to completing (the Circle of One Book website), a &#8220;someday list&#8221; of projects I might someday want to commit to but have officially decided that I am not committed to now (tagging all our digital photos from the past five years).</p>
<p>And then, the most beautiful thing of all.  The actual todo lists?  They&#8217;re firmly restricted to one &#8220;next action&#8221; per project.  Each &#8220;next action&#8221; has to be a single action that can be completed in 20 minutes or less, worded in physical verb terms (no &#8220;think about&#8221; or &#8220;decide&#8221; - only &#8220;call John to set up meeting time&#8221;, &#8220;write down three ideas for proposal X&#8221;, &#8220;move shelf to other side of bed&#8221;).  And every week I review all my lists to figure out what the next action is for each project, decide if there are projects I&#8217;m no longer really committed to (so I move them to the someday list or trash them), see if I have &#8220;next actions&#8221; on my todo lists that are hanging around for too long because they either skip a necessary dependent step or because they&#8217;re worded too vaguely.</p>
<p>OK, so now I am describing the system.  More things I love about it:</p>
<ul>
<li>I love my <a href="http://www.43folders.com/2004/09/03/introducing-the-hipster-pda/">HipsterPDA</a></li>
<li>I love using my <a href="http://tiddlywiki.com">TiddlyWiki</a> for keeping all my todo and project lists.</li>
<li>I love having a visual list of projects (not mixed in with little one-off items) that shows me in a glance what I&#8217;m committed to doing in my life right now, and gives me a hint if I might need to cut some out.  The project list helps me actually make decisions about whether a project is something I really want to or can commit to - at the top of my project list it says &#8220;Committed to completion. Desired outcome (one sentence).&#8221; and if I&#8217;m not really willing to commit myself to achieving that desired outcome, it doesn&#8217;t go on the list.</li>
<li>I love only having physical 20-minute-or-less items on my todo list, and only one per project.  Totally reduces the intimidation factor of big projects.</li>
<li>I love the horizontal balance among projects and variety of activities that comes of tackling one &#8220;next action&#8221; at a time instead of thinking that I have to tackle a whole project in a single sitting.</li>
<li>I love the idea of the &#8220;procrastination dash&#8221;.  If I&#8217;m having a hard time starting a task, I set a timer for two, four, five, eight minutes and tell myself I&#8217;ll work only on that task until the timer goes off.  Then I can go back to playing <a href="http://youplay.it">Blue Max</a> or whatever else I was doing to procrastinate.  Thing is, after the four-minute dash, I&#8217;ve usually gotten over the procrastination &#8220;getting started&#8221; hump and I&#8217;m actually energized to keep working on the project.</li>
</ul>
<p>It&#8217;s embarrassing, but it&#8217;s the truth.  My name is Carl Meyer, and I use a productivity system.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2007/02/17/getting-things-done/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Windows Vista - broken by design</title>
		<link>http://blog.meyerbros.org/2006/12/28/windows-vista-broken-by-design/</link>
		<comments>http://blog.meyerbros.org/2006/12/28/windows-vista-broken-by-design/#comments</comments>
		<pubDate>Thu, 28 Dec 2006 23:13:46 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>corporate criminals</category>

		<category>software</category>

		<category>multimedia</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/12/28/windows-vista-broken-by-design/</guid>
		<description><![CDATA[Peter Gutmann has done a cost analysis of Windows Vista&#8217;s &#8220;premium content protection.&#8221;  A sad/scary/ridiculous/amusing overview of the tangled webs Microsoft and its content-industry buddies are trying to weave in order to perform the impossible task of &#8220;protecting&#8221; content from the same person who&#8217;s legitimately viewing it.  Worth reading.  Some choice items: [...]]]></description>
			<content:encoded><![CDATA[<p>Peter Gutmann has done a <a href="http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt">cost analysis</a> of Windows Vista&#8217;s &#8220;premium content protection.&#8221;  A sad/scary/ridiculous/amusing overview of the tangled webs Microsoft and its content-industry buddies are trying to weave in order to perform the impossible task of &#8220;protecting&#8221; content from the same person who&#8217;s legitimately viewing it.  Worth reading.  Some choice items: If Vista doesn&#8217;t think your shiny new HD monitor / high-end sound card is secure enough (few HD monitors sold today have the required security features) any &#8220;premium content&#8221; sent to that device (and any other content being played on the system at the same time as &#8220;premium content&#8221;) gets intentionally fuzzied by the OS, or blacked out completely.  And if a &#8220;security&#8221; problem is discovered in a previously-approved piece of hardware, Microsoft can at any time revoke the key for that piece of hardware, disabling its ability to function with Vista at all.  After you bought and paid for it.</p>
<p>Anyway, <a href="http://www.cs.auckland.ac.nz/~pgut001/pubs/vista_cost.txt">read it</a>.  Definitely read it if you&#8217;re even thinking about buying Vista, or a computer with Vista installed.  And <a href="http://www.1729.com/blog/LookingForAWinWin.html">this</a> is good too.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/12/28/windows-vista-broken-by-design/feed/</wfw:commentRss>
		</item>
		<item>
		<title>server switch completed</title>
		<link>http://blog.meyerbros.org/2006/12/06/server-switch-completed/</link>
		<comments>http://blog.meyerbros.org/2006/12/06/server-switch-completed/#comments</comments>
		<pubDate>Wed, 06 Dec 2006 18:08:31 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>metablog</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/12/06/server-switch-completed/</guid>
		<description><![CDATA[Ok, I think everything is moved over to the new server now, including the full email setup moved off zoneedit and onto our own server.  Blog post-by-email (which I don&#8217;t think any of us have been using, but hey&#8230;) is now done via post@blog.meyerbros.org.  And if this post appears, it&#8217;s working.
Not that anyone [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, I think everything is moved over to the new server now, including the full email setup moved off zoneedit and onto our own server.  Blog post-by-email (which I don&#8217;t think any of us have been using, but hey&#8230;) is now done via post@blog.meyerbros.org.  And if this post appears, it&#8217;s working.<br />
Not that anyone else will find any of this particularly interesting. Server maintenance, la la la&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/12/06/server-switch-completed/feed/</wfw:commentRss>
		</item>
		<item>
		<title>God has a special place</title>
		<link>http://blog.meyerbros.org/2006/11/27/god-has-a-special-place/</link>
		<comments>http://blog.meyerbros.org/2006/11/27/god-has-a-special-place/#comments</comments>
		<pubDate>Mon, 27 Nov 2006 15:57:01 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>parenting</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/11/27/god-has-a-special-place/</guid>
		<description><![CDATA[In the annals of &#8220;things I hope I don&#8217;t do as a parent&#8221;:
The other day, a six-year-old asked Karissa where the baby was going to come out.  Reasonable question, and she got about two words into a reasonable answer before the kid&#8217;s mother jumped in to shuffle him off in another direction, with &#8220;God [...]]]></description>
			<content:encoded><![CDATA[<p>In the annals of &#8220;things I hope I don&#8217;t do as a parent&#8221;:</p>
<p>The other day, a six-year-old asked Karissa where the baby was going to come out.  Reasonable question, and she got about two words into a reasonable answer before the kid&#8217;s mother jumped in to shuffle him off in another direction, with &#8220;God has a special place for that.&#8221;</p>
<p>Hmm.  Kid, file that one away for future reference: God is a crutch grownups use when they&#8217;re trying to avoid being honest with you.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/11/27/god-has-a-special-place/feed/</wfw:commentRss>
		</item>
		<item>
		<title>sick days</title>
		<link>http://blog.meyerbros.org/2006/11/04/sick-days/</link>
		<comments>http://blog.meyerbros.org/2006/11/04/sick-days/#comments</comments>
		<pubDate>Sat, 04 Nov 2006 20:36:03 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>life</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/11/04/sick-days/</guid>
		<description><![CDATA[Karissa and I have been sharing a sore throat/cold thing all week long, and Erin K is visiting.  So I&#8217;ve been ignoring my work todo list and have spent most of the week playing Carcassone and Five Crowns and cooking/eating good food.  Erin and Karissa made Ethiopian doro wat and injera two nights [...]]]></description>
			<content:encoded><![CDATA[<p>Karissa and I have been sharing a sore throat/cold thing all week long, and Erin K is visiting.  So I&#8217;ve been ignoring my work todo list and have spent most of the week playing Carcassone and Five Crowns and cooking/eating good food.  Erin and Karissa made Ethiopian doro wat and injera two nights ago, I made French onion soup and french bread last night.</p>
<p>On Tuesday we zoom down to Denver for a brief visit with Jacob, fly to Orlando to see Kimberly, and then drive down to Ft. Lauderdale for MCC US board meetings, where we&#8217;ll have an hour to talk with them about why it matters for MCC to recognize Lakota sovereignty.  Then back.</p>
<p>The director of MCC resigned last week.</p>
<p>I think I&#8217;ll go for a walk now.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/11/04/sick-days/feed/</wfw:commentRss>
		</item>
		<item>
		<title>innovative emergency management</title>
		<link>http://blog.meyerbros.org/2006/09/13/innovative-emergency-management/</link>
		<comments>http://blog.meyerbros.org/2006/09/13/innovative-emergency-management/#comments</comments>
		<pubDate>Thu, 14 Sep 2006 02:25:23 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>bush</category>

		<category>corporate criminals</category>

		<category>political</category>

		<category>katrina</category>

		<category>cronyism</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/09/13/innovative-emergency-management/</guid>
		<description><![CDATA[We&#8217;ve all heard plenty about the federal government&#8217;s &#8220;incompetent&#8221; response to Katrina.  Bush finally even (belatedly) apologized for it.  But I never had a real clear sense of what &#8220;incompetent&#8221; meant.  Now I do.  Apparently it means &#8220;shameless cronyism.&#8221;  (Ok, honestly I did already know that Mike Brown, Bush&#8217;s appointee [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all heard plenty about the federal government&#8217;s &#8220;incompetent&#8221; response to Katrina.  Bush finally even (belatedly) apologized for it.  But I never had a real clear sense of what &#8220;incompetent&#8221; meant.  Now I do.  Apparently it means &#8220;shameless cronyism.&#8221;  (Ok, honestly I did already know that Mike Brown, Bush&#8217;s appointee to run FEMA, had previously held a job as the Commissioner of the International Arabian Horse Association.  But this is even more reckless.)</p>
<p>Greg Palast reporting for Democracy Now! a couple weeks ago around the Katrina one-year anniversary. (mp3 and transcripts for the two segments <a href="http://www.democracynow.org/article.pl?sid=06/08/28/1342209&#038;mode=thread&#038;tid=25">here</a> and <a href="http://www.democracynow.org/article.pl?sid=06/08/28/1342222&#038;mode=thread&#038;tid=25">here</a>):</p>
<blockquote><p>
What kind of evacuation plan would leave 127,000 to sink or swim? It turns out that the Bush administration had contracted out evacuation planning to a corporation, IEM, <a href="http://www.ieminc.com">Innovative Emergency Management</a>. I couldn&#8217;t locate their qualifications, but I did locate their list of donations to the Republican Party. We went to Baton Rouge to talk to them.
</p></blockquote>
<p>Palast goes on to report about how the evacuation plan, which IEM was <a href="http://www.ieminc.com/Whats_New/Press_Releases/pressrelease060304_Catastrophic.htm">paid a half-million dollars for</a>, is mysteriously missing.  And about how the real emergency management experts at LSU had never heard of these guys until they got their fat contract.  And the kicker?  After people drowned in New Orleans because these guys never came up with an actual evacuation plan (very innovative, I have to admit), guess who Bush contracted with to study what went wrong?  That&#8217;s right - another fat consulting contract for IEM.</p>
<p>More info on IEM from <a href="http://www.sourcewatch.org/index.php?title=Innovative_Emergency_Management">SourceWatch</a>.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/09/13/innovative-emergency-management/feed/</wfw:commentRss>
		</item>
		<item>
		<title>back in the saddle</title>
		<link>http://blog.meyerbros.org/2006/08/29/back-in-the-saddle/</link>
		<comments>http://blog.meyerbros.org/2006/08/29/back-in-the-saddle/#comments</comments>
		<pubDate>Wed, 30 Aug 2006 00:40:25 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>bush</category>

		<category>funny</category>

		<category>discgolf</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/08/29/back-in-the-saddle/</guid>
		<description><![CDATA[Items from my day:
1. Turn on the radio on the way home from Rapid: Violent Femmes&#8217; &#8220;Blister in the Sun&#8220;.  It&#8217;s a bad song.  Don&#8217;t follow that link.  But wow - did it ever take me back to high school.  Yeah, those two years when I went to high school.
2. Same [...]]]></description>
			<content:encoded><![CDATA[<p>Items from my day:</p>
<p>1. Turn on the radio on the way home from Rapid: Violent Femmes&#8217; &#8220;<a href="http://www.youtube.com/watch?v=QDB-fc4fn9Q">Blister in the Sun</a>&#8220;.  It&#8217;s a bad song.  Don&#8217;t follow that link.  But wow - did it ever take me back to high school.  Yeah, those two years when I went to high school.</p>
<p>2. Same radio, same car, same drive: teaser snippet from some radio comedian whose name I didn&#8217;t catch.  Roughly:</p>
<blockquote><p>
Now whatever you think of Bush, he really seems like a fun guy.
</p></blockquote>
<p>(At this point, I fear we&#8217;re headed for mushroom jokes, at best, and offensive politics, at worst.  This is a generic ClearChannel music station, after all.)</p>
<blockquote><p>
&#8230; I mean, he does, he seems like a fun guy.  Like the kind of guy who shows up at your barbecue, and you can always count on him to get the whiffle ball game going.  He shows up, and you&#8217;re like, cool, yeah, that&#8217;s cool, everything&#8217;s good.  Whiffle ball.  Tony the whiffle ball guy.</p>
<p>But then somebody decides to put Whiffle ball Tony in charge of EVERYTHING.  And you&#8217;re like, whaaat?!  I mean, I&#8217;m not sure that&#8217;s a good idea.  He&#8217;s kind of competitive.  And pretty soon he&#8217;s breaking into the neighbor&#8217;s yard, challenging them to whiffle ball.  I KNOW you want to play whiffle ball, and I&#8217;ll take you!  Like that.  Um, no, we didn&#8217;t say we wanted to play whiffle ball.  And then he starts chucking hamburgers at them, and you&#8217;re like, hey, Tony, what&#8217;s up?  And he says, Dude, they were just about to start chucking hamburgers at me!!  Only then you find out, they never even HAD any hamburgers&#8230;
</p></blockquote>
<p>Ok, well, I found it funny.</p>
<p>3. We played a round of disc golf in Rapid while waiting for an estimate on the damage to our front bumper from some guy who had a little trouble parking at Safeway.  Scored ten over par, my worst round yet on that course.  It was windy, and I was getting used to a new driver.  But a beautiful day anyway, and what better excuse to wander around in a park for a couple of hours?
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/08/29/back-in-the-saddle/feed/</wfw:commentRss>
		</item>
		<item>
		<title>meyerbros and google</title>
		<link>http://blog.meyerbros.org/2006/06/06/meyerbros-and-google/</link>
		<comments>http://blog.meyerbros.org/2006/06/06/meyerbros-and-google/#comments</comments>
		<pubDate>Wed, 07 Jun 2006 02:09:59 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>metablog</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/06/06/meyerbros-and-google/</guid>
		<description><![CDATA[If you search for &#8220;meyerbros&#8221; we&#8217;re hits one through eight, beating out such noteworthy competitors as, well, Meyer Bros. Construction.
And the seven Google searches which have led people here:
dilbert conceptual design
elephant s dream review
review and courageous conversations about race
rene steinke
walmart bad ethics
eric meyer resume
research paper on drive-in movie theaters
I feel bad for whoever was searching [...]]]></description>
			<content:encoded><![CDATA[<p>If you search for &#8220;meyerbros&#8221; we&#8217;re hits one through eight, beating out such noteworthy competitors as, well, <a href="http://www.meyerbros.com">Meyer Bros. Construction</a>.</p>
<p>And the seven Google searches which have led people here:</p>
<p>dilbert conceptual design<br />
elephant s dream review<br />
review and courageous conversations about race<br />
rene steinke<br />
walmart bad ethics<br />
eric meyer resume<br />
research paper on drive-in movie theaters</p>
<p>I feel bad for whoever was searching for &#8220;elephant&#8217;s dream review&#8221;, as I didn&#8217;t actually review it.  Sorry, whoever you are.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/06/06/meyerbros-and-google/feed/</wfw:commentRss>
		</item>
		<item>
		<title>elephant&#8217;s dream: the world&#8217;s first open source movie</title>
		<link>http://blog.meyerbros.org/2006/05/29/elephant-dream-the-worlds-first-open-source-movie/</link>
		<comments>http://blog.meyerbros.org/2006/05/29/elephant-dream-the-worlds-first-open-source-movie/#comments</comments>
		<pubDate>Tue, 30 May 2006 02:13:42 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>movies</category>

		<category>open source</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/05/29/elephant-dream-the-worlds-first-open-source-movie/</guid>
		<description><![CDATA[Twelve minutes long, all animated, created entirely with free/open-source software (notably Blender).  Released under the Creative Commons attribution license (just like this blog) - all of the production files are available for reuse, remixing, whatever.
I&#8217;d review it, but I haven&#8217;t watched it yet.  Still waiting for it to download (I&#8217;m going for the [...]]]></description>
			<content:encoded><![CDATA[<p>Twelve minutes long, all animated, created entirely with free/open-source software (notably <a href="http://www.blender.org">Blender</a>).  Released under the Creative Commons attribution license (just like this blog) - all of the production files are available for reuse, remixing, whatever.</p>
<p>I&#8217;d review it, but I haven&#8217;t watched it yet.  Still waiting for it to download (I&#8217;m going for the low-quality 155MB Quicktime download instead of the super-duper hi-def 5.1-surround MPEG4 850MB download).</p>
<p>Oh, don&#8217;t forget the <a href="http://elephantsdream.org">link</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/05/29/elephant-dream-the-worlds-first-open-source-movie/feed/</wfw:commentRss>
		</item>
		<item>
		<title>the new plan for meyerbros</title>
		<link>http://blog.meyerbros.org/2006/05/25/the-new-plan-for-meyerbros/</link>
		<comments>http://blog.meyerbros.org/2006/05/25/the-new-plan-for-meyerbros/#comments</comments>
		<pubDate>Thu, 25 May 2006 22:28:02 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>web design</category>

		<category>startup</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/05/25/the-new-plan-for-meyerbros/</guid>
		<description><![CDATA[(or Blue Heron Web Development, as Eric recently suggested on the wiki page. I like it.)
Business2.0 can tell us How To Build a BulletProof StartUp.  To begin, all we&#8217;ll need is a T-1 line, 20 employees, and several million dollars in venture capital to burn through.  Apparently we shouldn&#8217;t expect to break even [...]]]></description>
			<content:encoded><![CDATA[<p>(or Blue Heron Web Development, as Eric recently suggested on the <a href="http://wiki.meyerbros.org/wiki/Main/Design">wiki page</a>. I like it.)</p>
<p>Business2.0 can tell us <a href="http://money.cnn.com/magazines/business2/startups/index.html">How To Build a BulletProof StartUp</a>.  To begin, all we&#8217;ll need is a T-1 line, 20 employees, and several million dollars in venture capital to burn through.  Apparently we shouldn&#8217;t expect to break even until we&#8217;ve thrown $20 million down the tubes&#8230; </p>
<p>But before you waste precious hours of your life reading through their crap, let <a href="http://37signals.com">37signals&#8217;</a> David Heinemeier Hansson (creator of Ruby on Rails) <a href="http://37signals.com/svn/archives2/how_to_shoot_a_bullet_through_your_startup.php">tear it all apart</a>.  Much more entertaining, and way better advice.  Hansson concludes:</p>
<blockquote><p>
People often ask us â€śwhat should I do to build a company like 37signals?â€ť. I think we finally have a succinct answer now: Do exactly the opposite of what Business 2.0 tells you to.
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/05/25/the-new-plan-for-meyerbros/feed/</wfw:commentRss>
		</item>
		<item>
		<title>freedom of the press?</title>
		<link>http://blog.meyerbros.org/2006/05/25/freedom-of-the-press/</link>
		<comments>http://blog.meyerbros.org/2006/05/25/freedom-of-the-press/#comments</comments>
		<pubDate>Thu, 25 May 2006 19:17:26 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>political</category>

		<category>journalism</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/05/25/freedom-of-the-press/</guid>
		<description><![CDATA[ Remember that?

]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.nytimes.com/2006/05/22/washington/22gonzales.html?_r=3&#038;oref=slogin&#038;oref=slogin&#038;oref=slogin"> Remember that?</a>
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/05/25/freedom-of-the-press/feed/</wfw:commentRss>
		</item>
		<item>
		<title>welcome to the corporate welfare police state</title>
		<link>http://blog.meyerbros.org/2006/05/19/halliburtonkbr-gets-385-million-emergency-detention-centers-contract/</link>
		<comments>http://blog.meyerbros.org/2006/05/19/halliburtonkbr-gets-385-million-emergency-detention-centers-contract/#comments</comments>
		<pubDate>Sat, 20 May 2006 03:09:20 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>corporate criminals</category>

		<category>border</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/05/19/halliburtonkbr-gets-385-million-emergency-detention-centers-contract/</guid>
		<description><![CDATA[ Halliburton/Kellogg Brown &#038; Root gets $385 million &#8220;emergency detention centers&#8221; contract from the Dept of Homeland Security.

The contract, which is effective immediately, provides for establishing temporary detention and processing capabilities to augment existing ICE Detention and Removal Operations (DRO) Program facilities in the event of an emergency influx of immigrants into the U.S., or [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.halliburton.com/default/main/halliburton/eng/news/source_files/news.jsp?newsurl=/default/main/halliburton/eng/news/source_files/press_release/2006/kbrnws_012406.html"> Halliburton/Kellogg Brown &#038; Root gets $385 million &#8220;emergency detention centers&#8221; contract from the Dept of Homeland Security</a>.</p>
<blockquote><p>
The contract, which is effective immediately, provides for establishing temporary detention and processing capabilities to augment existing ICE Detention and Removal Operations (DRO) Program facilities in the event of an emergency influx of immigrants into the U.S., or to support the rapid development of new programs.
</p></blockquote>
<p>Republican leaders are also thinking about <a href="http://www.alternet.org/story/36428/">repealing or modifying Posse Comitatus</a> (the law that prevents U.S. soldiers from doing domestic law enforcement), and the deployment of National Guard troops to the Mexico border <a href="http://feeds.dailykos.com/dailykos/index?m=3882">has no end date</a>.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/05/19/halliburtonkbr-gets-385-million-emergency-detention-centers-contract/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Characteristics of an Anti-Racist Leader</title>
		<link>http://blog.meyerbros.org/2006/05/19/characteristics-of-an-anti-racist-leader/</link>
		<comments>http://blog.meyerbros.org/2006/05/19/characteristics-of-an-anti-racist-leader/#comments</comments>
		<pubDate>Sat, 20 May 2006 00:47:58 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>anti-racism</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/05/19/characteristics-of-an-anti-racist-leader/</guid>
		<description><![CDATA[Got this on email today and found it self-examination-provoking.

Glenn Singleton, author of  Courageous Conversations about Race,  offers the following characteristics of individuals committed to being  anti-racist leaders:



1.  I am abnormal.  I do things outside of what is seen as  normal.  People often get mad at me  or [...]]]></description>
			<content:encoded><![CDATA[<p>Got this on email today and found it self-examination-provoking.</p>
<blockquote><p>
Glenn Singleton, author of  Courageous Conversations about Race,  offers the following characteristics of individuals committed to being  anti-racist leaders:
</p></blockquote>
<p><a id="more-52"></a></p>
<blockquote><p>
1.  I am abnormal.  I do things outside of what is seen as  normal.  People often get mad at me  or disagree with me.</p>
<p>2. I am  constructivist.  I ask  questions.  I build on what I know  about the current, existing and known places where people  are.</p>
<p>3. I am  conflicted.</p>
<p>4. I often operate outside  of my comfort zone. I choose to go there. My own discomfort is my indication  that Iâ€™m doing it.</p>
<p>5. Iâ€™m in trouble.  People complain about what I have said  or done. I listen to hear their concerns respectfully, but I only change my  behavior or act on concerns as appropriate to further the work. I donâ€™t cave in  to any and all complaints.</p>
<p>6. I create and utilize  primary source documents and collect data that surfaces and reveals the presence  of issues of race, bias and equity. I design  materials.</p>
<p>7. I think up things to get  conversations going and to get issues of race, bias and equity on the  table.</p>
<p>8. I live at the extremes  emotionally because I choose to keep myself in touch with the hurt and pain that  so many people of difference are feeling.</p>
<p>9. I balance then and  now.  I can be future focused  because I realize where Iâ€™ve come from.   My own personal inquiry helps me stay future focused and  grounded.</p>
<p>10.  I do personal, autobiographical study  which helps me know what to do.</p>
<p>11. I think about, design  interventions for, and ask specifically focused questions about students not  previously served by schools.</p>
<p>12. I learn from kids; I  respond to kids. I seek out ways to stay informed and feel the feelings students  of color have as they experience school.</p>
<p>13. I am patient but  persistent. I am often frustrated but recognize that real change takes  time.</p>
<p>If we are committed to  anti-racist growth and change it may be helpful to ask ourselves, â€śHow do these  characteristics manifest themselves for me? Where are my growth areas?  How might I keep these characteristics  ever present in my work toward building more inclusive, creative,  transformational and authentic relationships and processes across  differences?â€ť
</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/05/19/characteristics-of-an-anti-racist-leader/feed/</wfw:commentRss>
		</item>
		<item>
		<title>let&#8217;s all hate on IE6 for a moment</title>
		<link>http://blog.meyerbros.org/2006/05/18/lets-all-hate-on-ie6-for-a-moment/</link>
		<comments>http://blog.meyerbros.org/2006/05/18/lets-all-hate-on-ie6-for-a-moment/#comments</comments>
		<pubDate>Thu, 18 May 2006 23:57:22 +0000</pubDate>
		<dc:creator>carl</dc:creator>
		
		<category>metablog</category>

		<category>web design</category>

		<guid isPermaLink="false">http://blog.meyerbros.org/2006/05/18/lets-all-hate-on-ie6-for-a-moment/</guid>
		<description><![CDATA[So, this blog thing is a good deal.  And I&#8217;d like to start promoting it a little bit - like at least let our family, some friends know that it exists.  But there&#8217;s one problem - lots of people, unknowingly and against our better judgment, are still using Win IE.  Some of [...]]]></description>
			<content:encoded><![CDATA[<p>So, this blog thing is a good deal.  And I&#8217;d like to start promoting it a little bit - like at least let our family, some friends know that it exists.  But there&#8217;s one problem - lots of people, unknowingly and against our better judgment, are still using Win IE.  Some of them are even people we know.  And like.  And while we have four or five really nice CSS layouts for this site, we still don&#8217;t have one that actually works in Win IE.  Black and white is mostly OK, except the header is funky.  The two bird designs (my favorites) push the sidebar down below the main content.  (Ok, so the Emacs design works in IE).</p>
<p>So - are you (eric) up for fixing this?  Do I need to dig into the CSS?  Right now it&#8217;s all that&#8217;s holding me back from spreading the word more widely.
</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.meyerbros.org/2006/05/18/lets-all-hate-on-ie6-for-a-moment/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
