<?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>Magnus-Network.de</title>
	<atom:link href="http://www.magnus-network.de/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.magnus-network.de/blog</link>
	<description>my lives - from a to z and vice versa</description>
	<lastBuildDate>Sun, 29 May 2011 08:32:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Duplicity without ssh / Recursive &#8220;mkdir&#8221; over sftp (e.g. for Strato HiDrive)</title>
		<link>http://www.magnus-network.de/blog/2011/05/duplicity-without-ssh-recursive-mkdir-over-sftp-e-g-for-strato-hidrive/</link>
		<comments>http://www.magnus-network.de/blog/2011/05/duplicity-without-ssh-recursive-mkdir-over-sftp-e-g-for-strato-hidrive/#comments</comments>
		<pubDate>Sun, 29 May 2011 08:30:25 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://magnus-network.de/blog/?p=288</guid>
		<description><![CDATA[In case of not being able to connect via SSH to external storage device, things can be done
with sftp. SFTP is not able to recursively create remote directories (e.g. &#8220;/user/backup/data&#8221;).
The following script will do that for you:
TR=/usr/bin/tr
SFTP=/usr/bin/sftp
NAME=user.name
rmkdir ()
{
        REMOTEPATH=$1
        DIRS=$2
  [...]]]></description>
			<content:encoded><![CDATA[<p>In case of not being able to connect via SSH to external storage device, things can be done<br />
with sftp. SFTP is not able to recursively create remote directories (e.g. &#8220;/user/backup/data&#8221;).<br />
The following script will do that for you:</p>
<p><code>TR=/usr/bin/tr<br />
SFTP=/usr/bin/sftp<br />
NAME=user.name</code></p>
<p><code>rmkdir ()<br />
{<br />
        REMOTEPATH=$1<br />
        DIRS=$2</p>
<p>        for d in $(echo $DIRS | $TR "/" "\n")<br />
        do<br />
                rmkdirHelper ${REMOTEPATH}/${d}<br />
                REMOTEPATH="${REMOTEPATH}/${d}"<br />
        done<br />
}</code></p>
<p><code>rmkdirHelper ()<br />
{<br />
        $SFTP ${NAME}@${HOST} &lt;&lt;-EOT<br />
        mkdir $1<br />
        EOT<br />
}</code></p>
<p>Now you can call the function from your backup script like this:</p>
<p><code>rmkdir $LPATH $i</code></p>
<p>Where $LPATH is the remote basepath and $i is the (recursive) directory that should<br />
be created on remote host. (SSH Public Key recommended)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2011/05/duplicity-without-ssh-recursive-mkdir-over-sftp-e-g-for-strato-hidrive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML5 Demo</title>
		<link>http://www.magnus-network.de/blog/2011/03/html5-demo/</link>
		<comments>http://www.magnus-network.de/blog/2011/03/html5-demo/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 13:58:22 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.magnus-network.de/blog/?p=281</guid>
		<description><![CDATA[Just a little HTML5 demo page. Now, there is only one example included, but this will be extended within the next weeks &#8211; caused on an actual project that will be realized completely with HTML5 and related technologies. The first example is showing simple drawing on canvas element, rotation, translation and some shapes. Just have [...]]]></description>
			<content:encoded><![CDATA[<p>Just a little HTML5 demo page. Now, there is only one example included, but this will be extended within the next weeks &#8211; caused on an actual project that will be realized completely with HTML5 and related technologies. The first example is showing simple drawing on canvas element, rotation, translation and some shapes. Just have a look &#8230;</p>
<p><a href="http://magnus-network.de/html5/demo.html" target="_blank">view demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2011/03/html5-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Like Button iFrame with current page (php)</title>
		<link>http://www.magnus-network.de/blog/2010/11/facebook-like-button-iframe-with-current-page-php/</link>
		<comments>http://www.magnus-network.de/blog/2010/11/facebook-like-button-iframe-with-current-page-php/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 12:06:50 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.magnus-network.de/blog/?p=257</guid>
		<description><![CDATA[If you want to include the fb like button by using the iFrame approach
you also may want to refer to the actual (current) page when a user
clicks on the button. In the following I present  a simple solution to realize
this for php based sites. For sure it is possible to make this shorter but [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to include the fb like button by using the iFrame approach<br />
you also may want to refer to the actual (current) page when a user<br />
clicks on the button. In the following I present  a simple solution to realize<br />
this for php based sites. For sure it is possible to make this shorter but I<br />
thinks it is better to read (p.s. in total this are three lines, had to wrap<br />
cause of the length of the lines).</p>
<pre><code>
<!-- Facebook dynamic iFrame Integration magnus-network.de -->        

        &lt;?php $url = (!empty($_SERVER['HTTPS'])) ?
                           "https://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'] :
                           "http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI']; ?&gt;

        &lt;?php $curl = urlencode($url); ?&gt;

        &lt;?php echo '&lt;iframe src="http://www.facebook.com/plugins/like.php?
                                      href='.$curl.'&amp;layout=standard&amp;show_faces=false&amp;
                                      width=250&amp;action=like&amp;colorscheme=light&amp;height=35"
                                      scrolling="no" frameborder="0" style="border:none;
                                      overflow:hidden; width:250px; height:35px;"
                                      allowTransparency="true"&gt;&lt;/iframe&gt;'; ?&gt;

<!-- Facebook dynamic iFrame Integration magnus-network.de --></code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2010/11/facebook-like-button-iframe-with-current-page-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>shok.de: offiziell online</title>
		<link>http://www.magnus-network.de/blog/2010/10/shok-de-offiziell-online/</link>
		<comments>http://www.magnus-network.de/blog/2010/10/shok-de-offiziell-online/#comments</comments>
		<pubDate>Sat, 30 Oct 2010 17:10:58 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Vermischtes]]></category>

		<guid isPermaLink="false">http://www.magnus-network.de/blog/?p=251</guid>
		<description><![CDATA[Hip Hop, Streetwear, Urban Klamotten: jetzt endlich auch online bestellen - in gewohnter Shok Qualität ...]]></description>
			<content:encoded><![CDATA[<p>Der Webshop <a href="http://www.shok.de">shok.de</a> ist nun endlich offiziell online. Dort lassen sich Klamotten der bekannten Marken wie Karl Kani, Bench, Guess etc. nun endlich auch online bestellen &#8211; natürlich in bewährter Shok Qualität und Service. </p>
<p>Zur Neueröffnung gibt es einen speziellen Gutschein:</p>
<p><strong>20% auf die Karl Kani Kollektion! Gutscheincode: NKGNV</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2010/10/shok-de-offiziell-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gutscheine: Netcup &#8211; Provider mit Qualität (Server &amp; Hosting)</title>
		<link>http://www.magnus-network.de/blog/2010/09/gutschein-netcup-provider-mit-qualitat-server-hosting/</link>
		<comments>http://www.magnus-network.de/blog/2010/09/gutschein-netcup-provider-mit-qualitat-server-hosting/#comments</comments>
		<pubDate>Mon, 06 Sep 2010 20:26:07 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.magnus-network.de/blog/?p=234</guid>
		<description><![CDATA[Anbei ein paar Gutscheine (für Neukunden) für den Provider Netcup (netcup.de). Hier findet man alles vom einfachen Hosting, Speicherlösungen bis hin zum Root-Server. Besonders gut gefallen mir dort die virtuellen Server (vServer), die sich von der Leistung und dem Umfang deutlich von anderen Anbietern hervorheben können (z.B. in den  Punkten Backup, RAM, CPU, Traffic).
Die [...]]]></description>
			<content:encoded><![CDATA[<p>Anbei ein paar Gutscheine (für Neukunden) für den Provider Netcup (<a href="http://www.netcup.de" target="_blank">netcup.de</a>). Hier findet man alles vom einfachen Hosting, Speicherlösungen bis hin zum Root-Server. Besonders gut gefallen mir dort die virtuellen Server (vServer), die sich von der Leistung und dem Umfang deutlich von anderen Anbietern hervorheben können (z.B. in den  Punkten Backup, RAM, CPU, Traffic).</p>
<p><strong>Die Gutscheine (5 Euro, nur Neukunden) einfach beim Bestellvorgang (<a href="http://www.netcup.de" target="_blank">netcup.de</a>) eintragen:</strong></p>
<p>36nc12984474090<br />
36nc12984474091<br />
36nc12984474092<br />
36nc12984474093<br />
36nc12984474094<br />
36nc12984474095<br />
36nc12984474096<br />
36nc12984474097<br />
36nc12984474098<br />
36nc12984474099</p>
<p><strong>Die Gutscheine (1 Monat Grundgebühr vServer geschenkt, nur Neukunden) einfach beim Bestellvorgang (<a href="http://www.netcup.de" target="_blank">netcup.de</a>) eintragen:</strong></p>
<p>225nc12984475080<br />
225nc12984475081<br />
225nc12984475082<br />
225nc12984475083<br />
225nc12984475084</p>
<p>P.S. Ich werde den Bestand der Gutscheine regelmäßig aktualisieren, d.h. sollte ggf. ein Gutscheicode ungültig sein, wurde dieser bereits genutzt. In diesem Fall einfach einen andern wählen oder mich kontaktieren <a href="http://www.magnus-network.de/blog/kontakt/">(kontakt)</a> &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2010/09/gutschein-netcup-provider-mit-qualitat-server-hosting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>openZIM v1 released</title>
		<link>http://www.magnus-network.de/blog/2010/08/openzim/</link>
		<comments>http://www.magnus-network.de/blog/2010/08/openzim/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 19:39:27 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.magnus-network.de/blog/?p=160</guid>
		<description><![CDATA[openZIM Document Management System
openZIM has been released in v1.0 at 29th of July 2010 on behalf and
in cooperation with &#8220;Courage! DAS NETZWERK FÜR DEMOKRATIE UND COURAGE&#8221;. 
ZIM: Ziele, Inhalt, Methoden
openZIM: web-based system to create, archive and export (*.odf) ZIM documents in the team
Licence: GPLv3
Demo: online demo
github: openZIM @ github
]]></description>
			<content:encoded><![CDATA[<p><strong>openZIM Document Management System</strong></p>
<p>openZIM has been released in v1.0 at 29th of July 2010 on behalf and<br />
in cooperation with &#8220;Courage! DAS NETZWERK FÜR DEMOKRATIE UND COURAGE&#8221;. </p>
<p><strong>ZIM:</strong> Ziele, Inhalt, Methoden<br />
<strong>openZIM:</strong> web-based system to create, archive and export (*.odf) ZIM documents in the team<br />
<strong>Licence:</strong> GPLv3<br />
<strong>Demo:</strong> <a href="http://www.magnus-network.de:8181">online demo</a><br />
<strong>github:</strong> <a href="http://github.com/maggsta/openzim">openZIM @ github</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2010/08/openzim/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IT Solutions</title>
		<link>http://www.magnus-network.de/blog/2010/08/it-solutions/</link>
		<comments>http://www.magnus-network.de/blog/2010/08/it-solutions/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 14:42:29 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Tech]]></category>

		<guid isPermaLink="false">http://www.magnus-network.de/blog/?p=99</guid>
		<description><![CDATA[WEBDESIGN, ONLINE APPLICATIONS &#038; CUSTOMIZED SOLUTIONS
Design of high dynamic and flexible websites that are characterized by high compatibility on client side. Layouts are all designed for working with all of the following clients:
Google Chrome, Firefox (all actual versions)
MSIE (all actual versions)
Opera, Safari, Konqueror (actual versions)
and some more …
Completely adapting your corporate identity for best recognition. [...]]]></description>
			<content:encoded><![CDATA[<p><strong>WEBDESIGN, ONLINE APPLICATIONS &#038; CUSTOMIZED SOLUTIONS</strong></p>
<p>Design of high dynamic and flexible websites that are characterized by high compatibility on client side. Layouts are all designed for working with all of the following clients:</p>
<p>Google Chrome, Firefox (all actual versions)<br />
MSIE (all actual versions)<br />
Opera, Safari, Konqueror (actual versions)<br />
and some more …</p>
<p>Completely adapting your corporate identity for best recognition. Applying only state of the art technologies for ensuring best sustainability and forward compatibility.</p>
<p><strong>More than websites&#8230;!</strong></p>
<p>Integration and/or development of (web) applications completely oriented on the customer needs. Integration and adaption of opensource solutions or development of unique, customized individual solutions. </p>
<p>Java (EE, ME, SE), PHP (Symfony and other frameworks), iPhone (Cocoa Touch), C, C++, C#, Mono, Bash and whatever is needed to build your customized solution &#8230;</p>
<p><strong>More than technology&#8230;!</strong></p>
<p>In cooperation with experienced graphic and game designers, I can guarantee an appealing design of all created solutions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2010/08/it-solutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kabul &#8211; LowRida &#8230;</title>
		<link>http://www.magnus-network.de/blog/2009/06/kabul-lowrida/</link>
		<comments>http://www.magnus-network.de/blog/2009/06/kabul-lowrida/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 17:36:38 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://www.magnus-network.de/blog/?p=54</guid>
		<description><![CDATA[good music knows no boarders &#8230;  
]]></description>
			<content:encoded><![CDATA[<p>good music knows no boarders &#8230; <img src='http://www.magnus-network.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>

]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2009/06/kabul-lowrida/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	<enclosure url="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/S7000021.flv" length="1" type="video/x-flv"/>
	</item>
		<item>
		<title>Dubai 2008, Kontrastprogramm &#8230;</title>
		<link>http://www.magnus-network.de/blog/2009/06/dubai-2008-kontrastprogramm/</link>
		<comments>http://www.magnus-network.de/blog/2009/06/dubai-2008-kontrastprogramm/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 17:27:14 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://www.magnus-network.de/blog/?p=45</guid>
		<description><![CDATA[From Germany via Dubai to Kabul &#8230; Contrasts !!!
]]></description>
			<content:encoded><![CDATA[<p>From Germany via Dubai to Kabul &#8230; Contrasts !!!</p>

<a href='http://www.magnus-network.de/blog/2009/06/dubai-2008-kontrastprogramm/db01/' title='Dubai'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/db01-150x150.jpg" class="attachment-thumbnail" alt="Dubai" title="Dubai" /></a>
<a href='http://www.magnus-network.de/blog/2009/06/dubai-2008-kontrastprogramm/db02/' title='Dubai'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/db02-150x150.jpg" class="attachment-thumbnail" alt="Dubai" title="Dubai" /></a>
<a href='http://www.magnus-network.de/blog/2009/06/dubai-2008-kontrastprogramm/db03/' title='Dubai'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/db03-150x150.jpg" class="attachment-thumbnail" alt="Dubai" title="Dubai" /></a>
<a href='http://www.magnus-network.de/blog/2009/06/dubai-2008-kontrastprogramm/db04/' title='Dubai'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/db04-150x150.jpg" class="attachment-thumbnail" alt="Dubai" title="Dubai" /></a>
<a href='http://www.magnus-network.de/blog/2009/06/dubai-2008-kontrastprogramm/db05/' title='Dubai'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/db05-150x150.jpg" class="attachment-thumbnail" alt="Dubai" title="Dubai" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2009/06/dubai-2008-kontrastprogramm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kabul 2008</title>
		<link>http://www.magnus-network.de/blog/2009/06/kabul-2008/</link>
		<comments>http://www.magnus-network.de/blog/2009/06/kabul-2008/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 17:24:05 +0000</pubDate>
		<dc:creator>info</dc:creator>
				<category><![CDATA[Travel]]></category>

		<guid isPermaLink="false">http://www.magnus-network.de/blog/?p=35</guid>
		<description><![CDATA[Some impressions of Kabul, Winter of 2008 &#8211; Cold &#8230;
]]></description>
			<content:encoded><![CDATA[<p>Some impressions of Kabul, Winter of 2008 &#8211; Cold &#8230;</p>

<a href='http://www.magnus-network.de/blog/2009/06/kabul-2008/kb02/' title='An der Hauptstrasse'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/kb02-150x150.jpg" class="attachment-thumbnail" alt="An der Hauptstrasse" title="An der Hauptstrasse" /></a>
<a href='http://www.magnus-network.de/blog/2009/06/kabul-2008/kb04/' title='Es war wirklich kalt ...'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/kb04-150x150.jpg" class="attachment-thumbnail" alt="Es war wirklich kalt ..." title="Es war wirklich kalt ..." /></a>
<a href='http://www.magnus-network.de/blog/2009/06/kabul-2008/kb06/' title='Kabul 2008'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/kb06-150x150.jpg" class="attachment-thumbnail" alt="Kabul 2008" title="Kabul 2008" /></a>
<a href='http://www.magnus-network.de/blog/2009/06/kabul-2008/kb08/' title='Erstaunlich ...'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/kb08-150x150.jpg" class="attachment-thumbnail" alt="Erstaunlich ..." title="Erstaunlich ..." /></a>
<a href='http://www.magnus-network.de/blog/2009/06/kabul-2008/kb11/' title='Kabul'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/kb11-150x150.jpg" class="attachment-thumbnail" alt="Kabul" title="Kabul" /></a>
<a href='http://www.magnus-network.de/blog/2009/06/kabul-2008/kb12/' title='Kabul'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/kb12-150x150.jpg" class="attachment-thumbnail" alt="Kabul" title="Kabul" /></a>
<a href='http://www.magnus-network.de/blog/2009/06/kabul-2008/kb13/' title='Kabul'><img width="150" height="150" src="http://www.magnus-network.de/blog/wp-content/uploads/2009/06/kb13-150x150.jpg" class="attachment-thumbnail" alt="Kabul" title="Kabul" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.magnus-network.de/blog/2009/06/kabul-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

