<?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>unorganized.net</title>
	<atom:link href="http://unorganized.net/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://unorganized.net/blog</link>
	<description>directly from the brain of Eike Bernhardt</description>
	<lastBuildDate>Fri, 16 Dec 2011 08:56:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Mongoid Cache Sweeper</title>
		<link>http://unorganized.net/blog/2011/10/28/mongoid-cache-sweeper/</link>
		<comments>http://unorganized.net/blog/2011/10/28/mongoid-cache-sweeper/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 11:32:37 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Ruby on Rails]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[mongoid]]></category>
		<category><![CDATA[observer]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://unorganized.net/blog/?p=695</guid>
		<description><![CDATA[I just needed to add a Cache Sweeper in a Rails 3.1 app for a Mongoid model. Using a ActionController::Caching::Sweeper didn&#8217;t run for updates on the models (even though it should work for non-Mongoid-models), so I ended up using a Mongoid::Observer to invalidate the cache when a model was updated. To seperate the observers from the models, I created a [...]]]></description>
			<content:encoded><![CDATA[<p>I just needed to add a Cache Sweeper in a Rails 3.1 app for a <a href="http://mongoid.org/">Mongoid</a> model.</p>
<p>Using a <a href="http://guides.rubyonrails.org/caching_with_rails.html#sweepers">ActionController::Caching::Sweeper</a> didn&#8217;t run for updates on the models (even though it should work for non-Mongoid-models), so I ended up using a <a href="http://mongoid.org/docs/callbacks/observers.html">Mongoid::Observer</a> to invalidate the cache when a model was updated.</p>
<p>To seperate the observers from the models, I created a <code>app/observers</code> directory and used the following code to automatically load the observers:</p>
<pre class="brush: rails; gutter: true"># mongoid observers/sweepers
config.mongoid.observers = Dir[&quot;#{config.root}/app/observers/*.rb&quot;].collect do |full_name|
  File.basename(full_name,&#039;.rb&#039;).to_sym
end</pre>
<p>This is the <code>app/observers/city_observer.rb</code> file:</p>
<pre class="brush: rails; gutter: true">class CityObserver &lt; Mongoid::Observer
  def after_create(city)
    expire_cache_for(city)
  end

  def after_update(city)
    expire_cache_for(city)
  end

  def after_destroy(city)
    expire_cache_for(city)
  end

  private

  def expire_cache_for(city)
    # expire fragments/pages for city
    @c ||= ActionController::Base.new

    @c.expire_fragment(&quot;city_#{city.id.to_s}&quot;)
    if city.state.present?
      @c.expire_fragment(&quot;state_#{city.state.id.to_s}&quot;)
    end
    if city.country.present?
      @c.expire_fragment(&quot;country_#{city.country.id.to_s}&quot;)
    end

    # and expire the continent page cache
    @c.expire_page(&quot;/continents/#{city.country.continent.slug}&quot;)
  end
end</pre>
<p lang="ruby">Since the <code>expire_fragment</code>/<code>expire_page</code> functions are not defined in the observer, I create a <code>ActionController::Base</code> object to call them on that.</p>
<p lang="ruby">With this, a model update expires cached pages</p>
]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2011/10/28/mongoid-cache-sweeper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X: Ignore USB Storage device temporarily</title>
		<link>http://unorganized.net/blog/2009/03/31/os-x-ignore-usb-storage-device-temporarily/</link>
		<comments>http://unorganized.net/blog/2009/03/31/os-x-ignore-usb-storage-device-temporarily/#comments</comments>
		<pubDate>Tue, 31 Mar 2009 18:21:28 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://unorganized.net/wp/?p=527</guid>
		<description><![CDATA[I needed to ignore an USB storage device, or at least disable the automount feature for it, because I wanted the USB device to be available for VirtualBox. There does not seem to be an device-specific ignore functionality, but in my case it was enough to temporarily unload the USB storage kext: sudo kextunload /System/Library/Extensions/IOUSBMassStorageClass.kext [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to ignore an USB storage device, or at least disable the automount feature for it, because I wanted the USB device to be available for VirtualBox.<br />
There does not seem to be an device-specific ignore functionality, but in my case it was enough to temporarily unload the USB storage kext:<br />
<code><br />
sudo kextunload /System/Library/Extensions/IOUSBMassStorageClass.kext<br />
</code><br />
<strong>This will disable all USB storage media temporarily!</strong><br />
When you are finished using the USB storage device in VirtualBox, shut it down, and then do a<br />
<code><br />
sudo kextload /System/Library/Extensions/IOUSBMassStorageClass.kext<br />
</code><br />
to restore the USB storage functionality.</p>
]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2009/03/31/os-x-ignore-usb-storage-device-temporarily/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Open SSH Connections with Butler</title>
		<link>http://unorganized.net/blog/2009/01/19/open-ssh-connections-with-butler/</link>
		<comments>http://unorganized.net/blog/2009/01/19/open-ssh-connections-with-butler/#comments</comments>
		<pubDate>Mon, 19 Jan 2009 20:10:28 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://unorganized.net/wp/?p=526</guid>
		<description><![CDATA[How to use Butler, screen, SSH and some shell Skripts to open SSH Connections to some servers. First, create a directory which will contain the script(s) to connect to the servers &#8211; I use ~/bin/Terminals. In that, place a file containing the following code: #!/bin/bash exec ssh -t `basename $BASH_SOURCE` screen -DR ; exit The [...]]]></description>
			<content:encoded><![CDATA[<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>, SSH and some shell Skripts to open SSH Connections to some servers.<br />
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 class="brush: bash; gutter: true; first-line: 1; highlight: []; html-script: false">
#!/bin/bash
exec ssh -t `basename $BASH_SOURCE` screen -DR ; exit
</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 class="brush: text; gutter: true; first-line: 1; highlight: []; html-script: false">Host myshortalias HostName long.hostname.tld User ausername</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>.<br />
Make the <code>myshortalias</code> file executable: <code>chmod 755 myshortalias</code><br />
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.<br />
OK, if that works, disconnect from the server, and open the Butler Configuration.<br />
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.<br />
<a class="serendipity_image_link" 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;" href="/blog/uploads/butler.png"><!-- s9ymdb:2 --><img class="serendipity_image_left" style="float: left; border: 0px; padding-left: 5px; padding-right: 5px;" src="/blog/uploads/butler.serendipityThumb.png" alt="" width="110" height="76" /></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;.<br />
<a class="serendipity_image_link" 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;" href="/blog/uploads/butler2.png"><!-- s9ymdb:3 --><img class="serendipity_image_right" style="float: right; border: 0px; padding-left: 5px; padding-right: 5px;" src="/blog/uploads/butler2.serendipityThumb.png" alt="" width="110" height="76" /></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;.<br />
Select the &#8220;Options&#8221; tab and change the &#8216;Open withâ¦&#8217; setting to &#8220;Terminal&#8221; (or iTerm or &#8230;).<br />
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>
]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2009/01/19/open-ssh-connections-with-butler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ikea Rahmengrössen</title>
		<link>http://unorganized.net/blog/2008/12/14/ikea-rahmengrossen/</link>
		<comments>http://unorganized.net/blog/2008/12/14/ikea-rahmengrossen/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 13:42:14 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://unorganized.net/wp/?p=524</guid>
		<description><![CDATA[Die Gr&#246;ssen der IKEA Bilderrahmen Reslig und Ribba inklusive Passepartout-Gr&#246;ssen (jeweils in cm): h2. Reslig: http://www.ikea.com/de/de/catalog/products/10094060 &#124;*Gr&#246;sse*&#124;*Preis*&#124; &#124;21&#215;30&#124;4,99&#124; &#124;30&#215;40&#124;7,99&#124; &#124;40&#215;50&#124;8,99&#124; &#124;50&#215;70&#124;12,99&#124; &#124;70&#215;100&#124;16,99&#124; h2. Ribba: http://www.ikea.com/de/de/catalog/products/20078333 &#124;*Gr&#246;sse*&#124;*Passepartout*&#124;*Preis*&#124; &#124;13&#215;18&#124;9&#215;14&#124;5,99&#124; &#124;14&#215;14&#215;4,5&#124;-&#124;6,99&#124;4,5cm tief&#124; &#124;18&#215;24&#124;12&#215;17&#124;6,99&#124; &#124;23&#215;23&#215;4,5&#124;12&#215;12&#124;9,99&#124;4,5cm tief&#124; &#124;30&#215;40&#124;20&#215;29&#124;9,99&#124; &#124;30&#215;88&#124;12&#215;17 (5*)&#124;16,99&#124;Passepartout f&#252;r f&#252;nf 12&#215;17 Bilder&#124; &#124;40&#215;50&#124;29&#215;39&#124;11,99&#124; &#124;50&#215;23&#124;12&#215;17 (3*)&#124;11,99&#124;Passepartout f&#252;r drei 12&#215;17 Bilder&#124; &#124;50&#215;50&#215;4,5&#124;29&#215;29&#124;15,99&#124;4,5cm tief&#124; &#124;50&#215;70&#124;39&#215;49&#124;16,99&#124; &#124;70&#215;100&#124;49&#215;69&#124;25,90&#124;]]></description>
			<content:encoded><![CDATA[	<p>Die Gr&#246;ssen der <span class="caps">IKEA </span>Bilderrahmen Reslig und Ribba inklusive Passepartout-Gr&#246;ssen (jeweils in cm):<br />
h2. Reslig:<br />
<a href="http://www.ikea.com/de/de/catalog/products/10094060" title="">http://www.ikea.com/de/de/catalog/products/10094060</a><br />
|*Gr&#246;sse*|*Preis*|<br />
|21&#215;30|4,99|<br />
|30&#215;40|7,99|<br />
|40&#215;50|8,99|<br />
|50&#215;70|12,99|<br />
|70&#215;100|16,99|<br />
h2. Ribba:<br />
<a href="http://www.ikea.com/de/de/catalog/products/20078333" title="">http://www.ikea.com/de/de/catalog/products/20078333</a><br />
|*Gr&#246;sse*|*Passepartout*|*Preis*|<br />
|13&#215;18|9&#215;14|5,99|<br />
|14&#215;14&#215;4,5|-|6,99|4,5cm tief|<br />
|18&#215;24|12&#215;17|6,99|<br />
|23&#215;23&#215;4,5|12&#215;12|9,99|4,5cm tief|<br />
|30&#215;40|20&#215;29|9,99|<br />
|30&#215;88|12&#215;17 (5*)|16,99|Passepartout f&#252;r f&#252;nf 12&#215;17 Bilder|<br />
|40&#215;50|29&#215;39|11,99|<br />
|50&#215;23|12&#215;17 (3*)|11,99|Passepartout f&#252;r drei 12&#215;17 Bilder|<br />
|50&#215;50&#215;4,5|29&#215;29|15,99|4,5cm tief|<br />
|50&#215;70|39&#215;49|16,99|<br />
|70&#215;100|49&#215;69|25,90|</p>
 ]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2008/12/14/ikea-rahmengrossen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kreuzspinne</title>
		<link>http://unorganized.net/blog/2008/11/20/kreuzspinne/</link>
		<comments>http://unorganized.net/blog/2008/11/20/kreuzspinne/#comments</comments>
		<pubDate>Thu, 20 Nov 2008 17:44:04 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[my flickr pictures]]></category>

		<guid isPermaLink="false">http://unorganized.net/wp/?p=523</guid>
		<description><![CDATA[Eike Bernhardt posted a photo: Auf meinem Balkon]]></description>
			<content:encoded><![CDATA[<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>
]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2008/11/20/kreuzspinne/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sanddorn</title>
		<link>http://unorganized.net/blog/2008/11/16/sanddorn/</link>
		<comments>http://unorganized.net/blog/2008/11/16/sanddorn/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 13:14:37 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[my flickr pictures]]></category>

		<guid isPermaLink="false">http://unorganized.net/wp/?p=521</guid>
		<description><![CDATA[Eike Bernhardt posted a photo:]]></description>
			<content:encoded><![CDATA[<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>
]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2008/11/16/sanddorn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Red Green</title>
		<link>http://unorganized.net/blog/2008/11/16/red-green/</link>
		<comments>http://unorganized.net/blog/2008/11/16/red-green/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 13:14:28 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[my flickr pictures]]></category>

		<guid isPermaLink="false">http://unorganized.net/wp/?p=522</guid>
		<description><![CDATA[Eike Bernhardt posted a photo:]]></description>
			<content:encoded><![CDATA[<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>
]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2008/11/16/red-green/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spanien war schön &#8230;</title>
		<link>http://unorganized.net/blog/2008/09/02/spanien-war-schon/</link>
		<comments>http://unorganized.net/blog/2008/09/02/spanien-war-schon/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 09:44:38 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[Unorganized]]></category>

		<guid isPermaLink="false">http://unorganized.net/wp/?p=500</guid>
		<description><![CDATA[Letzte Woche gabs ein wenig Spanien-Urlaub: Grössere Kartenansicht 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. 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, [...]]]></description>
			<content:encoded><![CDATA[<p>Letzte Woche gabs ein wenig Spanien-Urlaub:<br />
<iframe 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" frameborder="0" marginwidth="0" marginheight="0" scrolling="no" width="425" height="350"></iframe><br />
<small><a style="color: #0000ff; text-align: left;" 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">Grössere Kartenansicht</a></small><br />
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.<br />
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!<br />
La Gaviota ist ein kleiner, netter Campingplatz, direkt am 15km langen Sandstrand &#8212; was will man mehr?<br />
Spanien .. ich komme wieder <img src='http://unorganized.net/blog/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
Bilder folgen nach und nach auf Flickr.</p>
]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2008/09/02/spanien-war-schon/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Wochenend-Fazits &#8230;</title>
		<link>http://unorganized.net/blog/2008/08/11/wochenend-fazits/</link>
		<comments>http://unorganized.net/blog/2008/08/11/wochenend-fazits/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 06:42:03 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://unorganized.net/wp/?p=499</guid>
		<description><![CDATA[Man kann an einem Abend dank Digital-Kamera 611 Fotos schiessen Man muss dann allerdings auch 611 Fotos sichten und bewerten Man kann dank Digital-Kamera die 611 Bilder nachbearbeiten Dummerweise entwickelt man auch den Ehrgeiz, alle 611 Bilder nachzubearbeiten Erstaunlicherweise wurden die Bilder alle auf einem Akkusatz gemacht, sowohl der Kamera-Akku als auch die Eneloops im [...]]]></description>
			<content:encoded><![CDATA[	<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<br />
<strong>Man kann dank Digital-Kamera die 611 Bilder nachbearbeiten</strong><br />
Dummerweise entwickelt man auch den Ehrgeiz, alle 611 Bilder nachzubearbeiten<br />
Erstaunlicherweise wurden die Bilder alle auf einem Akkusatz gemacht, sowohl der Kamera-Akku als auch die Eneloops im Blitz haben durchgehalten!</p>

 ]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2008/08/11/wochenend-fazits/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auf der Mauer &#8230;</title>
		<link>http://unorganized.net/blog/2008/06/25/auf-der-mauer/</link>
		<comments>http://unorganized.net/blog/2008/06/25/auf-der-mauer/#comments</comments>
		<pubDate>Wed, 25 Jun 2008 09:40:49 +0000</pubDate>
		<dc:creator>eike</dc:creator>
				<category><![CDATA[my flickr pictures]]></category>

		<guid isPermaLink="false">http://unorganized.net/wp/?p=501</guid>
		<description><![CDATA[Eike Bernhardt posted a photo: &#8230; wächst hier einiges.]]></description>
			<content:encoded><![CDATA[<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>&#8230; wächst hier einiges.</p>
]]></content:encoded>
			<wfw:commentRss>http://unorganized.net/blog/2008/06/25/auf-der-mauer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

