<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>unorganized.net</title>
    <link>http://unorganized.net/blog/</link>
    <description>directly from the brain of Eike Bernhardt</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.5.3 - http://www.s9y.org/</generator>
    
    

<item>
    <title>OS X: Ignore USB Storage device temporarily</title>
    <link>http://unorganized.net/blog/archives/144-OS-X-Ignore-USB-Storage-device-temporarily.html</link>
    
    <comments>http://unorganized.net/blog/archives/144-OS-X-Ignore-USB-Storage-device-temporarily.html#comments</comments>
    <wfw:comment>http://unorganized.net/blog/wfwcomment.php?cid=144</wfw:comment>

    <slash:comments>3</slash:comments>
    <wfw:commentRss>http://unorganized.net/blog/rss.php?version=2.0&amp;type=comments&amp;cid=144</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    	&lt;p&gt;I needed to ignore an &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; storage device, or at least disable the automount feature for it, because I wanted the &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; device to be available for VirtualBox.&lt;/p&gt;

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

	&lt;p&gt;&lt;code&gt;
sudo kextunload /System/Library/Extensions/IOUSBMassStorageClass.kext 
&lt;/code&gt;&lt;/p&gt;

	&lt;p&gt;&lt;strong&gt;This will disable all &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; storage media temporarily!&lt;/strong&gt;&lt;/p&gt;

	&lt;p&gt;When you are finished using the &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; storage device in VirtualBox, shut it down, and then do a&lt;/p&gt;

	&lt;p&gt;&lt;code&gt;
sudo kextload /System/Library/Extensions/IOUSBMassStorageClass.kext 
&lt;/code&gt;&lt;/p&gt;

	&lt;p&gt;to restore the &lt;span class=&quot;caps&quot;&gt;USB&lt;/span&gt; storage functionality.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Tue, 31 Mar 2009 20:21:28 +0200</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/144-guid.html</guid>
    <category>automount</category>
<category>disable</category>
<category>Mac</category>
<category>OS X</category>
<category>USB Storage</category>

</item>
<item>
    <title>Open SSH Connections with Butler</title>
    <link>http://unorganized.net/blog/archives/127-Open-SSH-Connections-with-Butler.html</link>
            <category>Mac</category>
    
    <comments>http://unorganized.net/blog/archives/127-Open-SSH-Connections-with-Butler.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=127</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    	&lt;p&gt;How to use &lt;a href=&quot;http://www.manytricks.com/butler/&quot;&gt;Butler&lt;/a&gt;, &lt;a href=&quot;http://www.gnu.org/software/screen/screen.html&quot;&gt;screen&lt;/a&gt;, &lt;span class=&quot;caps&quot;&gt;SSH&lt;/span&gt; and some shell Skripts to open &lt;span class=&quot;caps&quot;&gt;SSH&lt;/span&gt; Connections to some servers.&lt;/p&gt;

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

&lt;pre&gt;&lt;code&gt;
#!/bin/sh
exec ssh -t `basename $0` screen -DR ; exit
&lt;/code&gt;&lt;/pre&gt;

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

&lt;pre&gt;&lt;code&gt;
Host myshortalias
  HostName long.hostname.tld
  User ausername
&lt;/code&gt;&lt;/pre&gt;

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

	&lt;p&gt;Make the &lt;code&gt;myshortalias&lt;/code&gt; file executable: &lt;code&gt;chmod 755 myshortalias&lt;/code&gt;&lt;/p&gt;

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

	&lt;p&gt;OK, if that works, disconnect from the server, and open the Butler Configuration.&lt;/p&gt;

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

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

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

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

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

    <pubDate>Mon, 19 Jan 2009 21:10:28 +0100</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/127-guid.html</guid>
    <category>butler</category>
<category>connection</category>
<category>mac</category>
<category>menu</category>
<category>screen</category>
<category>ssh</category>
<category>terminal</category>

</item>
<item>
    <title>Ikea Rahmengrössen</title>
    <link>http://unorganized.net/blog/archives/124-Ikea-Rahmengroessen.html</link>
            <category>Photography</category>
    
    <comments>http://unorganized.net/blog/archives/124-Ikea-Rahmengroessen.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=124</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    	&lt;p&gt;Die Grössen der &lt;span class=&quot;caps&quot;&gt;IKEA&lt;/span&gt; Bilderrahmen Reslig und Ribba inklusive Passepartout-Grössen (jeweils in cm):&lt;/p&gt;

	&lt;h2&gt;Reslig:&lt;/h2&gt;

	&lt;p&gt;&lt;a href=&quot;http://www.ikea.com/de/de/catalog/products/10094060&quot;&gt;http://www.ikea.com/de/de/catalog/products/10094060&lt;/a&gt;&lt;/p&gt;

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

	&lt;h2&gt;Ribba:&lt;/h2&gt;

	&lt;p&gt;&lt;a href=&quot;http://www.ikea.com/de/de/catalog/products/20078333&quot;&gt;http://www.ikea.com/de/de/catalog/products/20078333&lt;/a&gt;&lt;/p&gt;

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

    <pubDate>Sun, 14 Dec 2008 14:42:14 +0100</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/124-guid.html</guid>
    <category>grösse</category>
