<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet href="/blog/templates/default/atom.css" type="text/css" ?>

<feed 
   xmlns="http://www.w3.org/2005/Atom"
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/">
    <link href="http://unorganized.net/blog/feeds/atom.xml" rel="self" title="unorganized.net" type="application/atom+xml" />
    <link href="http://unorganized.net/blog/"                        rel="alternate"    title="unorganized.net" type="text/html" />
    <link href="http://unorganized.net/blog/rss.php?version=2.0"     rel="alternate"    title="unorganized.net" type="application/rss+xml" />
    <title type="html">unorganized.net</title>
    <subtitle type="html">directly from the brain of Eike Bernhardt</subtitle>
    
    <id>http://unorganized.net/blog/</id>
    <updated>2009-03-31T18:21:28Z</updated>
    <generator uri="http://www.s9y.org/" version="1.4.1">Serendipity 1.4.1 - http://www.s9y.org/</generator>
    <dc:language>en</dc:language>

    <entry>
        <link href="http://unorganized.net/blog/archives/144-OS-X-Ignore-USB-Storage-device-temporarily.html" rel="alternate" title="OS X: Ignore USB Storage device temporarily" />
        <author>
            <name>Eike Bernhardt</name>
                    </author>
    
        <published>2009-03-31T18:21:28Z</published>
        <updated>2009-03-31T18:21:28Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=144</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=144</wfw:commentRss>
    
    
        <id>http://unorganized.net/blog/archives/144-guid.html</id>
        <title type="html">OS X: Ignore USB Storage device temporarily</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                	<p>I needed to ignore an <span class="caps">USB</span> storage device, or at least disable the automount feature for it, because I wanted the <span class="caps">USB</span> device to be available for VirtualBox.</p>

	<p>There does not seem to be an device-specific ignore functionality, but in my case it was enough to temporarily unload the <span class="caps">USB</span> storage kext:</p>

	<p><code>
sudo kextunload /System/Library/Extensions/IOUSBMassStorageClass.kext 
</code></p>

	<p><strong>This will disable all <span class="caps">USB</span> storage media temporarily!</strong></p>

	<p>When you are finished using the <span class="caps">USB</span> storage device in VirtualBox, shut it down, and then do a</p>

	<p><code>
sudo kextload /System/Library/Extensions/IOUSBMassStorageClass.kext 
</code></p>

	<p>to restore the <span class="caps">USB</span> storage functionality.</p> 
            </div>
        </content>
        <dc:subject>automount</dc:subject>
<dc:subject>disable</dc:subject>
<dc:subject>Mac</dc:subject>
<dc:subject>OS X</dc:subject>
<dc:subject>USB Storage</dc:subject>

    </entry>
    <entry>
        <link href="http://unorganized.net/blog/archives/127-Open-SSH-Connections-with-Butler.html" rel="alternate" title="Open SSH Connections with Butler" />
        <author>
            <name>Eike Bernhardt</name>
                    </author>
    
        <published>2009-01-19T20:10:28Z</published>
        <updated>2009-01-19T20:51:47Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=127</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=127</wfw:commentRss>
    
            <category scheme="http://unorganized.net/blog/categories/7-Mac" label="Mac" term="Mac" />
    
        <id>http://unorganized.net/blog/archives/127-guid.html</id>
        <title type="html">Open SSH Connections with Butler</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                	<p>How to use <a href="http://www.manytricks.com/butler/">Butler</a>, <a href="http://www.gnu.org/software/screen/screen.html">screen</a>, <span class="caps">SSH</span> and some shell Skripts to open <span class="caps">SSH</span> Connections to some servers.</p>

	<p>First, create a directory which will contain the script(s) to connect to the servers &#8211; I use <code>~/bin/Terminals</code>. In that, place a file containing the following code:</p>

<pre><code>
#!/bin/sh
exec ssh -t `basename $0` screen -DR ; exit
</code></pre>

	<p>The filename should be the servername to connect to, you can use <code>~/.ssh/config</code> to define short aliases for your servers:</p>

