<?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>www.puerro.net</title>
	<atom:link href="http://www.puerro.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.puerro.net</link>
	<description>tech, web, thoughts and whatnot...</description>
	<lastBuildDate>Wed, 07 Jul 2010 22:33:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to migrate Linux to a bigger Harddrive</title>
		<link>http://www.puerro.net/2010/07/how-to-migrate-linux-to-a-bigger-harddrive/</link>
		<comments>http://www.puerro.net/2010/07/how-to-migrate-linux-to-a-bigger-harddrive/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 21:48:15 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[OpenSource]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=924</guid>
		<description><![CDATA[One single Gap
you kneed to know your hard drives&#8230; (experienced linux users skip to next title!)
On modern linux distributions /dev/sda (..yes they abandoned /dev/hda and such&#8230;)
is normally your primary disk, the source you want to use&#8230;
do a
$&#62; sudo fdisk -l /dev/sda
to assure that&#8230; -l means list that device (you should see a list of your [...]]]></description>
			<content:encoded><![CDATA[<h2><strong>One single Gap</strong></h2>
<p>you kneed to know your hard drives&#8230; (experienced linux users skip to next title!)</p>
<p>On modern linux distributions <strong>/dev/sd<span style="color: #ff6600;">a</span></strong> (..yes they abandoned /dev/hda and such&#8230;)</p>
<p>is normally your primary disk, the <strong>source</strong> you want to use&#8230;</p>
<p>do a</p>
<p style="padding-left: 30px;"><code>$&gt; sudo fdisk -l /dev/sda</code></p>
<p>to assure that&#8230; -l means list that device (you should see a list of your partitions&#8230;) &#8230; (and sudo is only a way to achieve root rights  in ubuntu!)</p>
<p style="padding-left: 30px;"><code><br />
$&gt; sudo fdisk -l /dev/sda</code></p>
<p style="padding-left: 30px;">Platte /dev/sda: <strong>80.0 GByte</strong>, 80026361856 Byte<br />
255 Köpfe, 63 Sektoren/Spur, 9729 Zylinder<br />
Einheiten = Zylinder von 16065 × 512 = 8225280 Bytes<br />
Sector size (logical/physical): 512 bytes / 512 bytes<br />
I/O size (minimum/optimal): 512 bytes / 512 bytes<br />
Disk identifier: 0xcccdcccd</p>
<p style="padding-left: 30px;">Gerät  boot.     Anfang        Ende     Blöcke   Id  System<br />
/dev/sda1   *           1        1311    10530576    7  HPFS/NTFS<br />
/dev/sda2            1312        9729    67617585    5  Erweiterte<br />
/dev/sda5            1312        9380    64814211   83  Linux<br />
/dev/sda6            9381        9729     2803311   82  Linux Swap / Solaris</p>
<p>for me  sda is a 80GB harddrive and has the following partitions:</p>
<ul>
<li>sda1 with crappy windows on it.</li>
<li>sda5 with my main linux partition</li>
<li>sda6 is linux swap&#8230;</li>
<li>(sd2 is a secondary partition and basically just acts as a wrapper around partition sda5 and sda6 &#8211; partition sda1 has a * which means primary partition&#8230; windows tends to need that <img src='http://www.puerro.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> )</li>
</ul>
<p>a second drive (internally or attached as usb) should show up as <strong>/dev/sd<span style="color: #ff6600;">b</span></strong></p>
<p>(once again assure that with $&gt;fdisk -l /dev/sdb )
</p>
<p style="padding-left: 30px;"><code><br />
$&gt; sudo fdisk -l /dev/sdb<br />
...<br />
Platte /dev/sdb: <strong>640.1 GByte</strong>, 640135028736 Byte<br />
255 Köpfe, 63 Sektoren/Spur, 77825 Zylinder<br />
Einheiten = Zylinder von 16065 × 512 = 8225280 Bytes<br />
Sector size (logical/physical): 512 bytes / 512 bytes<br />
I/O size (minimum/optimal): 512 bytes / 512 bytes<br />
...<br />
</code></p>
<p>I shortened that &#8211; because the Disk size (here 640GB opposite to the old 80GB) is probably all you need to be sure about <strong>source</strong> and <strong>destination</strong> drive. (and yes, my terminal is in german&#8230;)</p>
<h1>Clone in one line!</h1>
<p>Now if you want to clone disk a to disk b just:
</p>
<p style="padding-left: 30px;">$&gt; sudo dd if=/dev/sda of=/dev/sdb bs=32256</p>
<p><strong>Be sure to dd if=source of=destination !!!</strong></p>
<p>The blinking hd light is your only indicator now&#8230;</p>
<p>after termiantion it shows some info:</p>
<p style="padding-left: 30px;">2425911+1 Datensätze ein<br />
2425911+1 Datensätze aus<br />
78250192896 Bytes (78 GB) kopiert, 5880.85 s, 13.3 MB/s</p>
<p>to clone 100GB to usb it takes about 1 hour<br />
the bs= parameter adjusts the block size for faster speed&#8230; on a &#8220;near to death&#8221; source you probably want to ommit that and use the default block size of 512 which is even more fail proof.</p>
<h1>Finish</h1>
<p>you just cloned your whole disk onto a new one&#8230;</p>
<p>Operating Systems, Programs, Customizations, Boot-loader &#8230; all included &#8230;</p>
<h2><strong>in one single fucking line&#8230;</strong></h2>
<p>After your first boot from the cloned disk you probably want to use <a href="http://gparted.sourceforge.net/screenshots.php">gparted</a> to resize your partitions to fit the new harddrive (if it&#8217;s bigger than the old one&#8230;)</p>
<p>you can even use a frigging <a href="http://http://www.ubuntu.com/desktop/get-ubuntu/download">live cd (it&#8217;s even free to download!</a>) and clone your MacOS/Solaris/Windows etc&#8230; onto a bigger disk that way&#8230; (in my example i cloned a Ubuntu/WinXP/ThinkpadRecoveryPartition Dualboot setup)</p>
<p>it will work&#8230; it&#8217;s simple&#8230; it&#8217;s linux!</p>
<p>oh&#8230; i almost forgot&#8230; dd is no kids tool&#8230; so check your syntax twice!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/07/how-to-migrate-linux-to-a-bigger-harddrive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dee Boersma: Pay attention to penguins</title>
		<link>http://www.puerro.net/2010/06/dee-boersma-pay-attention-to-penguins/</link>
		<comments>http://www.puerro.net/2010/06/dee-boersma-pay-attention-to-penguins/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 12:51:25 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[eidos]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=909</guid>
		<description><![CDATA[Why we should pay attention to penguins, not only in operating systems  
Very inspiring Talk, also accusing oil to polute the whole ocean (trough cleaning of tankers &#8211; speech from before the spill)

]]></description>
			<content:encoded><![CDATA[<p>Why we should pay attention to penguins, not only in operating systems <img src='http://www.puerro.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Very inspiring Talk, also accusing oil to polute the whole ocean (trough cleaning of tankers &#8211; speech from before the spill)</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="446" height="326" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/DeeBoersma_2010Z-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/DeeBoersma-2010Z.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=861&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=dee_boersma_pay_attention_to_penguins;year=2010;theme=ocean_stories;theme=a_taste_of_mission_blue_voyage;theme=new_on_ted_com;theme=animals_that_amaze;event=Mission+Blue+Voyage;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="bgcolor" value="#ffffff" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="446" height="326" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" flashvars="vu=http://video.ted.com/talks/dynamic/DeeBoersma_2010Z-medium.flv&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/DeeBoersma-2010Z.embed_thumbnail.jpg&amp;vw=432&amp;vh=240&amp;ap=0&amp;ti=861&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=dee_boersma_pay_attention_to_penguins;year=2010;theme=ocean_stories;theme=a_taste_of_mission_blue_voyage;theme=new_on_ted_com;theme=animals_that_amaze;event=Mission+Blue+Voyage;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" bgcolor="#ffffff" wmode="transparent" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/06/dee-boersma-pay-attention-to-penguins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Why the Internet rocks for Artists and Creatives</title>
		<link>http://www.puerro.net/2010/06/why-the-internet-rocks-for-artists-and-creatives/</link>
		<comments>http://www.puerro.net/2010/06/why-the-internet-rocks-for-artists-and-creatives/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 20:47:59 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[eidos]]></category>
		<category><![CDATA[world]]></category>
		<category><![CDATA[change]]></category>
		<category><![CDATA[crowd]]></category>
		<category><![CDATA[direct]]></category>
		<category><![CDATA[honest]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=892</guid>
		<description><![CDATA[Creative people have an unfair advantage in the internet world. let me explain you why&#8230;
history
As a [musician/painter/cartoonist/writer] you had to got to that special someone, that knows the right people in the right positions.
A painter needs a running a Gallery. The band needs a Record Contract. The writer needs a publisher. i could go on&#8230;
If [...]]]></description>
			<content:encoded><![CDATA[<p>Creative people have an unfair advantage in the internet world. let me explain you why&#8230;</p>
<h2><strong>history</strong></h2>
<p>As a [musician/painter/cartoonist/writer] you had to got to that special someone, that knows the right people in the right positions.</p>
<p>A painter needs a running a Gallery. The band needs a Record Contract. The writer needs a publisher. i could go on&#8230;<br />
If they didn&#8217;t like you</p>
<p>- no chance, doors closed forever.</p>
<h2><strong>today that&#8217;s over</strong></h2>
<p>You no longer need the Company/Manager/Politician&#8230;</p>
<p>In the cloud Age (Internet Time) you can reach a huge Audience in no time! Build a presence and show off your work to the world!</p>
<p>As a writer you could start blogging. If you do good you will attract a certain amount of people. All enjoy reading your stuff. That&#8217;s because they return to your blog right? Probably you have written a book yourself? Advertise for it on your Blog &#8211; and sell directly!</p>
<p>That&#8217;s the big point here. You can hop over all the hands involved in traditional distribution models. You directly reach your audience!</p>
<h2>The math</h2>
<p>So instead to sell 1&#8242;000 Books an get 2.40€ share per sell &#8230; ummm&#8230; 2&#8242;400 €<br />
&#8230; you sell 80  Books directly at 35€ each &#8230; whoooppaa&#8230; <strong>2&#8242;800</strong> €</p>
<p>see <img src='http://www.puerro.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>And <strong>as an artist/creative your website doesn&#8217;t has the looks of beeing Marketing &#8211; which makes the perfect advertisement.</strong></p>
<p>I want to add, that you will only be successful if you stay pure and honest.</p>
<ul>
<li>Bands provide free streams to listen in&#8230; share the fun.</li>
<li>Artists feature some inspiring Galleries.</li>
<li>Cartoonist shows his weekly cartoon.</li>
<li>Job coach blogs about his experiences and thoughts about his work&#8230;</li>
</ul>
<p>All free for anyone to enjoy&#8230;</p>
<p>Some visitors lure into the attached shops and buy prints/poster/songs/mugs/consulting/books/carpets/goats</p>
<p>But selling is only a side effect the main purpose is to transport passion!</p>
<p>&#8230;like&#8230; oh look, there is a shop too.</p>
<h2>take action!</h2>
<p>Sell direct, sell local or global&#8230; get direct feedback or possibly even fans!<br />
So you Creative/Artists/Whatnot start showing off your work! and do it because you like it &#8211; not because you want to earn a lot.</p>
<p>Inspired by</p>
<h4><a href=" Why Artists and Creatives Have an Unfair Advantage at Internet Marketing  by Mark McGuinness">&#8220;Why Artists and Creatives Have an Unfair  Advantage at Internet Marketing&#8221;</a><a href=" Why Artists and Creatives Have an Unfair Advantage at Internet Marketing  by Mark McGuinness"></a></h4>
<p style="text-align: right;"><a href=" Why Artists and Creatives Have an Unfair Advantage at Internet Marketing  by Mark McGuinness">, by <span>Mark  McGuinness</span></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/06/why-the-internet-rocks-for-artists-and-creatives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apple Standards</title>
		<link>http://www.puerro.net/2010/06/apple-standards/</link>
		<comments>http://www.puerro.net/2010/06/apple-standards/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 11:38:22 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Standards]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=887</guid>
		<description><![CDATA[I don&#8217;t think Apple knows the real meaning of the word Standard.
Following message came from their HTML5 Showcase Page (Note that HTML5 will be the next web standard)
Yea, download Safari to view&#8230;
So if you read &#8220;Web-Standards&#8221; in some Apple Texts, they actually intended to write: &#8220;works with safari&#8221;. Common typo.
I&#8217;m waiting for the first &#8220;best [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t think Apple knows the real meaning of the word Standard.<br />
Following message came from their HTML5 Showcase Page (Note that HTML5 will be the next web standard)</p>
<div id="attachment_888" class="wp-caption alignnone" style="width: 460px"><a href="http://www.puerro.net/wp-content/uploads/2010/06/AppleHtml5.png" rel="lightbox[887]"><img src="http://www.puerro.net/wp-content/uploads/2010/06/AppleHtml5.png" alt="Apple&#039;s interpretation of Web Standards" title="AppleHtml5" width="450" class="size-full wp-image-888" /></a><p class="wp-caption-text">Apple's interpretation of Web Standards</p></div>
<p>Yea, download Safari to view&#8230;<br />
So if you read &#8220;Web-Standards&#8221; in some Apple Texts, they actually intended to write: &#8220;works with safari&#8221;. Common typo.</p>
<p>I&#8217;m waiting for the first &#8220;best viewed with safari&#8221; buttons to appear&#8230; Mocking guaranteed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/06/apple-standards/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPad &#8211; Alternatives to blow 750€uros or less</title>
		<link>http://www.puerro.net/2010/06/ipad-alternatives-to-blow-750euros-or-less/</link>
		<comments>http://www.puerro.net/2010/06/ipad-alternatives-to-blow-750euros-or-less/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 00:33:16 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[gadgets]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=862</guid>
		<description><![CDATA[750€ (approx 1&#8242;050 CHF) is way too much for such a toy device&#8230; (No Flash, No USB, No Webcam, Apple Approved Software exclusively)

look what you could buy for the same price or less&#8230;
A kick ass Home NAS Server like the brand new QNAP TS 459 for 757.- €uros. Serve your Sound Files everywhere around the [...]]]></description>
			<content:encoded><![CDATA[<p>750€ (approx 1&#8242;050 CHF) is way too much for such a toy device&#8230; (No Flash, No USB, No Webcam, Apple Approved Software exclusively)</p>
<p><a href="http://www.amazon.de/gp/product/B00365F6EG?ie=UTF8&#038;tag=puerronet-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=B00365F6EG"><img border="0" src="http://www.puerro.net/wp-content/uploads/2010/06/ipad.jpg"/></a><img src="http://www.assoc-amazon.de/e/ir?t=puerronet-21&#038;l=as2&#038;o=3&#038;a=B00365F6EG" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p>look what you could buy for the same price or less&#8230;</p>
<p>A kick ass Home NAS Server like the brand new QNAP TS 459 for 757.- €uros. Serve your Sound Files everywhere around the house, make backups (even time machine ones), use as a web-server, sync your calendar and adresses (even sync to mobiles via addon)&#8230;</p>
<p><a href="http://www.amazon.de/gp/product/B0032JMHJI?ie=UTF8&#038;tag=puerronet-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=B0032JMHJI"><img border="0" src="http://www.puerro.net/wp-content/uploads/2010/06/qnap.jpg"/></a><img src="http://www.assoc-amazon.de/e/ir?t=puerronet-21&#038;l=as2&#038;o=3&#038;a=B0032JMHJI" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /><br />
now thats a device to have fun with for years to come! And it is actually a very useful device.</p>
<p>Or buy one of the Asus Touch Tablet PC&#8217;s 439.- €uros, USB, 320Gig Harddrive, Keyboard and so on <img src='http://www.puerro.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /><br />
<a href="http://www.amazon.de/gp/product/B0037QG5M6?ie=UTF8&#038;tag=puerronet-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=B0037QG5M6"><img border="0" src="http://www.puerro.net/wp-content/uploads/2010/06/EeePCT101MT.jpg"/></a><img src="http://www.assoc-amazon.de/e/ir?t=puerronet-21&#038;l=as2&#038;o=3&#038;a=B0037QG5M6" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p>or if you need more power, a bigger screen, 4Gigs of Memory and an Intel Duo-Core &#8211; and yet still pay less than for an iPad, (namingly 576.- €). Then get the marvellous Acer Aspire 1825PTZ-414G32n (Which has a serious naming problem&#8230;)</p>
<p><a href="http://www.amazon.de/gp/product/B003DKJ5Y6?ie=UTF8&#038;tag=puerronet-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=B003DKJ5Y6"><img border="0" src="http://www.puerro.net/wp-content/uploads/2010/06/AcerTablet11.jpg"/></a><img src="http://www.assoc-amazon.de/e/ir?t=puerronet-21&#038;l=as2&#038;o=3&#038;a=B003DKJ5Y6" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p>Uh, and if you search a nice music and video-player to chill in your living room and impress your friends&#8230; Get a Squeezebox Touch from Logitech. (Only 285€) The Interface is just beautiful &#8211; And it works perfectly together with the QNAP Music Server&#8230;</p>
<p><a href="http://www.amazon.de/gp/product/B002N203SW?ie=UTF8&#038;tag=puerronet-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=B002N203SW"><img border="0" src="http://www.puerro.net/wp-content/uploads/2010/06/logitech-squeezebox-touch.jpg"/></a><img src="http://www.assoc-amazon.de/e/ir?t=puerronet-21&#038;l=as2&#038;o=3&#038;a=B002N203SW" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p>It is surely the next gadget i&#8217;m gonna buy!</p>
<p>With the appropriate controller of course 285€ (which ist remote control and a portable player at once)<br />
(even if you buy both logitech products you spend less than for an iBad)</p>
<p><a href="http://www.amazon.de/gp/product/B0012KFMFA?ie=UTF8&#038;tag=puerronet-21&#038;linkCode=as2&#038;camp=1638&#038;creative=19454&#038;creativeASIN=B0012KFMFA"><img border="0" src="http://www.puerro.net/wp-content/uploads/2010/06/squeezebox_controller.jpg"/></a><img src="http://www.assoc-amazon.de/e/ir?t=puerronet-21&#038;l=as2&#038;o=3&#038;a=B0012KFMFA" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p>What will you get instead of an iPad?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/06/ipad-alternatives-to-blow-750euros-or-less/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nerd kryptonite</title>
		<link>http://www.puerro.net/2010/06/nerd-kryptonite/</link>
		<comments>http://www.puerro.net/2010/06/nerd-kryptonite/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 20:18:13 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=848</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_849" class="wp-caption alignnone" style="width: 490px"><a href="http://www.puerro.net/wp-content/uploads/2010/06/6180_abce.gif" rel="lightbox[848]"><img src="http://www.puerro.net/wp-content/uploads/2010/06/6180_abce.gif" alt="source: http://www.guyandrodd.com/" title="Nerd Kryptonite" width="480" class="size-full wp-image-849" /></a><p class="wp-caption-text">from http://www.guyandrodd.com/</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/06/nerd-kryptonite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visualization of Oil Spill Disaster Scale</title>
		<link>http://www.puerro.net/2010/06/visualization-of-oil-spill-disaster-scale/</link>
		<comments>http://www.puerro.net/2010/06/visualization-of-oil-spill-disaster-scale/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 12:54:26 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[world]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=842</guid>
		<description><![CDATA[Last News say it will at least continue to spill till August&#8230; very bad
www.ifitwasmyhome.com visualizes the scale pretty well. Thanks to @kevinmoilar for pointing it out to me.
]]></description>
			<content:encoded><![CDATA[<p>Last News say it will at least continue to spill till August&#8230; very bad</p>
<p><a href="http://www.ifitwasmyhome.com/">www.ifitwasmyhome.com </a>visualizes the scale pretty well. Thanks to <a href="http://twitter.com/kevinmoilar">@kevinmoilar</a> for pointing it out to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/06/visualization-of-oil-spill-disaster-scale/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Prezi Presentation Tool</title>
		<link>http://www.puerro.net/2010/06/prezi-presentation-tool/</link>
		<comments>http://www.puerro.net/2010/06/prezi-presentation-tool/#comments</comments>
		<pubDate>Wed, 02 Jun 2010 12:52:19 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=841</guid>
		<description><![CDATA[I cannot stress enough about how cool it is&#8230; but wait, look at a presentation:

.prezi-player { width: 500px; } .prezi-player-links { text-align: center; }


10 ways to say it with prezi on Prezi


]]></description>
			<content:encoded><![CDATA[<p>I cannot stress enough about how cool it is&#8230; but wait, look at a presentation:</p>
<div class="prezi-player">
<style type="text/css" media="screen">.prezi-player { width: 500px; } .prezi-player-links { text-align: center; }</style>
<p><object id="prezi_rhmtbwld0cvy" name="prezi_rhmtbwld0cvy" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="500" height="400"><param name="movie" value="http://prezi.com/bin/preziloader.swf"/><param name="allowfullscreen" value="true"/><param name="allowscriptaccess" value="always"/><param name="bgcolor" value="#ffffff"/><param name="flashvars" value="prezi_id=rhmtbwld0cvy&amp;lock_to_path=1&amp;color=ffffff&amp;autoplay=no"/><embed id="preziEmbed_rhmtbwld0cvy" name="preziEmbed_rhmtbwld0cvy" src="http://prezi.com/bin/preziloader.swf" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="400" bgcolor="#ffffff" flashvars="prezi_id=rhmtbwld0cvy&amp;lock_to_path=1&amp;color=ffffff&amp;autoplay=no"></embed></object>
<div class="prezi-player-links">
<p><a title="Prezi is simple: You Write, Zoom, Arrange.Using these simple means, you can express many things - with great impact.Here are some basic examples such as timelines, TOC, Zen likes." href="http://prezi.com/rhmtbwld0cvy/academy-10-ways-to-say-it-with-prezi/">10 ways to say it with prezi</a> on <a href="http://prezi.com">Prezi</a></p>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/06/prezi-presentation-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>puerro.net wordle</title>
		<link>http://www.puerro.net/2010/05/puerro-net-wordle/</link>
		<comments>http://www.puerro.net/2010/05/puerro-net-wordle/#comments</comments>
		<pubDate>Sun, 30 May 2010 12:26:15 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=829</guid>
		<description><![CDATA[Wordle of the puerro.net feed&#8230;

Just beautiful, go and try it out yourself
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wordle.net/">Wordle</a> of the puerro.net feed&#8230;<br />
<a href="http://www.puerro.net/wp-content/uploads/2010/05/puerro.net_.wordle.png" rel="lightbox[829]"><img src="http://www.puerro.net/wp-content/uploads/2010/05/puerro.net_.wordle-300x185.png" alt="puerro.net.wordle" title="puerro.net.wordle" width="300" height="185" class="alignnone size-medium wp-image-830" /></a><br />
Just beautiful, <a href="http://www.wordle.net/create">go and try it out yourself</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/05/puerro-net-wordle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great SF.TV Comment on Oil Spill</title>
		<link>http://www.puerro.net/2010/05/great-sf-tv-comment-on-oil-spill/</link>
		<comments>http://www.puerro.net/2010/05/great-sf-tv-comment-on-oil-spill/#comments</comments>
		<pubDate>Wed, 26 May 2010 19:55:33 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[eidos]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=821</guid>
		<description><![CDATA[Following Comment from the live airing of the federal and most important swiss daily news show &#8220;tagesschau&#8221;
&#8220;It appears that the only thing working right now is the live camera feed from the ground&#8230;&#8221;
SF Tagesschau Fotage
Normally swiss tv is very neutral&#8230; I&#8217;m very thankfull for that commetary&#8230;
&#8230;update:
hmmm.. now even the live feed seems broken:
bp.com/liveassets/
Just their WebInterface [...]]]></description>
			<content:encoded><![CDATA[<p>Following Comment from the live airing of the federal and most important swiss daily news show &#8220;tagesschau&#8221;</p>
<p>&#8220;It appears that the only thing working right now is the live camera feed from the ground&#8230;&#8221;</p>
<p><a title="SF Tagesschau Fotage" href="http://www.tagesschau.sf.tv/Nachrichten/Archiv/2010/05/26/International/Operation-Top-Kill-in-1500-Metern-Tiefe-gestartet">SF Tagesschau Fotage</a></p>
<p>Normally swiss tv is very neutral&#8230; I&#8217;m very thankfull for that commetary&#8230;</p>
<p>&#8230;update:</p>
<p>hmmm.. now even the live feed seems broken:</p>
<p><a href="http://www.bp.com/liveassets/bp_internet/globalbp/globalbp_uk_english/homepage/STAGING/local_assets/bp_homepage/html/rov_stream.html">bp.com/liveassets/</a></p>
<p>Just their WebInterface is broken it works if you <a href="rtsp://a261.l9789246260.c97892.g.lm.akamaistream.net/D/261/97892/v0001/reflector:46260">access this link</a> via vlc and such&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/05/great-sf-tv-comment-on-oil-spill/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>gnome-shell</title>
		<link>http://www.puerro.net/2010/05/gnome-shell/</link>
		<comments>http://www.puerro.net/2010/05/gnome-shell/#comments</comments>
		<pubDate>Sat, 15 May 2010 17:07:12 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[*nix]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[OpenSource]]></category>
		<category><![CDATA[fun]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=603</guid>
		<description><![CDATA[Let me introduce you to the new Desktop Interface gnome-shell from GNOME 3.
To start it&#8217;s totally (spoiler alert)    impressive.
A total break with the olde tradition of placeable Panels and fix Desktops.
At the first view it looks no different&#8230; (except for the little lousy styled but handy drawer on the left side)
Nice Integration of IM-Chat in [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_794" class="wp-caption alignright" style="width: 310px"><a href="http://www.puerro.net/wp-content/uploads/2010/05/gnome-shell-desktop.png" rel="lightbox[603]"><img class="size-medium wp-image-794  " title="Gnome Shell Desktop" src="http://www.puerro.net/wp-content/uploads/2010/05/gnome-shell-desktop-300x187.png" alt="Gnome Shell Desktop" width="300" height="187" /></a><p class="wp-caption-text">Gnome Shell Desktop</p></div>
<p>Let me introduce you to the new Desktop Interface <a href="http://live.gnome.org/GnomeShell"><strong>gnome-shell</strong></a> from GNOME 3.</p>
<p>To start it&#8217;s totally (spoiler alert)    impressive.</p>
<p>A total break with the olde tradition of placeable Panels and fix Desktops.<br />
At the first view it looks no different&#8230; (except for the little lousy styled but handy drawer on the left side)</p>
<p>Nice Integration of IM-Chat in top right, activity icons like wlan &#8230; time in the middle<br />
left we have the running program and the &#8220;Activity&#8221; Tab&#8230;</p>
<p>By clicking on <strong>Activit</strong>y in top-left it zooms to a totally new, and in my eyes AWESOME view.</p>
<div id="attachment_793" class="wp-caption alignright" style="width: 310px"><a href="http://www.puerro.net/wp-content/uploads/2010/05/gnome-shell.png" rel="lightbox[603]"><img class="size-medium wp-image-793  " title="Gnome Shell Activity" src="http://www.puerro.net/wp-content/uploads/2010/05/gnome-shell-300x187.png" alt="New Gnome Shell" width="300" height="187" /></a><p class="wp-caption-text">Gnome Shell Activity</p></div>
<p>A <strong>search Field</strong> is focused where one can start programms, search for his files or porn. Very handy.</p>
<p><strong>Running Programs</strong> (blue dots) and Favorites at the left&#8230;</p>
<p>followed by <strong>Locations</strong> (Documents, Images-Folder, Favs usw&#8230;)</p>
<p>&#8230;and <strong>recently used Documents</strong></p>
<p>a view of <strong>all open windows</strong> on the right. like Mac&#8217;s Expose. Only Quicker.</p>
<div id="attachment_795" class="wp-caption alignright" style="width: 310px"><a href="http://www.puerro.net/wp-content/uploads/2010/05/gnome-shell-desktops.png" rel="lightbox[603]"><img class="size-medium wp-image-795  " title="multiple Desktops" src="http://www.puerro.net/wp-content/uploads/2010/05/gnome-shell-desktops-300x187.png" alt="gnome-shell-desktops" width="300" height="187" /></a><p class="wp-caption-text">multiple Desktops</p></div>
<p>and with <strong>multiple Desktops</strong> of Course!</p>
<p>No one is forced to use a mouse to use the Activity Tab. The Super-Key will do it (a.k.a apple-key, a.k.a. evil-key, a.k.a. windows-key).</p>
<p>So at the press of ONE Key -<br />
all your recent documents, running programs, open windows are at your view<br />
and the searchbox ready for launch a program or find that sourcefile&#8230;</p>
<p><strong>Install <a href="apt:gnome-shell">gnome-shell</a> and run</strong></p>
<pre>$&gt; gnome-shell --replace</pre>
<p>in a Terminal to try it out&#8230; killing that Terminal restores you back to gnome.</p>
<p>Interestingly i&#8217;ve found some javascript  popping up during the loading process&#8230; looks like they run the &#8220;Activity&#8221; Tab. Interesting to see javascript on a traditional Desktop&#8230; and what a surprise after realizing how responsive the interface is. So javascript isn&#8217;t as lameass slow as Java? (Run &#8211; Duck&amp;Cover)</p>
<p>I think the Interface is slick and super-fast&#8230; i do miss a faster way of launching new apps&#8230; but apart from that it is a freaking good experience.<br />
4 Stars out of 5. one star lost due to lack of dual-head support in Beta Stage <img src='http://www.puerro.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p>Hehe, i made the start&#8230;</p>
<p><a href="http://live.gnome.org/GnomeShell/CheatSheet">detail description of features and additional screenies</a></p>
<p>How do You like the new Interface? What works?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/05/gnome-shell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The resurrection of puerro.net</title>
		<link>http://www.puerro.net/2010/05/the-resurrection-of-puerro-net/</link>
		<comments>http://www.puerro.net/2010/05/the-resurrection-of-puerro-net/#comments</comments>
		<pubDate>Thu, 13 May 2010 21:56:28 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=605</guid>
		<description><![CDATA[The new Design wasn&#8217;t my creativity&#8230; credits go to carringtontheme. Thanks a lot for sharing!

My last post was last year. It wasn&#8217;t procrastination only. I&#8217;ve started my own Business back in October. Expect more on that in later posts. It&#8217;s home on the net is monkee.ch (All in German for now..).
Over trying to get enough [...]]]></description>
			<content:encoded><![CDATA[<p>The new Design wasn&#8217;t my creativity&#8230; credits go to <a href="http://carringtontheme">carringtontheme.</a> Thanks a lot for sharing!<a href="http://carringtontheme"><br />
</a></p>
<p>My last post was last year. It wasn&#8217;t procrastination only. I&#8217;ve started my own Business back in October. Expect more on that in later posts. It&#8217;s home on the net is <a href="http://monkee.ch">monkee.ch</a> (All in German for now..).</p>
<p>Over trying to get enough Projects to pay my bills and figuring out the next &#8220;one million $ web-service&#8221; &#8230; i&#8217;ve somehow lost track of my all beloved Blog. I apologize.</p>
<p>In Future i want to write a least one Post a week. I also Plan to reinforce Categories <img src='http://www.puerro.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' />  Which will be like:</p>
<ul>
<li>OpenSource</li>
<li>Web-Development</li>
<li>Gadgets</li>
<li>Programming</li>
<li>Eidos (Thoughts about the world of which i think are worth spreading)</li>
<li>Linux</li>
<li>and of course nerdy jokes and other off topic crap like &#8220;<a href="http://thepiratebay.org/search/the%20big%20bang%20theory/0/99/0">The Big Bang Theory</a>&#8221; TV Series (Which you have to watch instantly if you don&#8217;t know em already).</li>
</ul>
<p>I love to help out &#8230; so if you have questions &#8211; ask them&#8230; i&#8217;ll respond.</p>
<p>Stay tuned! I&#8217;m back <img src='http://www.puerro.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> </p>
<p>mp*</p>
<p>*the <a title="Cloud Age Business Consulting" href="http://monkee.ch">monkee</a> at your service</p>
<p>[ad#small]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2010/05/the-resurrection-of-puerro-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frustration</title>
		<link>http://www.puerro.net/2009/12/frustration/</link>
		<comments>http://www.puerro.net/2009/12/frustration/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 15:43:19 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[fun]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=595</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.puerro.net/wp-content/uploads/2009/12/Frustration_Relief.gif" rel="lightbox[595]"><img class="alignnone size-full wp-image-596" title="Frustration_Relief" src="http://www.puerro.net/wp-content/uploads/2009/12/Frustration_Relief.gif" alt="Frustration_Relief" width="482" height="584" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2009/12/frustration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dynamic-net Service not as advertised</title>
		<link>http://www.puerro.net/2009/12/dynamic-net-service-not-as-advertised/</link>
		<comments>http://www.puerro.net/2009/12/dynamic-net-service-not-as-advertised/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 14:23:17 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[no]]></category>

		<guid isPermaLink="false">http://www.puerro.net/?p=589</guid>
		<description><![CDATA[24 Hours they say&#8230; Ok, 24 Hours are gone, with NO reaction from dynamic-net&#8230;
my whole Reseller Account + 3 Client Accounts are gone&#8230; not a big deal for dynamic-net as they do not even feel like responding to my ticket/mail/phone.
]]></description>
			<content:encoded><![CDATA[<p>24 Hours they say&#8230; Ok, 24 Hours are gone, with NO reaction from dynamic-net&#8230;</p>
<p>my whole Reseller Account + 3 Client Accounts are gone&#8230; not a big deal for dynamic-net as they do not even feel like responding to my ticket/mail/phone.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2009/12/dynamic-net-service-not-as-advertised/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Uh, oh&#8230; dynamic-net has Holiday season (so no one answers the phone) and monkee.ch is down</title>
		<link>http://www.puerro.net/2009/12/uh-oh-dynamic-net-has-holiday-season-so-no-one-answers-the-phone-and-monkee-ch-is-down/</link>
		<comments>http://www.puerro.net/2009/12/uh-oh-dynamic-net-has-holiday-season-so-no-one-answers-the-phone-and-monkee-ch-is-down/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 15:28:49 +0000</pubDate>
		<dc:creator>Manfred Pürro</dc:creator>
				<category><![CDATA[no]]></category>

		<guid isPermaLink="false">http://www.puerro.net/2009/12/uh-oh-dynamic-net-has-holiday-season-so-no-one-answers-the-phone-and-monkee-ch-is-down/</guid>
		<description><![CDATA[note to myself:
even for a crappy little site you need a failover server
(preferably on another continent  )
side note:
365 Day Support they say,
but reacting inside 24 hours effectly turns this into a 192.5 Day Support)
If anyone knows a good webhoster with reseller accounts (PHP, MySQL SSH Access), please leave me a comment&#8230;
]]></description>
			<content:encoded><![CDATA[<p>note to myself:</p>
<p>even for a crappy little site you need a failover server<br />
(preferably on another continent <img src='http://www.puerro.net/wp-includes/images/smilies/icon_razz.gif' alt=':-P' class='wp-smiley' /> )</p>
<p>side note:<br />
365 Day Support they say,<br />
but reacting inside 24 hours effectly turns this into a 192.5 Day Support)</p>
<p>If anyone knows a good webhoster with reseller accounts (PHP, MySQL SSH Access), please leave me a comment&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.puerro.net/2009/12/uh-oh-dynamic-net-has-holiday-season-so-no-one-answers-the-phone-and-monkee-ch-is-down/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