<category>ikea</category>
<category>passepartout</category>
<category>photography</category>
<category>rahmen</category>

</item>
<item>
    <title>Kreuzspinne</title>
    <link>http://unorganized.net/blog/archives/123-Kreuzspinne.html</link>
            <category>my flickr pictures</category>
    
    <comments>http://unorganized.net/blog/archives/123-Kreuzspinne.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=123</wfw:commentRss>
    

    <author>nospam@example.com ()</author>
    <content:encoded>
    &lt;p&gt;&lt;a href=&quot;http://www.flickr.com/people/eikebernhardt/&quot;&gt;Eike Bernhardt&lt;/a&gt; posted a photo:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/eikebernhardt/3045554631/&quot; title=&quot;Kreuzspinne&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3223/3045554631_4d9334513c_m.jpg&quot; width=&quot;209&quot; height=&quot;240&quot; alt=&quot;Kreuzspinne&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;Auf meinem Balkon&lt;/p&gt; 
    </content:encoded>

    <pubDate>Thu, 20 Nov 2008 18:44:04 +0100</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/123-guid.html</guid>
    
</item>
<item>
    <title>Sanddorn</title>
    <link>http://unorganized.net/blog/archives/121-Sanddorn.html</link>
            <category>my flickr pictures</category>
    
    <comments>http://unorganized.net/blog/archives/121-Sanddorn.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=121</wfw:commentRss>
    

    <author>nospam@example.com ()</author>
    <content:encoded>
    &lt;p&gt;&lt;a href=&quot;http://www.flickr.com/people/eikebernhardt/&quot;&gt;Eike Bernhardt&lt;/a&gt; posted a photo:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/eikebernhardt/3034005817/&quot; title=&quot;Sanddorn&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3154/3034005817_086ac50e56_m.jpg&quot; width=&quot;160&quot; height=&quot;240&quot; alt=&quot;Sanddorn&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sun, 16 Nov 2008 14:14:37 +0100</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/121-guid.html</guid>
    
</item>
<item>
    <title>Red Green</title>
    <link>http://unorganized.net/blog/archives/122-Red-Green.html</link>
            <category>my flickr pictures</category>
    
    <comments>http://unorganized.net/blog/archives/122-Red-Green.html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=122</wfw:commentRss>
    

    <author>nospam@example.com ()</author>
    <content:encoded>
    &lt;p&gt;&lt;a href=&quot;http://www.flickr.com/people/eikebernhardt/&quot;&gt;Eike Bernhardt&lt;/a&gt; posted a photo:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/eikebernhardt/3034842642/&quot; title=&quot;Red Green&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3189/3034842642_c3d6e76200_m.jpg&quot; width=&quot;240&quot; height=&quot;160&quot; alt=&quot;Red Green&quot; /&gt;&lt;/a&gt;&lt;/p&gt; 
    </content:encoded>

    <pubDate>Sun, 16 Nov 2008 14:14:28 +0100</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/122-guid.html</guid>
    
</item>
<item>
    <title>Spanien war schön ...</title>
    <link>http://unorganized.net/blog/archives/80-Spanien-war-schoen-....html</link>
            <category>Unorganized</category>
    
    <comments>http://unorganized.net/blog/archives/80-Spanien-war-schoen-....html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=80</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    	&lt;p&gt;Letzte Woche gabs ein wenig Spanien-Urlaub:&lt;/p&gt;

	&lt;p&gt;&lt;iframe width=&quot;425&quot; height=&quot;350&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot; src=&quot;http://maps.google.de/maps?f=d&amp;amp;saddr=Unbekannte+Stra%C3%9Fe+%4041.898130,+2.770530&amp;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;amp;hl=de&amp;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;amp;mra=ls&amp;amp;dirflg=t&amp;amp;sll=41.857288,2.568054&amp;amp;sspn=1.184425,1.980286&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;s=AARTsJpVi5HW7u2Ij2KHH5SNr1lljZ7QjA&amp;amp;ll=41.856275,2.56836&amp;amp;spn=1.431968,2.334595&amp;amp;z=8&amp;amp;output=embed&quot;&gt;&lt;/iframe&gt;&lt;br /&gt;