<pre><code>
Host myshortalias
  HostName long.hostname.tld
  User ausername
</code></pre>

	<p>This allows you to do <code>ssh myshortalias</code> to connect to the server in question. So, to connect to this server, name the file in <code>~/bin/Terminals</code> <code>myshortalias</code>.</p>

	<p>Make the <code>myshortalias</code> file executable: <code>chmod 755 myshortalias</code></p>

	<p>Try to open a connection via the <code>myshortalias</code> file: <code>./myshortalias</code> &#8212; if this fails, you problably don&#8217;t have <code>screen</code> installed on the server &#8211; I really recommend to install it.</p>

	<p>OK, if that works, disconnect from the server, and open the Butler Configuration.</p>

	<p>Expand the &#8220;Hidden&#8221; elements, if they are not visible. Select &#8220;Add File&#8221; from the plus button. Navigate to the <code>~/bin/</code> folder and select the &#8220;Terminals&#8221; folder to add it to the Butler Configuration.</p>

	<p><a class='serendipity_image_link' href='http://unorganized.net/blog/uploads/butler.png' onclick="F1 = window.open('/blog/uploads/butler.png','Zoom','height=705,width=1016,top=255,left=459.5,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes'); return false;"><!-- s9ymdb:2 --><img class="serendipity_image_left" width="110" height="76" style="float: left; border: 0px; padding-left: 5px; padding-right: 5px;" src="http://unorganized.net/blog/uploads/butler.serendipityThumb.png" alt="" /></a>Select the &#8220;Terminals&#8221; container, open the &#8220;Triggers&#8221; tab, assign a Hot Key, change mode to &#8220;Opens a menu near the mouse&#8221;.</p>

	<p><a class='serendipity_image_link' href='http://unorganized.net/blog/uploads/butler2.png' onclick="F1 = window.open('/blog/uploads/butler2.png','Zoom','height=705,width=1016,top=255,left=459.5,toolbar=no,menubar=no,location=no,resize=1,resizable=1,scrollbars=yes'); return false;"><!-- s9ymdb:3 --><img class="serendipity_image_right" width="110" height="76" style="float: right; border: 0px; padding-left: 5px; padding-right: 5px;" src="http://unorganized.net/blog/uploads/butler2.serendipityThumb.png" alt="" /></a> Select the &#8220;Terminals&#8221; folder, select the &#8220;Menu Filter&#8221; tab, change &#8216;Menus show…&#8217; to &#8220;this folder&#8217;s content with X levels of recursion&#8221;, activate &#8220;Translate subfolders into menus&#8221;. </p>

	<p>Select the &#8220;Options&#8221; tab and change the &#8216;Open with…&#8217; setting to &#8220;Terminal&#8221; (or iTerm or &#8230;).</p>

	<p>Pressing your hot key should now show a menu with the <code>myshortalias</code> script. You can add subfolders to the <code>~/bin/Terminals</code> folder to group your servers. To add a server, just copy (or even better: hard-link) the <code>myshortalias</code> file to a new name which corresponds to a <code>Host</code> config in <code>~/.ssh/config</code>.</p> 
            </div>
        </content>
        <dc:subject>butler</dc:subject>
