<?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>blogwaffe &#187; devel</title>
	<atom:link href="http://blogwaffe.com/category/devel/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogwaffe.com</link>
	<description>Witness the firepower of this fully armed and operational blog station</description>
	<lastBuildDate>Mon, 25 Jul 2011 18:09:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>jrunscript on OS X</title>
		<link>http://blogwaffe.com/2011/01/25/jrunscript-on-os-x/</link>
		<comments>http://blogwaffe.com/2011/01/25/jrunscript-on-os-x/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 06:08:58 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[devel]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=849</guid>
		<description><![CDATA[I just found this handy utility. $ man jrunscript I&#8217;m using it to deobfuscate some JavaScript.]]></description>
			<content:encoded><![CDATA[<p>I just found this handy utility.</p>
<pre>$ <kbd>man jrunscript</kbd></pre>
<p>I&#8217;m using it to deobfuscate some JavaScript.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2011/01/25/jrunscript-on-os-x/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>PHP 5 + Apache 2 + MySQL 5 on OS X via MacPorts</title>
		<link>http://blogwaffe.com/2010/01/22/php-5-apache-2-mysql-5-on-os-x-via-macports/</link>
		<comments>http://blogwaffe.com/2010/01/22/php-5-apache-2-mysql-5-on-os-x-via-macports/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 21:28:47 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[note to self]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=702</guid>
		<description><![CDATA[# Displays all files in Finder. Optional: personal preference. $ defaults write com.apple.Finder AppleShowAllFiles YES # Relaunch Finder # Update MacPorts $ sudo port selfupdate $ sudo port -u upgrade outdated # Install MySQL $ sudo port install mysql5-server $ sudo port load mysql5-server $ sudo -u _mysql mysql_install_db5 $ sudo mysqld_safe5 &#038; $ sudo [...]]]></description>
			<content:encoded><![CDATA[<pre>
# Displays all files in Finder.  Optional: personal preference.
$ <kbd>defaults write com.apple.Finder AppleShowAllFiles YES</kbd>
# Relaunch Finder

# Update MacPorts
$ <kbd>sudo port selfupdate</kbd>
$ <kbd>sudo port -u upgrade outdated</kbd>

# Install MySQL
$ <kbd>sudo port install mysql5-server</kbd>
$ <kbd>sudo port load mysql5-server</kbd>
$ <kbd>sudo -u _mysql mysql_install_db5</kbd>
$ <kbd>sudo mysqld_safe5 &#038;</kbd>
$ <kbd>sudo /opt/local/lib/mysql5/bin/mysql_secure_installation</kbd>

# Install Apache, PHP (with PEAR), PHP MySQL bindings
$ <kbd>sudo port install apache2</kbd>
$ <kbd>sudo port install php5 +apache2 +pear</kbd>
$ <kbd>sudo port install php5-mysql</kbd>

# Configure Apache
# The following line may not be necessary
? <kbd>sudo cp /opt/local/apache2/conf/httpd.conf.sample  /opt/local/apache2/conf/httpd.conf</kbd>
$ <kbd>cd /opt/local/apache2/modules</kbd>
$ <kbd>sudo /opt/local/apache2/bin/apxs -a -e -n "php5" libphp5.so</kbd>
$ <kbd>sudo nano /opt/local/apache2/conf/httpd.conf</kbd>
# Set DirectoryIndex to:
# DirectoryIndex index.html index.php
#
# Change DocumentRoot to whatever (e.g. <kbd>/Users/michael/Sites</kbd>
#
# Change &lt;directory "{old DocumentRoot}"&gt; to &lt;directory "{new DocumentRoot}"&gt;
#
# In that &lt;directory "{new DocumentRoot}"&gt; section change to the following.
# Options Indexes FollowSymLinks MultiViews
# AllowOverride All
#
# In &lt;ifmodule mime_module&gt; section, add the following two lines
# <kbd>AddType application/x-httpd-php .php</kbd>
# <kbd>AddType application/x-httpd-php-source .phps</kbd>
#
$ <kbd>sudo port load apache2</kbd>

# Configure PHP
$ <kbd>sudo cp /opt/local/etc/php5/php.ini-development /opt/local/etc/php5/php.ini</kbd>
$ <kbd>sudo nano /opt/local/etc/php5/php.ini</kbd>
# set mysql.default_socket, mysqli.default_socket and pdo_mysql.default_socket to
# <kbd>/opt/local/var/run/mysql5/mysqld.sock</kbd>

# Start Apache
# Make sure System Preferences &rarr; Sharing &rarr; Web Sharing is turned off.
$ <kbd>sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper start</kbd>
# You may get a window asking if httpd can accept incoming requests.  Approve it.

# Add DB and tables to MySQL for easy WordPress install
$ <kbd>mysql5 -u root -p</kbd>
&gt; <kbd>CREATE DATABASE database_name_here;</kbd>
&gt; <kbd>GRANT ALL PRIVILEGES ON database_name_here.* TO "username_here"@"localhost" IDENTIFIED BY "password_here";</kbd>
&gt; <kbd>FLUSH PRIVILEGES;</kbd>
&gt; <kbd>EXIT</kbd>

# Install and Configure phpMyAdmin (will need to restart Apache when done)
$ <kbd>sudo port install phpmyadmin</kbd>
$ <kbd>sudo nano /opt/local/apache2/conf/httpd.conf</kbd>
# Add section
# &lt;Directory "/opt/local/www/phpmyadmin/"&gt;
#     Options Indexes MultiViews
#     AllowOverride None
#     Order allow,deny
#     Allow from all
# &lt;/Directory&gt;
#
# In &lt;IfModule alias_module&gt; section add the following
# Alias /phpMyAdmin "/opt/local/www/phpmyadmin"

$ <kbd>sudo nano /opt/local/www/phpmyadmin/config.inc.php</kbd>
# See <a href="http://www.phpmyadmin.net/documentation/Documentation.html#config">http://www.phpmyadmin.net/documentation/Documentation.html#config</a>
# Fill in <code>$cfg['blowfish_secret']</code>
# Set <code>$cfg['Servers'][$i]['auth_type'] = '<kbd>config</kbd>';</code>
# Add <code>$cfg['Servers'][$i]['user'] = '<kbd>root</kbd>';</code>
# Add <code>$cfg['Servers'][$i]['password'] = '<kbd>{root password}</kbd>';</code>

$ <kbd>sudo /opt/local/apache2/bin/apachectl {start|restart|graceful|graceful-stop|stop}</kbd>
$ <kbd>sudo /opt/local/share/mysql5/mysql/mysql.server {start|stop|restart|reload|force-reload|status}</kbd>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2010/01/22/php-5-apache-2-mysql-5-on-os-x-via-macports/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>WordCamp</title>
		<link>http://blogwaffe.com/2006/08/05/wordcamp/</link>
		<comments>http://blogwaffe.com/2006/08/05/wordcamp/#comments</comments>
		<pubDate>Sat, 05 Aug 2006 18:05:16 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[neat!]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/2006/08/05/413/</guid>
		<description><![CDATA[I&#8217;m in San Francisco at the moment here at the WordCamp convention. So far I&#8217;ve learned how to &#8220;write a compelling blog&#8221; (please, have you been to blogwaffe before?). More to the point, I finally got to meet Podz and Matt. For all the readers at home, you can check out the wordcamp flickr photostream. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in San Francisco at the moment here at the <a href="http://wordcamp.org/">WordCamp</a> convention.  So far I&#8217;ve learned how to &#8220;write a compelling blog&#8221; (please, have you been to blogwaffe before?).</p>
<p>More to the point, I finally got to meet <a href="http://www.tamba2.org.uk/T2/">Podz</a> and <a href="http://photomatt.net">Matt</a>.</p>
<p>For all the readers at home, you can check out the <a href="http://flickr.com/photos/tags/wordcamp/" rel="tag">wordcamp flickr photostream</a>.</p>
<p><strong>Update 08.07.2006:</strong></p>
<p>After lunch I went to talks about <a href="http://mu.wordpress.org/">WordPress MU</a>, server optimization and a really good one on <a href="http://microformats.org/">microformats</a>.  I also met <a href="http://boren.nu/">Ryan</a>, <a href="http://txfx.net/">Mark</a>, <a href="http://www.skeltoac.com/">Andy</a>, and <a href="http://ocaoimh.ie/">Donncha</a>.</p>
<p>The day was made all the sweeter by the bumping afterparty.  By the way, Ryan, your penalty for not attending the postWordCamp bash is to recommend to me a favorite beer of yours.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2006/08/05/wordcamp/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>real ultimate waffe (.net)</title>
		<link>http://blogwaffe.com/2005/08/18/real-ultimate-waffe-net/</link>
		<comments>http://blogwaffe.com/2005/08/18/real-ultimate-waffe-net/#comments</comments>
		<pubDate>Thu, 18 Aug 2005 20:02:06 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[devel]]></category>
		<category><![CDATA[in brief]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/2005/08/18/328/</guid>
		<description><![CDATA[real ultimate waffe (.net). So I guess that makes three (or four, depending on how you count). Most of my &#8220;regular&#8221; &#8220;audience&#8221; won&#8217;t find it very interesting, though.]]></description>
			<content:encoded><![CDATA[<p><a href="http://mdawaffe.wordpress.com/">real ultimate waffe (.net)</a>.  So I guess that <a href="http://blogwaffe.com">makes</a> <a href="http://emailforpics.com">three</a> (or <a href="http://drlang.blogwaffe.com">four</a>, depending on how you count).  Most of my &#8220;regular&#8221; &#8220;audience&#8221; won&#8217;t find it very interesting, though.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2005/08/18/real-ultimate-waffe-net/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Welcome, friends!</title>
		<link>http://blogwaffe.com/2005/07/31/welcome-friends/</link>
		<comments>http://blogwaffe.com/2005/07/31/welcome-friends/#comments</comments>
		<pubDate>Mon, 01 Aug 2005 06:10:06 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[a group of folks]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[neat!]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=320</guid>
		<description><![CDATA[I know you&#8217;ve always wanted to post on blogwaffe. Or perhaps you&#8217;ve dreamed of publishing content on Apparent Horizons or \_jeff_{krimmel}. Well you can&#8217;t. Sukah. But you can hit up the next big thing (next great American novel, big) over at email for pics (dot com).]]></description>
			<content:encoded><![CDATA[<p>I know you&#8217;ve always wanted to post on blogwaffe.  Or perhaps you&#8217;ve dreamed of publishing content on <a href="http://apparenthorizons.com/">Apparent Horizons</a> or <a href="http://jeffkrimmel.com/">\_jeff_{krimmel}</a>.</p>
<p>Well you can&#8217;t.</p>
<p>Sukah.</p>
<p>But you can hit up the next big thing (next great American novel, big) over at <a href="http://emailforpics.com">email for pics</a> (dot com).</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2005/07/31/welcome-friends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>8000, you&#8217;ve treated me well</title>
		<link>http://blogwaffe.com/2005/07/28/8000-youve-treated-me-well/</link>
		<comments>http://blogwaffe.com/2005/07/28/8000-youve-treated-me-well/#comments</comments>
		<pubDate>Thu, 28 Jul 2005 09:17:09 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[neat!]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://blogwaffe.com/?p=316</guid>
		<description><![CDATA[In a way, I&#8217;m a little sad to see it go. My unconventional port and I have been together for a long time now. It&#8217;s been a source of conversation, intrigue and misplaced pride. Sadly, the pros of moving on outweigh the cons. For those of you who hadn&#8217;t noticed after this ~day of being [...]]]></description>
			<content:encoded><![CDATA[<p>In a way, I&#8217;m a little sad to see it go.  My unconventional port and I have been together for a long time now.  It&#8217;s been a source of conversation, intrigue and misplaced pride.  Sadly, the pros of moving on outweigh the cons.</p>
<p>For those of you who hadn&#8217;t noticed after this ~day of being offline: http://blogwaffe.com.</p>
<p>I didn&#8217;t want to name names until all had settled, but I&#8217;m now very happy to say that blogwaffe is being served by <a href="http://textdrive.com">TextDrive</a>.  I absolutely could not be happier with the service or its people.  TextDrive&#8217;s servers are fast, highly configurable and very usable while all the while the folks running the show are friendly, helpful and knowledgeable nearly to the point of being scary.  I had a couple questions about the best way to move the site over while maintaining the old links.  Not only did they have answers, they had implementable solutions.  Many thanks to <a href="http://ryanschwartz.net/">Ryan</a>, Jason and the lot.</p>
<p>Also, I&#8217;d be remiss if I didn&#8217;t give a loud shout out to <a href="http://photomatt.net">Matt</a> who was responsible for setting us up the bomb in the first place.  So thanks, Matt.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2005/07/28/8000-youve-treated-me-well/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>&#8220;About&#8221; to change hosts</title>
		<link>http://blogwaffe.com/2005/07/27/about-to-change-hosts/</link>
		<comments>http://blogwaffe.com/2005/07/27/about-to-change-hosts/#comments</comments>
		<pubDate>Wed, 27 Jul 2005 20:15:29 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[in brief]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://www.blogwaffe.com:8000/2005/07/27/315/</guid>
		<description><![CDATA[I&#8217;m switching web hosts sometime in the next day or two. Hopefully all will go smoothly and barely a change will be noticed. If things b0rk, please let me know.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m switching web hosts sometime in the next day or two.  Hopefully all will go smoothly and barely a change will be noticed.  If things b0rk, please let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2005/07/27/about-to-change-hosts/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WordPress 1.5.1.3</title>
		<link>http://blogwaffe.com/2005/06/29/wordpress-1513/</link>
		<comments>http://blogwaffe.com/2005/06/29/wordpress-1513/#comments</comments>
		<pubDate>Wed, 29 Jun 2005 09:22:24 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[in brief]]></category>

		<guid isPermaLink="false">http://www.blogwaffe.com:8000/2005/06/29/304/</guid>
		<description><![CDATA[Another WordPress update. It&#8217;s a security release, so you should definitely upgrade.]]></description>
			<content:encoded><![CDATA[<p>Another <a href="http://wordpress.org/development/2005/06/wordpress-1513/">WordPress update</a>.  It&#8217;s a security release, so you should definitely <a href="http://codex.wordpress.org/Upgrading">upgrade</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2005/06/29/wordpress-1513/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX Comment Preview</title>
		<link>http://blogwaffe.com/2005/06/14/ajax-comment-preview/</link>
		<comments>http://blogwaffe.com/2005/06/14/ajax-comment-preview/#comments</comments>
		<pubDate>Wed, 15 Jun 2005 02:09:40 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[blogging]]></category>
		<category><![CDATA[neat!]]></category>

		<guid isPermaLink="false">http://www.blogwaffe.com:8000/?p=298</guid>
		<description><![CDATA[UPDATE: The documentation for this plugin is now on my AJAX Comment Preview page. All the talk below of the installation being hard is out of date. Things are much easier now. I&#8217;ve looked around occasionally for a good comment preview plugin for the site. There&#8217;s a few &#8220;Live&#8221; preview plugins around, but I find [...]]]></description>
			<content:encoded><![CDATA[<p><strong>UPDATE</strong>: The documentation for this plugin is now on my <a href="http://blogwaffe.com/ajax-comment-preview/">AJAX Comment Preview</a> page.  All the talk below of the installation being hard is out of date.  Things are much easier now.</p>
<p>I&#8217;ve looked around occasionally for a good comment preview plugin for the site.  There&#8217;s a few &#8220;Live&#8221; preview plugins around, but I find an as-you-type update of your comment really annoying.  Plus, those plugins are entirely javascript based;  they can&#8217;t know what the server will do to a comment after it gets sent off, so it&#8217;s not robustly WYSIWIG.</p>
<p>There seemed to be no good pre-fab solution fitting all my criteria:</p>
<ol>
<li>Not live updating (who&#8217;d have thought you&#8217;d need to specify the negative)</li>
<li>All content filtered through WordPress ensuring solid WYSIWIGnitude</li>
<li>Delicious <a href="http://www.adaptivepath.com/publications/essays/archives/000385.php">AJAX</a> goodness to avoid hard refreshes</li>
</ol>
<p>So I made my own.</p>
<p><span id="more-298"></span>Well, not entirely.  I was inspired by the <a href="http://jrm.cc/archives/blog/programming/live-request-xmlhttprequest-and-you/">Live Textile Preview Plugin</a> by <a href="http://jrm.cc/">Jeff Minard</a> which is itself inspired by and an adaptation of some <a href="http://blog.bitflux.ch/archive/2004/07/05/spotlight_like_livesearch_added.html">AJAX code</a> written by <a href="http://blog.bitflux.ch/">chregu:bitflux.ch</a>.</p>
<p>You, an avid and dedicated reader of this site, type in a comment and click &#8220;Preview&#8221;.  The information you enter is sent back to my server via the snazzy <a href="http://developer.apple.com/internet/webcontent/xmlhttpreq.html">XMLHttpRequest</a> Javascript object.  The server then decides how to format that information (where part of this decision is the filtration of the information through WordPress&#8217; content filtration system &#8211; the real advantage of this method).  The newly formatted information is then sent back to your browser where you can see exactly how your comment will look once you submit it.</p>
<p>If your browser doesn&#8217;t have all the clever bits necessary for all this, fear not.  You can forego the comment previewing and just submit the comment as usual.</p>
<p><del datetime="2007-02-10T23:09:03+00:00"><br />
<h4>Testing</h4>
<p>I get a number of comments on this post testing the system.  A little odd, since it seems to me people should be testing the preview functionality (which is new) not the comment posting functionality (which is the same old WordPress standard stuff).   Anyway, that&#8217;s cool.  Go ahead.  But please do me a favor; don&#8217;t just thow up some lame &#8220;testing&#8221; comment.  Try sending over a poem or maybe something from the Farmer’s Almanac. Tell me your favorite book/artist/music. Don’t suck; try to be creative.</del></p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2005/06/14/ajax-comment-preview/feed/</wfw:commentRss>
		<slash:comments>99</slash:comments>
		</item>
		<item>
		<title>FeedLounge</title>
		<link>http://blogwaffe.com/2005/06/10/feedlounge/</link>
		<comments>http://blogwaffe.com/2005/06/10/feedlounge/#comments</comments>
		<pubDate>Fri, 10 Jun 2005 20:09:32 +0000</pubDate>
		<dc:creator>MDA</dc:creator>
				<category><![CDATA[a group of folks]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[neat!]]></category>

		<guid isPermaLink="false">http://www.blogwaffe.com:8000/?p=297</guid>
		<description><![CDATA[I&#8217;ve been interested in a while in some sort of centralized feed reader. Currently, I use NetNewsWire on my laptop (a fantastic program), and Thunderbird at the office to keep track of all the sites I read. The problem is that the one reader I use doesn&#8217;t know anything about the other; I get fed [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been interested in a while in some sort of centralized feed reader.  Currently, I use <a href="http://ranchero.com/netnewswire/">NetNewsWire</a> on my laptop (a fantastic program), and <a href="http://www.mozilla.org/products/thunderbird/">Thunderbird</a> at the office to keep track of all the sites I read.  The problem is that the one reader I use doesn&#8217;t know anything about the other; I get fed the same articles in both.</p>
<p><span id="more-297"></span>Via Dixie, I&#8217;ve heard of Thunderbird-centric solutions to this dilemma, but that runs into my second major feed problem.  As a feed reader, Thunderbird is crap.  It just doesn&#8217;t have all the bits I need (read &#8220;want&#8221;) and the interface is pretty kludgy.  Plus, Dixie&#8217;s solution requires, as I recall, a physical object for the negotiation.  That doesn&#8217;t solve the problem, it just transfers it from one object (me) to another (a usb drive).  It still would not be centralized (in the sense I&#8217;m after) and, worse, it would be subject to my forgetfulness (How many times have I left my <em>iPod</em> in your posession, Dixie?  You can imagine the pen drive would escape my notice with far greater frequency.)</p>
<p>So that&#8217;s out.  My first idea was to set up some sort of feed server.  It would grab all the feeds, and then I could subscribe to those central feeds both from home and from work.  It&#8217;d need to have some sort of POP-like &#8216;delete item from server&#8217; (server side) option, though, to prevent the same type of duplication I see now.  That ended up being a bad idea: too much work.</p>
<p>So I looked around at a couple web based feed systems.  &#8220;Heck,&#8221; I said, &#8220;I like web apps.  <a href="http://gmail.com">Gmail</a> has served me quite well, perhaps there&#8217;s some equally good feed reading web app out there.&#8221;  Most notable was <a href="http://bloglines.com/">Bloglines</a>.  Somehow, though, it didn&#8217;t seem quite what I needed. In particular, the interface just didn&#8217;t cut it.  Part of what makes Gmail great is it&#8217;s interface;  it&#8217;s easy to use, intuitive and has that robust feel of a of a <em>real</em> app.  Bloglines is not and does not, and that&#8217;s important.  If I&#8217;m going to use something every day multiple times a day, I want it to be easy to use and to feel solid.</p>
<p>So I was out of luck.  I was too lazy (and too ignorant) to set up some sort of central feed server of my own, and too picky to be happy with the web apps currently available.</p>
<p>In steps <a href="http://feedlounge.com/">FeedLounge</a>.  Oh, man, does this look hot.  I encourage everyone to check out the screenshots on the front page there and to <a href="http://feedlounge.com/support/faq/tutorial/welcome/">take the little tour</a>.  The interface looks clean, and there&#8217;s keyboard action up the wazoo.  Plus it&#8217;s geeky and zeitgeist friendly; as <a href="http://www.alexking.org/">Alex King</a>, one of FeedLounge&#8217;s <a href="http://feedlounge.com/about/">developers</a> <a href="http://www.alexking.org/blog/2005/06/09/feedlounge/">said</a>:</p>
<blockquote cite="http://www.alexking.org/blog/2005/06/09/feedlounge/"><p>
Pick your favorite <a href="http://www.randsinrepose.com/archives/2005/05/24/the_web_application_leap.html">web application</a> buzzword: AJAX, tagging, keyboard commands, etc. &#8211; FeedLounge has got it.
</p></blockquote>
<p>I&#8217;ve asked to be in their beta testing phase, but I&#8217;m sure they&#8217;ve already received a lot of such requests.  Maybe they&#8217;ve got a random number generator involved, and I&#8217;ll get lucky.</p>
]]></content:encoded>
			<wfw:commentRss>http://blogwaffe.com/2005/06/10/feedlounge/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

