<?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>dopefish.de</title>
	<atom:link href="http://www.dopefish.de/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dopefish.de</link>
	<description>Headquaters of the evil genius</description>
	<lastBuildDate>Wed, 01 Sep 2010 20:45:24 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1-alpha</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>XEN 3.4 with ipv6 routing</title>
		<link>http://www.dopefish.de/archives/704</link>
		<comments>http://www.dopefish.de/archives/704#comments</comments>
		<pubDate>Wed, 01 Sep 2010 20:41:54 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Internet Stuff]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[ipv6]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[routing]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=704</guid>
		<description><![CDATA[Yes, there are a few postings out there about getting ipv6 routing running with XEN. But I&#8217;ll throw this online anyway since there are a few changes I had to make for it to work on my server. This text is intended for people who know their way around Linux and XEN so it will [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/704&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>Yes, there are a few postings out there about getting ipv6 routing running with XEN. But I&#8217;ll throw this online anyway since there are a few changes I had to make for it to work on my server. This text is intended for people who know their way around Linux and XEN so it will be a bit technical and won&#8217;t spell out every single step you have to make. </p>
<p>Most of the changes are based off scripts and information from <a href="http://notes.benv.junerules.com/all/software/xen-and-routed-ipv6/">BenV</a> and <a href="http://wnagele.com/2010/07/13/ipv6-and-xen-on-a-hetzner-hosted-system/">wnagele</a> (latter is interesting for me since I am also running XEN on a hetzner server). Have a look at the two links if anything is unclear. Now let&#8217;s start the fun <img src='http://www.dopefish.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>First of all we need IPv6 up and running on the host (dom0). Add the IP and gateway to your /etc/network/interfaces<br />
This is what mine looks like:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Text"><div class="devcodeoverflow"><ol><li>iface eth0 inet6 static</li><li>&nbsp;&nbsp;address&nbsp;&nbsp;&nbsp;&nbsp; 2a01:4f8:100:1123::2</li><li>&nbsp;&nbsp;netmask&nbsp;&nbsp;&nbsp;&nbsp; 64</li><li>&nbsp;&nbsp;gateway&nbsp;&nbsp;&nbsp;&nbsp; 2a01:4f8:100:1120::1</li><li>&nbsp;&nbsp;pre-up ip -6 route add 2a01:4f8:100:1120::1 dev eth0</li></ol></div></pre><!--END_DEVFMTCODE--><br />
Check if the IP address is responding to the outside world (e.g. with <a href="http://www.wiberg.nu/iptools.php">wiberg.nu/iptools.php</a>), if everything looks ok, proceed &#8230;<br />
Now we need to enable a few things to get routing and neighbor discovery running on the host (dom0). Edit your /etc/sysctl.conf and add/change these 2 entries (and while you are at it, set them with &#8220;sysctl -w&#8221; too):<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Text"><div class="devcodeoverflow"><ol><li>net.ipv6.conf.all.forwarding=1</li><li>net.ipv6.conf.all.proxy_ndp=1</li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>So, your host should by now be online with ipv6 and soon be able to route packets to it&#8217;s guests. By default XEN will only take care of IPv4 when a guest is created, so here is a small patchfile that adds support for IPv6: <a href="http://www.dopefish.de/files/xen-ipv6-vif-route.patch">xen-ipv6-vif-route.patch</a>. The patch changes vif-route and vif-common.sh, while these files may be in different places depending on your distribution, /etc/xen/scripts/ is where they can commonly be found. Download the patch to the directory with the scripts to be changed and execute a &#8220;patch -p0 < xen-ipv6-vif-route.patch&#8221; (vif-common.sh gets a few new IPv6 functions, and iptables now won&#8217;t try to change stuff for IPv6 IPs. vif-route changes are: ndp is enabled for the vif device and the route/neighbor IPv6 settings are set)</p>
<p>So, now that the scripts know how to setup all our IPv6 needs, we need to add the IPv6 IP to our guest settings (.cfg file typically found in /etc/xen/). What we want to change is the &#8220;vif&#8221; setting. Add the IPv6 IP of the guest to the IPv4 IP (just the IP without the trailing /network, space separated form the IPv4 IP):<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Text"><div class="devcodeoverflow"><ol><li>vif = [ 'mac=B1:A3:3F:25:11:B8, ip=2a01:4f8:100:1123::5 188.40.34.101' ]</li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Now you can create the guest(domU) and add the IPv6 IP to the /etc/network/interfaces of the guest if you haven&#8217;t so already (it uses the host (dom0) as the gateway).<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Text"><div class="devcodeoverflow"><ol><li></li><li>&nbsp;&nbsp;iface eth0 inet6 static</li><li>&nbsp;&nbsp;address&nbsp;&nbsp;&nbsp;&nbsp; 2a01:4f8:100:1123::5</li><li>&nbsp;&nbsp;netmask&nbsp;&nbsp;&nbsp;&nbsp; 64</li><li>&nbsp;&nbsp;gateway&nbsp;&nbsp;&nbsp;&nbsp; 2a01:4f8:100:1123::2</li><li></li></ol></div></pre><!--END_DEVFMTCODE--><br />
Restart the networking on the guest (or reboot it) and you should now be able to ping the guest from the internet. See, easy wasn&#8217;t it <img src='http://www.dopefish.de/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/704/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Script of the day &#8211; clean up stale .ssh/known_hosts</title>
		<link>http://www.dopefish.de/archives/702</link>
		<comments>http://www.dopefish.de/archives/702#comments</comments>
		<pubDate>Thu, 19 Aug 2010 10:24:12 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Internet Stuff]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=702</guid>
		<description><![CDATA[This little script takes an IP or hostname as a parameter, and if there is an offending key in the .ssh/known_hosts it removes it and replaces it with the current valid one useful if you are moving/reinstalling a large amount of servers &#8230; #!/bin/bash#===============================================================================#&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;FILE:&#160;&#160;ssh-cleankey.sh#&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; USAGE:&#160;&#160;./ssh-cleankey.sh &#60;ip&#124;hostname&#62;# #&#160;&#160; DESCRIPTION:&#160;&#160;deletes stale ssh known_hosts entries#===============================================================================&#160;# true or fasleVERBOSE=false&#160;#=== [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/702&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>This little script takes an IP or hostname as a parameter, and if there is an offending key in the .ssh/known_hosts it removes it and replaces it with the current valid one useful if you are moving/reinstalling a large amount of servers &#8230;</p>
<p><!--DEVFMTCODE--><pre class="devcodeblock" title="Bash"><div class="devcodeoverflow"><ol><li></li><li><span style="color: #666666; font-style: italic;">#!/bin/bash</span></li><li><span style="color: #666666; font-style: italic;">#===============================================================================</span></li><li><span style="color: #666666; font-style: italic;">#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;FILE:&nbsp;&nbsp;ssh-cleankey.sh</span></li><li><span style="color: #666666; font-style: italic;">#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; USAGE:&nbsp;&nbsp;./ssh-cleankey.sh &lt;ip|hostname&gt;</span></li><li><span style="color: #666666; font-style: italic;"># </span></li><li><span style="color: #666666; font-style: italic;">#&nbsp;&nbsp; DESCRIPTION:&nbsp;&nbsp;deletes stale ssh known_hosts entries</span></li><li><span style="color: #666666; font-style: italic;">#===============================================================================</span></li><li>&nbsp;</li><li><span style="color: #666666; font-style: italic;"># true or fasle</span></li><li><span style="color: #007800;">VERBOSE</span>=<span style="color: #c20cb9; font-weight: bold;">false</span></li><li>&nbsp;</li><li><span style="color: #666666; font-style: italic;">#=== Exit codes ================================================================</span></li><li><span style="color: #666666; font-style: italic;"># 1 - Not a valid IP or not reachable</span></li><li><span style="color: #666666; font-style: italic;">#===============================================================================</span></li><li>&nbsp;</li><li><span style="color: #666666; font-style: italic;">#===&nbsp;&nbsp;FUNCTION&nbsp;&nbsp;================================================================</span></li><li><span style="color: #666666; font-style: italic;">#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NAME:&nbsp;&nbsp;print_help</span></li><li><span style="color: #666666; font-style: italic;">#&nbsp;&nbsp; DESCRIPTION:&nbsp;&nbsp;Prints help and exits</span></li><li><span style="color: #666666; font-style: italic;">#===============================================================================</span></li><li>print_help<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #7a0874; font-weight: bold;">&#123;</span> <span style="color: #666666; font-style: italic;">#{{{</span></li><li>	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;Usage: <span style="color: #780078;">`basename $0`</span> &lt;ip|hostname&gt;&quot;</span></li><li>	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&quot;</span></li><li>	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;e.g. ./<span style="color: #780078;">`basename $0`</span> 1.2.3.4&quot;</span></li><li>	<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;&quot;</span></li><li>	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span></li><li><span style="color: #7a0874; font-weight: bold;">&#125;</span> <span style="color: #666666; font-style: italic;">#}}}</span></li><li>&nbsp;</li><li><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$#</span> <span style="color: #660033;">-eq</span> <span style="color: #000000;">1</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span></li><li><span style="color: #000000; font-weight: bold;">then</span></li><li>	<span style="color: #007800;">HOST</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">${1}</span>&quot;</span></li><li><span style="color: #000000; font-weight: bold;">else</span></li><li>	print_help</li><li><span style="color: #000000; font-weight: bold;">fi</span></li><li>&nbsp;</li><li><span style="color: #c20cb9; font-weight: bold;">ping</span> <span style="color: #660033;">-w1</span> <span style="color: #660033;">-c1</span> <span style="color: #007800;">$HOST</span> <span style="color: #000000; font-weight: bold;">&gt;/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span></li><li><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$?</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span></li><li><span style="color: #000000; font-weight: bold;">then</span></li><li>	<span style="color: #007800;">$VERBOSE</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;ERROR: <span style="color: #007800;">$HOST</span> is either not a valid IP/hostname, or is not reachable via ping&quot;</span></li><li>	<span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">1</span></li><li><span style="color: #000000; font-weight: bold;">fi</span></li><li>&nbsp;</li><li><span style="color: #007800;">Check</span>=$<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #660033;">-o</span> <span style="color: #007800;">connecttimeout</span>=<span style="color: #000000;">10</span> <span style="color: #660033;">-o</span> <span style="color: #007800;">stricthostkeychecking</span>=no <span style="color: #007800;">$HOST</span> <span style="color: #c20cb9; font-weight: bold;">true</span> <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span><span style="color: #000000; font-weight: bold;">|</span><span style="color: #c20cb9; font-weight: bold;">grep</span> <span style="color: #660033;">-c</span> <span style="color: #ff0000;">&quot;Offending key&quot;</span><span style="color: #7a0874; font-weight: bold;">&#41;</span></li><li><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #007800;">$Check</span> <span style="color: #660033;">-gt</span> <span style="color: #000000;">0</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span></li><li><span style="color: #000000; font-weight: bold;">then</span></li><li>	<span style="color: #007800;">$VERBOSE</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$HOST</span> is stale, updating known_hosts&quot;</span></li><li>	<span style="color: #c20cb9; font-weight: bold;">ssh-keygen</span> <span style="color: #660033;">-R</span> <span style="color: #007800;">$HOST</span> <span style="color: #000000; font-weight: bold;">&gt;/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span></li><li>	<span style="color: #c20cb9; font-weight: bold;">ssh</span> <span style="color: #660033;">-o</span> <span style="color: #007800;">connecttimeout</span>=<span style="color: #000000;">10</span> <span style="color: #660033;">-o</span> <span style="color: #007800;">stricthostkeychecking</span>=no <span style="color: #007800;">$HOST</span> <span style="color: #c20cb9; font-weight: bold;">true</span> <span style="color: #000000; font-weight: bold;">&gt;/</span>dev<span style="color: #000000; font-weight: bold;">/</span>null <span style="color: #000000;">2</span><span style="color: #000000; font-weight: bold;">&gt;&amp;</span><span style="color: #000000;">1</span></li><li><span style="color: #000000; font-weight: bold;">else</span></li><li>	<span style="color: #007800;">$VERBOSE</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">$HOST</span> is OK&quot;</span></li><li><span style="color: #000000; font-weight: bold;">fi</span></li><li>&nbsp;</li><li><span style="color: #7a0874; font-weight: bold;">exit</span> <span style="color: #000000;">0</span></li><li></li></ol></div></pre><!--END_DEVFMTCODE--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/702/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Checking a list of IPs against RBL</title>
		<link>http://www.dopefish.de/archives/697</link>
		<comments>http://www.dopefish.de/archives/697#comments</comments>
		<pubDate>Tue, 10 Aug 2010 09:52:07 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=697</guid>
		<description><![CDATA[This is more a reminder to myself than anything else &#8230; this is small snippet that takes a list of IPs and does a whois on all that aren&#8217;t in a RBL Lets say we have al list of IPs in a file &#8220;iplist.txt&#8221;: 12.172.121.17124.149.208.6838.105.100.958.185.207.8661.201.51.6664.78.164.169 Snippet that checks the IPs (can of course be easily [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/697&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>This is more a reminder to myself than anything else &#8230; this is small snippet that takes a list of IPs and does a whois on all that aren&#8217;t in a RBL</p>
<p>Lets say we have al list of IPs in a file &#8220;iplist.txt&#8221;:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Text"><div class="devcodeoverflow"><ol><li>12.172.121.171</li><li>24.149.208.68</li><li>38.105.100.9</li><li>58.185.207.86</li><li>61.201.51.66</li><li>64.78.164.169</li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Snippet that checks the IPs (can of course be easily changed to check IPs that are IN a RBL)<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Bash"><div class="devcodeoverflow"><ol><li><span style="color: #000000; font-weight: bold;">for</span> ip <span style="color: #000000; font-weight: bold;">in</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #c20cb9; font-weight: bold;">cat</span> iplist.txt<span style="color: #7a0874; font-weight: bold;">&#41;</span></li><li><span style="color: #000000; font-weight: bold;">do</span> </li><li>&nbsp;&nbsp;<span style="color: #7a0874; font-weight: bold;">test</span> $<span style="color: #7a0874; font-weight: bold;">&#40;</span><span style="color: #000000; font-weight: bold;">/</span>usr<span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span>rblcheck <span style="color: #660033;">-qm</span> <span style="color: #800000;">${ip}</span><span style="color: #7a0874; font-weight: bold;">&#41;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #7a0874; font-weight: bold;">continue</span> <span style="color: #000000; font-weight: bold;">||</span> <span style="color: #c20cb9; font-weight: bold;">clear</span> </li><li>&nbsp;&nbsp;whois <span style="color: #007800;">$ip</span> </li><li>&nbsp;&nbsp;<span style="color: #7a0874; font-weight: bold;">printf</span> <span style="color: #ff0000;">&quot;###########################<span style="color: #000099; font-weight: bold;">\n</span>##### %15s #####<span style="color: #000099; font-weight: bold;">\n</span>###########################<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${ip}</span>&quot;</span></li><li>&nbsp;&nbsp;<span style="color: #c20cb9; font-weight: bold;">read</span></li><li><span style="color: #000000; font-weight: bold;">done</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/697/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hiking &amp; castle ruins</title>
		<link>http://www.dopefish.de/archives/692</link>
		<comments>http://www.dopefish.de/archives/692#comments</comments>
		<pubDate>Sun, 08 Aug 2010 10:51:38 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[castle ruins]]></category>
		<category><![CDATA[hiking]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=692</guid>
		<description><![CDATA[We did a bit of hiking through the forest to castle ruins yesterday, here are the pictures &#8230; function startGallery_19() { var myGallery = new gallery($("myGallery_19"), { timed: false, showCarousel: true, showInfopane: false, showArrows: true, embedLinks: false, slideInfoZoneOpacity: 0.80, textShowCarousel: "Overview of Pictures" }); document.getElementById("myGallery_19").style.display = "block"; } window.addEvent("domready", startGallery_19); dsc_4167 dsc_4171 dsc_4181 dsc_4187 dsc_4202 [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/692&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>We did a bit of hiking through the forest to castle ruins yesterday, here are the pictures &#8230;</p>
<p><script type="text/javascript">
            function startGallery_19() { 
              var myGallery = new gallery($("myGallery_19"), {                  timed: false,         showCarousel: true,         showInfopane: false,           showArrows: true,           embedLinks: false, slideInfoZoneOpacity: 0.80, textShowCarousel: "Overview of Pictures"   });
              
              document.getElementById("myGallery_19").style.display = "block";
           }
            window.addEvent("domready", startGallery_19);
          </script>
         <div style="width: 500px; height: 375px; border:0px solid; margin:0px auto; clear:both;"><div id="myGallery_19" class="myGallery" style="display:none; width: 500px !important; height: 375px !important;"><div class="imageElement">  <h3> dsc_4167</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4167.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4167.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4167.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4171</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4171.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4171.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4171.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4181</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4181.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4181.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4181.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4187</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4187.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4187.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4187.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4202</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4202.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4202.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4202.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4188</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4188.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4188.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4188.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4190</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4190.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4190.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4190.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4191</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4191.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4191.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4191.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4204</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4204.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4204.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4204.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4193</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4193.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4193.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4193.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4205</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4205.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4205.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4205.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4208</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4208.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4208.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4208.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4209</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4209.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4209.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4209.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4213</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4213.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4213.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4213.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4214</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4214.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4214.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4214.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4218</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4218.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/dsc_4218.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_dsc_4218.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> panorama</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/burg1/panorama.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/burg1/panorama.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/burg1/thumbs/thumbs_panorama.jpg" class="thumbnail" /></div> </div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/692/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bash: using the content of a variable as variable name</title>
		<link>http://www.dopefish.de/archives/685</link>
		<comments>http://www.dopefish.de/archives/685#comments</comments>
		<pubDate>Thu, 05 Aug 2010 11:14:21 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=685</guid>
		<description><![CDATA[Since the implementation of Arrays in Bash is somewhat lacking compared to higher level programming languages (only one-dimensional), and hash lists require a bit of work to set up, you may run into a situation where you have a small list of key/value pairs that are both variable and you need to store. There are [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/685&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>Since the implementation of <a href="http://tldp.org/LDP/abs/html/arrays.html#ARRAYREF">Arrays</a> in Bash is somewhat lacking compared to higher level programming languages (only one-dimensional), and hash lists require <a href="http://tldp.org/LDP/abs/html/contributed-scripts.html#HASHEX2">a bit of work</a> to set up, you may run into a situation where you have a small list of key/value pairs that are both variable and you need to store.<br />
There are various solutions for the problem, e.g. creating two arrays (one for the keys, one for the values, and combining them by using the same index values for the entries), or using the functions from the link above to build a hash list. For me the easiest way to solve the problem, if I only have a few variables and don&#8217;t want to bloat the code, is to (mis)use <strong><a href="http://tldp.org/LDP/abs/html/declareref.html">declare</a></strong>. declare is intended for setting the type of a variable (constant, array, integer,&#8230;), but has the nice side affect that you can use variables in the key name, and you can set the value of the variable.</p>
<p>usage:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Bash"><div class="devcodeoverflow"><ol><li><span style="color: #7a0874; font-weight: bold;">declare</span> <span style="color: #800000;">${Key}</span>=<span style="color: #800000;">${Value}</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Example:<br />
$File_Config is variable holding the name of a configfile, the content of the file could look like this:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Text"><div class="devcodeoverflow"><ol><li>foo:one</li><li>bar:three</li><li>foobar:bignumber</li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>Snippet:<br />
<!--DEVFMTCODE--><pre class="devcodeblock" title="Bash"><div class="devcodeoverflow"><ol><li><span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${File_Config}</span>&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span></li><li><span style="color: #000000; font-weight: bold;">then</span></li><li>&nbsp;&nbsp;<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #c20cb9; font-weight: bold;">read</span> line</li><li>&nbsp;&nbsp;<span style="color: #000000; font-weight: bold;">do</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #007800;">Key</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">${line%%:*}</span>&quot;</span> <span style="color: #666666; font-style: italic;"># chop off everything after the first :</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #007800;">Value</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">${line#*:}</span>&quot;</span> <span style="color: #666666; font-style: italic;"># chop off everything before the first : </span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #007800;">Value</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">$(echo ${Value}|sed 's#^ +##g;s# +$##g')</span>&quot;</span> <span style="color: #666666; font-style: italic;"># chop off any excess whitespace</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #7a0874; font-weight: bold;">&#91;</span><span style="color: #7a0874; font-weight: bold;">&#91;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${Key}</span>&quot;</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #000000; font-weight: bold;">&amp;&amp;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${Value}</span>&quot;</span> <span style="color: #000000; font-weight: bold;">!</span>= <span style="color: #ff0000;">&quot;&quot;</span> <span style="color: #7a0874; font-weight: bold;">&#93;</span><span style="color: #7a0874; font-weight: bold;">&#93;</span> <span style="color: #666666; font-style: italic;"># only continue if we have something to do</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000000; font-weight: bold;">then</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #7a0874; font-weight: bold;">declare</span> Configuration_<span style="color: #800000;">${Key}</span>=<span style="color: #ff0000;">&quot;<span style="color: #007800;">${Value}</span>&quot;</span></li><li>&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #000000; font-weight: bold;">fi</span></li><li>&nbsp;&nbsp;<span style="color: #000000; font-weight: bold;">done</span> <span style="color: #000000; font-weight: bold;">&lt;</span> <span style="color: #ff0000;">&quot;<span style="color: #007800;">${File_Config}</span>&quot;</span></li><li><span style="color: #000000; font-weight: bold;">fi</span></li></ol></div></pre><!--END_DEVFMTCODE--></p>
<p>after the snippet has read the configfile, you can use <em>$Configuration_foo</em>, <em>$Configuration_bar</em> and <em>$Configuration_foobar</em> in your script. The keynames could also have came from a mysql query, array, command line args, &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/685/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>back online</title>
		<link>http://www.dopefish.de/archives/681</link>
		<comments>http://www.dopefish.de/archives/681#comments</comments>
		<pubDate>Wed, 04 Aug 2010 11:11:11 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Internet Stuff]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[acpi]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[md]]></category>
		<category><![CDATA[raid]]></category>
		<category><![CDATA[xen]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=681</guid>
		<description><![CDATA[The hard drive crash threw me offline a few days due to strange problems with software raids, Xen and acpi. Turns out that using the latest Xen kernel from debian testing branch on a software raid only works of you don&#8217;t set &#8220;acpi=off&#8221; as a kernel parameter. If acpi is turned off, the script &#8220;scripts/local-top/mdadm&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/681&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>The hard drive crash threw me offline a few days due to strange problems with software raids, Xen and acpi. Turns out that using the latest Xen kernel from debian testing branch on a software raid only works of you don&#8217;t set &#8220;acpi=off&#8221; as a kernel parameter. If acpi is turned off, the script &#8220;scripts/local-top/mdadm&#8221; in the initrd can&#8217;t find the devices needed to mount the software raid &#8230; causing the whole boot process to come to a grinding halt.</p>
<p>If I find some time I&#8217;ll do some more tests, untill then my server will be running with acpi turned on</p>
<p>btw. the hard disk replacement was easy. after the new drive was popped in it was just a copy the partition table and add the partitions of the new disk to the raid</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/681/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>dead hard drive</title>
		<link>http://www.dopefish.de/archives/679</link>
		<comments>http://www.dopefish.de/archives/679#comments</comments>
		<pubDate>Sun, 01 Aug 2010 11:16:09 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[raid]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=679</guid>
		<description><![CDATA[It seems that one of the hard drives in my server died last night. Thanks to the raid no data is lost, but the server will be offline shortly this week (tuesday morning probably) to replace the faulty drive with a fresh new one.]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/679&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>It seems that one of the hard drives in my server died last night. Thanks to the raid no data is lost, but the server will be offline shortly this week (tuesday morning probably) to replace the faulty drive with a fresh new one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/679/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pictures from the Mediterranean cruise</title>
		<link>http://www.dopefish.de/archives/670</link>
		<comments>http://www.dopefish.de/archives/670#comments</comments>
		<pubDate>Wed, 09 Jun 2010 16:28:19 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Me]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[Barcelona]]></category>
		<category><![CDATA[cruise]]></category>
		<category><![CDATA[D80]]></category>
		<category><![CDATA[La Velletta Catania]]></category>
		<category><![CDATA[Mediterranean]]></category>
		<category><![CDATA[nikon]]></category>
		<category><![CDATA[Palma]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Rom]]></category>
		<category><![CDATA[Savona]]></category>
		<category><![CDATA[Tunis]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=670</guid>
		<description><![CDATA[We shot over 600 photos on our cruise. Anyone who missed it on Facebook: we visited Savona (Italy), Barcelona, Palma de Mallorca (both Spain), Tunis (Tunisia), La Valletta (Malta), Cantania and Rom (both Italy). Anyway, here is a selection of some of the photos. Took me the better of the day to sort out which [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/670&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>We shot over 600 photos on our cruise. Anyone who missed it on Facebook: we visited Savona (Italy), Barcelona, Palma de Mallorca (both Spain), Tunis (Tunisia), La Valletta (Malta), Cantania and Rom (both Italy). Anyway, here is a selection of some of the photos. Took me the better of the day to sort out which photos were worth while posting, and then post-processing them.</p>
<p><strong>Savona</strong><br />
<script type="text/javascript">
            function startGallery_11() { 
              var myGallery = new gallery($("myGallery_11"), {                  timed: false,         showCarousel: true,         showInfopane: false,           showArrows: true,           embedLinks: false, slideInfoZoneOpacity: 0.80, textShowCarousel: "Overview of Pictures"   });
              
              document.getElementById("myGallery_11").style.display = "block";
           }
            window.addEvent("domready", startGallery_11);
          </script>
         <div style="width: 500px; height: 375px; border:0px solid; margin:0px auto; clear:both;"><div id="myGallery_11" class="myGallery" style="display:none; width: 500px !important; height: 375px !important;"><div class="imageElement">  <h3> dsc_3580</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3580.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3580.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3580.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3590</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3590.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3590.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3590.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3555</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3555.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3555.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3555.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3545</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3545.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3545.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3545.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3559</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3559.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3559.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3559.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3558</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3558.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3558.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3558.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3534</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3534.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3534.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3534.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3532</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3532.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3532.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3532.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3527</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3527.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3527.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3527.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3524</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3524.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3524.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3524.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3594</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3594.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3594.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3594.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3762</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3762.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/dsc_3762.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/savona_other/thumbs/thumbs_dsc_3762.jpg" class="thumbnail" /></div> </div></div></p>
<p><strong>Tunis</strong><br />
<script type="text/javascript">
            function startGallery_12() { 
              var myGallery = new gallery($("myGallery_12"), {                  timed: false,         showCarousel: true,         showInfopane: false,           showArrows: true,           embedLinks: false, slideInfoZoneOpacity: 0.80, textShowCarousel: "Overview of Pictures"   });
              
              document.getElementById("myGallery_12").style.display = "block";
           }
            window.addEvent("domready", startGallery_12);
          </script>
         <div style="width: 500px; height: 375px; border:0px solid; margin:0px auto; clear:both;"><div id="myGallery_12" class="myGallery" style="display:none; width: 500px !important; height: 375px !important;"><div class="imageElement">  <h3> panorama1</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/panorama1.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/panorama1.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_panorama1.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3719</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3719.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3719.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3719.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3684</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3684.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3684.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3684.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3706</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3706.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3706.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3706.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3667</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3667.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3667.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3667.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3756</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3756.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3756.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3756.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3747</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3747.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3747.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3747.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3738</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3738.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3738.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3738.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3735</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3735.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3735.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3735.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3737</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3737.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3737.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3737.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3724</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3724.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3724.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3724.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3722</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3722.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3722.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3722.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3720</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3720.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3720.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3720.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3716</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3716.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3716.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3716.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3711</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3711.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3711.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3711.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3699</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3699.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3699.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3699.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3704</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3704.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3704.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3704.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3690</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3690.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3690.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3690.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3687</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3687.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3687.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3687.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3682</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3682.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3682.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3682.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3679</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3679.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3679.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3679.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3678</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3678.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3678.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3678.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3676</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3676.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3676.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3676.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3671</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3671.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3671.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3671.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3752</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3752.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/tunis/dsc_3752.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/tunis/thumbs/thumbs_dsc_3752.jpg" class="thumbnail" /></div> </div></div></p>
<p><strong>Rom</strong><br />
<script type="text/javascript">
            function startGallery_13() { 
              var myGallery = new gallery($("myGallery_13"), {                  timed: false,         showCarousel: true,         showInfopane: false,           showArrows: true,           embedLinks: false, slideInfoZoneOpacity: 0.80, textShowCarousel: "Overview of Pictures"   });
              
              document.getElementById("myGallery_13").style.display = "block";
           }
            window.addEvent("domready", startGallery_13);
          </script>
         <div style="width: 500px; height: 375px; border:0px solid; margin:0px auto; clear:both;"><div id="myGallery_13" class="myGallery" style="display:none; width: 500px !important; height: 375px !important;"><div class="imageElement">  <h3> dsc_3977</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_3977.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_3977.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_3977.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3970</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_3970.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_3970.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_3970.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3974</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_3974.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_3974.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_3974.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3980</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_3980.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_3980.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_3980.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3988</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_3988.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_3988.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_3988.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3996</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_3996.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_3996.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_3996.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3997</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_3997.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_3997.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_3997.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4012</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4012.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4012.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4012.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4014</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4014.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4014.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4014.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4016</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4016.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4016.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4016.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4020</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4020.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4020.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4020.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4032</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4032.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4032.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4032.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4035</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4035.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4035.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4035.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4045</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4045.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4045.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4045.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4052</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4052.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4052.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4052.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4062</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4062.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4062.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4062.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4070</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4070.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4070.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4070.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4071</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4071.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4071.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4071.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4072</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4072.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4072.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4072.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4073</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4073.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4073.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4073.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4078</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4078.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4078.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4078.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4087</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4087.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4087.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4087.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4088</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4088.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4088.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4088.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_4089</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/rom/dsc_4089.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/rom/dsc_4089.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/rom/thumbs/thumbs_dsc_4089.jpg" class="thumbnail" /></div> </div></div></p>
<p><strong>Palma de Mallorca</strong><br />
<script type="text/javascript">
            function startGallery_14() { 
              var myGallery = new gallery($("myGallery_14"), {                  timed: false,         showCarousel: true,         showInfopane: false,           showArrows: true,           embedLinks: false, slideInfoZoneOpacity: 0.80, textShowCarousel: "Overview of Pictures"   });
              
              document.getElementById("myGallery_14").style.display = "block";
           }
            window.addEvent("domready", startGallery_14);
          </script>
         <div style="width: 500px; height: 375px; border:0px solid; margin:0px auto; clear:both;"><div id="myGallery_14" class="myGallery" style="display:none; width: 500px !important; height: 375px !important;"><div class="imageElement">  <h3> img_0004</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/palma/img_0004.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/palma/img_0004.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/palma/thumbs/thumbs_img_0004.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> img_0012</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/palma/img_0012.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/palma/img_0012.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/palma/thumbs/thumbs_img_0012.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> img_0016</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/palma/img_0016.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/palma/img_0016.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/palma/thumbs/thumbs_img_0016.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> img_0019</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/palma/img_0019.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/palma/img_0019.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/palma/thumbs/thumbs_img_0019.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> img_0021</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/palma/img_0021.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/palma/img_0021.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/palma/thumbs/thumbs_img_0021.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> img_0022</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/palma/img_0022.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/palma/img_0022.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/palma/thumbs/thumbs_img_0022.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> img_0031</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/palma/img_0031.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/palma/img_0031.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/palma/thumbs/thumbs_img_0031.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> img_0033</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/palma/img_0033.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/palma/img_0033.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/palma/thumbs/thumbs_img_0033.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> img_0037</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/palma/img_0037.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/palma/img_0037.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/palma/thumbs/thumbs_img_0037.jpg" class="thumbnail" /></div> </div></div></p>
<p><strong>Catania</strong><br />
<script type="text/javascript">
            function startGallery_16() { 
              var myGallery = new gallery($("myGallery_16"), {                  timed: false,         showCarousel: true,         showInfopane: false,           showArrows: true,           embedLinks: false, slideInfoZoneOpacity: 0.80, textShowCarousel: "Overview of Pictures"   });
              
              document.getElementById("myGallery_16").style.display = "block";
           }
            window.addEvent("domready", startGallery_16);
          </script>
         <div style="width: 500px; height: 375px; border:0px solid; margin:0px auto; clear:both;"><div id="myGallery_16" class="myGallery" style="display:none; width: 500px !important; height: 375px !important;"><div class="imageElement">  <h3> dsc_3867</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3867.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3867.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3867.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3874</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3874.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3874.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3874.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3876</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3876.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3876.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3876.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3880</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3880.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3880.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3880.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3885</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3885.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3885.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3885.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3893</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3893.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3893.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3893.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3894</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3894.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3894.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3894.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3903</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3903.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3903.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3903.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3908</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3908.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3908.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3908.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3909</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3909.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3909.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3909.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3915</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3915.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3915.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3915.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3926</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3926.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3926.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3926.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3933</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3933.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3933.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3933.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3934</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3934.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3934.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3934.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3938</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3938.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3938.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3938.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3941</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3941.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3941.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3941.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3942</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3942.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3942.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3942.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3943</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3943.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3943.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3943.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3944</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3944.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3944.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3944.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3949</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3949.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3949.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3949.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3951</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3951.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3951.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3951.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3952</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3952.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3952.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3952.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3954</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3954.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3954.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3954.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3957</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3957.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3957.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3957.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3960</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3960.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3960.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3960.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3961</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/dsc_3961.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/dsc_3961.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_dsc_3961.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> s030_170</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/s030_170.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/s030_170.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_s030_170.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> s030_176</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/s030_176.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/s030_176.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_s030_176.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> s030_178</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/catania/s030_178.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/catania/s030_178.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/catania/thumbs/thumbs_s030_178.jpg" class="thumbnail" /></div> </div></div></p>
<p><strong>Barcelona</strong><br />
<script type="text/javascript">
            function startGallery_17() { 
              var myGallery = new gallery($("myGallery_17"), {                  timed: false,         showCarousel: true,         showInfopane: false,           showArrows: true,           embedLinks: false, slideInfoZoneOpacity: 0.80, textShowCarousel: "Overview of Pictures"   });
              
              document.getElementById("myGallery_17").style.display = "block";
           }
            window.addEvent("domready", startGallery_17);
          </script>
         <div style="width: 500px; height: 375px; border:0px solid; margin:0px auto; clear:both;"><div id="myGallery_17" class="myGallery" style="display:none; width: 500px !important; height: 375px !important;"><div class="imageElement">  <h3> dsc_3606</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3606.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3606.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3606.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3611</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3611.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3611.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3611.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3616</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3616.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3616.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3616.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3621</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3621.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3621.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3621.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3629</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3629.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3629.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3629.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3630</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3630.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3630.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3630.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3631</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3631.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3631.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3631.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3635</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3635.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3635.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3635.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3640</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3640.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3640.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3640.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3644</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3644.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3644.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3644.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3646</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3646.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3646.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3646.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3648</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3648.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3648.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3648.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3652</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3652.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3652.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3652.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3656</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3656.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/dsc_3656.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_dsc_3656.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> panorama1</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/barcelona/panorama1.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/panorama1.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/barcelona/thumbs/thumbs_panorama1.jpg" class="thumbnail" /></div> </div></div></p>
<p><strong>La Valletta</strong><br />
<script type="text/javascript">
            function startGallery_18() { 
              var myGallery = new gallery($("myGallery_18"), {                  timed: false,         showCarousel: true,         showInfopane: false,           showArrows: true,           embedLinks: false, slideInfoZoneOpacity: 0.80, textShowCarousel: "Overview of Pictures"   });
              
              document.getElementById("myGallery_18").style.display = "block";
           }
            window.addEvent("domready", startGallery_18);
          </script>
         <div style="width: 500px; height: 375px; border:0px solid; margin:0px auto; clear:both;"><div id="myGallery_18" class="myGallery" style="display:none; width: 500px !important; height: 375px !important;"><div class="imageElement">  <h3> dsc_3804</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3804.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3804.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3804.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3764</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3764.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3764.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3764.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3766</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3766.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3766.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3766.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3768</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3768.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3768.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3768.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3774</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3774.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3774.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3774.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3775</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3775.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3775.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3775.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3776</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3776.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3776.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3776.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3777</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3777.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3777.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3777.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3780</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3780.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3780.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3780.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3784</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3784.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3784.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3784.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3786</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3786.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3786.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3786.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3787</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3787.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3787.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3787.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3792</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3792.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3792.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3792.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3798</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3798.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3798.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3798.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3803</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3803.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3803.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3803.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3806</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3806.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3806.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3806.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3810</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3810.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3810.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3810.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3811</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3811.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3811.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3811.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3812</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3812.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3812.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3812.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3819</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3819.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3819.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3819.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3827</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3827.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3827.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3827.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3835</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3835.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3835.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3835.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3841</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3841.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3841.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3841.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3847</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3847.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3847.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3847.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3856</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3856.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3856.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3856.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3858</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3858.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3858.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3858.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3860</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3860.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3860.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3860.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> dsc_3862</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3862.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/dsc_3862.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_dsc_3862.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> panorama1</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/panorama1.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/panorama1.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_panorama1.jpg" class="thumbnail" /></div><div class="imageElement">  <h3> panorama2</h3>  <p style="color: #FFF000;"> </p>  <a target="_blank" href="http://www.dopefish.de/wp-content/gallery/la_valletta/panorama2.jpg" title="open image" class="open"></a>  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/panorama2.jpg" class="full" />  <img src="http://www.dopefish.de/wp-content/gallery/la_valletta/thumbs/thumbs_panorama2.jpg" class="thumbnail" /></div> </div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/670/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Adobe Lightroom 3</title>
		<link>http://www.dopefish.de/archives/672</link>
		<comments>http://www.dopefish.de/archives/672#comments</comments>
		<pubDate>Wed, 09 Jun 2010 13:50:06 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Tech]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[D80]]></category>
		<category><![CDATA[JPEG]]></category>
		<category><![CDATA[Lightroom]]></category>
		<category><![CDATA[nikon]]></category>
		<category><![CDATA[photography]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[RAW]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=672</guid>
		<description><![CDATA[I always shoot in RAW + JPEG. For normal point-and-shoot vacation stuff I&#8217;m generally satisfied with the JPEG the camera spits out. But I would never shoot only JPEG. The additional information of RAW shouldn&#8217;t be underestimated, and to be honest I often tweak around. It makes a difference if you are working on the [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/672&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>I always shoot in <a href="http://en.wikipedia.org/wiki/Raw_image_format">RAW</a> + JPEG. For normal point-and-shoot vacation stuff I&#8217;m generally satisfied with the JPEG the camera spits out. But I would never shoot only JPEG. The additional information of RAW shouldn&#8217;t be underestimated, and to be honest I often tweak around. It makes a difference if you are working on the original RAW data, or if you are working on the JPEG copy the camera has already processed.<br />
Up till now I&#8217;ve been post-processing my images with Adobe Bridge and Photoshop CS3. Since I was planning on post-processing a whole load of pictures I decided to see what software there is out there to streamline the work flow a bit (Bridge and CS3 do the job, and the raw converter in CS3 does offer a wide variety of options, but it is still tedious switching to be switching between both programs and working on multiple RAW images at the same time). While I was away, Adobe released <a href="http://www.adobe.com/products/photoshoplightroom/">Lightroom</a> 3, so I checked out the reviews and it sounded good. I downloaded the 30 day trial version and to sum it up my experience so far &#8230; I&#8217;m impressed.<br />
I haven&#8217;t worked with Lightroom previously, so I can&#8217;t say how much has changed in this version. But I really like the details that make life easier when handling collections of images. Being an Adobe product it also offers interfaces to various Photoshop functions (I only own CS3, I could imagine it offers more options if you have the current version CS5 installed). I could go on and on with things I like about it, but I&#8217;ll just sum it up and say: It really streamlines the work flow of post-processing photographs from import to print/upload/web/presentation and if you are shooting RAW it has a whole lot of fun stuff to play around with directly built in.<br />
Since I shoot with a Nikon D80 that tends to produce a fair amount of image noise if I go past ISO 400 I liked the noise reduction features of Lightroom, both color and luminance noise can be reduced greatly with sliders for fine tuning.</p>
<p>It&#8217;s a good piece of software, and when the 30 day trial ends I&#8217;ll probably go buy it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/672/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ubuntu upgrade to 10.04 and lirc</title>
		<link>http://www.dopefish.de/archives/653</link>
		<comments>http://www.dopefish.de/archives/653#comments</comments>
		<pubDate>Mon, 10 May 2010 20:40:57 +0000</pubDate>
		<dc:creator>dopefish</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[350]]></category>
		<category><![CDATA[haupauge]]></category>
		<category><![CDATA[htpc]]></category>
		<category><![CDATA[ir]]></category>
		<category><![CDATA[lirc]]></category>
		<category><![CDATA[pvr]]></category>
		<category><![CDATA[remote control]]></category>

		<guid isPermaLink="false">http://www.dopefish.de/?p=653</guid>
		<description><![CDATA[Ubuntu 10.04 (lucid) came out a short while ago &#8230; and because it contained new themes and the latest version of mythtv, I went and upgraded. These updates are tested by gazillions of people, any serious problems would be noticed before release .. right? right? Well, looks like I did it again. Turned a working [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://www.dopefish.de/archives/653&amp;layout=standard&amp;show_faces=true&amp;width=460&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:460px; height:26px'></iframe></p><p>Ubuntu 10.04 (lucid) came out a short while ago &#8230; and because it contained new themes and the latest version of mythtv, I went and upgraded.  These updates are tested by gazillions of people, any serious problems would be noticed before release .. right? right? </p>
<p>Well, looks like I did it again. Turned a working tv recorder into a &#8220;electronic beeping thing under the TV that doesn&#8217;t do much except show a pretty screensaver if you wait long enough&#8221;. After fixing up some stuff that the update broke (thanks for overwriting my config files. I&#8217;ll just use the version from the backup I made before the update if you don&#8217;t mind), I got almost everything up and running again. As of right now the only things broken are a) the theme not displaying any text when I&#8217;m in LiveTV or a video (yeah, try to get out of there without any menus) and b) my remote control is also not working. </p>
<p>At first I thought that some sonfig was just b0rked with the lirc config, but after doing a &#8220;top&#8221; and seeing that lirc_dev was consuming a modest 90% of my CPU, I decided that it was googles turn to find out what was wrong with Ubuntu 10.04. And sure enough, it seems this wa a know problem that made it into release (hooray). Anyone stumbling across this post via goole: go to <a href="https://bugs.launchpad.net/ubuntu/+source/lirc/+bug/550369">https://bugs.launchpad.net/ubuntu/+source/lirc/+bug/550369</a>, there are fixes for the problem towards the end of the page. Since it looks like they will make it into the 10.04 updates you can also just wait for a few days/weeks and they will pop up as a update automatically. Anyone wanting to fix the problem now: the short version ist: go to <a href="https://wiki.ubuntu.com/Testing/EnableProposed">https://wiki.ubuntu.com/Testing/EnableProposed</a> to set up proposed updates for lucid, and install &#8220;lirc&#8221; and &#8220;lirc-modules-source&#8221; from the proposed repository. </p>
<p>As for the broken themes? I&#8217;m still working on that, have a few updates and poking around to go before the system is back to the running condition it was before.</p>
<p>*Update*<br />
For some strange reason, I had to set the IRQ of the serial port to 4 any specify it in the /etc/modconf.d directory (was getting busy errors with IRQ 3)</p>
<p>The broken themes were &#8220;only&#8221; the OSD using bold font. After changing it back to the normal version in the OSD settings everything worked fine. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.dopefish.de/archives/653/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.dopefish.de @ 2010-09-03 14:40:31 by W3 Total Cache -->