<dc:subject>connection</dc:subject>
<dc:subject>mac</dc:subject>
<dc:subject>menu</dc:subject>
<dc:subject>screen</dc:subject>
<dc:subject>ssh</dc:subject>
<dc:subject>terminal</dc:subject>

    </entry>
    <entry>
        <link href="http://unorganized.net/blog/archives/124-Ikea-Rahmengroessen.html" rel="alternate" title="Ikea Rahmengrössen" />
        <author>
            <name>Eike Bernhardt</name>
                    </author>
    
        <published>2008-12-14T13:42:14Z</published>
        <updated>2008-12-14T14:51:31Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=124</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=124</wfw:commentRss>
    
            <category scheme="http://unorganized.net/blog/categories/11-Photography" label="Photography" term="Photography" />
    
        <id>http://unorganized.net/blog/archives/124-guid.html</id>
        <title type="html">Ikea Rahmengrössen</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                	<p>Die Grössen der <span class="caps">IKEA</span> Bilderrahmen Reslig und Ribba inklusive Passepartout-Grössen (jeweils in cm):</p>

	<h2>Reslig:</h2>

	<p><a href="http://www.ikea.com/de/de/catalog/products/10094060">http://www.ikea.com/de/de/catalog/products/10094060</a></p>

	<table>
		<tr>
			<td><strong>Grösse</strong></td>
			<td><strong>Preis</strong></td>
		</tr>
		<tr>
			<td>21&#215;30</td>
			<td>4,99</td>
		</tr>
		<tr>
			<td>30&#215;40</td>
			<td>7,99</td>
		</tr>
		<tr>
			<td>40&#215;50</td>
			<td>8,99</td>
		</tr>
		<tr>
			<td>50&#215;70</td>
			<td>12,99</td>
		</tr>
		<tr>
			<td>70&#215;100</td>
			<td>16,99</td>
		</tr>
	</table>

	<h2>Ribba:</h2>

	<p><a href="http://www.ikea.com/de/de/catalog/products/20078333">http://www.ikea.com/de/de/catalog/products/20078333</a></p>

	<table>
		<tr>
			<td><strong>Grösse</strong></td>
			<td><strong>Passepartout</strong></td>
			<td><strong>Preis</strong></td>
		</tr>
		<tr>
			<td>13&#215;18</td>
			<td>9&#215;14</td>
			<td>5,99</td>
		</tr>
		<tr>
			<td>14&#215;14&#215;4,5</td>
			<td>-</td>
			<td>6,99</td>
			<td>4,5cm tief</td>
		</tr>
		<tr>
			<td>18&#215;24</td>
			<td>12&#215;17</td>
			<td>6,99</td>
		</tr>
		<tr>
			<td>23&#215;23&#215;4,5</td>
			<td>12&#215;12</td>
			<td>9,99</td>
			<td>4,5cm tief</td>
		</tr>
		<tr>
			<td>30&#215;40</td>
			<td>20&#215;29</td>
			<td>9,99</td>
		</tr>
		<tr>
			<td>30&#215;88</td>
			<td>12&#215;17 (5*)</td>
			<td>16,99</td>
			<td>Passepartout für fünf 12&#215;17 Bilder</td>
		</tr>
		<tr>
			<td>40&#215;50</td>
			<td>29&#215;39</td>
			<td>11,99</td>
		</tr>
		<tr>
			<td>50&#215;23</td>
			<td>12&#215;17 (3*)</td>
			<td>11,99</td>
			<td>Passepartout für drei 12&#215;17 Bilder</td>
		</tr>
		<tr>
			<td>50&#215;50&#215;4,5</td>
			<td>29&#215;29</td>
			<td>15,99</td>
			<td>4,5cm tief</td>
		</tr>
		<tr>
			<td>50&#215;70</td>
			<td>39&#215;49</td>
			<td>16,99</td>
		</tr>
		<tr>
			<td>70&#215;100</td>
			<td>49&#215;69</td>
			<td>25,90</td>
		</tr>
	</table> 
            </div>
        </content>
        <dc:subject>grösse</dc:subject>
