<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Digital Leafblower</title>
	<atom:link href="http://digitalleafblower.com/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://digitalleafblower.com</link>
	<description>just pushing the bits and bytes around</description>
	<lastBuildDate>Tue, 17 Aug 2010 00:57:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>web load testing with siege on CentOS 5</title>
		<link>http://digitalleafblower.com/?p=166</link>
		<comments>http://digitalleafblower.com/?p=166#comments</comments>
		<pubDate>Tue, 17 Aug 2010 00:57:27 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[geek stuff]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[utilities]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=166</guid>
		<description><![CDATA[Recently I&#8217;ve needed to do some heavy load/stress testing of a web service at work. We have an API load test tool, but it&#8217;s designed to hit our soap server. I needed to hit a javascript file through our new load-balancer &#8211; and hit it hard. We started with Apache Bench (ab) which worked well [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I&#8217;ve needed to do some heavy load/stress testing of a web service at work.  We have an API load test tool, but it&#8217;s designed to hit our soap server.  I needed to hit a javascript file through our new load-balancer &#8211; and hit it hard.</p>
<p>We started with Apache Bench (ab) which worked well enough until we realized that it wasn&#8217;t doing ssl.  The address uses https protocol.  So I did a bit of research and found <a title="siege home" href="http://www.joedog.org/index/siege-home" target="_blank">seige</a>.  It&#8217;s an ideal tool for this purpose &#8211; easy to use from the command line and also supports a configuration file.</p>
<p>Here&#8217;s some basic instructions to get it up and running on CentOS 5:</p>
<ul>
<li>Get the latest version:</li>
</ul>
<p><code>$ wget ftp://ftp.joedog.org/pub/siege/siege-latest.tar.gz</code></p>
<ul>
<li>expand the archive</li>
<li>make sure you have the ssl libs installed:</li>
</ul>
<p><code>$ sudo yum install mod_ssl openssl</code></p>
<ul>
<li>cd into the siege directory</li>
<li>build and install:</li>
</ul>
<p><code>./configure --with-ssl=/usr/bin/openssl<br />
make<br />
sudo make install</code></p>
<ul>
<li>confirm:</li>
</ul>
<p><code>siege -V</code></p>
<ul>
<li>Note: the instructions suggest installing the tool in a more obvious place that the default, but I didn&#8217;t do that.</li>
<li>Now you can copy the sample <strong><em>siegerc </em></strong>to your home directory to change the default options:</li>
</ul>
<p><code>$ cp docs/siegerc ~/.siegerc<br />
$ cd ~<br />
$ vim .siegerc</code></p>
<ul>
<li>The default siegerc file is well documented and easy to configure.</li>
<li>Time to run it:</li>
</ul>
<p><code>$ siege https://www.[yoursecuresite].???</code></p>
<p>Here&#8217;s an example summary report that you get after the test is done or stopped:<br />
<code>...<br />
HTTP/1.1 200   0.08 secs:    7914 bytes ==> /index.html</code/<br />
<code><br />
Lifting the server siege...       done.<br />
Transactions:                         311 hits<br />
Availability:                            100.00 %<br />
Elapsed time:                         1.13 secs<br />
Data transferred:                    2.35 MB<br />
Response time:                  0.11 secs<br />
Transaction rate:             275.22 trans/sec<br />
Throughput:                     2.08 MB/sec<br />
Concurrency:                   30.55<br />
Successful transactions:         311<br />
Failed transactions:               0<br />
Longest transaction:            0.35<br />
Shortest transaction:           0.02<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=166</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>installing wine on Snow Leopard</title>
		<link>http://digitalleafblower.com/?p=88</link>
		<comments>http://digitalleafblower.com/?p=88#comments</comments>
		<pubDate>Mon, 02 Nov 2009 21:57:40 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[geek stuff]]></category>
		<category><![CDATA[mac stuff]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[utilities]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=88</guid>
		<description><![CDATA[For the most part Snow Leopard was an almost seamless upgrade from Leopard for me. Whenever there&#8217;s a major OS X update, some things take a little while to catch up. So I have some understanding when lower level tools require some extra steps to get working. Wine took a bit of debugging and googling [...]]]></description>
			<content:encoded><![CDATA[<p>For the most part Snow Leopard was an almost seamless upgrade from Leopard for me. Whenever there&#8217;s a major OS X update, some things take a little while to catch up. So I have some understanding when lower level tools require some extra steps to get working.</p>
<p>Wine took a bit of debugging and googling to figure out. Maybe this will help someone else.</p>
<p>Steps:</p>
<p>I pretty much followed these instructions, with a little variation at the end: <a href="http://davidbaumgold.com/tutorials/wine-mac/" target="_blank">http://davidbaumgold.com/tutorials/wine-mac/</a> Here&#8217;s a summary:</p>
<ol>
<li>install the Xcode dev tools from the Snow Leopard DVD. These are not installed be default. Make sure you select the X11 tools to be installed</li>
<li>Install or upgrade MacPorts: <a href="http://www.macports.org/install.php" target="_blank">http://www.macports.org/install.php</a></li>
<li>Install wine with MacPorts:</li>
</ol>
<p><code>&gt;&gt; sudo port install wine-devel +universal</code></p>
<p>Now that should work. However, I didn&#8217;t do it that way. I did it without the &#8216;+universal&#8217; switch and that&#8217;s where my troubles began. If you are now in a place where you&#8217;re getting this error:</p>
<p><code>&gt;&gt;sudo port install wine-devel<br />
Password:<br />
---&gt; Computing dependencies for wine-devel<br />
---&gt; Extracting wine-devel<br />
Error: You cannot install wine-devel for the architecture(s) i386<br />
Error: because /opt/local/lib/libexpat.dylib only contains the architecture(s) x86_64.<br />
Error: Try reinstalling the port that provides /opt/local/lib/libexpat.dylib with the +universal variant.<br />
Error: Target org.macports.extract returned: incompatible architectures in dependencies<br />
Error: Status 1 encountered during processing.<br />
You need to figure out what port uses that lib and force a universal upgrade. Here's how:<br />
&gt;&gt;port provides /opt/local/lib/libexpat.dylib<br />
/opt/local/lib/libexpat.dylib is provided by: expat<em><br />
</em></code></p>
<p>So expat is the culprit. Now lets get it upgraded:</p>
<p><code>&gt;&gt;sudo port upgrade --enforce-variants expat +universal</code></p>
<p>I ended up doing this about a dozen times, once for each of the wine dependancies that wine complained about. I eventually got wine installed.</p>
<p>I suppose you could script this by getting all the Wine deps and doing some copy and pasting. That would probably be quicker.</p>
<p>Update:</p>
<p>Here&#8217;s a <a href="http://tqft.wordpress.com/2009/09/24/installing-wine-on-snow-leopard/">post</a> I found that streamlines the process a bit.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=88</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>selections from my trip-hop playlist</title>
		<link>http://digitalleafblower.com/?p=85</link>
		<comments>http://digitalleafblower.com/?p=85#comments</comments>
		<pubDate>Thu, 21 May 2009 05:23:45 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[entertainment]]></category>
		<category><![CDATA[geek stuff]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=85</guid>
		<description><![CDATA[I spent last weekend at a board gaming retreat we call WBC-West. We stayed at Doug&#8217;s family&#8217;s house in central Oregon and played (mostly) board wargames. When you&#8217;re hanging out inside all day playing games, it&#8217;s nice to have some tunes going and several of our iPods took turns as DJ. I put on my [...]]]></description>
			<content:encoded><![CDATA[<p>I spent last weekend at a board gaming retreat we call WBC-West. We stayed at <a href="http://dugsreports.blogspot.com/">Doug&#8217;s</a> family&#8217;s house in central Oregon and played (mostly) board wargames. When you&#8217;re hanging out inside all day playing games, it&#8217;s nice to have some tunes going and several of our iPods took turns as DJ.</p>
<p>I put on my trip-hop playlist that I have been building, pruning and refining over the last several years. It&#8217;s a mix of techno downtempo, chill and trip-hop that I listen to at work. For me, it&#8217;s a great mix to listen to while working as there are not a ton of lyrics to distract, but there&#8217;s always good beat to keep you going. I think it works well as gaming background for similar reasons. I got some complements and inquires on the playlist &#8211; <a href="http://www.blogger.com/profile/17973885708132273602">Eric</a> even said that he&#8217;s going to spend his next month&#8217;s eMusic quota on bands from the list. So now after 2 post-weekend emails requesting more info on the list, here&#8217;s the scoop:</p>
<ul>
<li>9 Lazy 9
<ul>
<li>The Herb</li>
</ul>
</li>
<li>Amon Tobin
<ul>
<li>Bricolage</li>
<li>Out From Out Where</li>
<li>Permutation</li>
<li>Remixes &amp; Collaborations</li>
<li>Supermodified</li>
</ul>
</li>
<li>Blockhead
<ul>
<li>Downtown Science</li>
<li>Music By Cavelight</li>
<li>Uncle Tony&#8217;s Coloring Book</li>
</ul>
</li>
<li>Bonobo
<ul>
<li>Animal Magic</li>
<li>Days to Come</li>
<li>Dial &#8216;M&#8217; for Monkey</li>
<li>Live Sessions EP</li>
<li>One off Remixes and B-Sides</li>
<li>Solid Steel Presents: It Came from the Sea</li>
<li>Sweetness</li>
</ul>
</li>
<li>Chris W. Paine
<ul>
<li>Weird Conversations</li>
</ul>
</li>
<li>Cut Chemist
<ul>
<li>The Audience&#8217;s Listening</li>
</ul>
</li>
<li>Czarny Wladek
<ul>
<li>Wolnosc</li>
</ul>
</li>
<li>DJ /rupture
<ul>
<li>Uproot</li>
</ul>
</li>
<li>DJ Krush
<ul>
<li>Kakusei</li>
</ul>
</li>
<li>DJ Shadow
<ul>
<li>Entroducing&#8230;&#8230;</li>
<li>Preemptive Strike</li>
<li>Private Press</li>
<li>Bombay the Hard Way</li>
</ul>
</li>
<li>Free the Robots
<ul>
<li>Free the Robots EP</li>
</ul>
</li>
<li>Gotan Project
<ul>
<li>Inspiracion-Espiracion Remix</li>
<li>La Revancha del Tango</li>
<li>Lunatico</li>
<li>Mare Tranquillitatis</li>
</ul>
</li>
<li>Greyboy
<ul>
<li>Land of the Lost</li>
</ul>
</li>
<li>Groove Armada
<ul>
<li>AnotherLateNight</li>
<li>Back to Mine</li>
<li>Goodbye Country (Hello Nightclub)</li>
<li>Love Box</li>
<li>Northern Star</li>
<li>Vertigo</li>
</ul>
</li>
<li>Helicopter Down!
<ul>
<li>Junshi</li>
</ul>
</li>
<li>Kruder Dorfmeister
<ul>
<li>The K&amp;D Sessions</li>
</ul>
</li>
<li>Massive Attack
<ul>
<li>100th Window</li>
<li>Blue Lines</li>
<li>Mezzanine</li>
<li>Nexus (Bootleg)</li>
<li>No Protection: Massive Attack Vs. Mad Professor</li>
<li>Pi (Symbol)</li>
<li>Protection</li>
<li>Rising Tears</li>
<li>the karmacoma e.p.</li>
</ul>
</li>
<li>Mocean Worker
<ul>
<li>Aural &amp; Hearty</li>
<li>Enter The MoWo!</li>
<li>Home Movies From The Brainforest</li>
</ul>
</li>
<li>Orbital
<ul>
<li>Snivilisation</li>
</ul>
</li>
<li>Portishead
<ul>
<li>Dummy</li>
<li>Portishead</li>
<li>Third</li>
</ul>
</li>
<li>RJD2
<ul>
<li>Dead Ringer</li>
</ul>
</li>
<li>St. Germain
<ul>
<li>Tourist</li>
</ul>
</li>
<li>Strange Republik
<ul>
<li>Infiltration</li>
<li>No Tomorrow</li>
</ul>
</li>
<li>Thievery Corporation
<ul>
<li>18th Street Lounge Comp.</li>
<li>DJ Kicks</li>
<li>Hi-Fidelity Lounge</li>
<li>Om Lounge, Vol. 1</li>
<li>Radio Retaliation</li>
<li>Sounds From The Thievery Hi-Fi</li>
<li>The Cosmic Game</li>
<li>The Mirror Conspiracy</li>
<li>The Outernational Sound</li>
<li>The Richest Man In Babylon</li>
</ul>
</li>
<li>Thunderball
<ul>
<li>Scorpio Rising</li>
</ul>
</li>
<li>U.N.K.L.E
<ul>
<li>Psyence Fiction</li>
</ul>
</li>
<li>Ulrich Schnauss
<ul>
<li>A Strangely Isolated Place</li>
<li>Far Away Trains Passing By</li>
</ul>
</li>
<li>Wax Tailor
<ul>
<li>Hope And Sorrow</li>
<li>Tales Of The Forgotten Melodies</li>
</ul>
</li>
<li>Zero 7
<ul>
<li>Simple Things</li>
</ul>
</li>
</ul>
<p>Wow, that&#8217;s a long list. I regularly refine it, so not all tracks from all these albums are actually part of it, but still&#8230;</p>
<p>If you have any suggestions of other bands or albums for me, please comment.</p>
<p>Enjoy the chill.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=85</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Mac Tips and Tricks &#8211; part 1 &#8211; Handy apps and utils</title>
		<link>http://digitalleafblower.com/?p=83</link>
		<comments>http://digitalleafblower.com/?p=83#comments</comments>
		<pubDate>Mon, 18 May 2009 23:18:16 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[geek stuff]]></category>
		<category><![CDATA[mac stuff]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[utilities]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=83</guid>
		<description><![CDATA[This is the first installment in a series I will be posting about how to get the most from your Mac. I run into a lot of switchers and often get questions about how to do stuff on the Mac. So instead of copying, pasting and updating the same email repeatedly, I can now refer [...]]]></description>
			<content:encoded><![CDATA[<p>This is the first installment in a series I will be posting about how to get the most from your Mac. I run into a lot of switchers and often get questions about how to do stuff on the Mac. So instead of copying, pasting and updating the same email repeatedly, I can now refer them to my blog <img src='http://digitalleafblower.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Let me know if there are any specific areas that you would like me to cover in the future.</p>
<p><strong><em>Disclaimer</em></strong><em>: The opinions expressed in this article (and my whole blog for that matter) are mine and mine alone. Additionally, I have not received compensation related to any of the software mentioned here.</em></p>
<h3>Part 1 &#8211; Handy applications and utilities</h3>
<p>OS X 10.5.x (leopard) has a pretty nice set of built-in features and applications. But there&#8217;s always room for improvement. The following is a list of free, shareware and commercial tools that I recommend.</p>
<p><span style="text-decoration: underline;">System Utilities</span><br />
<strong><a href="http://www.obdev.at/products/launchbar/">LaunchBar</a></strong> &#8211; A keyboard driven launcher, navigator and general productivity tool. This is the first thing I install on any Mac that I use. Shareware. An alternative to quicksilver, very similar, but some feature differences. <a href="http://www.blacktree.com/?quicksilver">Quicksilver</a> is free and will probably work just fine for you. They&#8217;re charging a bit more for the latest version of LaunchBar (24 euros &#8211; about $31) and it&#8217;s probably a bit too much. I got the first version for $12 and have been upgrading since.</p>
<p><a href="http://growl.info/"><strong>Growl</strong></a> &#8211; system wide notifications, lots of supporting apps &#8211; free</p>
<p><a href="http://www.ragingmenace.com/software/menumeters/"><strong>MenuMeters</strong></a> &#8211; all your machine&#8217;s vitals in configurable displays in your menu bar &#8211; free</p>
<p><strong><a href="http://adium.im/">Adium</a></strong> &#8211; All-in-one instant messaging client. Supports a ton of different protocols in a highly configurable app. Free</p>
<p><a href="http://toolbar.google.com/gmail-helper/notifier_mac.html"><strong>Google Notifier</strong></a> &#8211; If you use gmail or google canendar, I highly recommend this.</p>
<p><a href="http://www.stclairsoft.com/DefaultFolderX/"><strong>Default Folder</strong></a> &#8211; Simply brilliant. Besides remembering where you last opened files from on a per app basis and giving hot keys to specific locations, this will allow you to mouse-over a Finder window and have your open/save dialog goto that directory. Just try it or let me demo if for you. Unfortunately, the latest version is a bit expensive at $35.</p>
<p><span style="text-decoration: underline;">Network and File utilities</span>:</p>
<p><a href="http://sourceforge.net/projects/cotvnc/"><strong>Chicken of the VNC</strong></a> &#8211; handy VNC client for your remoting needs &#8211; free</p>
<p><strong><a href="http://www.microsoft.com/mac/products/remote-desktop/default.mspx">RDC</a></strong> &#8211; Remote Desktop Connect. Open a VNC-like network session with a windows box, only faster. The best Mac app that M$ has released, evar.</p>
<p><a href="http://www.parallels.com/products/desktop/"><strong>Parallels</strong></a> &#8211; Virtualization for when you have to foray into other OS&#8217;s locally. Latest version has coherence and supports most USB devices (even ones not supported by OSX). Commercial.<a href="http://www.roxio.com/enu/products/toast/titanium/overview.html"></a></p>
<p><a href="http://www.roxio.com/enu/products/toast/titanium/overview.html"><strong>Toast</strong></a> &#8211; CD/DVD burning app. Commercial.</p>
<p><a href="http://www.mucommander.com/"><strong>muCommander</strong></a> &#8211; General purpose file manager with excellent network features, based on Norton Commander. Free.</p>
<p><a href="http://cyberduck.ch/"><strong>Cyberduck</strong></a> &#8211; Handy s/ftp app &#8211; if you do that sort of thing with a GUI. Free/Nagware.</p>
<p><span style="text-decoration: underline;">Laptop Specific stuff</span><br />
<a href="http://www.orange-carb.org/SBM/"><strong>SlimBatteryMonitor</strong></a> &#8211; big improvement over the one built into the OS , and free.<br />
<em>Note: I used to have more of these, but the MBP and Leopard have incorporated their functionality.</em></p>
<p><span style="text-decoration: underline;">Dev tools</span><br />
<a href="http://macromates.com/"><strong>TextMate</strong></a> &#8211; A fantastic editor and IDE. Configurable, scriptable, pluggable. BBEdit is a fading memory for me. Commercial, $54.<br />
<a href="http://iterm.sourceforge.net/"><strong>iTerm</strong></a> &#8211; Replacement for Terminal.app &#8211; tabbed interface, uses Linux compatible keyset, bookmarks. &#8211; free<br />
<a href="http://cocoamysql.sourceforge.net/"><strong>CocoaMySQL</strong></a> &#8211; GUI for management of your MYSql DBs &#8211; free<br />
<a href="http://www.lachoseinteractive.net/en/community/subversion/svnx/features/"><strong>svnX</strong></a> &#8211; GUI for SVN. A little rough around the edges, but stable and useful &#8211; free</p>
<p><span style="text-decoration: underline;">Data management and prodctivity:</span></p>
<p><strong><a href="http://www.getdropbox.com/">Dropbox</a></strong> &#8211; Secure, remote file storage and syncing. I use this for application specific data files and small backups. Free for your first 2BG, pay for more.</p>
<p><strong><a href="http://evernote.com/">Evernote</a></strong> &#8211; My current favorite tool. This is the data management solution that I have been trying to find/hack/create for years. It&#8217;s a personal wiki/cms with rich formatting, tags, categories and easy importing from email and web. But what really sells it for me are the client apps with syncing and offline use. There are clients for Mac, Win, iPhone and others. They all keep synchronized with each other and allow offline editing. I can&#8217;t tell you how much time I&#8217;ve spent trying to solve this problem for myself with combinations of web apps, Mac apps, scripts, etc. Finally I have one place to put all my data where I can access and update it whether I&#8217;m at home, work, on the bus or at a coffee shop. The first 40MB a month are free &#8211; which is plenty if you&#8217;re mostly storing text, like me. You can pay for more.</p>
<p><a href="http://flyingmeat.com/voodoopad/"><strong>VoodooPad</strong></a> &#8211; A wiki wrapped up in an application. Great for notes, lists, reference, etc. However I think <a href="http://evernote.com/">Evernote</a> will soon completely replace this for me. Shareware.</p>
<p><a href="http://agilewebsolutions.com/products/1Password"><strong>1Password</strong></a> &#8211; Secure, encrypted login/password/data storage with excellent browser and iPhone integration. $40, but you can often find it discounted or even free bundled with other apps.</p>
<p><a href="http://culturedcode.com/things/"><strong>Things</strong></a> &#8211; A well designed todo list and task manager, one of the best I&#8217;ve ever used. It&#8217;s based on GTD, but you don&#8217;t have to use it that way. Has an iPhone app that is useful independently and well integrated, but costs additional also. $50 for the Mac, $10 for iPhone.</p>
<p><a href="http://www.skitch.com/"><strong>Skitch</strong></a> &#8211; Uber-screenshot tool. Capture screens, edit the images, share them on the web, all-in-one. Free.</p>
<p><span style="text-decoration: underline;">Entertainment/social/audio/video<br />
</span></p>
<p><a href="http://iconfactory.com/software/twitterrific"><strong>Twitterific</strong></a> &#8211; Handy twitter client. Free with ads, pay to get rid of them.</p>
<p><a href="http://www.videolan.org/vlc/"><strong>VLC</strong></a> &#8211; Plays just about any video you throw at it. Can be controlled by the IR remote that comes with your MBP. Cross platform. Free</p>
<p><a href="http://www.lemkesoft.com/"><strong>Graphic Converter</strong></a> &#8211; Reads and writes most ANY graphic format. Does decent editing and even has some automation/script-ability. Also a quick image browser. Shareware. If you want something free that does a bit more than iPhoto, try <a href="http://seashore.sourceforge.net/">Seashore</a>.</p>
<p><a href="http://www.eternalstorms.at/gimmesometune"><strong>GimmeSomeTune</strong></a> &#8211; iTunes extension with great hotkey functionality and some other nice features.</p>
<p>That&#8217;s my current list. I&#8217;d be interested in your opinions on these. What apps do you use and like?</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=83</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>One Monster after Another</title>
		<link>http://digitalleafblower.com/?p=79</link>
		<comments>http://digitalleafblower.com/?p=79#comments</comments>
		<pubDate>Sat, 21 Mar 2009 05:12:35 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[entertainment]]></category>
		<category><![CDATA[the boys]]></category>
		<category><![CDATA[griffin]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=79</guid>
		<description><![CDATA[Griffin&#8217;s first play: Link to the movie: One Monster after another Check out the costume that Kelle made and Denyce helped decorated.]]></description>
			<content:encoded><![CDATA[<p>Griffin&#8217;s first play:</p>
<p><a href="http://digitalleafblower.com/wp-content/uploads/2009/03/still_frame.jpg"><img class="alignnone size-medium wp-image-81" title="still_frame" src="http://digitalleafblower.com/wp-content/uploads/2009/03/still_frame-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Link to the movie:<a href="http://digitalleafblower.com/shared/movies/one_monster_griffin.mov"> One Monster after another</a></p>
<p>Check out the costume that Kelle made and Denyce helped decorated.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=79</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://digitalleafblower.com/shared/movies/one_monster_griffin.mov" length="12900273" type="video/quicktime" />
		</item>
		<item>
		<title>Griffin the comedian</title>
		<link>http://digitalleafblower.com/?p=77</link>
		<comments>http://digitalleafblower.com/?p=77#comments</comments>
		<pubDate>Fri, 17 Oct 2008 03:38:03 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[the boys]]></category>
		<category><![CDATA[family]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=77</guid>
		<description><![CDATA[For a while now, Griffin has been reading by flashlight when he goes to bed. We often hear him talking about or laughing at the stories he&#8217;s reading. Fortunately, Tober goes to sleep fast and hard so he&#8217;s not bothered by this. Griffin has been into joke books lately. So of course he has also [...]]]></description>
			<content:encoded><![CDATA[<p>For a while now, Griffin has been reading by flashlight when he goes to bed. We often hear him talking about or laughing at the stories he&#8217;s reading. Fortunately, Tober goes to sleep fast and hard so he&#8217;s not bothered by this.</p>
<p>Griffin has been into joke books lately. So of course he has also been trying his hand at authoring some jokes. The other night when I went in to tell him lights out, he told me this little gem:</p>
<p>&#8220;What do you use to make cookies and is at a baseball game?&#8221;</p>
<p>That&#8217;s right: &#8220;A Batter&#8221;</p>
<p>Not bad, huh? We&#8217;re encouraging him to write them down, he already has a bunch.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=77</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best name for a fictional cheese shop ever</title>
		<link>http://digitalleafblower.com/?p=73</link>
		<comments>http://digitalleafblower.com/?p=73#comments</comments>
		<pubDate>Wed, 23 Jul 2008 15:01:00 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[filler]]></category>
		<category><![CDATA[geek stuff]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=73</guid>
		<description><![CDATA[&#8220;Cheese Gotta have it&#8221; Mentioned on this week&#8217;s episode of Weeds.]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: 12px; font-weight: bold;">&#8220;Cheese Gotta have it&#8221;</span></p>
<p>Mentioned on this week&#8217;s episode of Weeds.</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=73</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My latest online addiction</title>
		<link>http://digitalleafblower.com/?p=72</link>
		<comments>http://digitalleafblower.com/?p=72#comments</comments>
		<pubDate>Fri, 09 May 2008 21:49:19 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[games]]></category>
		<category><![CDATA[geek stuff]]></category>
		<category><![CDATA[Boardgames]]></category>
		<category><![CDATA[online]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=72</guid>
		<description><![CDATA[My latest online addiction is the gleemax site hosted by our friends at Wizards of the Coast. They are in alpha (i.e. free) testing of this online boardgame site. It has several of WotCs best acquisitions: Acquire, Axis &#38; Allies, Guillotine, Vegas Showdown and the one that I can&#8217;t stop playing, Robo Rally. You can [...]]]></description>
			<content:encoded><![CDATA[<p>My latest online addiction is the <a title="gleemax" href="http://www.wizards.com/default.asp?x=gleemaxgames" target="_blank">gleemax</a> site hosted by our friends at Wizards of the Coast.  They are in alpha (i.e. free) testing of this online boardgame site.  It has several of WotCs best acquisitions: Acquire,  Axis &amp; Allies, Guillotine, Vegas Showdown and the one that I can&#8217;t stop playing, Robo Rally.  You can play solo against bots or you can try to get some other humans to play.  I can only speak to the AI for Robo Rally (as that&#8217;s all I&#8217;ve played), but it&#8217;s pretty good.  The bots are hard to beat.  The code is being worked on and they appear to be responding to user feedback.  I&#8217;ve seen one update so far.  I haven&#8217;t come across any major bugs.  My big complaint right now is that it can get laggy when you play with other humans.  It&#8217;s all in java, so it works great on my Mac and should be fine in linux and that other OS.  My handle is (of course) HazMatt, join me for a game sometime.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=72</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>global warming?</title>
		<link>http://digitalleafblower.com/?p=71</link>
		<comments>http://digitalleafblower.com/?p=71#comments</comments>
		<pubDate>Sat, 19 Apr 2008 18:28:34 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[portland, or area]]></category>
		<category><![CDATA[thistledown]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=71</guid>
		<description><![CDATA[There&#8217;s definitely something funky going on with the weather when it snows on April 19th. Last year (2007) saw a record low for this day at 35 F. Today just about matches that. Oddly enough, 2005 holds the record high temperature of 68 F. Weird.]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s definitely something funky going on with the weather when it snows on April 19th.</p>
<p><img src="http://digitalleafblower.com/wp-content/uploads/2008/04/img-8234.jpg" width="480" height="360" alt="IMG_8234.JPG" /></p>
<p>Last year (2007) saw a record low for this day at 35 F. Today just about matches that. Oddly enough, 2005 holds the record high temperature of 68 F. Weird.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=71</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac System info on your desktop</title>
		<link>http://digitalleafblower.com/?p=69</link>
		<comments>http://digitalleafblower.com/?p=69#comments</comments>
		<pubDate>Tue, 11 Mar 2008 21:50:32 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[geek stuff]]></category>
		<category><![CDATA[mac stuff]]></category>
		<category><![CDATA[osx utilities]]></category>

		<guid isPermaLink="false">http://digitalleafblower.com/?p=69</guid>
		<description><![CDATA[There are a small handful of windows apps that I think are pretty useful and don&#8217;t have better Mac equivalents. BgInfo is one of these. It used to be an independent freeware app, but microsquish thought it was cool enough to acquire &#8211; at least it&#8217;s still free (for now). What is does is simple: [...]]]></description>
			<content:encoded><![CDATA[<p>There are a <span style="font-size: 9px">small</span> handful of windows apps that I think are pretty useful <strong>and</strong> don&#8217;t have better Mac equivalents. <img src="http://digitalleafblower.com/wp-content/uploads/2008/03/bginfo-ss.jpg" alt="bginfo_ss.jpg" style="margin: 1px; padding: 1px; float: right" height="250" width="318" /> <a href="http://technet.microsoft.com/en-us/sysinternals/bb897557.aspx" title="BGinfo">BgInfo</a> is one of these. It used to be an independent freeware app, but microsquish thought it was cool enough to acquire &#8211; at least it&#8217;s still free (for now). What is does is simple: it aggregates a bunch of different bits of information about the system it&#8217;s running on and merges it with the desktop background. This may not seem very useful to most people since most people only use one or two different computers and don&#8217;t really care about things like their <a href="http://en.wikipedia.org/wiki/Default_Gateway" title="default gateway">Default Gateway</a> or <a href="http://en.wikipedia.org/wiki/Mac_address" title="MAC address">MAC Address</a>. However, for those who work in a dev/IT environment where they switch between a bunch of different machines or better yet, have a lab of boxes that they don&#8217;t use regularly &#8211; this is extremely handy.</p>
<p>Now I could not find a utility that does what BgInfo does for the Mac &#8211; at least not specifically. Then I remembered about <a href="http://projects.tynsoe.org/en/geektool/" title="GeekTool">GeekTool</a>. GeekTool is the <a href="http://www.shopsmith.com/" title="ShopSmith">Shopsmith</a> to BgInfo&#8217;s <a href="http://www.dewalt.com/us/products/tool_detail.asp?productID=15112" title="dewalt drill">hand drill</a>. I plan to write another post dedicated to Mac utilities where I&#8217;ll go into more detail on GeekTool, but for now we&#8217;ll just get started. If you know of something else that does what BgInfo can do on the Mac, please let me know &#8211; I&#8217;m not <span style="font-style: italic">totally</span> addicted to big hammers.</p>
<p>Here&#8217;s what you do:</p>
<ul>
<li>Install <a href="http://projects.tynsoe.org/en/geektool/" title="GeekTool">GeekTool</a></li>
<li>Paste the following <a href="http://www.ruby-lang.org/en/" title="ruby">ruby</a> code into a text file and save it somewhere like ~/scripts or ~/Library/Scripts as <span style="font-style: italic">sys_info.rb</span>:</li>
</ul>

<div class="wp_syntax"><div class="code"><pre class="ruby" style="font-family:monospace;"><span style="color:#0066ff; font-weight:bold;">@user</span> = <span style="color:#996600;">`whoami`</span>
<span style="color:#0066ff; font-weight:bold;">@system</span> = <span style="color:#996600;">`scutil --get ComputerName`</span>
<span style="color:#0066ff; font-weight:bold;">@ip</span> = <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">`ifconfig en0 | grep netmask`</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#CC0066; font-weight:bold;">split</span>
<span style="color:#0066ff; font-weight:bold;">@vers</span> = <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">`sw_vers | grep ProductVersion`</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#CC0066; font-weight:bold;">split</span>
<span style="color:#0066ff; font-weight:bold;">@hw_info</span> = <span style="color:#996600;">`system_profiler`</span>
<span style="color:#0066ff; font-weight:bold;">@up</span> = <span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">`uptime`</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="color:#CC0066; font-weight:bold;">split</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">','</span><span style="color:#006600; font-weight:bold;">&#41;</span>
&nbsp;
<span style="color:#9966CC; font-weight:bold;">if</span> <span style="color:#0066ff; font-weight:bold;">@vers</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">1</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9966CC; font-weight:bold;">include</span>?<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#996600;">'10.5'</span><span style="color:#006600; font-weight:bold;">&#41;</span>
  <span style="color:#0066ff; font-weight:bold;">@hw_name</span> = <span style="color:#996600;">'Processor Name'</span>
  <span style="color:#0066ff; font-weight:bold;">@hw_speed</span> = <span style="color:#996600;">'Processor Speed'</span>
<span style="color:#9966CC; font-weight:bold;">else</span>
  <span style="color:#0066ff; font-weight:bold;">@hw_name</span> = <span style="color:#996600;">'CPU Type'</span>
  <span style="color:#0066ff; font-weight:bold;">@hw_speed</span> = <span style="color:#996600;">'CPU Speed'</span>
<span style="color:#9966CC; font-weight:bold;">end</span>
&nbsp;
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;User: #{@user}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Computer: #{@system}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;IP: #{@ip[1]}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;OS Version: #{@vers[1]}&quot;</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#0066ff; font-weight:bold;">@hw_info</span>.<span style="color:#9900CC;">grep</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">/</span><span style="color:#008000; font-style:italic;">#{@hw_name}/).to_s.strip</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#0066ff; font-weight:bold;">@hw_info</span>.<span style="color:#9900CC;">grep</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">/</span><span style="color:#008000; font-style:italic;">#{@hw_speed}/)[0].to_s.strip</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#0066ff; font-weight:bold;">@hw_info</span>.<span style="color:#9900CC;">grep</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">/</span>Memory:<span style="color:#006600; font-weight:bold;">/</span><span style="color:#006600; font-weight:bold;">&#41;</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#006666;">0</span><span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="color:#9900CC;">to_s</span>.<span style="color:#9900CC;">strip</span>
<span style="color:#CC0066; font-weight:bold;">puts</span> <span style="color:#996600;">&quot;Uptime: #{@up[0].strip}&quot;</span></pre></div></div>

<ul>
<li>Open the GeekTool preference pane and add a new entry. Select <strong>Shell</strong> from the pop-up menu.</li>
</ul>
<p><img src="http://digitalleafblower.com/wp-content/uploads/2008/03/sys_info.jpg" alt="sys_info.jpg" style="margin: 1px; padding: 1px; float: right" height="125" width="229" /></p>
<ul>
<li>In the Command box, enter: <span style="font-family: Monaco; white-space: pre">ruby ~/scripts/sys_info.rb</span> (change to your path and file name)</li>
<li>Set the refresh for 300</li>
<li>Now you should see a box somewhere on your desktop and it should have 8 lines of juicy info.</li>
<li>Play with the other tabs to set the font style and background.</li>
<li>You can drag and resize the box to wherever you like.</li>
</ul>
<p>I know this works on OS X Tiger and Leopard and it should work fine on Panther. BTW &#8211; GeekTool works great on Leopard.<br />
If you have any suggestions, changes or additions to this, please share.</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalleafblower.com/?feed=rss2&amp;p=69</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>
