<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title></title>
	<atom:link href="http://ammann.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ammann.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 28 Nov 2008 11:27:00 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='ammann.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/e5bd23c003c6ab65e7128c937ace42cb?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title></title>
		<link>http://ammann.wordpress.com</link>
	</image>
			<item>
		<title>Some radial graph</title>
		<link>http://ammann.wordpress.com/2008/09/20/some-radial-graph/</link>
		<comments>http://ammann.wordpress.com/2008/09/20/some-radial-graph/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 21:46:11 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[graphviz]]></category>
		<category><![CDATA[twopi]]></category>
		<category><![CDATA[graph]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/?p=57</guid>
		<description><![CDATA[Fooling with Graphviz:
digraph G {
graph [root="a",
ratio="auto",
outputorder="edgesfirst",
bgcolor="#eeeeee",
overlap="false"];
node [shape="rect",
style="filled",
fillcolor="white"];
"a" -&#62; "b";
"a" -&#62; "c";
"a" -&#62; "d";
"a" -&#62; "e";
"a" -&#62; "f";
"a" -&#62; "g";
"a" -&#62; "h";
"a" -&#62; "2";
"a" -&#62; "3";
"a" -&#62; "4";
"a" -&#62; "5";
"a" -&#62; "6";
"a" -&#62; "7";
"a" -&#62; "8";
"a" -&#62; "9";
"a" -&#62; "10";
"a" -&#62; "11";
"a" -&#62; "12";
"a" -&#62; "13";
"a" -&#62; "14";
"a" -&#62; "15";
"a" -&#62; "16";
"a" -&#62; "17";
"a" -&#62; "18";
"a" [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=57&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Fooling with <a href="http://www.graphviz.org/">Graphviz</a>:</p>
<div id="attachment_56" class="wp-caption alignnone" style="width: 310px"><a href="http://ammann.files.wordpress.com/2008/09/sample1161.png"><img src="http://ammann.files.wordpress.com/2008/09/sample1161.png?w=300&#038;h=266" alt="Radial graph" title="sample1161" width="300" height="266" class="size-medium wp-image-56" /></a><p class="wp-caption-text">Radial graph</p></div>
<p><code>digraph G {</p>
<p>graph [root="a",<br />
ratio="auto",<br />
outputorder="edgesfirst",<br />
bgcolor="#eeeeee",<br />
overlap="false"];</p>
<p>node [shape="rect",<br />
style="filled",<br />
fillcolor="white"];</p>
<p>"a" -&gt; "b";<br />
"a" -&gt; "c";<br />
"a" -&gt; "d";<br />
"a" -&gt; "e";<br />
"a" -&gt; "f";<br />
"a" -&gt; "g";<br />
"a" -&gt; "h";<br />
"a" -&gt; "2";<br />
"a" -&gt; "3";<br />
"a" -&gt; "4";<br />
"a" -&gt; "5";<br />
"a" -&gt; "6";<br />
"a" -&gt; "7";<br />
"a" -&gt; "8";<br />
"a" -&gt; "9";<br />
"a" -&gt; "10";<br />
"a" -&gt; "11";<br />
"a" -&gt; "12";<br />
"a" -&gt; "13";<br />
"a" -&gt; "14";<br />
"a" -&gt; "15";<br />
"a" -&gt; "16";<br />
"a" -&gt; "17";<br />
"a" -&gt; "18";<br />
"a" -&gt; "19";<br />
"a" -&gt; "20";<br />
"a" -&gt; "21";<br />
"a" -&gt; "22";<br />
"a" -&gt; "23";<br />
"a" -&gt; "24";<br />
"a" -&gt; "25";<br />
"a" -&gt; "26";<br />
"a" -&gt; "27";<br />
}</code></p>
<p>Rendered with: $ twopi -Tpng sample116.dot -o sample116.png</p>
<p>This works quite well with just a handful of nodes, but with node numbers in the dozens and hundreds, edge length for the outer nodes increases dramatically. There doesn&#8217;t seem to be a way to pack this sort of graph tightly for lots of nodes. </p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/57/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/57/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/57/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=57&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2008/09/20/some-radial-graph/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>

		<media:content url="http://ammann.files.wordpress.com/2008/09/sample1161.png?w=300" medium="image">
			<media:title type="html">sample1161</media:title>
		</media:content>
	</item>
		<item>
		<title>Vector Magic</title>
		<link>http://ammann.wordpress.com/2007/11/22/vector-magic/</link>
		<comments>http://ammann.wordpress.com/2007/11/22/vector-magic/#comments</comments>
		<pubDate>Thu, 22 Nov 2007 22:37:56 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[Graphic design]]></category>
		<category><![CDATA[INSTG017]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/2007/11/22/vector-magic/</guid>
		<description><![CDATA[ 
Judging by the 11,000 bookmarks on Del.cio.us and the 3,000 diggs on Digg, the brand-new bitmap-to-vector service from Stanford got off to a good start. The professionals are impressed, too.
Me? I&#8217;ve done some auto-tracing in Inkscape, which does a good enough job for my needs. Still, I&#8217;ve just put a number of graphics through [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=52&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src='http://ammann.files.wordpress.com/2007/11/drummer08_vectorized.png?w=357&#038;h=470' width="357" height="470" alt='Drummer' /> </p>
<p>Judging by the <a href="http://del.icio.us/url/6bf698c3e429a6c02321cb8dbb874250" title="Del.icio.us">11,000 bookmarks on Del.cio.us</a> and the <a href="http://digg.com/design/Online_auto_tracing_tool_converts_bitmaps_to_vector_art" title="Digg">3,000 diggs on Digg</a>, the <a href="http://vectormagic.stanford.edu/" title="Vector Magic">brand-new bitmap-to-vector service from Stanford</a> got off to a good start. The <a href="http://www.hicksdesign.co.uk/journal/" title="Jon Hicks at home">professionals</a> are <a href="http://www.flickr.com/photos/hicksdesign/1933018417/" title="Jon Hicks on Flickr">impressed</a>, too.</p>
<p>Me? I&#8217;ve done some auto-tracing in <a href="http://www.inkscape.org/" title="draw freely">Inkscape</a>, which does a good enough job for my needs. Still, I&#8217;ve just put a number of graphics through Vector Magic that I had sitting around from many years ago: ink-on paper line art of mine that I scanned and reduced to aliased gifs way back in time. Vector Magic did really well on them. Here&#8217;s a <a href='http://ammann.files.wordpress.com/2007/11/vector-magic-screenshot.png' title='side by side comparison'>side by side comparison</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ammann.wordpress.com/52/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ammann.wordpress.com/52/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/52/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/52/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/52/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=52&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2007/11/22/vector-magic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>

		<media:content url="http://ammann.files.wordpress.com/2007/11/drummer08_vectorized.png" medium="image">
			<media:title type="html">Drummer</media:title>
		</media:content>
	</item>
		<item>
		<title>Completely messed up the punchline</title>
		<link>http://ammann.wordpress.com/2007/11/19/completely-messed-up-the-punchline/</link>
		<comments>http://ammann.wordpress.com/2007/11/19/completely-messed-up-the-punchline/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 20:40:37 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[INSTG017]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Teaching]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/2007/11/19/completely-messed-up-the-punchline/</guid>
		<description><![CDATA[
View the complete slide show, have fun with open-source icons. 
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=51&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src='http://ammann.files.wordpress.com/2007/11/tophat-bunny004.png' alt='March Hare' /></p>
<p>View the complete <a href="http://www.slideshare.net/Anark/live-web">slide show</a>, have <a href="http://tango.freedesktop.org/Tango_Icon_Library">fun with open-source icons</a>. </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ammann.wordpress.com/51/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ammann.wordpress.com/51/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=51&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2007/11/19/completely-messed-up-the-punchline/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>

		<media:content url="http://ammann.files.wordpress.com/2007/11/tophat-bunny004.png" medium="image">
			<media:title type="html">March Hare</media:title>
		</media:content>
	</item>
		<item>
		<title>Graphing WordPress</title>
		<link>http://ammann.wordpress.com/2007/11/18/graphing-wordpress/</link>
		<comments>http://ammann.wordpress.com/2007/11/18/graphing-wordpress/#comments</comments>
		<pubDate>Sun, 18 Nov 2007 18:46:48 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[INSTG017]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/2007/11/18/graphing-wordpress/</guid>
		<description><![CDATA[According to Ohloh, WordPress consists of two million lines of code now. This seems a lot if compared against the code base of competing open-source site-building kits such as Joomla and Drupal but still pales in comparison with the gargantuan OpenOffice.org.
Surprisingly, Google Trends reports that Joomla has had a higher search volume than WordPress since [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=49&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>According to Ohloh, <a href="http://www.ohloh.net/projects/compare?project_0=&amp;project_1=WordPress&amp;project_2=&amp;submit=Go">WordPress consists of two million lines of code now</a>. This seems a lot if <a href="http://www.ohloh.net/projects/compare?project_0=WordPress&amp;project_1=Drupal+%28core%29&amp;project_2=Joomla%21&amp;submit=Go">compared against the code base of competing open-source site-building kits such as Joomla and Drupal</a> but still pales in <a href="http://www.ohloh.net/projects/compare?project_0=WordPress&amp;project_1=OpenOffice.org&amp;project_2=&amp;submit=Go">comparison with the gargantuan OpenOffice.org</a>.</p>
<p>Surprisingly, Google Trends reports that <a href="http://www.google.com/trends?q=wordpress%2C+drupal%2C+joomla%2C+openoffice.org&amp;ctab=0&amp;geo=all&amp;date=all&amp;sort=0">Joomla has had a higher search volume than WordPress</a> since mid-2005. It still <a href="http://www.google.com/trends?q=wordpress%2C+%22web+2.0%22&amp;ctab=0&amp;geo=all&amp;date=all&amp;sort=0">beats Web 2.0</a> though, but loses to <a href="http://www.google.com/trends?q=WordPress%2C+%22Paris+Hilton%22&amp;ctab=0&amp;geo=all&amp;date=all&amp;sort=0">Paris Hilton</a>. </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ammann.wordpress.com/49/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ammann.wordpress.com/49/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/49/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/49/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/49/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=49&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2007/11/18/graphing-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>
	</item>
		<item>
		<title>The Lay of the Land</title>
		<link>http://ammann.wordpress.com/2007/11/06/the-lay-of-the-land/</link>
		<comments>http://ammann.wordpress.com/2007/11/06/the-lay-of-the-land/#comments</comments>
		<pubDate>Tue, 06 Nov 2007 19:55:40 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/2007/11/06/the-lay-of-the-land/</guid>
		<description><![CDATA[The Web is Agreement · Historical Roadmap[1] · Map of Online Communities · Web Trend Map 2007 Version 2.0 · Crucial DNA of Web 2.0 · Logo 2.0, Part I · Logo 2.0, Part II · Yourdon&#8217;s Mindmap · Map of the Internet · Periodic Table of the Internet · Web 2.0 Innovation Map · [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=45&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h2><a href="http://www.flickr.com/photos/psd/1805709102/">The Web is Agreement</a> · <a href="http://www.w3.org/2007/09/map/main.jpg">Historical Roadmap</a>[1] · <a href="http://xkcd.com/256/">Map of Online Communities</a> · <a href="http://www.informationarchitects.jp/ia-trendmap-2007v2">Web Trend Map 2007 Version 2.0</a> · <a href="http://www.adaptivepath.com/ideas/essays/archives/000547.php">Crucial DNA of Web 2.0</a> · <a href="http://www.flickr.com/photos/stabilo-boss/93136022/">Logo 2.0, Part I</a> · <a href="http://www.flickr.com/photo_zoom.gne?id=88953806&amp;size=o&amp;context=set-72057594060779001">Logo 2.0, Part II</a> · <a href="http://www.stoweboyd.com/message/2006/08/ed_yourdon_on_w.html">Yourdon&#8217;s Mindmap</a> · <a href="http://map-o-net.com/">Map of the Internet</a> · <a href="http://www.wellingtongrey.net/miscellanea/archive/2007-06-23--periodic-table-of-the-internet.html">Periodic Table of the Internet</a> · <a href="http://www.fourio.com/web20map/">Web 2.0 Innovation Map</a> · <a href="http://www.railsonwave.com/assets/2006/12/25/Web_2.0_Map.svg">Web 2.0 Map</a> · <a href="http://kosmar.de/wp-content/web20map.png">Web 2.0 Map</a> · <a href="http://www.oreilly.com/pub/a/oreilly/tim/news/2005/09/30/what-is-web-20.html?page=1">Web 2.0 Meme Map</a> · <a href="http://www.visibone.com/countries/">VisiBone Country Chart</a> · <a href="http://datamining.typepad.com/gallery/blog-map-gallery.html">Data Mining: Mapping the Blogosphere</a> · <a href="http://business2.blogs.com/business2blog/2006/08/web_20_around_t.html">Web 2.0 Around the World</a> · <a href="http://www.milliondollarhomepage.com/">The Million Dollar Homepage</a> </h2>
<p>&#8212;-<br />
[1] This map was <a href="http://www.w3.org/2007/Talks/0920-webhistory-tbl/#(17)">presented</a> by Tim Berners-Lee as part of his <a href="http://www.w3.org/2007/Talks/0920-webhistory-tbl/#(1)">Short History of the WWW</a>, delivered in <a href="http://www.theiet.org/events/2007/14215.cfm">October 2007</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ammann.wordpress.com/45/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ammann.wordpress.com/45/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/45/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/45/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/45/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=45&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2007/11/06/the-lay-of-the-land/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>
	</item>
		<item>
		<title>Bubblewrap!</title>
		<link>http://ammann.wordpress.com/2007/10/31/bubblewrap/</link>
		<comments>http://ammann.wordpress.com/2007/10/31/bubblewrap/#comments</comments>
		<pubDate>Wed, 31 Oct 2007 12:16:24 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[bubblewrap]]></category>
		<category><![CDATA[recreation]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/2007/10/31/bubblewrap/</guid>
		<description><![CDATA[Pop! (needs Flash)
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=44&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://public.aregner.com/bubblewrap.swf">Pop</a>! (needs Flash)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ammann.wordpress.com/44/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ammann.wordpress.com/44/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/44/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/44/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/44/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=44&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2007/10/31/bubblewrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>
	</item>
		<item>
		<title>Syndicated</title>
		<link>http://ammann.wordpress.com/2006/02/01/syndicated/</link>
		<comments>http://ammann.wordpress.com/2006/02/01/syndicated/#comments</comments>
		<pubDate>Wed, 01 Feb 2006 09:16:04 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/2006/02/01/syndicated/</guid>
		<description><![CDATA[I&#8217;ve just mixed a few of my students&#8217; feeds into a new site: Tawawa.SuprGlu.com. 
This isn&#8217;t going to become permanent, but a similar project might get going soon&#8230;
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=36&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve just mixed a few of my students&#8217; feeds into a new site: <a href="http://tawawa.suprglu.com/">Tawawa.SuprGlu.com</a>. </p>
<p>This isn&#8217;t going to become permanent, but a similar project might get going soon&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ammann.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ammann.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=36&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2006/02/01/syndicated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>
	</item>
		<item>
		<title>Network backup</title>
		<link>http://ammann.wordpress.com/2006/01/18/network-backup/</link>
		<comments>http://ammann.wordpress.com/2006/01/18/network-backup/#comments</comments>
		<pubDate>Wed, 18 Jan 2006 07:50:47 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/2006/01/18/network-backup/</guid>
		<description><![CDATA[By the end of March, I&#8217;ll be leaving this university and I&#8217;ll need to clear out of my office. What to do with the data on those two computers? I&#8217;ve been lazy and unsystematic about doing backups, and I&#8217;m not so happy about the CD-Rs I&#8217;ve burned. 
The other day I went to an electronics [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=33&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>By the end of March, I&#8217;ll be leaving this university and I&#8217;ll need to clear out of my office. What to do with the data on those two computers? I&#8217;ve been lazy and unsystematic about doing backups, and I&#8217;m not so happy about the CD-Rs I&#8217;ve burned. </p>
<p>The other day I went to an electronics store and looked at external hard drives: why not copy the whole lot onto a portable drive and be done with it? </p>
<p>While discussing the issue with a computer scientist, we got to talk about network backups. I asked him to explain why he liked the idea so much. And he did:</p>
<blockquote><p>Just before I learned about <a href="http://www.strongspace.com">StrongSpace</a> I was thinking that such a system needed to exist. The reason is that there are some problems with backups:</p>
<ol>
<li>People forget to do them or don&#8217;t bother because they are inconvenient.</li>
<li>If they are located in the same machine as the original data they are not protected from catastrophes (e.g. fire).</li>
<li>Making a backup means you have another copy of your data floating around, which means others could steal that data and see all your naked people pictures and health records and stuff.</li>
</ol>
<p>Offsite backups (to a file server someplace) solve some of these problems. You use a script that is run every so often, and it magically uploads your stuff to some network storage space. However, transmitting data over the internet means that it is inherently less secure: people could sniff the packets as you transmit them, and the network admins running your internet storage can see what your files are. Ethically, they should not care, but I do know that sysadmins snoop. Plus if the police come asking for your data the sysadmins have to provide it. From a security standpoint you would prefer that the sysadmins are unable to see what is going on.</p>
<p>Strongspace almost solves the entire problem. It provides a connection that is probably secure for your data, and it provides lots of space. If your office catches fire you can still get your data, and if the StrongSpace servers catch fire then you have the data in your office. That is good.</p>
<p>The only weakness is that the sysadmins can still snoop on your files. There are ways around this (encrypted or doubly-encrypted filesystems, or just encrypting your tarballs before sending anything), but StrongSpace does not make that easy.</p>
<p>Network backups are the wave of the future. StrongSpace excited me because I knew of nobody else that realized this enough to offer committed hosting for backups.</p></blockquote>
<p>Keeping the stuff online would have its benefits, too, because it would remain accessible from anywhere. But then most of the stuff won&#8217;t need to be accessible from anywhere because I probably won&#8217;t ever look at it again.  Maybe I don&#8217;t need to catch the wave of the future just yet, so, after all, I&#8217;ll buy an external drive for stashing it away offline. We&#8217;ll see.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ammann.wordpress.com/33/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ammann.wordpress.com/33/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=33&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2006/01/18/network-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>
	</item>
		<item>
		<title>Bloglines to upgrade, edited</title>
		<link>http://ammann.wordpress.com/2005/12/16/bloglines-to-upgrade-edited/</link>
		<comments>http://ammann.wordpress.com/2005/12/16/bloglines-to-upgrade-edited/#comments</comments>
		<pubDate>Fri, 16 Dec 2005 05:42:52 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/2005/12/16/bloglines-to-upgrade-edited/</guid>
		<description><![CDATA[Bloglines has been very frustrating of late &#8212; in some cases feeds weren&#8217;t updated for several days. Happily, the people who run the service seem to be aware of the problem. Their news release from a couple of days ago says:
We&#8217;re not going to beat around the bush about this. Bloglines performance has sucked eggs [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=27&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.bloglines.com/">Bloglines</a> has been very frustrating of late &#8212; in some cases feeds weren&#8217;t updated for several days. Happily, the people who run the service seem to be aware of the problem. Their <a href="http://www.bloglines.com/about/news#92">news release</a> from a couple of days ago says:</p>
<blockquote><p>We&#8217;re not going to beat around the bush about this. Bloglines performance has sucked eggs lately. Why? In short, Bloglines has been busting at the seams like the Incredible Hulk.</p>
<p>All of us here at Bloglines have been foregoing sleep and social lives over the past several months to keep Bloglines running and preparing for our move to a new access center (with bigger britches and a very elastic waistline).</p>
<p>So hang tight because there&#8217;s a light at the end of the tunnel. The move will happen soon; we&#8217;ll keep you posted. </p></blockquote>
<p>Incredible Hulk? Sucked eggs? The entry might be hard to understand for anybody who has a perfectly fine command of the English language yet happens to lack familiarity with American colloquialisms and cultural references. </p>
<p>Here&#8217;s a translation:</p>
<blockquote><p>We have to admit that Blogline&#8217;s performance has been very poor lately. Why? Because Bloglines has been growing at an incredible rate.</p>
<p>All of us here at Bloglines have been working overtime for the past several months to keep Bloglines running. We&#8217;re also preparing for our move to a new data center, which will provide us with more processing power and sufficient room for future growth.</p>
<p>So please be patient because things are going to improve. The move will happen soon; we&#8217;ll keep you informed.</p></blockquote>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ammann.wordpress.com/27/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ammann.wordpress.com/27/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/27/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/27/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/27/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=27&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2005/12/16/bloglines-to-upgrade-edited/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>
	</item>
		<item>
		<title>Cherry leaves</title>
		<link>http://ammann.wordpress.com/2005/12/05/cherry-leaves/</link>
		<comments>http://ammann.wordpress.com/2005/12/05/cherry-leaves/#comments</comments>
		<pubDate>Mon, 05 Dec 2005 00:34:33 +0000</pubDate>
		<dc:creator>Rudolf</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://ammann.wordpress.com/2005/12/05/cherry-leaves/</guid>
		<description><![CDATA[
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=25&subd=ammann&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.flickr.com/photos/rka/67855847/" title="Photo Sharing"><img src="http://static.flickr.com/30/67855847_b649d55d7d.jpg" width="375" height="500" alt="Cherry leaves" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/ammann.wordpress.com/25/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/ammann.wordpress.com/25/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/ammann.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/ammann.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/ammann.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/ammann.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/ammann.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/ammann.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/ammann.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/ammann.wordpress.com/25/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/ammann.wordpress.com/25/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/ammann.wordpress.com/25/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=ammann.wordpress.com&blog=6267&post=25&subd=ammann&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://ammann.wordpress.com/2005/12/05/cherry-leaves/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/025108019fb9e3d2d4609d7f2268778e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">ammann</media:title>
		</media:content>

		<media:content url="http://static.flickr.com/30/67855847_b649d55d7d.jpg" medium="image">
			<media:title type="html">Cherry leaves</media:title>
		</media:content>
	</item>
	</channel>
</rss>