<dc:subject>ikea</dc:subject>
<dc:subject>passepartout</dc:subject>
<dc:subject>photography</dc:subject>
<dc:subject>rahmen</dc:subject>

    </entry>
    <entry>
        <link href="http://unorganized.net/blog/archives/123-Kreuzspinne.html" rel="alternate" title="Kreuzspinne" />
        <author>
            <name></name>
                    </author>
    
        <published>2008-11-20T17:44:04Z</published>
        <updated>2010-03-10T13:00:01Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=123</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=123</wfw:commentRss>
    
            <category scheme="http://unorganized.net/blog/categories/12-my-flickr-pictures" label="my flickr pictures" term="my flickr pictures" />
    
        <id>http://unorganized.net/blog/archives/123-guid.html</id>
        <title type="html">Kreuzspinne</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p><a href="http://www.flickr.com/people/eikebernhardt/">Eike Bernhardt</a> posted a photo:</p><p><a href="http://www.flickr.com/photos/eikebernhardt/3045554631/" title="Kreuzspinne"><img src="http://farm4.static.flickr.com/3223/3045554631_4d9334513c_m.jpg" width="209" height="240" alt="Kreuzspinne" /></a></p><p>Auf meinem Balkon</p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://unorganized.net/blog/archives/121-Sanddorn.html" rel="alternate" title="Sanddorn" />
        <author>
            <name></name>
                    </author>
    
        <published>2008-11-16T13:14:37Z</published>
        <updated>2010-03-10T13:00:01Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=121</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=121</wfw:commentRss>
    
            <category scheme="http://unorganized.net/blog/categories/12-my-flickr-pictures" label="my flickr pictures" term="my flickr pictures" />
    
        <id>http://unorganized.net/blog/archives/121-guid.html</id>
        <title type="html">Sanddorn</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p><a href="http://www.flickr.com/people/eikebernhardt/">Eike Bernhardt</a> posted a photo:</p><p><a href="http://www.flickr.com/photos/eikebernhardt/3034005817/" title="Sanddorn"><img src="http://farm4.static.flickr.com/3154/3034005817_086ac50e56_m.jpg" width="160" height="240" alt="Sanddorn" /></a></p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://unorganized.net/blog/archives/122-Red-Green.html" rel="alternate" title="Red Green" />
        <author>
            <name></name>
                    </author>
    
        <published>2008-11-16T13:14:28Z</published>
        <updated>2010-03-10T13:00:01Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=122</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=122</wfw:commentRss>
    
            <category scheme="http://unorganized.net/blog/categories/12-my-flickr-pictures" label="my flickr pictures" term="my flickr pictures" />
    
        <id>http://unorganized.net/blog/archives/122-guid.html</id>
        <title type="html">Red Green</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p><a href="http://www.flickr.com/people/eikebernhardt/">Eike Bernhardt</a> posted a photo:</p><p><a href="http://www.flickr.com/photos/eikebernhardt/3034842642/" title="Red Green"><img src="http://farm4.static.flickr.com/3189/3034842642_c3d6e76200_m.jpg" width="240" height="160" alt="Red Green" /></a></p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://unorganized.net/blog/archives/80-Spanien-war-schoen-....html" rel="alternate" title="Spanien war schön ..." />
        <author>
            <name>Eike Bernhardt</name>
                    </author>
    
        <published>2008-09-02T09:44:38Z</published>
        <updated>2009-04-21T14:30:24Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=80</wfw:comment>
    
        <slash:comments>2</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=80</wfw:commentRss>
    
            <category scheme="http://unorganized.net/blog/categories/1-Unorganized" label="Unorganized" term="Unorganized" />
    
        <id>http://unorganized.net/blog/archives/80-guid.html</id>
        <title type="html">Spanien war schön ...</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                	<p>Letzte Woche gabs ein wenig Spanien-Urlaub:</p>

	<p><iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.de/maps?f=d&amp;saddr=Unbekannte+Stra%C3%9Fe+%4041.898130,+2.770530&amp;daddr=C-65%2FCarretera+de+Girona+a+Sant+Feliu+de+Gu%C3%ADxols+%4041.860000,+2.885600+to:Lugar+de+Camp+Cala+Lleva+%4041.715204,+2.906748+to:Unbekannte+Stra%C3%9Fe+%4041.897810,+2.767580+to:Pla%C3%A7a+del+Remei+%4041.727624,+1.832104+to:Unbekannte+Stra%C3%9Fe+%4041.598607,+1.836049+to:Pla%C3%A7a+del+Remei+%4041.727506,+1.832028+to:Passeig+de+Llu%C3%ADs+Companys+%4041.391104,+2.181342+to:Pla%C3%A7a+del+Remei+%4041.727440,+1.831986+to:Unbekannte+Stra%C3%9Fe+%4042.188859,+3.108442+to:Carretera+de+Cadaqu%C3%A9s+al+Cap+de+Creus+%4042.319261,+3.315101+to:Riba+Nemesi+Llorens+%4042.288627,+3.277798&amp;hl=de&amp;geocode=0,41.898130,2.770530%3B0,41.860000,2.885600%3B0,41.715204,2.906748%3B0,41.897810,2.767580%3B0,41.727624,1.832104%3B0,41.598607,1.836049%3B0,41.727506,1.832028%3B0,41.391104,2.181342%3B0,41.727440,1.831986%3B0,42.188859,3.108442%3B0,42.319261,3.315101%3B0,42.288627,3.277798&amp;mra=ls&amp;dirflg=t&amp;sll=41.857288,2.568054&amp;sspn=1.184425,1.980286&amp;ie=UTF8&amp;t=h&amp;s=AARTsJpVi5HW7u2Ij2KHH5SNr1lljZ7QjA&amp;ll=41.856275,2.56836&amp;spn=1.431968,2.334595&amp;z=8&amp;output=embed"></iframe><br />
