<?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>Matteo Mattei</title>
	<atom:link href="http://www.matteomattei.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matteomattei.com</link>
	<description>Matteo Mattei offre Assistenza Tecnica Sistemistica Linux e Windows in tutta Italia, da remoto ed on-site per Enti Pubblici e PMI. Realizziamo web-application, siti internet, cablaggi strutturati e installazioni server.</description>
	<lastBuildDate>Thu, 17 May 2012 20:51:04 +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>Subversion, webdav, LDAP and folder restrictions</title>
		<link>http://www.matteomattei.com/en/subversion-webdav-ldap-and-folder-restrictions/</link>
		<comments>http://www.matteomattei.com/en/subversion-webdav-ldap-and-folder-restrictions/#comments</comments>
		<pubDate>Thu, 17 May 2012 11:04:13 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[LDAP]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=364</guid>
		<description><![CDATA[If you need to configure a svn server on Linux with LDAP authentication, webdav and insert specific directory restrictions you can follow these instructions. One: you need to install subversion and apache in your Linux server (I will omit this part). Two: you need to configure webdav to access svn over http and configure LDAP [...]]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/subversion-webdav-ldap-and-folder-restrictions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed-up your virtual machine created with VMware Player</title>
		<link>http://www.matteomattei.com/en/speed-up-your-virtual-machine-created-with-vmware-player/</link>
		<comments>http://www.matteomattei.com/en/speed-up-your-virtual-machine-created-with-vmware-player/#comments</comments>
		<pubDate>Tue, 20 Mar 2012 11:18:50 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Tips and tricks]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=356</guid>
		<description><![CDATA[If your virtual machine created with VMware Player becames very slow and takes a long time to complete some operations it&#8217;s time to improve its performance! Close your VM, and open the *.vmx file with a text editor. Then add at the end of the file the following lines: mainMem.useNamedFile = "FALSE" sched.mem.pshare.enable = "FALSE" [...]]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/speed-up-your-virtual-machine-created-with-vmware-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Fatal error with PhpMyAdmin and APC</title>
		<link>http://www.matteomattei.com/en/php-fatal-error-with-phpmyadmin-and-apc/</link>
		<comments>http://www.matteomattei.com/en/php-fatal-error-with-phpmyadmin-and-apc/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 20:39:35 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[APC]]></category>
		<category><![CDATA[Tips and tricks]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=345</guid>
		<description><![CDATA[If you are running PhpMyAdmin and APC can happens that you get some errors like these: PHP Fatal error: Call to undefined function PMA_log_user() in /usr/share/webapps/phpMyAdmin/libraries/common.inc.php on line 914 PHP Fatal error: Call to undefined function PMA_select_language() in /usr/share/webapps/phpMyAdmin/libraries/auth/cookie.auth.lib.php on line 220 PHP Fatal error: Call to undefined function pma_generate_common_url() in /usr/share/webapps/phpMyAdmin/libraries/header_meta_style.inc.php on line 48 [...]]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/php-fatal-error-with-phpmyadmin-and-apc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Extract u-boot multi-file image in Python</title>
		<link>http://www.matteomattei.com/en/extract-u-boot-multi-file-image-in-python/</link>
		<comments>http://www.matteomattei.com/en/extract-u-boot-multi-file-image-in-python/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 07:18:04 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[Embedded]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=330</guid>
		<description><![CDATA[This simple piece of code shows how to extract/decompress a u-boot multi-file image created with mkimage using Python. The image format is pretty simple: 64 bytes of image header. 4 bytes for the size of first image. 4 bytes for the size of second image. ... 4 bytes of zeros for termination. image1. image2. ... [...]]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/extract-u-boot-multi-file-image-in-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PySide Signals and Slots with QThread example</title>
		<link>http://www.matteomattei.com/en/pyside-signals-and-slots-with-qthread-example/</link>
		<comments>http://www.matteomattei.com/en/pyside-signals-and-slots-with-qthread-example/#comments</comments>
		<pubDate>Sun, 28 Aug 2011 13:59:27 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[Python]]></category>
		<category><![CDATA[PySide]]></category>
		<category><![CDATA[Qt]]></category>
		<category><![CDATA[Thread]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=321</guid>
		<description><![CDATA[In these days I started studying PySide. After some days spent in reading lot of stuff, I thought that a real example could be useful for who intends to start learning PySide as well. In this example I can show you how you can implement a custom signal (MySignal) together with the usage of threads [...]]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/pyside-signals-and-slots-with-qthread-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Export MySQL table in CSV format using PHP</title>
		<link>http://www.matteomattei.com/en/export-mysql-table-in-csv-format-using-php/</link>
		<comments>http://www.matteomattei.com/en/export-mysql-table-in-csv-format-using-php/#comments</comments>
		<pubDate>Sat, 30 Jul 2011 09:04:24 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[dump]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=316</guid>
		<description><![CDATA[The following PHP code is intendend to be used to export a MySQL table in CSV format in order to be used with MS Excel.]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/export-mysql-table-in-csv-format-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to execute commands with specific user privilege in C and Python under Linux</title>
		<link>http://www.matteomattei.com/en/how-to-execute-commands-with-specific-user-privilege-in-c-under-linux/</link>
		<comments>http://www.matteomattei.com/en/how-to-execute-commands-with-specific-user-privilege-in-c-under-linux/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 14:53:19 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=305</guid>
		<description><![CDATA[If you have root access but you need to run some applications/scripts with some other user credentials you can do it with But if you need to do it within a C/C++ program you need to follow this procedure: This is how to compile and execute the above code: The same result could be obtained [...]]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/how-to-execute-commands-with-specific-user-privilege-in-c-under-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to really erase an Hard Drive</title>
		<link>http://www.matteomattei.com/en/how-to-really-erase-an-hard-drive/</link>
		<comments>http://www.matteomattei.com/en/how-to-really-erase-an-hard-drive/#comments</comments>
		<pubDate>Mon, 20 Jun 2011 14:20:50 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[Relax]]></category>
		<category><![CDATA[hard disk]]></category>
		<category><![CDATA[jokes]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=289</guid>
		<description><![CDATA[Since does not exist a REALLY secure Hard Disk erase procedure, the only way to clean every private data from a storage device is to use a powerful tool. Today we expermented the secure data cleaning on a 2.5&#8243; HD with an hammer. Yes, you have understood, an HAMMER!!! What&#8217;s more powerful than an hammer?! [...]]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/how-to-really-erase-an-hard-drive/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shrink Ext4 partition on VMware player</title>
		<link>http://www.matteomattei.com/en/shrink-ext4-partition-on-wmware-player/</link>
		<comments>http://www.matteomattei.com/en/shrink-ext4-partition-on-wmware-player/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 10:59:52 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=274</guid>
		<description><![CDATA[Few days ago I spent some times to try to shrink my Ubuntu 11.04 appliance with root partition formatted with EXT4 filesystem. The main problem is that the current VMware tools (8.4.6, build-385536) does not support the ext4 shrink. If you run sudo vmware-toolbox, your root partition is formatted in ext4 and you try to [...]]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/shrink-ext4-partition-on-wmware-player/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to implement MAC_X919 algorithm in Python</title>
		<link>http://www.matteomattei.com/en/how-to-implement-mac_x919-algorithm-in-python/</link>
		<comments>http://www.matteomattei.com/en/how-to-implement-mac_x919-algorithm-in-python/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 17:27:03 +0000</pubDate>
		<dc:creator>Matteo Mattei</dc:creator>
				<category><![CDATA[Python]]></category>

		<guid isPermaLink="false">http://www.matteomattei.com/?p=260</guid>
		<description><![CDATA[Today with my friend Nicola, we were looking in internet for the implementation of the X9.19 algorithm in python. Unfortunately we didn&#8217;t find it anywhere so we made it ourself:]]></description>
		<wfw:commentRss>http://www.matteomattei.com/en/how-to-implement-mac_x919-algorithm-in-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

