<?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>Toys for the desk!</title>
	<atom:link href="http://www.toysdesk.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.toysdesk.com</link>
	<description>Experiments, Research and more...</description>
	<lastBuildDate>Wed, 25 Jan 2012 16:31:52 +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>GIMP: TypeError in slice(): integer argument expected, got float</title>
		<link>http://www.toysdesk.com/2012/01/gimp-typeerror-in-slice-integer-argument-expected-got-float/</link>
		<comments>http://www.toysdesk.com/2012/01/gimp-typeerror-in-slice-integer-argument-expected-got-float/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 16:31:34 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=285</guid>
		<description><![CDATA[<p>Today, trying to slice an image with Gimp, with my Kubuntu Oneiric I have found this strange error message: &#8220;TypeError in slice(): integer argument expected, got float&#8221;.</p> <p>This is a well know bug, but until it will be fixed, you can fix it by yourself.</p> <p>Run from the terminal your favorite text editor (gedit, kate, [...]]]></description>
			<content:encoded><![CDATA[<p>Today, trying to slice an image with Gimp, with my Kubuntu Oneiric I have found this strange error message: &#8220;TypeError in slice(): integer argument expected, got float&#8221;.</p>
<p>This is a well know bug, but until it will be fixed, you can fix it by yourself.</p>
<p>Run from the terminal your favorite text editor (gedit, kate, vim, nano, pico, etc&#8230;) and replace the bad line with the good one.</p>
<pre style="padding-left: 30px;" dir="ltr"><em>sudo kate /usr/lib/gimp/2.0/plug-ins/py-slice.py</em></pre>
<p>replace at line 172 (ymmv)</p>
<p style="padding-left: 30px;"><em>temp_image.crop(int(right &#8211; left), int(bottom &#8211; top), int(left), int(top))</em></p>
<p>with</p>
<pre style="padding-left: 30px;" dir="ltr"><em>temp_image.crop(int(right - left), int(bottom - top), int(left), int(top))</em></pre>
<p>Save and close. Happy slicing! <img src='http://www.toysdesk.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2012/01/gimp-typeerror-in-slice-integer-argument-expected-got-float/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SBackup and Ubuntu 11.10 (Oneiric Ocelot)</title>
		<link>http://www.toysdesk.com/2012/01/sbackup-and-ubuntu-11-10-oneiric-ocelot/</link>
		<comments>http://www.toysdesk.com/2012/01/sbackup-and-ubuntu-11-10-oneiric-ocelot/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 17:48:57 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=275</guid>
		<description><![CDATA[<p>I&#8217;m a huge fan of <a href="https://launchpad.net/sbackup" target="_blank">Simple Backup</a> for many reasons (simple personal backup configuration, settings profile, etc&#8230;).</p> <p>The last Ubuntu version, Oneiric Ocelot, contains a bug preventing SBackup from running from a system wide cron-job and storing the backup data on remote drive.</p> <p>If you have this problem, from the logs, you can [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m a huge fan of <a href="https://launchpad.net/sbackup" target="_blank">Simple Backup</a> for many reasons (simple personal backup configuration, settings profile, etc&#8230;).</p>
<p>The last Ubuntu version, Oneiric Ocelot, contains a bug preventing SBackup from running from a system wide cron-job and storing the backup data on remote drive.</p>
<p>If you have this problem, from the logs, you can find something like this:</p>
<blockquote>
<pre>ERROR: Traceback (most recent call last):
File "/usr/share/sbackup/sbackup/fs_backend/_gio_utils.py", line 372, in _mount_done_cb
self.__mount_finish_callback(error)
File "/usr/share/sbackup/sbackup/fs_backend/_gio_fam.py", line 157, in _mount_cb
raise exceptions.FileAccessException("Unable to mount: %s" % error)
FileAccessException: Unable to mount: volume doesn't implement mount</pre>
</blockquote>
<p>I have fixed this (well&#8230; it&#8217;s a workaround&#8230;) adding the SBackup executable to sudoers and running the backup task from my personal cron-job.</p>
<p>To do this you have to:</p>
<ol>
<li>run &#8220;<strong>sudo visudo</strong>&#8220;</li>
<li>add to the bottom of the file this:<br />
<strong>Cmnd_Alias SBACKUP_CMDS = /usr/bin/sbackup</strong><br />
<strong>USERNAME ALL=NOPASSWD: SBACKUP_CMDS</strong></li>
<li>replace <strong>USERNAME</strong> with your actual username (eg John)</li>
<li>save and quit the editor with <em>CTRL-X</em></li>
<li>run &#8220;<strong>crontab -e</strong>&#8220;</li>
<li>add to the bottom of the file this:<br />
<strong>00      */3     *       *       *       /usr/bin/sudo /usr/bin/sbackup</strong></li>
<li>take a cup of coffee <img src='http://www.toysdesk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </li>
</ol>
<p>Now, every 3 hours your backup is running with root privileges and over the network. Feel free to change the cron-job as you wish! <img src='http://www.toysdesk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2012/01/sbackup-and-ubuntu-11-10-oneiric-ocelot/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Redo Backup: Bare Metal Restore Solution GUI</title>
		<link>http://www.toysdesk.com/2012/01/redo-backup-bare-metal-restore-solution-gui/</link>
		<comments>http://www.toysdesk.com/2012/01/redo-backup-bare-metal-restore-solution-gui/#comments</comments>
		<pubDate>Sat, 07 Jan 2012 13:54:12 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=272</guid>
		<description><![CDATA[<p>This livecd it&#8217;s a simple but powerful solution to backup and restore partitions.</p> Easy graphical user interface boots from CD in less than a minute No installation needed; runs from a CD-ROM or a USB stick Saves and restores Windows and Linux machines Automatically finds local network shares Access your files even if you can&#8217;t log [...]]]></description>
			<content:encoded><![CDATA[<p>This livecd it&#8217;s a simple but powerful solution to backup and restore partitions.</p>
<ul>
<li>Easy <strong>graphical user interface</strong> boots from CD in less than a minute</li>
<li><strong>No installation needed</strong>; runs from a CD-ROM or a USB stick</li>
<li>Saves and restores <strong>Windows and Linux</strong> machines</li>
<li>Automatically finds <strong>local network shares</strong></li>
<li>Access your files <strong>even if you can&#8217;t log in</strong></li>
<li><strong>Recover deleted pictures,</strong> documents, and other files</li>
<li><strong>Internet access with a full-featured browser</strong> to download drivers</li>
<li>Live CD download size is <strong>only about 200MB</strong></li>
</ul>
<p><a href="http://redobackup.org/">Redo Backup &amp; Restore</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2012/01/redo-backup-bare-metal-restore-solution-gui/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>pigz and pbzip2 &#8211; it&#8217;s time to evolve!</title>
		<link>http://www.toysdesk.com/2012/01/pigz-and-pbzip2-its-time-to-evolve/</link>
		<comments>http://www.toysdesk.com/2012/01/pigz-and-pbzip2-its-time-to-evolve/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 15:01:23 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[Cool]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=262</guid>
		<description><![CDATA[<p>Recently I have discovered two new (at least for me) utilities:</p> <p>- <a href="http://www.zlib.net/pigz/">pigz &#8211; Parallel gzip</a></p> <p>- <a href="http://compression.ca/pbzip2/">pbzip2 &#8211; Parallel bzip2</a></p> <p>I&#8217;m using gzip and bzip2 from ages, and also multiple processors and multiple cores, so why don&#8217;t use multi-threading compression utilities? They are (obviously) binary compatible with the old counterparts and they [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I have discovered two new (at least for me) utilities:</p>
<p>- <a href="http://www.zlib.net/pigz/">pigz &#8211; Parallel gzip</a></p>
<p>- <a href="http://compression.ca/pbzip2/">pbzip2 &#8211; Parallel bzip2</a></p>
<p>I&#8217;m using gzip and bzip2 from ages, and also multiple processors and multiple cores, so why don&#8217;t use multi-threading compression utilities? They are (obviously) binary compatible with the old counterparts and they have also the same command line flags.</p>
<p>It&#8217;s time to take advantage of new technologies. Happy multi-threading folks!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2012/01/pigz-and-pbzip2-its-time-to-evolve/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Raspberry Pi &#8211; a must have toy!</title>
		<link>http://www.toysdesk.com/2012/01/raspberry-pi-a-must-have-toy/</link>
		<comments>http://www.toysdesk.com/2012/01/raspberry-pi-a-must-have-toy/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 13:55:19 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[Cool]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=265</guid>
		<description><![CDATA[<p>This board is the coolest thing I’ve seen in computing for years. The price (25$ for the basic one and 35$ for the advanced one) it will be awesome.</p> <p>I can&#8217;t wait! </p> <p><a href="http://www.raspberrypi.org/faqs">FAQs &#124; Raspberry Pi</a>.</p>]]></description>
			<content:encoded><![CDATA[<p>This board is the coolest thing I’ve seen in computing for years. The price (25$ for the basic one and 35$ for the advanced one) it will be awesome.</p>
<p>I can&#8217;t wait! <img src='http://www.toysdesk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><a href="http://www.raspberrypi.org/faqs">FAQs | Raspberry Pi</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2012/01/raspberry-pi-a-must-have-toy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Step aside Arduino, TinkerForge is the new sheriff in mod-town video &#8212; Engadget</title>
		<link>http://www.toysdesk.com/2011/12/step-aside-arduino-tinkerforge-is-the-new-sheriff-in-mod-town-video-engadget/</link>
		<comments>http://www.toysdesk.com/2011/12/step-aside-arduino-tinkerforge-is-the-new-sheriff-in-mod-town-video-engadget/#comments</comments>
		<pubDate>Sun, 11 Dec 2011 10:19:57 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[Cool]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Links]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=260</guid>
		<description><![CDATA[<p><a href="http://www.engadget.com/2011/12/09/step-aside-arduino-tinkerforge-is-the-new-sheriff-in-mod-town/">Step aside Arduino, TinkerForge is the new sheriff in mod-town video &#8212; Engadget</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.engadget.com/2011/12/09/step-aside-arduino-tinkerforge-is-the-new-sheriff-in-mod-town/">Step aside Arduino, TinkerForge is the new sheriff in mod-town video &#8212; Engadget</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2011/12/step-aside-arduino-tinkerforge-is-the-new-sheriff-in-mod-town-video-engadget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ImageOptim — all image compression tools in one Mac app</title>
		<link>http://www.toysdesk.com/2011/11/imageoptim-%e2%80%94-all-image-compression-tools-in-one-mac-app/</link>
		<comments>http://www.toysdesk.com/2011/11/imageoptim-%e2%80%94-all-image-compression-tools-in-one-mac-app/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 23:29:40 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=258</guid>
		<description><![CDATA[<p><a href="http://imageoptim.pornel.net/">ImageOptim — all image compression tools in one Mac app</a>.</p> <p>Very nice and open source application to reduce photo size without compromises!</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://imageoptim.pornel.net/">ImageOptim — all image compression tools in one Mac app</a>.</p>
<p>Very nice and <strong>open source</strong> application to reduce photo size without compromises!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2011/11/imageoptim-%e2%80%94-all-image-compression-tools-in-one-mac-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Best Terminal Emulator for Mac OS X</title>
		<link>http://www.toysdesk.com/2011/11/the-best-terminal-emulator-for-mac-os-x/</link>
		<comments>http://www.toysdesk.com/2011/11/the-best-terminal-emulator-for-mac-os-x/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 09:16:19 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=254</guid>
		<description><![CDATA[<p><a href="http://lifehacker.com/5857046/the-best-terminal-emulator-for-mac-os-x?utm_medium=referral&#38;utm_source=pulsenews">The Best Terminal Emulator for Mac OS X</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://lifehacker.com/5857046/the-best-terminal-emulator-for-mac-os-x?utm_medium=referral&amp;utm_source=pulsenews">The Best Terminal Emulator for Mac OS X</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2011/11/the-best-terminal-emulator-for-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lytro: The Revolutionary Camera is Now on Sale</title>
		<link>http://www.toysdesk.com/2011/11/lytro-the-revolutionary-camera-is-now-on-sale-my-modern-metropolis/</link>
		<comments>http://www.toysdesk.com/2011/11/lytro-the-revolutionary-camera-is-now-on-sale-my-modern-metropolis/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 14:32:34 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[Cool]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[Photo]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=251</guid>
		<description><![CDATA[<p><a href="http://www.mymodernmet.com/profiles/blogs/lytro-the-revolutionary-camera-is-now-on-sale">Lytro: The Revolutionary Camera is Now on Sale &#8211; My Modern Metropolis</a>.</p>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.mymodernmet.com/profiles/blogs/lytro-the-revolutionary-camera-is-now-on-sale">Lytro: The Revolutionary Camera is Now on Sale &#8211; My Modern Metropolis</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2011/11/lytro-the-revolutionary-camera-is-now-on-sale-my-modern-metropolis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Have you an IOS device? Get 50gb for free!</title>
		<link>http://www.toysdesk.com/2011/10/have-you-an-ios-device-get-50gb-for-free/</link>
		<comments>http://www.toysdesk.com/2011/10/have-you-an-ios-device-get-50gb-for-free/#comments</comments>
		<pubDate>Fri, 14 Oct 2011 18:40:23 +0000</pubDate>
		<dc:creator>huntz</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.toysdesk.com/?p=242</guid>
		<description><![CDATA[<p>The guys from <a href="http://box.net">Box.net</a> are giving away 50gb of space forever if you install the last APP on your iPhone/iPod/iPad. It&#8217;s a nice and free backup solution!</p> <p><a href="http://blog.box.net/2011/10/12/were-giving-ios-users-insane-amounts-of-free-storage-box50gb/">http://blog.box.net/2011/10/12/were-giving-ios-users-insane-amounts-of-free-storage-box50gb/</a></p> <p>PS: It&#8217;s working also if you are an old user (like me). Just install the APP, log in and enjoy the space! </p> <p>PPS: if [...]]]></description>
			<content:encoded><![CDATA[<p>The guys from <a href="http://box.net">Box.net</a> are giving away 50gb of space forever if you install the last APP on your iPhone/iPod/iPad. It&#8217;s a nice and free backup solution!</p>
<p><span id=":2m.l" class="f-oa-t f-oa-t-j" title="Add link"><a href="http://blog.box.net/2011/10/12/were-giving-ios-users-insane-amounts-of-free-storage-box50gb/">http://blog.box.net/2011/10/12/were-giving-ios-users-insane-amounts-of-free-storage-box50gb/</a></span></p>
<p>PS: It&#8217;s working also if you are an old user (like me). Just install the APP, log in and enjoy the space! <img src='http://www.toysdesk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>PPS: if you already have the APP installed, just log out an<span id=":2m.l" class="f-oa-t f-oa-t-j" title="Add link"> log in again. Sweet! <img src='http://www.toysdesk.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
</span></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.toysdesk.com/2011/10/have-you-an-ios-device-get-50gb-for-free/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