&lt;small&gt;&lt;a href=&quot;http://maps.google.de/maps?f=d&amp;amp;saddr=Unbekannte+Stra%C3%9Fe+%4041.898130,+2.770530&amp;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;amp;hl=de&amp;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;amp;mra=ls&amp;amp;dirflg=t&amp;amp;sll=41.857288,2.568054&amp;amp;sspn=1.184425,1.980286&amp;amp;ie=UTF8&amp;amp;t=h&amp;amp;ll=41.856275,2.56836&amp;amp;spn=1.431968,2.334595&amp;amp;z=8&amp;amp;source=embed&quot; style=&quot;color:#0000FF;text-align:left&quot;&gt;Größere Kartenansicht&lt;/a&gt;&lt;/small&gt;&lt;/p&gt;

	&lt;p&gt;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.&lt;/p&gt;

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

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

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

    <pubDate>Tue, 02 Sep 2008 11:44:38 +0200</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/80-guid.html</guid>
    <category>spain</category>
<category>unorganized</category>

</item>
<item>
    <title>Wochenend-Fazits ...</title>
    <link>http://unorganized.net/blog/archives/79-Wochenend-Fazits-....html</link>
            <category>Photography</category>
    
    <comments>http://unorganized.net/blog/archives/79-Wochenend-Fazits-....html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=79</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    	&lt;p&gt;&lt;strong&gt;Man kann an einem Abend dank Digital-Kamera 611 Fotos schiessen&lt;/strong&gt; &lt;br /&gt;
Man muss dann allerdings auch 611 Fotos sichten und bewerten&lt;/p&gt;

	&lt;p&gt;&lt;strong&gt;Man kann dank Digital-Kamera die 611 Bilder nachbearbeiten&lt;/strong&gt;&lt;br /&gt;
Dummerweise entwickelt man auch den Ehrgeiz, alle 611 Bilder nachzubearbeiten&lt;/p&gt;

	&lt;p&gt;Erstaunlicherweise wurden die Bilder alle auf einem Akkusatz gemacht, sowohl der Kamera-Akku als auch die Eneloops im Blitz haben durchgehalten!&lt;/p&gt; 
    </content:encoded>

    <pubDate>Mon, 11 Aug 2008 08:42:03 +0200</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/79-guid.html</guid>
    <category>photography</category>

</item>
<item>
    <title>Auf der Mauer ...</title>
    <link>http://unorganized.net/blog/archives/101-Auf-der-Mauer-....html</link>
            <category>my flickr pictures</category>
    
    <comments>http://unorganized.net/blog/archives/101-Auf-der-Mauer-....html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=101</wfw:commentRss>
    

    <author>nospam@example.com (Eike Bernhardt)</author>
    <content:encoded>
    &lt;p&gt;&lt;a href=&quot;http://www.flickr.com/people/eikebernhardt/&quot;&gt;Eike Bernhardt&lt;/a&gt; posted a photo:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/eikebernhardt/2609442963/&quot; title=&quot;Auf der Mauer ...&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3204/2609442963_3fdcc783d0_m.jpg&quot; width=&quot;240&quot; height=&quot;160&quot; alt=&quot;Auf der Mauer ...&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;... wächst hier einiges.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 25 Jun 2008 11:40:49 +0200</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/101-guid.html</guid>
    
</item>
<item>
    <title>Auf der Mauer ...</title>
    <link>http://unorganized.net/blog/archives/128-Auf-der-Mauer-....html</link>
            <category>my flickr pictures</category>
    
    <comments>http://unorganized.net/blog/archives/128-Auf-der-Mauer-....html#comments</comments>
    <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=2.0&amp;type=comments&amp;cid=128</wfw:commentRss>
    

    <author>nospam@example.com ()</author>
    <content:encoded>
    &lt;p&gt;&lt;a href=&quot;http://www.flickr.com/people/eikebernhardt/&quot;&gt;Eike Bernhardt&lt;/a&gt; posted a photo:&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://www.flickr.com/photos/eikebernhardt/2609442963/&quot; title=&quot;Auf der Mauer ...&quot;&gt;&lt;img src=&quot;http://farm4.static.flickr.com/3204/2609442963_3fdcc783d0_m.jpg&quot; width=&quot;240&quot; height=&quot;160&quot; alt=&quot;Auf der Mauer ...&quot; /&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;... wächst hier einiges.&lt;/p&gt; 
    </content:encoded>

    <pubDate>Wed, 25 Jun 2008 11:40:49 +0200</pubDate>
    <guid isPermaLink="false">http://unorganized.net/blog/archives/128-guid.html</guid>
    
</item>

</channel>
</rss>