<?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>dougt&#039;s blog</title>
	<atom:link href="http://dougt.org/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://dougt.org/wordpress</link>
	<description>best. tagline. ever.</description>
	<lastBuildDate>Mon, 26 Jul 2010 03:18:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Geolocation &#8211; Setting your position manually</title>
		<link>http://dougt.org/wordpress/2010/06/geolocation-setting-your-position-manually/</link>
		<comments>http://dougt.org/wordpress/2010/06/geolocation-setting-your-position-manually/#comments</comments>
		<pubDate>Sat, 26 Jun 2010 16:19:53 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[mozilla]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[geolocation]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=576</guid>
		<description><![CDATA[I thought that this was written down somwhere, but I couldn&#8217;t easily find it&#8230;. so If you know how to muck with about:config, there is an easy way to set your location manually.  First figure out your longitude and latitude.  There area bunch of tools on the web that gets you this.  Once you have [...]]]></description>
			<content:encoded><![CDATA[<p>I thought that this was written down somwhere, but I couldn&#8217;t easily find it&#8230;. so</p>
<p>If you know how to muck with about:config, there is an easy way to set your location manually.  First figure out your longitude and latitude.  There area bunch of tools on the web that gets you this.  Once you have this, you can do the following:</p>
<p>1) Open up about:config</p>
<p>2) search for geo.wifi.uri</p>
<p>3) change the value to:</p>
<p>http://snaptome.appspot.com/loc/json?latitude=<strong>your_lat</strong>&amp;longitude=<strong>your_lon</strong>&amp;accuracy=10</p>
<p>Thats it.  I hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2010/06/geolocation-setting-your-position-manually/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Desktop Notifications</title>
		<link>http://dougt.org/wordpress/2010/06/desktop-notifications/</link>
		<comments>http://dougt.org/wordpress/2010/06/desktop-notifications/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 06:27:44 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[device api]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[notification]]></category>
		<category><![CDATA[w3c]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=551</guid>
		<description><![CDATA[This is a feature that may come to a browser some day.  I am interesting in your thoughts: Desktop Notifications Desktop notifications allow a web page to notify the user using system level services, such as Growl, in a clean, safe, and easy to use manner. The code is very simple: navigator.notification.notify("Another Desktop Notification", "Check [...]]]></description>
			<content:encoded><![CDATA[<p>This is a feature that may come to a browser some day.  I am interesting in your thoughts:</p>
<p><strong>Desktop Notifications</strong></p>
<p>Desktop notifications allow a web page to notify the user using system level services, such as <a href="http://growl.info/about.php">Growl</a>, in a clean, safe, and easy to use manner.</p>
<p>The code is very simple:</p>
<pre>navigator.notification.notify("Another Desktop Notification",
                              "Check out my icon",
                              "http://dougt.org/me.jpg");</pre>
<p>and the result is something you&#8217;d expect from a notification.  On the Mac, the notification may look like:</p>
<p><a href="http://dougt.org/wordpress/wp-content/uploads/Screen-shot-2010-06-21-at-3.04.56-PM.png"><img class="aligncenter size-medium wp-image-552" title="Desktop Notification example" src="http://dougt.org/wordpress/wp-content/uploads/Screen-shot-2010-06-21-at-3.04.56-PM-300x114.png" alt="" width="300" height="114" /></a></p>
<p>You can get more sophisticated by adding a callback when the user clicks on the Desktop Notification:</p>
<pre>navigator.notification.notify("Another Desktop Notification",
                              "Check out my icon",
                              "http://dougt.org/me.jpg");
                              function() { /*do something*/ });</pre>
<p>A user must grant each site permission before they can use Desktop Notifications.  We will use the familiar notification bar (the text isn&#8217;t final.  Also, these will end up looking quite different in future releases of Firefox.):</p>
<p><a href="http://dougt.org/wordpress/wp-content/uploads/Screenshot-Minefield.png"><img class="aligncenter size-medium wp-image-553" title="Infobar notification for DesktopNotifications" src="http://dougt.org/wordpress/wp-content/uploads/Screenshot-Minefield-300x62.png" alt="" width="300" height="62" /></a></p>
<p>That is there all there is to it!</p>
<p><strong>Get involved:</strong></p>
<p>If you like or dislike this feature, please just leave a comment.</p>
<p>If you like to follow the implementation details, you can follow bug <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=573588">573588</a>.</p>
<p>You can try out the <a href="http://ftp.mozilla.org/pub/mozilla.org/firefox/tryserver-builds/dougt@mozilla.com-a2f00cf80e96/">engineering builds</a>.  There are bound to be a few bugz.  If you see anything funky, please let me know.</p>
<p>If you are using the above engineering builds, you can try out <a href="http://people.mozilla.org/~dougt/notification.html">Desktop Notifications</a>.</p>
<p><strong>More details:</strong></p>
<p>I reviewed two draft specifications.  The first is the <a href="http://dev.w3.org/2006/webapi/WebNotifications/publish/">WebNotification</a> specification and the other is the Google Gears <a href="http://code.google.com/p/gears/wiki/NotificationAPI">NotificationAPI</a>.  I found both of these APIs more complex than what was required.  Clearly both of these other APIs have use cases that are not address by my proposal.  But for basic notification from the browser, not much is required.</p>
<p>Looking at what Growl and other system level notification services provide, you basically only need a title, a description, and an icon.  For fun, I added one callback if the user clicks on the notification while it is on screen.</p>
<p><strong>Next Steps</strong></p>
<p>You tell me.  Is this something you&#8217;d like to see in the browser?  Does the API work for your use cases?</p>
<p>Let me know what you think!</p>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2010/06/desktop-notifications/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>Opera 10.6 Beta &#8211; Geolocation</title>
		<link>http://dougt.org/wordpress/2010/06/opera-10-6-beta-geolocation/</link>
		<comments>http://dougt.org/wordpress/2010/06/opera-10-6-beta-geolocation/#comments</comments>
		<pubDate>Mon, 14 Jun 2010 16:34:52 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[mozilla]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[geolocation]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[opera]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=545</guid>
		<description><![CDATA[Oh, cool!  Opera has geolocation! Opera employees do lots of heavy lifting on standards.  During my involvement at the geolocation working group, I saw first hand the great to work that the Opera folks do (Hi Lars-Erik + Max!).  And it is really great to see that this work be put into a product and [...]]]></description>
			<content:encoded><![CDATA[<p>Oh, cool!  Opera has geolocation!</p>
<p>Opera employees do lots of heavy lifting on standards.  During my involvement at the geolocation working group, I saw first hand the great to work that the Opera folks do (Hi Lars-Erik + Max!).  And it is really great to see that this work be put into a product and shipped.</p>
<p>I spend a bit of time looking at 10.6 and their geo implementation.  The info bar has the basic elements that a geolocation notification bar is suppose to have.  I will leave it to the Opera users to decided if this is a pretty notification bar or not&#8230; Notice that they did leave off a informational link that allows a user to get more information each time a geolocation request is performed.  We left that on so that people away can find a way back to the explanation of geolocation.  I also like the wording on the prompt&#8230; the browser <strong>shares</strong> the location data with the web page, but we do not transmit or <strong>send</strong> data.  It is a minor difference, but if the location is transmitted it is really the page that does it.</p>
<p><a href="http://dougt.org/wordpress/wp-content/uploads/geo-info-bar.png"><img class="aligncenter size-medium wp-image-546" title="opera-geo-info-bar" src="http://dougt.org/wordpress/wp-content/uploads/geo-info-bar-300x66.png" alt="Geolocation info bar in Opera" width="404" height="66" /></a></p>
<p>The first time you click &#8220;Share My Location&#8221;, you get a big modal dialog with a bunch of legalize in it that explain what geolocation is, and how it is used in Opera, and what providers, etc.  The text is pretty dense and will probably scare most people away.  I suppose much of the text is similar to the <a href="http://en-us.www.mozilla.com/en-US/firefox/geolocation/">Firefox text</a>.  There are some word smithing that could be done, but its a beta and Opera is probably still working on it.</p>
<p>Under the hood, Opera does use <strong>https</strong> when transmitting the geolocation data to and from Google&#8217;s Location Service.  They also expire the service cookie every two weeks and offer a way for the user to purge this value more frequently.  In my quick conformance tests, it looks like Opera behaves much like Firefox.</p>
<p>Overall, I am pretty happy with Opera&#8217;s Geolocation implementation.  Go Opera.  (btw, do I still get a t-shirt for saying that?)</p>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2010/06/opera-10-6-beta-geolocation/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Got Android?  We need you&#8230;</title>
		<link>http://dougt.org/wordpress/2010/05/got-android-we-need-you/</link>
		<comments>http://dougt.org/wordpress/2010/05/got-android-we-need-you/#comments</comments>
		<pubDate>Wed, 19 May 2010 03:03:24 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[mozilla]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[mobile]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=543</guid>
		<description><![CDATA[Mozilla has started to produce nightly builds of Fennec for Android.  You can get them here: http://ftp.mozilla.org/pub/mozilla.org/mobile/nightly/latest-mobile-trunk/fennec.apk No auto-updating yet, so check back often.  Send your feedback to the forum.]]></description>
			<content:encoded><![CDATA[<p>Mozilla has started to produce nightly builds of Fennec for Android.  You can get them here:</p>
<p><a href="http://ftp.mozilla.org/pub/mozilla.org/mobile/nightly/latest-mobile-trunk/fennec.apk">http://ftp.mozilla.org/pub/mozilla.org/mobile/nightly/latest-mobile-trunk/fennec.apk</a></p>
<p>No auto-updating yet, so check back often.  Send your feedback to the <a href="http://groups.google.com/group/fennec-android-pre-alpha">forum</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2010/05/got-android-we-need-you/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>MythTv Python Bindings in 0.23</title>
		<link>http://dougt.org/wordpress/2010/04/mythtv-python/</link>
		<comments>http://dougt.org/wordpress/2010/04/mythtv-python/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 04:29:48 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[mythtv]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=538</guid>
		<description><![CDATA[For the last few weeks I have been testing the waters with an open source alternative to TiVo called MythTv.  Its really simple to get started with and has some tremendously useful features for the tv hobbyist hacker.  Check this out&#8230;. With the upcoming 0.23 release, MythTv has a new and super easy-to-use python binding.  [...]]]></description>
			<content:encoded><![CDATA[<p>For the last few weeks I have been testing the waters with an open source alternative to TiVo called MythTv.  Its really simple to get started with and has some tremendously useful features for the tv hobbyist hacker.  Check this out&#8230;.</p>
<p>With the upcoming 0.23 release, MythTv has a new and super easy-to-use python binding.  The best way to illustrate this is an example.  Suppose you want to record every &#8220;special event&#8221; broadcast.  These are the programs that do not occur all of the time.  For example, &#8220;The  Eighth Annual Young Comedians Show&#8221; is a special event.  LOST is not.  To do this, the code is simple:</p>
<pre>from MythTV import MythDB, Record
db = MythDB()

shows = db.searchGuide(category="Special")

for x in shows:
  x.record()
</pre>
<p>This is huge!  Being able to allow developers to script the TV is great and I can&#8217;t wait to see what cool things people come up with.</p>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2010/04/mythtv-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Policies attached to data</title>
		<link>http://dougt.org/wordpress/2010/03/policies-attached-to-data/</link>
		<comments>http://dougt.org/wordpress/2010/03/policies-attached-to-data/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 04:28:51 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[mozilla]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[privacy]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=536</guid>
		<description><![CDATA[Everyday millions of people upload pictures, update their status message, and shop online.  In each of these actions, users have expressed consent and the browser is the instrument that enables the user to perform these various tasks.  When I upload a picture to a site, it is arguably governed by the terms and conditions of [...]]]></description>
			<content:encoded><![CDATA[<p>Everyday millions of people upload pictures, update their status  message, and shop online.  In each of these actions, users have  expressed consent and the browser is the instrument that enables the  user to perform these various tasks.  When I upload a picture to a site,  it is arguably governed by the terms and conditions of that site and  local laws.</p>
<p>There have been some requests to require all web  browsers to transmit rules that instruct web pages on how long they can  hold onto data.  Passing rules along with data is a bad idea because it  may be ignored due to existing rules and simply because it is  unenforceable.</p>
<p>Suppose that a default rule that a web browser  would send is “only keep this data for 2 weeks”.  When a user goes to  upload and share a picture with their friends, there are existing terms  and conditions in place merely by using the web site which may override  this 2 week retention rule.  The website might say plainly that uploaded  pictures will be archived forever which is in conflict with the rules  that are associated with the picture.  This leads to user confusion as  the expectations may differ.</p>
<p>Using the same example as above,  there is no way for the browser to verify that the website does honor  this retention rule.  After all, what a recipient does with a piece of  data is outside the scope of what a browser sees.  Any browser  user-interface would not be able to assert any fact regarding these  rules.   Thus, the default rules would never be able to be changed by  the user.  And because these defaults would never be seen by the user or  changed in any way, all will most likely ignore them.</p>
<p>Currently,  one of the most sensitive data that people share with a website is  their credit card number.  Browsers have never passed rules to a website  when an e-commerce transaction occurs.  Yet, sites do not retain credit  card numbers without permission.  In this case, there are regional laws  governing the usage of credit card numbers.</p>
<p>This approach of  putting legal protection around data is best.  If a certain type of data  is deemed more sensitive, it should be treated that way legally and  outside of the way it is transfer. Credit card numbers can be  transferred in any manner – from the browser to a website, or from a  postcard to a brick and mortar – both methods are protected.</p>
<p>Update:<br />
Localization to <a href="http://www.fatcow.com/edu/policies-attached-be/">Belorussian</a> by Patricia Clausnitzer.  Cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2010/03/policies-attached-to-data/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fennec 1.0 gource</title>
		<link>http://dougt.org/wordpress/2010/02/fennec-1-0-gource/</link>
		<comments>http://dougt.org/wordpress/2010/02/fennec-1-0-gource/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 17:17:28 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[mozilla]]></category>
		<category><![CDATA[fennec]]></category>
		<category><![CDATA[gource]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=531</guid>
		<description><![CDATA[Fennec 1.0 has been released for the N900 devices.  It is fun to look back to see how far everything has come.  One interesting way to view the development progress is a visualization tool called gource.  Gource produced this graph for the frontend changes that make up Fennec 1.0 (best viewed in HD). There are [...]]]></description>
			<content:encoded><![CDATA[<p>Fennec 1.0 has been released for the N900 devices.  It is fun to look back to see how far everything has come.  One interesting way to view the development progress is a visualization tool called <a href="http://code.google.com/p/gource/">gource</a>.  Gource produced this graph for the <a href="http://hg.mozilla.org/mobile-browser/">frontend changes</a> that make up Fennec 1.0 (best viewed in HD).</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="385" height="314" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/Kik5XwhGmAs&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="385" height="314" src="http://www.youtube.com/v/Kik5XwhGmAs&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>There are lots of nobs and switches to gource.  The command to produce this video is:</p>
<blockquote><p>gource -s 0.001 &#8211;output-framerate 25 &#8211;highlight-all-users &#8211;stop-at-end &#8211;disable-progress &#8211;auto-skip-seconds 0.1 &#8211;file-idle-time 10 &#8211;max-files 1500 &#8211;multi-sampling -1280&#215;720 &#8211;stop-at-end   &#8211;output-ppm-stream &#8211; | ffmpeg -y -b 30000K -r 60 -f image2pipe -vcodec ppm -i &#8211; -vcodec libx264 -vpre hq -crf 28 -threads 0 fennec.mp4</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2010/02/fennec-1-0-gource/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>A group of N900&#8242;s</title>
		<link>http://dougt.org/wordpress/2010/01/a-group-of-n900s/</link>
		<comments>http://dougt.org/wordpress/2010/01/a-group-of-n900s/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 17:34:08 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=523</guid>
		<description><![CDATA[what do you call a group of N900&#8242;s?]]></description>
			<content:encoded><![CDATA[<p>what do you call a group of N900&#8242;s?</p>
<div class="wp-caption alignnone" style="width: 810px"><img alt="A bunch of N900" src="http://farm3.static.flickr.com/2781/4289357082_9d075f1483_o.jpg" title="A bunch of N900" width="800" height="600" /><p class="wp-caption-text">A bunch of N900</p></div>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2010/01/a-group-of-n900s/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Labyrinth Game in the browser</title>
		<link>http://dougt.org/wordpress/2009/12/labyrinth-game-in-the-browser/</link>
		<comments>http://dougt.org/wordpress/2009/12/labyrinth-game-in-the-browser/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 21:18:05 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[mozilla]]></category>
		<category><![CDATA[accelerometer]]></category>
		<category><![CDATA[device api]]></category>
		<category><![CDATA[MozOrientation]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=516</guid>
		<description><![CDATA[A few months ago, I mentioned the game Labyrinth and how I wanted this to work in the browser. Syd Lawrence took up the cause and put together a cool implementation. Play it here. You must be running Firefox 3.6 RC or better. This uses the new orientation events added to Firefox 3.6. Syd also [...]]]></description>
			<content:encoded><![CDATA[<p>A few months ago, I mentioned the <a href="http://dougt.org/wordpress/2009/08/orientation/">game Labyrinth</a> and how I wanted this to work in the browser.  <a href="http://twitter.com/sydlawrence">Syd Lawrence</a> took up the cause and put together a cool implementation.</p>
<p>Play it <a href="http://playground.marmaladeontoast.co.uk/labyrinth">here</a>.  You must be running Firefox 3.6 RC or better.</p>
<p>This uses the new <a href="http://hacks.mozilla.org/2009/10/orientation-for-firefox/"> orientation events added to Firefox 3.6</a>.</p>
<p>Syd also put together a demo of what orientation looks like for those that do not have Firefox 3.6:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="340" height="285" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/M5GMWaGiV1g&amp;hl=en_US&amp;fs=1&amp;border=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="340" height="285" src="http://www.youtube.com/v/M5GMWaGiV1g&amp;hl=en_US&amp;fs=1&amp;border=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>This web feature is going to be standardized in the <a href="http://www.w3.org/">W3C</a> in one of two working groups.   The general idea is to separate out acceleration (values in <a href="http://en.wikipedia.org/wiki/Standard_gravity">g</a>) and orientation (values in degrees for azimuth, roll, pitch).  More on that next year when we figure out where the work will be done!</p>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2009/12/labyrinth-game-in-the-browser/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>ncat ascii art</title>
		<link>http://dougt.org/wordpress/2009/12/ncat-ascii-art/</link>
		<comments>http://dougt.org/wordpress/2009/12/ncat-ascii-art/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 20:45:30 +0000</pubDate>
		<dc:creator>dougt</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[ascii-art]]></category>
		<category><![CDATA[nat]]></category>

		<guid isPermaLink="false">http://dougt.org/wordpress/?p=513</guid>
		<description><![CDATA[config.status: creating config.h (  )   /\   _                 ( \ &#124;  (  \ ( \.(               )                      _____ \  \ \  `  `   ) \             (  ___                 / _   \ (_`    \+   . x  ( .\            \/   \____-----------/ (o)   \_ - .-               \+  ;          (  O                           \____ )        \_____________  `              \  / (__                +- .( -'.- &#60;. [...]]]></description>
			<content:encoded><![CDATA[<pre>
config.status: creating config.h
(  )   /\   _                 (
\ |  (  \ ( \.(               )                      _____
\  \ \  `  `   ) \             (  ___                 / _   \
(_`    \+   . x  ( .\            \/   \____-----------/ (o)   \_
- .-               \+  ;          (  O                           \____
)        \_____________  `              \  /
(__                +- .( -'.- &lt;. - _  VVVVVVV VV V\                \/
(_____            ._._: &lt;_ - &lt;- _  (--_AAAAAAA__A_/                |
.    /./.+-  . .- /  +--  - .     \______________//_              \_______
(__ ' /x  / x _/ (                                  \___'          \     /
, x / ( '  . / .  /                                      |           \   /
/  /  _/ /    +                                      /              \/
'  (__/                                             /                  \
NMAP IS A POWERFUL TOOL -- USE CAREFULLY AND RESPONSIBLY
</pre>
]]></content:encoded>
			<wfw:commentRss>http://dougt.org/wordpress/2009/12/ncat-ascii-art/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
