<?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>ExpoBrain &#187; Troubleshooting</title>
	<atom:link href="http://www.expobrain.net/category/troubleshooting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.expobrain.net</link>
	<description></description>
	<lastBuildDate>Sat, 07 Jan 2012 11:45:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>The Lion&#8217;s upgrade journey</title>
		<link>http://www.expobrain.net/2011/08/07/the-lions-upgrade-journey/</link>
		<comments>http://www.expobrain.net/2011/08/07/the-lions-upgrade-journey/#comments</comments>
		<pubDate>Sun, 07 Aug 2011 14:35:58 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[snow leopard]]></category>
		<category><![CDATA[time machine]]></category>
		<category><![CDATA[transmac]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/?p=685</guid>
		<description><![CDATA[With the new Mac OS X Lion out since a week I decided to upgrade my Mac Book Pro but at that time I didn&#8217;t know it will be a little long journey. Prologue As a good Apple customer I purchased a my copy of Mac OS X Lion from the App Store and waited [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2011/08/07/the-lions-upgrade-journey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handling Win32 window handler in PySide</title>
		<link>http://www.expobrain.net/2011/02/22/handling-win32-windows-handler-in-pyside/</link>
		<comments>http://www.expobrain.net/2011/02/22/handling-win32-windows-handler-in-pyside/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 09:40:21 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[c/c++]]></category>
		<category><![CDATA[pyqt]]></category>
		<category><![CDATA[pyside]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/?p=593</guid>
		<description><![CDATA[To pass a Win32 window handler from a PySide object to a win32gui.GetDC() method is not so simple as with PyQt4 or wxPython. I wrote a small test for a C function wich renders a bitmap to a Windows DC and I made a PyQt QMainWindow to show the result. My test window is quite [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2011/02/22/handling-win32-windows-handler-in-pyside/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Avoid recursive calls</title>
		<link>http://www.expobrain.net/2010/11/22/avoid-recursive-calls/</link>
		<comments>http://www.expobrain.net/2010/11/22/avoid-recursive-calls/#comments</comments>
		<pubDate>Sun, 21 Nov 2010 23:03:16 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[recursion]]></category>
		<category><![CDATA[tail-call]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/?p=494</guid>
		<description><![CDATA[Why do recursive calls when you can do the same thing without it ? Use a recursive function makes the code clear but can be inefficient and soon or later you will hit the stack limit. To explain that I will use the well-know obvious example of factorial calculation. I start to write a simple [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2010/11/22/avoid-recursive-calls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.italiansinfuga.com/wp-content/uploads/2010/10/episodio01-1.mp3" length="9942630" type="audio/mpeg" />
		</item>
		<item>
		<title>Make tests Qt-friendly</title>
		<link>http://www.expobrain.net/2010/09/04/make-tests-qt-friendly/</link>
		<comments>http://www.expobrain.net/2010/09/04/make-tests-qt-friendly/#comments</comments>
		<pubDate>Sat, 04 Sep 2010 17:17:22 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[pyqt]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[qt]]></category>
		<category><![CDATA[segmentation fault]]></category>
		<category><![CDATA[unittest]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/?p=489</guid>
		<description><![CDATA[Testing Qt code with the Python unittest module is simple as ever. Take a look to this unittest code: from PyQt4 import QtGui import sys import unittest class TestQtWindow( unittest.TestCase ): app = QtGui.QApplication( sys.argv ) def test_window1(self): window = QtGui.QMainWindow( None ) window.show() self.assertTrue( isinstance( window, QtGui.QMainWindow ) ) self.assertTrue( window.isVisible() ) def test_window2(self): [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2010/09/04/make-tests-qt-friendly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Watch out for the data traffic</title>
		<link>http://www.expobrain.net/2010/08/30/watch-out-for-the-data-traffic/</link>
		<comments>http://www.expobrain.net/2010/08/30/watch-out-for-the-data-traffic/#comments</comments>
		<pubDate>Sun, 29 Aug 2010 22:23:12 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[apndroid]]></category>
		<category><![CDATA[data traffic]]></category>
		<category><![CDATA[roaming]]></category>
		<category><![CDATA[samsung galaxy s]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/?p=470</guid>
		<description><![CDATA[One month ago I bought the new Samsung Galaxy S with a UK SIM card and a flat mobile Internet plan, which it&#8217;s a very good deal for who has an Android smartphone device. Unfortunately, when I come back to Italy and I switched the UK SIM with the italian one, I completely forgot to [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2010/08/30/watch-out-for-the-data-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Synchronize your Samsung Galaxy S with iTunes</title>
		<link>http://www.expobrain.net/2010/08/13/synchronize-your-samsung-galaxy-s-with-itunes/</link>
		<comments>http://www.expobrain.net/2010/08/13/synchronize-your-samsung-galaxy-s-with-itunes/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 21:16:34 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[doubletwist]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[samsung galaxy s]]></category>
		<category><![CDATA[smartphone]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/?p=448</guid>
		<description><![CDATA[Two weeks ago I bought the new Samsung Galaxy S smartphone and after a full day spent to make confidence with the Android OS one big question comes in my mind: will iTunes detect the phone and synchronize my music library ? No Obviously iTunes don&#8217;t want to deal with non-Apple devices, so I started [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2010/08/13/synchronize-your-samsung-galaxy-s-with-itunes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove &#8220;(from old mac)&#8221; files</title>
		<link>http://www.expobrain.net/2010/08/09/remove-from-old-mac-files/</link>
		<comments>http://www.expobrain.net/2010/08/09/remove-from-old-mac-files/#comments</comments>
		<pubDate>Mon, 09 Aug 2010 20:45:19 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[from old mac]]></category>
		<category><![CDATA[mac os x]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[time machine]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/?p=428</guid>
		<description><![CDATA[Time Machine is a powerful solution to backup, restore or move your Mac OS X installation to another machine or just after a full reinstall of the operating system. The restore system is smart enough to put all your applications, profile files, and all other stuff which belong to you. For some files and folders [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2010/08/09/remove-from-old-mac-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Let Babel works with py2exe</title>
		<link>http://www.expobrain.net/2010/07/29/let-babel-works-with-py2exe/</link>
		<comments>http://www.expobrain.net/2010/07/29/let-babel-works-with-py2exe/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 13:01:52 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[babel]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[patch]]></category>
		<category><![CDATA[py2exe]]></category>
		<category><![CDATA[python]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/?p=399</guid>
		<description><![CDATA[Babel is a framework to translate date, times, numbers and currency in all the languages of the world. Unfortunately the package is not py2exe-friendly but with a little patch we can let Babel works when is embedded with py2exe. When you build a Windows executable with py2exe all goes fine but when you run the [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2010/07/29/let-babel-works-with-py2exe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cross platform doesn&#8217;t exists</title>
		<link>http://www.expobrain.net/2010/02/13/cross-platform-doesnt-exists/</link>
		<comments>http://www.expobrain.net/2010/02/13/cross-platform-doesnt-exists/#comments</comments>
		<pubDate>Sat, 13 Feb 2010 00:18:33 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[bsddb]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[python]]></category>
		<category><![CDATA[traceback]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/?p=299</guid>
		<description><![CDATA[When you write code in Python you can be almost sure your code will run on different operating systems. I say almost sure, not completely sure, because some of the libraries and packages you are using can have different behaviors on different systems. But here I found a full incompatibility in the bsddb package on [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2010/02/13/cross-platform-doesnt-exists/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bug dopo upgrade ad Ubuntu 8.10</title>
		<link>http://www.expobrain.net/2008/11/05/bug-dopo-upgrade-ad-ubuntu-810/</link>
		<comments>http://www.expobrain.net/2008/11/05/bug-dopo-upgrade-ad-ubuntu-810/#comments</comments>
		<pubDate>Wed, 05 Nov 2008 15:39:10 +0000</pubDate>
		<dc:creator>Daniele Esposti</dc:creator>
				<category><![CDATA[Troubleshooting]]></category>

		<guid isPermaLink="false">http://www.expobrain.net/2008/11/05/bug-dopo-upgrade-ad-ubuntu-810</guid>
		<description><![CDATA[Ubunto 8.10 Interpid Ibex è appena uscita ma presenta alcuni noiosi bug e alcuni problemi presenti sia a chi ha effettuato una installazione da zero sia a chi ha fatto l&#8217;upgrade dalla versione precedente. Io personalmente ho effettuato l&#8217;upgrade ed ho rilevato una serie di minibug ed un rallentamento generale in X rispetto alla versione [...]]]></description>
		<wfw:commentRss>http://www.expobrain.net/2008/11/05/bug-dopo-upgrade-ad-ubuntu-810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