<small><a href="http://maps.google.de/maps?f=d&amp;saddr=Unbekannte+Stra%C3%9Fe+%4041.898130,+2.770530&amp;daddr=C-65%2FCarretera+de+Girona+a+Sant+Feliu+de+Gu%C3%ADxols+%4041.860000,+2.885600+to:Lugar+de+Camp+Cala+Lleva+%4041.715204,+2.906748+to:Unbekannte+Stra%C3%9Fe+%4041.897810,+2.767580+to:Pla%C3%A7a+del+Remei+%4041.727624,+1.832104+to:Unbekannte+Stra%C3%9Fe+%4041.598607,+1.836049+to:Pla%C3%A7a+del+Remei+%4041.727506,+1.832028+to:Passeig+de+Llu%C3%ADs+Companys+%4041.391104,+2.181342+to:Pla%C3%A7a+del+Remei+%4041.727440,+1.831986+to:Unbekannte+Stra%C3%9Fe+%4042.188859,+3.108442+to:Carretera+de+Cadaqu%C3%A9s+al+Cap+de+Creus+%4042.319261,+3.315101+to:Riba+Nemesi+Llorens+%4042.288627,+3.277798&amp;hl=de&amp;geocode=0,41.898130,2.770530%3B0,41.860000,2.885600%3B0,41.715204,2.906748%3B0,41.897810,2.767580%3B0,41.727624,1.832104%3B0,41.598607,1.836049%3B0,41.727506,1.832028%3B0,41.391104,2.181342%3B0,41.727440,1.831986%3B0,42.188859,3.108442%3B0,42.319261,3.315101%3B0,42.288627,3.277798&amp;mra=ls&amp;dirflg=t&amp;sll=41.857288,2.568054&amp;sspn=1.184425,1.980286&amp;ie=UTF8&amp;t=h&amp;ll=41.856275,2.56836&amp;spn=1.431968,2.334595&amp;z=8&amp;source=embed" style="color:#0000FF;text-align:left">Größere Kartenansicht</a></small></p>

	<p>Girona, Tossa de Mar (bzw. Camping Cala LLeva), Manresa, Monserrat, Barcelona-Sightseeing, Sant Pere Pescador (bzw. La Gaviota Camping), Cap de Creus und dann leider Rückflug.</p>

	<p>Cala Lleva ist ein sehr schöner Campingplatz, alles auf Terassen in einem Pinien(?)-Wald, sehr schön gelegen &#8212; und ziemlich bergig. Vier Strandbuchten, die größte westliche war sehr nett!</p>

	<p>La Gaviota ist ein kleiner, netter Campingplatz, direkt am 15km langen Sandstrand &#8212; was will man mehr?</p>

	<p>Spanien .. ich komme wieder <img src="http://unorganized.net/blog/templates/default/img/emoticons/wink.png" alt=";-)" style="display: inline; vertical-align: bottom;" class="emoticon" /><br />
Bilder folgen nach und nach auf Flickr.</p> 
            </div>
        </content>
        <dc:subject>spain</dc:subject>
