<?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>${me:-whatever}</title>
	<atom:link href="http://samrowe.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://samrowe.com/wordpress</link>
	<description></description>
	<lastBuildDate>Fri, 18 Jun 2010 03:29:06 +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>GNU Screen quick tips</title>
		<link>http://samrowe.com/wordpress/2010/06/16/gnu-screen-quick-tips/</link>
		<comments>http://samrowe.com/wordpress/2010/06/16/gnu-screen-quick-tips/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 15:49:36 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[screen]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=231</guid>
		<description><![CDATA[I use GNU Screen [henceforth: "screen"] every single day in a variety of contexts. I&#8217;m by no means an expert, but I&#8217;ve met a few people who aren&#8217;t as familiar with some of screen&#8217;s more oblique features, so I&#8217;ll give you a walk-through of my setup. If you&#8217;re new to screen, this isn&#8217;t likely the [...]]]></description>
			<content:encoded><![CDATA[<p>I use GNU Screen [henceforth: "screen"] every single day in a variety of contexts. I&#8217;m by no means an expert, but I&#8217;ve met a few people who aren&#8217;t as familiar with some of screen&#8217;s more oblique features, so I&#8217;ll give you a walk-through of my setup. If you&#8217;re new to screen, this isn&#8217;t likely the best place to start. Also, this isn&#8217;t a replacement for the man page. I barely know anything, so read the friendly manual and learn even more.</p>
<p>If you already know screen, I&#8217;m going to discuss setting up an &#8220;outer&#8221; screen with an alternate command key as well as using screen&#8217;s copy mode to capture text. If you already know how to do that you&#8217;ll find nothing new here.</p>
<p>First we&#8217;ll start with a very small script I wrote called <a href="http://github.com/riddley/bashfiles/blob/master/bin/outer">outer</a>. I run this script on my desktop and it creates a screen whose command key is F12. I do this so that when I connect to remote machines (where the command key is still the default of ^a) I&#8217;m able to think less because I don&#8217;t have to escape remote command keys.</p>
<p>Here&#8217;s a scenario that might shed some light on my explanation. Without overriding the command key, you start screen on your desktop and ssh to a remote host where you start screen. Now if you want to interact with the remote screen session, you have to &#8220;escape&#8221; your commands to it so that the desktop&#8217;s screen doesn&#8217;t interpret them. If you type ^a-c your desktop screen is going to create a new window. If you want that new window on the remote host, you have to type ^a-a-c, which can get annoying quickly. With outer, your desktop&#8217;s command key is F12, so it doesn&#8217;t care at all about your remote ^a&#8217;s.</p>
<p>For some gravy, outer also sets up F11 as &#8220;windowlist -m&#8221; which is a list of your windows in use-order. Since I&#8217;ve met a few people who don&#8217;t know about windowlist, if you hit command-key-&#8221; is a list of your windows in numerical order (windowlist -b). Further gravy, outer also always grabs the current version of your .screenrc before it starts screen.</p>
<p>My <a href="http://github.com/riddley/bashfiles">shell environment</a> automatically names my screen windows to the hostname when instantiating a shell, so my &#8220;windowlist -m&#8221; might look like this:</p>
<pre class="syntax bash">
Num Name                         Flags

  0 mutt                             $
  1 puppet                           $
 10 henry                            $
 15 machinex                         $
  8 machiney                         $
  2 jables                           $
 13 machinez                         $
  3 kage                             $
  6 storooni                         $
  4 lee                              $
  7 dude                             $
  9 walter                           $
  5 donnie                           $
 11 maude                            $
</pre>
<p>You can navigate the windowlist with j/k/arrowkeys and enter.</p>
<p>Screen&#8217;s copy mode can be used for capturing its scrollback contents to a file. To enter copy mode, hit command-key-Esc. If you&#8217;re familiar with vi/vim, you&#8217;re now in something akin to vi/vim&#8217;s command mode. Movement keys in this mode are very similar to vi/vim, but not exactly; so read the man page. Once you&#8217;re in copy mode, move your cursor to a given point in the scrollback buffer and then hit the space bar. By hitting the spacebar, you&#8217;ve dropped a marker at the cursor location. Move again to select text. Once you&#8217;ve selected the text you want, hit &gt;. Hitting &gt; will save the selection to a file whose name is the value of &#8220;bufferfile&#8221;. The default is /tmp/screen-exchange. Yea I know: horrible name. I guess that&#8217;s why it&#8217;s configurable.</p>
<p>You can also use copy mode to paste into your screen session. The details of that I&#8217;ll leave as an exercise to the reader.</p>
<p>I frequently connect to hardware consoles via telnet/ssh, where selecting text from a terminal emulator with a mouse often adds unwanted spaces or new lines. Copy mode is invaluable for preserving the formatting of the consoles&#8217; text.</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2010/06/16/gnu-screen-quick-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advancing in the Bash Shell small update</title>
		<link>http://samrowe.com/wordpress/2010/06/16/advancing-in-the-bash-shell-small-update/</link>
		<comments>http://samrowe.com/wordpress/2010/06/16/advancing-in-the-bash-shell-small-update/#comments</comments>
		<pubDate>Wed, 16 Jun 2010 13:42:14 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=229</guid>
		<description><![CDATA[I updated Advancing in the Bash Shell a bit. A new link at the bottom, some very small wording corrections and a syntax highlighter plugin to make the examples a bit easier (I hope!) to read.]]></description>
			<content:encoded><![CDATA[<p>I updated Advancing in the Bash Shell a bit. A new link at the bottom, some very small wording corrections and a syntax highlighter plugin to make the examples a bit easier (I hope!) to read.</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2010/06/16/advancing-in-the-bash-shell-small-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nexus One</title>
		<link>http://samrowe.com/wordpress/2010/05/01/nexus-one/</link>
		<comments>http://samrowe.com/wordpress/2010/05/01/nexus-one/#comments</comments>
		<pubDate>Sat, 01 May 2010 22:08:47 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=213</guid>
		<description><![CDATA[I used to be the guy who hated cell phones. I never ever wanted to own one. I used to actually get annoyed when people would send me SMS messages. Of course, I had a RAZR so the idea of typing something out using T9 just seemed so not worth it. Now I can&#8217;t shut [...]]]></description>
			<content:encoded><![CDATA[<p>I used to be the guy who <strong><em>hated</em></strong> cell phones. I never ever wanted to own one. I used to actually get annoyed when people would send me SMS messages. Of course, I had a RAZR so the idea of typing something out using T9 just seemed <em>so</em> not worth it. Now I can&#8217;t shut the hell up about my Nexus One.</p>
<p>The Sprint Hero didn&#8217;t last. I returned it. At the time Sense UI was <em>really</em> buggy, but I&#8217;d have been content to wait for an update if only Sprint had any service anywhere in Athens. None at work, none at home, so back it went. I&#8217;d purchased the phone through a local reseller. The sales guy really went out of his way. He lent me his phone so that I could check the service levels at the places I&#8217;d be. Sadly I only checked voice, not data. When I returned the phone, I unfortunately got a big guilt-trip from the guy. He seemed to expect that I&#8217;d stick with the phone even though it didn&#8217;t work anywhere. I also got a lovely 80 dollar bill for a phone I had for 9 days.</p>
<p>I was sad to have to pull out the old iPhone again, so I rooted it. The most interesting thing that allowed me to do was theme it a bit. The themes looked a lot better, but made the phone slow and buggier. The two alternate app stores I tried were slow and buggy and as difficult to browse as the App Store.</p>
<p>I ordered a Nexus One the hour they came out. I subsidized it through T-Mobile. It arrived and it was <em>great</em>. Sadly, T-Mobile didn&#8217;t have any service at my home or work either. In contrast to Sprint, and really just in general, T-Mobile was <strong>great</strong> to deal with. When I called to ask if there was any way to increase their coverage, the guy I spoke with on the phone genuinely seemed like he wanted to help (I have a great bullshit detector and it wasn&#8217;t going off.) When I called to return the phone, they were equally as nice. Later, when faced with another 80 dollar bill, I called and they reduced it to zero as I&#8217;d only used the phone (from their perspective) for 2 minutes. Man, I wish I could be their customer. As disappointed as I was that I couldn&#8217;t keep the phone, it was the best corporate experience I&#8217;d had in a very long time. Kudos, T-Mobile.</p>
<p>I loved the N1 so much that I was tempted to put my at&#038;t SIM card in there and just live with EDGE (crappier &#8220;2G&#8221; network speed.) Ultimately I figured there was no point in having a mobile computer if the data connection sucked. So I went back to the iPhone again. I&#8217;d kept my at&#038;t account active through all of these experiments as I was on contract anyway.</p>
<p>I ordered my at&#038;t N1 the hour they were released. Slipped the SIM out of my iPhone and haven&#8217;t looked back. I even sold the iPhone to a co-worker. Sucker. (Or <a href="http://linuxoniphone.blogspot.com/">maybe not</a>!)</p>
<p>In my previous Android post, I complained a lot about buginess. Thankfully that was all SenseUI (a fancied up &#8220;skin&#8221; for Android.) My N1 has been rock solid. The battery life on the T-Mobile branded N1 was pretty terrible, but I&#8217;m guessing that was entirely related to it never having a good signal. The battery life on my N1 is phenomenal. I can go 2 days with lots of use and only get to 30%.</p>
<p>I bought some apps while I had the T-Mobile N1. When I got the at&#038;t version, I signed in and not only did all of my contacts show up, all of the apps I&#8217;d purchased showed up too. Contrast this to the 4 times that the iPhone deleted my data (the 4 times I upgraded the firmware.) Sure, I could get my apps back on the iPhone for free, but I had to remember what they were and install them one-at-a-time by hand. Android 2.x also (optionally) syncs pictures I take on the phone up to Picasa magically in the background.</p>
<p>The other huge wins over the iPhone continue to be huge wins. My data comes to me, I don&#8217;t go to it. Multi-tasking is awesome. Not <em>having</em> to use any special software to access the data on my phone is still great.  Widgets are completely kickass. Making ringtones/alerts/alarms <strong>on</strong> the phone still rules. Being able to set up specific notifications per SMS sender is a god-send for someone with my job. Having stats on what exactly is using your battery is very handy. Completely kickass turn-by-turn voice-enabled navigation for free isn&#8217;t bad either.</p>
<p>The non-wins are basically the same. Both the Android Market and the App Store continue to be terrible. Searching is especially terrible given that it&#8217;s a Google product. It (Android Market) doesn&#8217;t even do sub-word searches. <strong>It&#8217;s 2010!!! WTF?!</strong> It&#8217;s only wins over App Store are that you can keep &#8220;shopping&#8221; after you tell it to install something, you don&#8217;t need a iTunes-only-create-able account, and a new one I learned since last time: If you buy an app and you uninstall it within 3 (or 4?) days, you get a refund. That just rules. The real huge win is that you can install apps from places other than the Android Market. But don&#8217;t let that get in the way of your celebrating <a href="http://hooptyrides.blogspot.com/2010/04/searching-and-replacing-jobs-flash.html">Apple raising the chocolate ration from 40g to 35g per week!</a></p>
<p>I hear a common complaint from iPhone users that Android&#8217;s UI is &#8220;clunky.&#8221; I find it anything but. For example, the Notification Area is vastly superior to the modal dialogs of the iPhone. I get monitoring alerts from work on my phone. I had the same setup on my iPhone. Once, during a particularly bad day I got a bazillion SMS messages while leaving a voice mail. I <strong>couldn&#8217;t hang up the phone</strong> until I said &#8220;OK!&#8221; to all of these messages. It was the most annoying thing ever. On Android, I get one indicator in the Notification Area. I still get multiple audio and visual(trackball color) alerts, but the rest of the phone is still usable through them.</p>
<p>Here&#8217;s some general <a href="http://www.dropbox.com/gallery/152356/1/n1?h=f8ff4d">screenshots</a> in case you&#8217;re curious.  As I mentioned in my previous Android post, Android has virtual desktops. Those screenshots are 3 of the 7 on my phone. I&#8217;ve turned off the text that&#8217;s normally under the icons.</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2010/05/01/nexus-one/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting the F back in Art</title>
		<link>http://samrowe.com/wordpress/2010/05/01/putting-the-f-back-in-art/</link>
		<comments>http://samrowe.com/wordpress/2010/05/01/putting-the-f-back-in-art/#comments</comments>
		<pubDate>Sat, 01 May 2010 20:07:21 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=178</guid>
		<description><![CDATA[I&#8217;m really bad at expressing myself, especially in regard to things about which I&#8217;m passionate. In the past I&#8217;ve tried to explain my approach to and appreciation of art and I&#8217;ve done a really awful job of it. It&#8217;s just one of those things that one understands very well, but finds difficult to express to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m really bad at expressing myself, especially in regard to things about which I&#8217;m passionate. In the past I&#8217;ve tried to explain my approach to and appreciation of art and I&#8217;ve done a really awful job of it. It&#8217;s just one of those things that one understands very well, but finds difficult to express to others.</p>
<p>There&#8217;s a pie-chart that shows the ratios of the various components one might appreciate when evaluating art and mine is probably weighted more towards the analytical and away from the emotional. While technique and talent/skill weigh more for me, there is no art without emotion.</p>
<p>I also think that the various pieces of the pie-chart vary in their subjectivity. Which is to say that I think that given a large enough sample, &#8220;experts&#8221; would likely agree on certain things. (Yikes this is getting more complex than I wanted it to be already. The whole experts thing is a whole other post.) Said yet another way, I want the art itself to be emotional, not so much my evaluation of it. Which is not to say &#8220;devoid of emotion&#8221; but like I said earlier, emphasizing the analytical.</p>
<p>I&#8217;m still not saying this right. I should leave this part out. What I&#8217;m really saying is that I know people who like or dislike a film/song based <strong>entirely</strong> on how it makes them feel or how they felt already when they were exposed to it. I ain&#8217;t that.</p>
<p>In the past I&#8217;ve said (and been criticized for saying) that one of the largest criteria for my liking a given song or film or whatever is &#8220;how much &#8216;art&#8217; is in it.&#8221; Yuck. Awful. Those who criticized me were correct to do so.</p>
<p>In my life I&#8217;ve know a lot of people who really liked art of all kinds. I&#8217;ve known some amazing visual artists and musicians. Some were classically trained, others just had a feel for it. I&#8217;ve also known people who found great joy in creative outlet, but whose creative expressions were just awful. They could be awful in any number of ways; just pick one from the pie chart. Finding joy in a creative outlet isn&#8217;t the same as creating art, it&#8217;s masturbation or at best therapy. (And I say that in the least pejorative way possible&#8230;. there&#8217;s nothing wrong with masturbation!)</p>
<p>Creating art is about synthesizing the world into a form that teaches one about oneself. (!)</p>
<p>I also say things like &#8220;I hate plot.&#8221; When my erstwhile friend Tod said that to me seventeen years ago, I probably stared at him the way people stare at me when I say it, but it&#8217;s completely true. There&#8217;s little that&#8217;s more boring to me than films whose entire life-blood is their plot, or worse: the plot twist. I guessed the plot twist in The Sixth Sense as soon as he was shot and found the rest of the film grueling. I guessed the plot twist in The Others from watching the commercial. This doesn&#8217;t make me cool nor is it something I intend to do.</p>
<p>Ok, you knew it was coming: Deadwood is great because, while there is a plot there&#8217;s not much of a plot. The bad guy is going to destroy the world and we have to stop him! Yawn. In Deadwood, there&#8217;s no overarching seasonal bad-guy/serial killer/cylon/terminator waiting for a season finale climax battle scene. There are no unexplained mystery islands or evil preachers. (Have I mentioned in the last 5 minutes that Carnivale was the worst show evAr?) Deadwood just has a group of well designed characters acting and re-acting like people do in their lives. Of course there are the ebbs and flow of plot within Deadwood. If you&#8217;re a tried and true plot-watcher, you may even love the plot. It builds to a season finale like any other show, but if you&#8217;re not a plot watcher, there&#8217;s a very rich tapestry for you to enjoy. I can watch Deadwood over and over because it&#8217;s so rich. There are so many small things to notice specifically because it wasn&#8217;t written in service of the plot, but instead in service of the characters.</p>
<p>There&#8217;s a very strange juxtaposition that happens with film and television regarding the comedy and drama genres. There are a lot of television comedies that have no plot, yet very few film comedies can say the same. Most television and film drama is very plot heavy. However, there are a good number of film dramas that have no plot yet nearly no television dramas likewise. The huge problem with 99% of problematic film comedies is that they establish some stupid plot on which to hang jokes that they then have to resolve in the third act. All of this plot resolution apparently requires so much effort that there are no time for jokes.</p>
<p>This is why The Big Lebowski is such a classic comedy. There&#8217;s almost no plot at all and what little plot there is, you certainly don&#8217;t care about. He&#8217;s not saving the town, he&#8217;s not rescuing the girl from the rich land baron who wants to buy uncle touchy&#8217;s magic puzzle basement which just ain&#8217;t for sale, dammit! He just fumbles around and shit mostly fixes itself. Imagine how awful that film would be if he actually had to save her.</p>
<p>So why do TV sitcoms and the some movie dramas realize you don&#8217;t want a plot, but the movie comedies and the TV dramas don&#8217;t? </p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2010/05/01/putting-the-f-back-in-art/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The blood it won&#8217;t wash off</title>
		<link>http://samrowe.com/wordpress/2009/10/14/the-blood-it-wont-wash-off/</link>
		<comments>http://samrowe.com/wordpress/2009/10/14/the-blood-it-wont-wash-off/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 17:00:42 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[phone]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=204</guid>
		<description><![CDATA[So my Apple adventure ended yesterday. Five long months. I purchased a Sprint/HTC Hero yesterday. So far, there&#8217;s good and bad. The Bad It&#8217;s pretty buggy. Like the iPhone, the Hero has &#8220;virtual desktops&#8221; (to use a parlance I&#8217;m comfortable with, that&#8217;s not what they call them) but on the Hero each of the 7 [...]]]></description>
			<content:encoded><![CDATA[<p>So my Apple adventure ended yesterday. Five long months. I purchased a Sprint/HTC Hero yesterday. So far, there&#8217;s good and bad.</p>
<h1>The Bad</h1>
<p>It&#8217;s pretty buggy. Like the iPhone, the Hero has &#8220;virtual desktops&#8221; (to use a parlance I&#8217;m comfortable with, that&#8217;s not what they call them) but on the Hero each of the 7 desktops can be running what&#8217;s called a &#8220;widget&#8221; which is a smaller version of a given app. There&#8217;s a clock widget, a music playing widget, a browser bookmarks widget, twitter widget, etc. They&#8217;re good for info &#8220;at a glance&#8221; or whatever. You can also place application launchers on these desktops.</p>
<p>The configuration of these desktops, at least on the Hero, is called a &#8220;scene.&#8221; The phone ships with some scenes that are pre-populated and you can save scenes that you customize. Three or four times since I got the phone yesterday, my scene has completely disappeared leaving nothing on any of the desktops. Even one of the provided scenes (the HTC one) has lost its mojo and loads empty desktops when you load it. Not the end of the world, but pretty annoying.</p>
<p>Several times when doing text entry (mostly in the Marketplace) the text field I was editing would disappear as would the (not great) keyboard and I&#8217;d be back at the previous window with no obvious catalyst for this change.</p>
<p>The UI isn&#8217;t very responsive. It reminds me of our completely horrible DirecTV HD DVR, which will often take a long time to respond and when it does, it&#8217;s queued up every button you&#8217;ve pressed and does something you didn&#8217;t want because you thought it hadn&#8217;t seen your input. Same deal here. I find the &#8220;Phone&#8221; app really frustrating in that regard. I&#8217;ll try to hit the &#8220;make the dialer go away&#8221; icon and instead will click &#8220;Call&#8221; right next to it. What follows is a cycle of &#8220;OH CRAP END CALL&#8230;. END CALL&#8230;. END CALL&#8230; END CALL!!&#8221; only to have the phone see that as: end call, call, end call, call.</p>
<p>I&#8217;d read that the preview units were pretty sluggish and many of the video reviews demonstrated this by swiping around the desktops. I&#8217;d also read that the European version of the phone had some firmware update(s?) that addressed those issues. Those updates came out a while ago, so I figured that the US version of the phone likely had them. My phone has the most recent official firmware and I&#8217;m not ready to go unofficial anytime soon. It&#8217;s easy to blame sluggish performance on the problem I described above (queuing of events.)</p>
<p>Not that my iPhone (3G) had great performance, mind you. I finally got used to the fact that pulling the phone out of sleepyland and going into the SMS app would take 5 seconds of white-screen waiting.</p>
<p>The Hero supports Micro SD(hc) and the cards (as you&#8217;d expect) can be swapped with the phone up. You need to tell the phone to unmount the card, which I&#8217;m fine with. But, the Settings app is pretty clunky and it takes a while to find your way around to the menus you need for various tasks (this one included.) It also took me a while to figure out how to mount the SD card on a computer when the phone is connected via USB. You get a &#8220;notification&#8221; but the text wasn&#8217;t clear and I also didn&#8217;t know that clicking on notifications did cool stuff. Still beats the pants off the iPhone&#8217;s only supported method of connection: iTunes. Fucking iTunes. *spit*</p>
<p>I received the phone with about a 35% charge. I took it back to work and plugged it in via USB while fiddling with it thinking I&#8217;d be charging the phone. I didn&#8217;t gain much if any ground and later I found out why. Once I took it home and plugged it into my Lenovo a short while after messing with apps and so forth I got a message on the phone that said something like &#8220;The voltage from the power source is too low for current consumption. Please consider using the wall charger.&#8221; Wow! I was using more power than I was providing via USB. That was pretty surprising to me.</p>
<p>A friend has a G1 and he told me that he turns off WIFI and GPS in lieu of charging twice a day. I&#8217;d heard that the G1 didn&#8217;t have a great battery situation and that the Hero was better. I let the phone charge to 99% last night (wouldn&#8217;t go to 100) and I&#8217;ll leave everything turned on to see how the battery life is. I unplugged it 2hrs ago and it&#8217;s already at 87%, so I&#8217;m not hopeful.</p>
<p>On the iPhone, you&#8217;re protected from acci-dialing by the fact that there&#8217;s only one button (mac users aren&#8217;t too bright) and if the phone is asleep/locked and you press that button, you&#8217;re presented with a &#8220;swipe right to unlock&#8221; UI. The iPhone also has the option of a more complex &#8220;password&#8221; to keep unwanteds off your precious precious.</p>
<p>The Hero doesn&#8217;t seem to be able to lock without a more complex password. You can press the &#8220;hang up&#8221; button and the display will turn off. You can then press the Menu button and swipe down to get back to the phone&#8217;s UI. The sad part is that you can accomplish this same task by pressing Menu twice. If you carry your phone in your pocket like I do, that&#8217;s no good. I don&#8217;t want a more complex password because I like it that other people can get into my phone easily with a long explanation of how to enter a password. The guy at Sprint suggested that I could make my password be just like the iPhone non-password (just a swipe from left to right.) I don&#8217;t like that either because the user is presented with a password screen, not a screen that says &#8220;swipe left to right to use this damned phone!&#8221;</p>
<p>It&#8217;s entirely possible that the phone supports a non-password protected button-lock that I haven&#8217;t yet discovered in my less than 24hrs of owning the device.</p>
<p>When you first set up the device, it presents you with a bunch of social apps that it knows about (twitter, facespace, etc) among them is Gmail. I set up my Gmail during the initial setup and then when the phone was set up, I clicked the Email app and was presented with a choice of imap/pop or exchange. ??? Turns out there&#8217;s a separate Gmail app, but that wasn&#8217;t obvious.</p>
<p>Sadly, the Gmail app can only handle one Gmail account. I have an @gmail account, but I also use Google apps for my domains. Some of us also use Google Apps at work to avoid Exchange, and I can&#8217;t get to that either. Kind of a drag.</p>
<p>My work uses that atrocity Exchange and I wasn&#8217;t ever able to get my calendar to sync to it. It just said something like &#8220;Failed to create the account. Try again later.&#8221; Ah, later. Later is good. Maybe it was a Microsoft error.</p>
<p>Sprint bundled an NFL and a Nascar app that I can&#8217;t seem to delete. I hate having to see those icons.</p>
<h1>The Good</h1>
<p>Everyone else on the entire planet knew this, but I didn&#8217;t. When I bought an iPhone, I thought that I&#8217;d never ever pay for an app, but I was still curious about the applications. I went to install a free app, and was presented with a password dialog. What password? WTF are you talking about? Well I probably wrote all of this in my iPhone post, but here&#8217;s a quick recap: You need iTunes to use your fucking iPhone. You need it to set up a credit-card backed account that you can&#8217;t set up any other way&#8230; even if you only want to install free apps. When you do install an app, the AppStore app quits and you&#8217;re ejected to the apps menu so that you can watch your download progress.</p>
<p>In the Hero&#8217;s Marketplace app, you install free apps with no account. I&#8217;ve yet to purchase an app, so I don&#8217;t know how that works yet. What&#8217;s more, the Marketplace will tell you what &#8220;stuff&#8221; the app you&#8217;re installing has access to, saying that a given app will use the GPS or the network or hooks into how you make calls or SMS messages or whatever. It&#8217;s a nice touch. Further, when you click the install button, the phone tells you that your app is being downloaded in the background and you&#8217;re free to keep on shopping or do whatever you like. You know, what you&#8217;d expect in 2009.</p>
<p>Everyone knows that Apple is the king of multimedia. Everyone knows this, but it&#8217;s complete BS. I&#8217;ve made a few code-swarm/gource videos at work and my Mac-using co-workers always have trouble playing them. The guys using Linux never do.</p>
<p>I don&#8217;t know if you&#8217;ve ever tried to make a ringtone for the iPhone, but I feel sorry for you if you have. It&#8217;s a 652 step process that involves changing the extensions on files to &#8220;trick&#8221; fucking iTunes into letting you do something they&#8217;d much rather charge you for.</p>
<p>On the Hero, I can go to any music file on the device and with 3 clicks have it be the main phone ringtone. A couple more clicks and it&#8217;s a specific contact&#8217;s ring tone. It can also &#8220;crop&#8221; a song for a ringtone right on the device. I haven&#8217;t done that yet, but it&#8217;s there.</p>
<p>A reviewer I saw talking about the phone commented that it was much more &#8220;data oriented.&#8221; I have to agree. The Notifications area is spectacular. When I get a new email @gmail, the phone knows a few seconds later. When someone mentions me on Twitter, it lets me know. New IM&#8217;s, same deal. On the iPhone I&#8217;d have to launch each of those apps to know if there&#8217;s new data to be found for them. Short paragraph, but a big deal.</p>
<p>The phone synced my contacts from Google without me doing anything special. iPhone can do the same thing (although via iTunes! *SPIT*) Generally, the contacts handling on Hero is much nicer than the iPhone. The People app has an incremental search at the top. You can associate pictures from your photo albums to a contact. If you&#8217;re a Facebooker, you can see that person&#8217;s events. You can see a call history for a given contact and even email them and see emails from them.</p>
<p>This isn&#8217;t really the phone per se, but with Android, the users decide what&#8217;s a good app for the marketplace, not some evil corporation. There are also multiple marketplaces if that&#8217;s your thing. Maybe it means nothing to you, but having someone else decide what I can and can&#8217;t run on a device I own really bothered me.</p>
<p>A common dig at Android is that the Apple AppStore has way more apps. How many Fart Generators and Mr T Soundboards do you need? I&#8217;ve yet to not find an app I wanted. Many of the apps I paid for on the iPhone are free or have free equivalents that are just as nice on Android. I think I&#8217;ve read that 90% of the Android Market is free.</p>
<p>I can replace my battery if it wears out.</p>
<p>I can have unlimited storage via MicroSDHC cards. I don&#8217;t need a horrible application to put/get data on/from my phone.</p>
<p>My phone plays a wide variety of audio formats, including Ogg/Vorbis.</p>
<p>The display is brighter and the camera seems better (especially with low light) than my iPhone 3G. I recorded a test video and it looked pretty decent.</p>
<h1>The Same</h1>
<p>Both the AppStore and the Marketplace are HORRIBLE. Even with search they&#8217;re horrible. Why is it so hard?</p>
<p>When someone would rattle off the number of apps available for the iPhone, I&#8217;d always respond with &#8220;Yea, and you can see maybe 50 of them!&#8221;</p>
<p>For one thing the categories are way too broad. For another search results should show you how many results in each category so that you can make use of the categorization while searching.</p>
<p>On Hero, I searched for &#8216;better keyboard&#8217; and had to wade through pages and pages of themes for the app before I got to the app itself. Exact matches should always float to the top.</p>
<p>Anyway. I have 30 days to decide if I want to keep this phone. It&#8217;s a bit of a gamble to keep it, as I&#8217;d guess that no updates will be released in that time. We&#8217;ll see what happens.</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2009/10/14/the-blood-it-wont-wash-off/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Aw hell, I lost my train of thought here.</title>
		<link>http://samrowe.com/wordpress/2009/05/18/aw-hell-i-lost-my-train-of-thought-here/</link>
		<comments>http://samrowe.com/wordpress/2009/05/18/aw-hell-i-lost-my-train-of-thought-here/#comments</comments>
		<pubDate>Tue, 19 May 2009 03:06:10 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[ps3]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=196</guid>
		<description><![CDATA[In no order. I&#8217;m a colossal sell-out. I own an iPhone. Trust me that no amount of hassle you might send my way will be greater than the amount of hassle I send my own way about it. I love having a real browser and some fun games all in my phone. I don&#8217;t love [...]]]></description>
			<content:encoded><![CDATA[<p>In no order.</p>
<p>I&#8217;m a colossal sell-out. I own an iPhone. Trust me that no amount of hassle you might send my way will be greater than the amount of hassle I send my own way about it. I love having a real browser and some fun games all in my phone. I don&#8217;t love the massively inconsistent UI (well I sorta do because it gives me FUEL for my FIRE!) the crashiness, the slowness, the lack of multi-tasking and the leakiness. But most of all I don&#8217;t love that I was stupid enough to buy right before the next gen hardware comes out with stuff you might expect a phone this old to have.</p>
<p>The App Store is a bad joke. It&#8217;s impossible to browse in any meaningful way. It asks you for a password, but doesn&#8217;t explain *what* password it&#8217;s asking you for. I&#8217;m sure mac-droids &#8220;just know&#8221; but I didn&#8217;t. You have to have a credit-card-backed account to download free apps. You can&#8217;t make that account via a web page and you <em>must</em> install the second worst software on the planet, iTunes (MS Word, you&#8217;re still king!) to create the account. Why would they let you create it on your phone with a web browser when they can infect your PC too? For me this meant finding a windows install to put iTunes on. Thank god iTunes installs quicktime! I love that quicktime! </p>
<p>Anyway, blah blah blah. I feel like a failure and a sell-out. Apple you still suck.</p>
<p>Why not the G1? Apple holds the multi-touch patent! Thanks! Also inertia. I&#8217;ve been an at&#038;t customer for a long time and I&#8217;m shockingly lazy. T-Mobile didn&#8217;t really help themselves though. I spent 45 minutes in their store waiting to talk to one of their customer service monkeys. They thought it was a better use of their time to help people who came in after me and whose questions largely revolved around nickel &#038; dime stuff like pre-paid phones. Maybe that&#8217;s where they make their real money? Anyway, I tried to use it and it seemed clunky, but it also wasn&#8217;t on a network, so it was hard to gauge. The whole experience played on my spectacular laziness though, so I ended up sticking with what I had provider-wise.</p>
<p>Switched back to Debian for about 10 minutes at work. Couldn&#8217;t make the fonts look anything but horrible, so I switched back to Ubuntu which made me sad. Still can&#8217;t get a font that looks <a href="http://imgur.com/2mud.png">this good</a>. Maybe it&#8217;s my white-on-black requirement like Happy suggested?</p>
<p>Steve Yegge has <a href="http://steve-yegge.blogspot.com/2009/05/programmers-view-of-universe-part-3.html">announced</a> that he&#8217;s going to quit blogging. More sadness. I hope it&#8217;s a joke or that he changes his mind. He&#8217;s easily my favorite blogger by a very very large margin.</p>
<p>I bought a Flip Ultra HD 8G and think it&#8217;s pretty cool!  It&#8217;s an HD video camera that&#8217;s about the size of a pack of cigarettes and costs about 200 bucks. Pretty fun. Their website sucks so they don&#8217;t get a link, but you know how to use a search engine.</p>
<p>Hey speaking of, has Google lost its edge or what? Seems like the last two months most of my searches have spam at the top. I&#8217;m getting <em>way</em> more spam in my inbox in my slower-than-ever google apps account too. What gives, Google?</p>
<p>After months of struggling with the very-crashy and 90s-web-design of MediaTomb, I found <a href="http://ps3mediaserver.blogspot.com/">PS3MediaServer</a> and it&#8217;s impressive. My favorite feature so far is the ability to rip DVD ISOs and play them on my PS3 over wireless with little quality loss. It&#8217;s the very first Java app that I&#8217;ve ever had a positive experience with.</p>
<p>I&#8217;m really really digging writing stuff in Ruby. I&#8217;ve finally started to <em>get</em> object-oriented programming and while I don&#8217;t see it as a panacea, it does make some things way easier. </p>
<p>While I love writing stuff in Ruby, I don&#8217;t yet love running stuff that&#8217;s Ruby. When you want to run a Ruby web app, and to a lesser extent when you&#8217;re writing Ruby, it seems like the documentation is written assuming you already know how to do it. This isn&#8217;t an uncommon problem with documentation. When writing documentation it&#8217;s difficult to think of the things you might not know, but Ruby (and Git) documentation seems especially bad about this. Maybe it&#8217;s just that those are the two things I&#8217;ve been trying to learn lately.</p>
<p>As if you&#8217;re still reading. Ha!</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2009/05/18/aw-hell-i-lost-my-train-of-thought-here/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turned off user registration.</title>
		<link>http://samrowe.com/wordpress/2009/04/06/turned-off-user-registration/</link>
		<comments>http://samrowe.com/wordpress/2009/04/06/turned-off-user-registration/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 15:09:58 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=192</guid>
		<description><![CDATA[Thanks spammers. I got tired of deleting wordpress users created by spammers twice a day, so now no one can register. If you want an account for posting comments about what an idiot I am, email me and I&#8217;ll turn it on long enough for you to get your account. Urge to blog, falling.]]></description>
			<content:encoded><![CDATA[<p>Thanks spammers. I got tired of deleting wordpress users created by spammers twice a day, so now no one can register. If you want an account for posting comments about what an idiot I am, email me and I&#8217;ll turn it on long enough for you to get your account.</p>
<p>Urge to blog, falling.</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2009/04/06/turned-off-user-registration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dear Tenn Comcast Liferea User</title>
		<link>http://samrowe.com/wordpress/2009/01/08/dear-tenn-comcast-liferea-user/</link>
		<comments>http://samrowe.com/wordpress/2009/01/08/dear-tenn-comcast-liferea-user/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 05:59:17 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=176</guid>
		<description><![CDATA[I&#8217;m sincerely grateful that you&#8217;re into my blog. Could you fetch my feed slightly less often? I really don&#8217;t update every 30 minutes. kthxbye!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sincerely grateful that you&#8217;re into my blog. Could you fetch my feed slightly less often? I really don&#8217;t update every 30 minutes.</p>
<p>kthxbye!</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2009/01/08/dear-tenn-comcast-liferea-user/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>sheesh</title>
		<link>http://samrowe.com/wordpress/2008/12/23/sheesh/</link>
		<comments>http://samrowe.com/wordpress/2008/12/23/sheesh/#comments</comments>
		<pubDate>Tue, 23 Dec 2008 16:31:56 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[guitars]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[music]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=171</guid>
		<description><![CDATA[I make blogging too hard. I always think I have to be writing something important and that&#8217;s just untrue. So here&#8217;s a small collection of thoughts since I last blogged. Yaketystats 2.1 is out. I feel like we&#8217;re floundering exposure-wise. I really think we have the best product out there, but no one seems to [...]]]></description>
			<content:encoded><![CDATA[<p>I make blogging too hard. I always think I have to be writing something important and that&#8217;s just untrue. So here&#8217;s a small collection of thoughts since I last blogged.</p>
<p><a href="http://yaketystats.org">Yaketystats 2.1</a> is out. I feel like we&#8217;re floundering exposure-wise. I really think we have the best product out there, but no one seems to care. We&#8217;ve talked about writing an article for a Linux mag and doing an <a href="http://en.oreilly.com/oscon2009">OSCON presentation</a>, so maybe that&#8217;ll help.</p>
<p>Firefox in Ubuntu has been driving me crazy for the last several months. My work machine is an 4CPU 8G atom-smasher and FF is still <strong>crazy slow</strong>. Like you&#8217;d laugh and ask &#8220;how is that possible?&#8221; slow. I don&#8217;t have many extensions, and it seems like my box should be able to handle tons of extensions, but I regularly find myself waiting several seconds for a new tab to be usable and I&#8217;m always waiting for text boxes to catch up to my typing. It sucks.</p>
<p>I&#8217;m also really frustrated with Ubuntu in general. Coming from Debian where in-place upgrades are the norm, it&#8217;s really weird and sad to read that reinstalling come upgrade time is the norm in Ubuntu culture. Sure you <em>can</em> upgrade in place, but it&#8217;s fraught with peril and things often don&#8217;t work right. For instance, I finally got my laptop wireless working in 8.04, but it didn&#8217;t survive the upgrade to 8.10 and I can&#8217;t make it work at all now, so I&#8217;m living in Vista. Don&#8217;t get me started on Vista.</p>
<p>There are a lot of cultural things about Ubuntu that just rub me the wrong way. I guess I&#8217;m getting old. As much as they do to make it all work together and feel cohesive, to me it feels very tenuous and fragile. If NetworkManager (for example) doesn&#8217;t work for you, well sorry, you&#8217;re just fucked because that&#8217;s the Ubuntu way to do it and you&#8217;ll be swimming upstream the rest of your Ubuntu-life if you try to do it another way. PulseAudio is another example of this.</p>
<p>BTW, when did &#8220;for example&#8221; cease to mean anything? It&#8217;s like banner-ad blindness; people don&#8217;t even hear it anymore and immediately start arguing the details of your example ignoring the point you were trying to make by using the example. It&#8217;s one thing to say &#8220;Well, I see the point you&#8217;re trying to make, but I don&#8217;t think your example supports your point and here&#8217;s why,&#8221; but that&#8217;s not what I&#8217;m talking about. I&#8217;m talking about &#8220;Oh, since you brought up X, let&#8217;s argue about that now and I&#8217;ll completely ignore any point you were trying to make when you brought X up.&#8221;</p>
<p>I started <a href="http://twitter.com/sazma">twittering</a> but I don&#8217;t expect it to last. Having not grown up with Twitter, it seems like they make finding your friends overly difficult. Searching by invite/email address? Really?</p>
<p>I recently bought a <a href="http://www.baileycustomguitar.com/">Greg Bailey Custom</a> guitar. <em>The</em> guitar used as his horrid background image, in fact. It plays and sounds great. It&#8217;s the second aluminum instrument I own and is very very different than my Travis Bean. Maybe I&#8217;ll put some experiments with my new ElectroHarmonix Hog on youtube sometime. The Hog is an extremely fun device.</p>
<p>I wish I could find an acoustic that&#8217;s as nice as my Travis Bean. I&#8217;ve got a $2k Taylor. After a few years it&#8217;s not holding up very well and my initial annoyances with it are only magnified now. I got really lucky in that I have a friend who owned a Bean enabling me to find out how fantastic they are. I lack friends with kickass acoustic guitars (vintage or otherwise) so it&#8217;s hard to even know what&#8217;s out there and what I&#8217;d like. Acoustic guitar shops are usually far too uptight for me. It&#8217;s almost as if you&#8217;re supposed to buy the guitars w/o playing them.</p>
<p>I&#8217;m reading Steve Pinker&#8217;s <em>The Blank Slate</em> and enjoying it very much. It&#8217;s one of those books that really makes you examine yourself and your dogma. In some ways, though, it&#8217;s a bit of a motivation killer. I have enough problems with motivation/feeling like part of the machine/etc without feeling like my identity isn&#8217;t even cohesive. :)</p>
<p>I guess that&#8217;s as good a thought as any to leave on. UNTIL NEXT TIME!</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2008/12/23/sheesh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YaketyStats Released!</title>
		<link>http://samrowe.com/wordpress/2008/10/13/yaketystats-released/</link>
		<comments>http://samrowe.com/wordpress/2008/10/13/yaketystats-released/#comments</comments>
		<pubDate>Tue, 14 Oct 2008 00:14:02 +0000</pubDate>
		<dc:creator>sam</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[YaketyStats]]></category>

		<guid isPermaLink="false">http://samrowe.com/wordpress/?p=162</guid>
		<description><![CDATA[A lot like real excrement, it&#8217;s a lot harder to give shit away than it is to make it! It&#8217;s hard to believe just how much work we put into being ready to give this software away. You see, when you write something for yourself &#8211;and remember that YaketyStats has been in use for 3 [...]]]></description>
			<content:encoded><![CDATA[<p>A lot like real excrement, it&#8217;s a lot harder to give shit away than it is to make it!</p>
<p>It&#8217;s hard to believe just how much work we put into being ready to give this software away. You see, when you write something for yourself &#8211;and remember that <a href="http://yaketystats.org/">YaketyStats</a> has been in use for 3 years or more in one form or another by my work&#8211; you can make all kinds of assumptions about the environment and you don&#8217;t have to document <em>anything</em> because if you have a question, you just ask a co-worker.</p>
<p>However when you give it away, first you have to yank out all of those assumptions. That takes a very long time because it&#8217;s a hard thing to think about. <a href="http://en.wikipedia.org/wiki/Confirmation_bias">Confirmation bias</a> ain&#8217;t just about <em>new</em> information, bubsie. While you&#8217;re tearing out assumptions, you&#8217;re making new bugs. You&#8217;re fixing old bugs that didn&#8217;t really matter to you, but would probably matter to others. Your bug fixes make new bugs. You start to have confidence issues about anyone wanting your crappy code anyway.</p>
<p>You have to make a website, and like all of the rest of this, it&#8217;s way harder than you&#8217;d think. You can go with the siloed antiques you know (Mediawiki and Bugzilla) or you can try something new on a platform you&#8217;re uneasy with (Jira/Redmine) and then there&#8217;s all of the time you spend vacillating in between. Don&#8217;t forget the time it takes to set it all up and tear it all down, to learn about the new platforms&#8230; you get the idea.</p>
<p>Once you pick your website stack, it&#8217;s time to document your every little thing about your project. You get to document how to install it, how to use it, why it does all the crazy crap that makes sense to your environment and possibly no one else&#8217;s. You word it, you re-word it. You wonder if you&#8217;re still making assumptions. You <em>are</em> making assumptions. You re-write it again. You re-organize it. The new organization is better, but you need to re-write some if it to fit the new organization.</p>
<p>Oh, and the whole time you&#8217;re doing all of this you&#8217;re wondering to yourself if you&#8217;re throwing a party which no one will attend.</p>
<p>Then the release date you thought <em>for sure</em> you&#8217;d make comes and goes and you make a ton of last minute changes. You drop your &#8220;announcements only&#8221; WordPress install in favor of using the semi-crappy News feature of Redmine. You re-organize all of the documentation <strong>again</strong>. Then you try to write a &#8220;press release&#8221; and ZOMG BBQ lemme tell ya &#8212; writing press releases is something that I am in <em>no way</em> equipped to do. So then you enlist the help of others. These others are much more tuned to writing this sort of copy, but they don&#8217;t really know your software or why it&#8217;s cool and different. You&#8217;re grateful in any case. This is the best that the blind leading the people who don&#8217;t know where we&#8217;re going can come up with:</p>
<blockquote><p>
Athens, GA (Oct. 14, 2008)</p>
<p>We&#8217;re happy to announce the WORLD-WIDE release of YaketyStats, a new tool for gathering and graphing statistics about your UNIX/Linux systems.</p>
<p>It has an intuitive, AJAX-powered web interface for graphing data. Graphs are built on the fly, can contain stats from multiple systems and include &#8220;Google Maps&#8221;-like dragging.</p>
<p>YaketyStats is easy to install, maintain, and extend and is free Open Source software licensed under the GPLv2. YaketyStats supports Firefox and is built on Perl, PHP, and RRDtool.</p>
<p>If you&#8217;re tired of having to micro-manage your existing stats system or you don&#8217;t have one, you should check out the YaketyStats website and demo video at <a href="http://yaketystats.org/">yaketystats.org</a>
</p></blockquote>
<p>I&#8217;ll pretend it&#8217;s tomorrow and publish this now.</p>
]]></content:encoded>
			<wfw:commentRss>http://samrowe.com/wordpress/2008/10/13/yaketystats-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