<dc:subject>unorganized</dc:subject>

    </entry>
    <entry>
        <link href="http://unorganized.net/blog/archives/79-Wochenend-Fazits-....html" rel="alternate" title="Wochenend-Fazits ..." />
        <author>
            <name>Eike Bernhardt</name>
                    </author>
    
        <published>2008-08-11T06:42:03Z</published>
        <updated>2008-12-14T14:54:40Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=79</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=79</wfw:commentRss>
    
            <category scheme="http://unorganized.net/blog/categories/11-Photography" label="Photography" term="Photography" />
    
        <id>http://unorganized.net/blog/archives/79-guid.html</id>
        <title type="html">Wochenend-Fazits ...</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                	<p><strong>Man kann an einem Abend dank Digital-Kamera 611 Fotos schiessen</strong> <br />
Man muss dann allerdings auch 611 Fotos sichten und bewerten</p>

	<p><strong>Man kann dank Digital-Kamera die 611 Bilder nachbearbeiten</strong><br />
Dummerweise entwickelt man auch den Ehrgeiz, alle 611 Bilder nachzubearbeiten</p>

	<p>Erstaunlicherweise wurden die Bilder alle auf einem Akkusatz gemacht, sowohl der Kamera-Akku als auch die Eneloops im Blitz haben durchgehalten!</p> 
            </div>
        </content>
        <dc:subject>photography</dc:subject>

    </entry>
    <entry>
        <link href="http://unorganized.net/blog/archives/101-Auf-der-Mauer-....html" rel="alternate" title="Auf der Mauer ..." />
        <author>
            <name>Eike Bernhardt</name>
                    </author>
    
        <published>2008-06-25T09:40:49Z</published>
        <updated>2008-12-14T14:54:49Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=101</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=101</wfw:commentRss>
    
            <category scheme="http://unorganized.net/blog/categories/12-my-flickr-pictures" label="my flickr pictures" term="my flickr pictures" />
    
        <id>http://unorganized.net/blog/archives/101-guid.html</id>
        <title type="html">Auf der Mauer ...</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p><a href="http://www.flickr.com/people/eikebernhardt/">Eike Bernhardt</a> posted a photo:</p><p><a href="http://www.flickr.com/photos/eikebernhardt/2609442963/" title="Auf der Mauer ..."><img src="http://farm4.static.flickr.com/3204/2609442963_3fdcc783d0_m.jpg" width="240" height="160" alt="Auf der Mauer ..." /></a></p><p>... wächst hier einiges.</p> 
            </div>
        </content>
        
    </entry>
    <entry>
        <link href="http://unorganized.net/blog/archives/128-Auf-der-Mauer-....html" rel="alternate" title="Auf der Mauer ..." />
        <author>
            <name></name>
                    </author>
    
        <published>2008-06-25T09:40:49Z</published>
        <updated>2008-06-25T09:40:49Z</updated>
        <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=128</wfw:comment>
    
        <slash:comments>0</slash:comments>
        <wfw:commentRss>http://unorganized.net/blog/rss.php?version=atom1.0&amp;type=comments&amp;cid=128</wfw:commentRss>
    
            <category scheme="http://unorganized.net/blog/categories/12-my-flickr-pictures" label="my flickr pictures" term="my flickr pictures" />
    
        <id>http://unorganized.net/blog/archives/128-guid.html</id>
        <title type="html">Auf der Mauer ...</title>
        <content type="xhtml" xml:base="http://unorganized.net/blog/">
            <div xmlns="http://www.w3.org/1999/xhtml">
                <p><a href="http://www.flickr.com/people/eikebernhardt/">Eike Bernhardt</a> posted a photo:</p><p><a href="http://www.flickr.com/photos/eikebernhardt/2609442963/" title="Auf der Mauer ..."><img src="http://farm4.static.flickr.com/3204/2609442963_3fdcc783d0_m.jpg" width="240" height="160" alt="Auf der Mauer ..." /></a></p><p>... wächst hier einiges.</p> 
            </div>
        </content>
        
    </entry>

</feed>