<?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>NOT Dexter&#039;s Lab &#187; Tips and Tricks</title>
	<atom:link href="http://www.a2p.it/wordpress/lang/en/category/tech-stuff/tips-and-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.a2p.it/wordpress</link>
	<description>It&#039;s Alessio Placitelli&#039;s playground</description>
	<lastBuildDate>Tue, 29 Sep 2009 07:48:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Google Calendar e telefoni Windows Mobile</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/google-calendar-and-windows-mobile-phonesgoogle-calendar-e-telefoni-windows-mobile</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/google-calendar-and-windows-mobile-phonesgoogle-calendar-e-telefoni-windows-mobile#comments</comments>
		<pubDate>Fri, 04 Sep 2009 10:44:16 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/?p=100</guid>
		<description><![CDATA[Did you know you could synchronize your Windows Mobile device with Google Calendar without using any third party application? Amazing, isn&#8217;t it? Simply follow this link: Set Up your Windows Mobile Phone]]></description>
			<content:encoded><![CDATA[
<p>Did you know you could synchronize your Windows Mobile device with Google Calendar without using any third party application? Amazing, isn&#8217;t it? <img src='http://www.a2p.it/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Simply follow this link:</p>
<p><a href="http://www.google.com/support/mobile/bin/answer.py?answer=138636&amp;topic=14299 " target="_blank">Set Up your Windows Mobile Phone</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/google-calendar-and-windows-mobile-phonesgoogle-calendar-e-telefoni-windows-mobile/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roundcube 0.2 Stable, postfix and changing user password</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/postfix-e-cambio-password-utente-roundcube-02-stableroundcube-02-stable-postfix-and-changing-user-password</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/postfix-e-cambio-password-utente-roundcube-02-stableroundcube-02-stable-postfix-and-changing-user-password#comments</comments>
		<pubDate>Wed, 11 Feb 2009 13:42:43 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[roundcube]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/?p=69</guid>
		<description><![CDATA[The following hack allows users to change their own email password in roundcube 0.2-stable. Updated: Thanks to Lukather from roundcubeforum.net a bug which wiped out email passwords has been fixed Step 1. Modifying program\steps\settings\save_prefs.inc Aproximately near line 28, there is a block where an array is declared. It starts with &#8220;$a_user_prefs = array(&#8220;. Just add]]></description>
			<content:encoded><![CDATA[<p><span lang="en">The following hack allows users to change their own email password in roundcube 0.2-stable.</span></p>
<p><span lang="en"><br />
<strong>Updated: </strong>Thanks to </span><a class="bigusername" rel="nofollow" href="http://www.roundcubeforum.net/members/lukather.html"><span style="color: #000099; text-decoration: none;">Lukather</span></a> from roundcubeforum.net a bug which wiped out email passwords has been fixed<span lang="en"><span id="more-69"></span><br />
</span></p>
<p><span lang="en"><strong>Step 1. Modifying <em>program\steps\settings\save_prefs.inc</em></strong><strong> </strong><br />
Aproximately near line 28, there is a block where an array is declared. It starts with &#8220;<em>$a_user_prefs = array(</em>&#8220;. Just add the following line under the &#8220;<em>&#8216;prefer_html&#8217;  =&gt; isset($_POST['_prefer_html']) ? TRUE : FALSE,</em>&#8221; line</span></p>
<pre name="code"  class="php:nocontrols">// Password MOD
'password'  =&gt; isset($_POST['_password']) ? TRUE : FALSE,
// End Password MOD</pre>
<p><span lang="en">Now after the &#8220;<em>foreach ((array)$CONFIG['dont_override'] as $p)</em>&#8221; near line 39, add the block which handles password saving to DB</span><br />
<span lang="en">
<pre name="code" class="php:nocontrols">// Password MOD
if (isset($_POST['_password']) &amp;&amp; !empty($_POST['_password']))
{
$tmpEncPass = YourEncryptionFunctionHERE($_POST['_password'], "");

mysql_query("UPDATE CCC.TableWithPasswordHERE SET password = '".$tmpEncPass."' WHERE username = '".$_SESSION['username']."'")
or die(mysql_error());

$_SESSION['password'] = encrypt_passwd($_POST['_password']);
}
// End Password MOD</pre>
<p></span><br />
<span lang="en">In case your database holds encrypted user passwords, put the name of the hashing function in place of <em>YourEncryptionFunctionHERE</em>. If you are storing MD5 hashes of the password in your database and the hashing function you use is <em>md5</em>, you would be writing that instead of YourEncryptionFunctionHERE. Don&#8217;t forget to change the query in <em>mysql_query</em> to make it work with your database.</span></p>
<p><span lang="en"><strong>Step 2. Modifying <em>program\steps\settings\func.inc</em></strong><br />
Near line 161, look for &#8220;<em>if ($table-&gt;size())</em>&#8220;. Before this line, add the following block:</span><br />
<span lang="en">
<pre name="code" class="php:nocontrols">// Password MOD
$field_id = 'rcmfd_password';
$input_password = new html_inputfield(array('name' =&gt; '_password', 'id' =&gt; $field_id, 'size' =&gt; 20));

$table-&gt;add('title', html::label($field_id, /*Q(rcube_label('skin'))*/ 'Password'));
$table-&gt;add(null, $input_password-&gt;show());
// End Password MOD</pre>
<p></span><br />
<span lang="en">Feel free to ask for help by writing a comment!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/postfix-e-cambio-password-utente-roundcube-02-stableroundcube-02-stable-postfix-and-changing-user-password/feed</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Creative Zen: A section in the INF is invalid</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/creative-zen-sezione-nel-file-inf-non-validacreative-zen-a-section-in-the-inf-is-invalid</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/creative-zen-sezione-nel-file-inf-non-validacreative-zen-a-section-in-the-inf-is-invalid#comments</comments>
		<pubDate>Thu, 05 Feb 2009 11:00:20 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[tip]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/?p=65</guid>
		<description><![CDATA[I hate when Hard Drives fail. Ok, I&#8217;m a paranoid so I backup everything but&#8230; reinstalling everything just sucks. And if you have a bad Karma, a device that worked may not install anymore. That&#8217;s what happened to my Creative Zen which refused to work on a Windows XP sp3 fresh installation! If Windows tries]]></description>
			<content:encoded><![CDATA[


<p><span lang="en">I hate when Hard Drives fail. Ok, I&#8217;m a paranoid so I backup everything but&#8230; reinstalling everything just sucks. And if you have a bad Karma, a device that worked may not install anymore. That&#8217;s what happened to my Creative Zen which refused to work on a Windows XP sp3 fresh installation! If Windows tries to scare you with an error message stating that &#8220;a section in the INF file is invalid&#8221;, simply download and install the following file:</span></p>
<p><span lang="en"><a href="http://go.microsoft.com/fwlink/?LinkId=71641&#38;/umdf.exe" target="_blank">UMDF Driver Update</a></span></p>
<p><span lang="en">Don&#8217;t thank me:) Donate to  <a href="http://www.mycreativefansite.com/2007/06/solution-cannot-install-this-hardware.html" target="_blank">myCreative Fansite</a></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/creative-zen-sezione-nel-file-inf-non-validacreative-zen-a-section-in-the-inf-is-invalid/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MSI Wind U100: keyboard problem</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/msi-wind-u100-problema-tastieramsi-wind-u100-keyboard-problem</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/msi-wind-u100-problema-tastieramsi-wind-u100-keyboard-problem#comments</comments>
		<pubDate>Sat, 12 Jul 2008 12:07:59 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[msi wind]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/?p=39&amp;lang=en</guid>
		<description><![CDATA[/Me OMFG Do you know someone on this planet who can manage to destroy a 399€ jewel in less than a hour? Now you do. I just tried to update the BIOS of my new, flaming, MSI Wind U100 Black when I found out power wasn&#8217;t plugged. So I thought &#8220;what&#8217;s the problem, let&#8217;s just]]></description>
			<content:encoded><![CDATA[<p><span lang="en">/Me OMFG</span></p>
<p><span lang="en">Do you know someone on this planet who can manage to destroy a 399€ jewel in less than a hour? Now you do. I just tried to update the BIOS of my new, flaming, MSI Wind U100 Black when I found out power wasn&#8217;t plugged. So I thought &#8220;what&#8217;s the problem, let&#8217;s just plug it in&#8221;. I wish I had never done that: keyboard suddenly stopped working. I tried rebooting to Windows XP (a pure DOS environment is required for BIOS updates) but, sadly, nothing changed. Keyboard was not working, no keystrokes where detected, I wasn&#8217;t even able to get into BIOS, since DEL key wasn&#8217;t working as well. But, before getting too despaired, I tried to unplug Wind&#8217;s power sources (yes, even the battery!). After a few minutes, I turned it on again and <strong>keyboard was working again</strong>.</span></p>
<p><span lang="en">I hope you will find this article useful, it could save your heart from breaking in case you encounter this very same issue <img src='http://www.a2p.it/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span></p>



]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/msi-wind-u100-problema-tastieramsi-wind-u100-keyboard-problem/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to copy files from PC to Dreambox</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/trasferire-files-da-pc-a-dreamboxhow-to-copy-files-from-pc-to-dreambox</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/trasferire-files-da-pc-a-dreamboxhow-to-copy-files-from-pc-to-dreambox#comments</comments>
		<pubDate>Thu, 24 Apr 2008 20:05:00 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[dreambox]]></category>
		<category><![CDATA[FTP]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/?p=34&amp;lang=en</guid>
		<description><![CDATA[You would be surprised by the amount of people searching for &#8220;ftp dreambox&#8221; words in the box at the top of this page. Hey, that&#8217;s it, just to &#8220;finally make you happy&#8221;: 1) Download an FTP client (FileZila is recommended) 2) Create a new connection profile using your Dreambox address (192.168.x.x for example), root as]]></description>
			<content:encoded><![CDATA[


<p><span lang="en">You would be surprised by the amount of people searching for &#8220;ftp dreambox&#8221; words in the box at the top of this page. Hey, that&#8217;s it, just to &#8220;finally make you happy&#8221;:</span></p>
<p><span lang="en"><strong>1)</strong> Download an FTP client (<a href="http://filezilla-project.org/" target="_blank">FileZila</a> is recommended)<br />
<strong> 2)</strong> Create a new connection profile using your Dreambox address (192.168.x.x for example), <em>root</em> as username and <em>dreambox</em> as password (some firmware have no default password set for this, so just leave it empty)<br />
<strong> 3)</strong> Connect!<br />
</span></p>
<p><span lang="en">Easy, isn&#8217;t it?</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/trasferire-files-da-pc-a-dreamboxhow-to-copy-files-from-pc-to-dreambox/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Handling multiple projects/repositories with one svnserve</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/gestire-piu-progettirepository-con-un-solo-svnservehandling-multiple-projectsrepositories-with-one-svnserve</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/gestire-piu-progettirepository-con-un-solo-svnservehandling-multiple-projectsrepositories-with-one-svnserve#comments</comments>
		<pubDate>Wed, 16 Apr 2008 08:27:07 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software engineering]]></category>
		<category><![CDATA[version control system]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/?p=32&amp;lang=en</guid>
		<description><![CDATA[Need to handle different projects/repositories using a single SVN instance and don&#8217;t know how? Need revision numbers to be project dependent? Or you just want your repository to look cleaner? This (LINK) article by Thomas Guest explains you exactly how to do all that stuff in a simple and elegant way!]]></description>
			<content:encoded><![CDATA[

<p><span lang="en">Need to handle different projects/repositories using a single <a href="http://en.wikipedia.org/wiki/Subversion" target="_blank">SVN</a> instance and don&#8217;t know how? Need revision numbers to be project dependent? Or you just want your repository to look cleaner?</span></p>
<p><span lang="en">This (<a href="http://wordaligned.org/articles/one-svnserve-multiple-repositories" target="_blank">LINK</a>) article by Thomas Guest explains you exactly how to do all that stuff in a simple and elegant way!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/gestire-piu-progettirepository-con-un-solo-svnservehandling-multiple-projectsrepositories-with-one-svnserve/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to open .docx files using previous Word versions</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/how-to-open-docx-files-using-previous-word-versionscome-aprire-i-file-docx-usando-vecchie-versioni-di-word</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/how-to-open-docx-files-using-previous-word-versionscome-aprire-i-file-docx-usando-vecchie-versioni-di-word#comments</comments>
		<pubDate>Sat, 05 Apr 2008 17:52:03 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[docx]]></category>
		<category><![CDATA[office]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/?p=30</guid>
		<description><![CDATA[Are you tired of people sending you .docx files? You can&#8217;t afford to buy latest Microsoft Word or Microsoft Office? Fear not, if you&#8217;ve got an older Office/Word (at least Office/Word 2000), you can install the following free software upgrade to let handle .docx files: Microsoft Office Compatibility Pack Sweet, isn&#8217;t it?]]></description>
			<content:encoded><![CDATA[<p>Are you tired of people sending you .docx files? You can&#8217;t afford to buy latest Microsoft Word or Microsoft Office? Fear not, if you&#8217;ve got an older Office/Word (at least Office/Word 2000), you can install the following free software upgrade to let handle .docx files:</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=941B3470-3AE9-4AEE-8F43-C6BB74CD1466&amp;displaylang=en" target="_blank">Microsoft Office Compatibility Pack</a></p>
<p>Sweet, isn&#8217;t it?</p>


]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/how-to-open-docx-files-using-previous-word-versionscome-aprire-i-file-docx-usando-vecchie-versioni-di-word/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Roundcube: allow users to change their own passwords</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/roundcube-allow-users-to-change-their-own-passwords</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/roundcube-allow-users-to-change-their-own-passwords#comments</comments>
		<pubDate>Sun, 16 Mar 2008 20:52:32 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[roundcube]]></category>
		<category><![CDATA[webmail]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/tech-stuff/tips-and-tricks/roundcube-allow-users-to-change-their-own-passwords/</guid>
		<description><![CDATA[If you are running a mail server, I&#8217;m pretty sure you&#8217;ve invested some time in testing Squirrelmail or Horde in order to provide your users a web access to their emails. Both of them are rock solid, but the lack of a good looking out-of-the-box UI is starting to weight more and more in our]]></description>
			<content:encoded><![CDATA[<p>If you are running a mail server, I&#8217;m pretty sure you&#8217;ve invested some time in testing <a href="http://www.squirrelmail.org/" target="_blank">Squirrelmail</a> or <a href="http://www.horde.org/" target="_blank">Horde</a> in order to provide your users a web access to their emails. Both of them are rock solid, but the lack of a good looking out-of-the-box UI is starting to weight more and more in our web x.0 days.</p>
<p><a href="http://www.roundcube.net" target="_blank">Roundcube</a> is an alternative, not as mature as the aforementioned, open source software released under GPL license which comes with an awesome default skin. Sadly, it still misses one important thing: the control to make user able to change their own password. But that&#8217;s  your lucky day: I made a small patch to allow this in Roundcube 0.1 (stable).</p>


<p><span id="more-27"></span></p>
<p>My work is based on polinoma&#8217;s code found <a href="http://roundcubeforum.net/forum/index.php?topic=845.0" target="_blank">here</a>. You need to apply the patch file (check <a href="http://www.cyberciti.biz/faq/appy-patch-file-using-patch-command/" target="_blank">here</a> if you don&#8217;t know how to) which is found at the end of this article or follow the instructions below. Either way, you need to tweak the <em>program\steps\settings\save_prefs.inc</em> file to tell Roundcube how your password is stored in the database.</p>
<p><strong>Step 1. Modifying <em>program\steps\settings\save_prefs.inc</em></strong><strong> </strong><br />
Aproximately near line 27, there is a block where an array is declared. It starts with &#8220;<em>$a_user_prefs = array(</em>&#8220;. Just add the following line under the &#8220;<em>&#8216;prefer_html&#8217;  =&gt; isset($_POST['_prefer_html']) ? TRUE : FALSE,</em>&#8221; line</p>
<pre name="code" class="php:nocontrols">
// Password MOD
'password'  =&gt; isset($_POST['_password']) ? TRUE : FALSE,
// End Password MOD</pre>
<p>Now after the &#8220;<em>foreach ((array)$CONFIG['dont_override'] as $p)</em>&#8221; near line 39, add the block which handles password saving to DB</p>
<pre name="code" class="php:nocontrols">
// Password MOD
if (isset($_POST['_password']))
{
$tmpEncPass = YourEncryptionFunctionHERE($_POST['_password'], "");

mysql_query("UPDATE CCC.TableWithPasswordHERE SET password = '".$tmpEncPass."' WHERE username = '".$_SESSION['username']."'")
or die(mysql_error());

$_SESSION['password'] = encrypt_passwd($_POST['_password']);
}
// End Password MOD</pre>
<p>In case your database holds encrypted user passwords, put the name of the hashing function in place of <em>YourEncryptionFunctionHERE</em>. If you are storing MD5 hashes of the password in your database and the hashing function you use is <em>md5</em>, you would be writing that instead of YourEncryptionFunctionHERE. Don&#8217;t forget to change the query in <em>mysql_query</em> to make it work with your database.</p>
<p><strong>Step 2. Modifying <em>program\steps\settings\func.inc</em></strong><br />
Near line 200, look for &#8220;<em>$out .= &#8220;\n&lt;/table&gt;$form_end&#8221;;</em>&#8220;. Before this line, add the following block:</p>
<pre name="code" class="php:nocontrols">
// Password MOD
$field_id = 'rcmfd_password';
$input_password = new textfield(array('name' =&gt; '_password', 'id' =&gt; $field_id, 'size' =&gt; 20));
$out .= sprintf("&lt;tr&gt;&lt;td class=\"title\"&gt;&lt;label for=\"%s\"&gt;%s&lt;/label&gt;&lt;/td&gt;&lt;td&gt;%s (empty = unchanged)&lt;/td&gt;&lt;/tr&gt;\n",
$field_id,
rep_specialchars_output(rcube_label('password')),
$input_password-&gt;show();
// End Password MOD</pre>
<p>If you followed my instructions, it should already be working (hopefully). As usual, if you have any trouble feel free to ask for help by writing a comment!</p>
<p><a href="http://www.a2p.it/files/projects/roundcube-0.1_pwdPatch">Patch file for Roundcube 0.1 (Stable)</a><br />
</p>

]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/roundcube-allow-users-to-change-their-own-passwords/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Internet TV (even p2p!) streaming to Dreambox</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/internet-tv-even-p2p-streaming-to-dreambox</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/internet-tv-even-p2p-streaming-to-dreambox#comments</comments>
		<pubDate>Sat, 26 Jan 2008 20:57:54 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[dreambox]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[p2p tv]]></category>
		<category><![CDATA[streaming]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/tech-stuff/tips-and-tricks/internet-tv-even-p2p-streaming-to-dreambox/</guid>
		<description><![CDATA[I&#8217;ve been flooded by your requests since my &#8220;Streaming live camera feed to Dreambox&#8221; article and now, finally, the time has come: you don&#8217;t have to wait anymore For those who don&#8217;t know what I&#8217;m talking about&#8230; it&#8217;s how to watch your favorite p2p internet channel on your dear Dreambox! Yeah, you can now sit]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been flooded by your requests since my <a href="http://www.a2p.it/wordpress/tech-stuff/tips-and-tricks/streaming-live-camera-feed-to-dreambox/" target="_blank">&#8220;Streaming live camera feed to Dreambox&#8221;</a> article and now, finally, the time has come: you don&#8217;t have to wait anymore <img src='http://www.a2p.it/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  For those who don&#8217;t know what I&#8217;m talking about&#8230; it&#8217;s how to watch your favorite p2p internet channel on your dear Dreambox! Yeah, you can now sit on your sofa watching <strike>porn</strike> movies from the Internet on your 52&#8221; plasma <img src='http://www.a2p.it/wordpress/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>


<p><span id="more-21"></span></p>
<p><strong>Requirements</strong></p>
<p>- Broadband Internet connection<br />
- Internet Stream recording software (<a href="http://coolrec.coolstreaming.us" target="_blank">Cool-Recorder</a>, <a href="http://sdp.ppona.com/" target="_blank">SDP Downloader</a>, etc.)<br />
- A working VLCF-Final plugin installation on your Dreambox which correctly communicates with your PC (check <a href="http://www.a2p.it/wordpress/tech-stuff/tips-and-tricks/streaming-live-camera-feed-to-dreambox/" target="_blank">my previous tutorial</a> for help on this stuff)</p>
<p><strong>Let&#8217;s do it!<br />
</strong></p>
<p>First of all, you need the address of the stream you want to bounce back to your Dreambox. If you don&#8217;t know it, try to watch the stream in your browser. Right click in the video area and choose <em>Properties</em> from the menu. In this window, look for the <em>Location</em> property (names may change depending on the web player, just be sure to look for an <a href="http://en.wikipedia.org/wiki/URI" target="_blank">URI</a>): that&#8217;s the address of the stream.</p>
<p>Now run VLC, and leave it running on the background, since this is needed for VLCF-Final plugin on your Dreambox to work.  Once you&#8217;re done with that, run the stream recording software you&#8217;ve chosen and paste the stream address in it. Then choose the path and file name to write the stream to, but don&#8217;t forget it needs to be in a folder that VLCF-Final is configured to scan (if you can&#8217;t understand, look for vlcf_original.xml in <a href="http://www.a2p.it/wordpress/tech-stuff/tips-and-tricks/streaming-live-camera-feed-to-dreambox/" target="_blank">this</a> article).</p>
<p>Now run VLCF-Final plugin from the plugins panel on your Dreambox and open the file you are writing the stream to. After few seconds, the stream should play on your TV <img src='http://www.a2p.it/wordpress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Hey, if you found this post useful, need help or just want to insult me, feel free to post a comment! Also, it would be very nice if you would buy me a beer (check the right panel)  <img src='http://www.a2p.it/wordpress/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </p>

]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/internet-tv-even-p2p-streaming-to-dreambox/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Change Paypal language in Buy Me a Beer plugin</title>
		<link>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/change-paypal-language-in-buy-me-a-beer-plugin</link>
		<comments>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/change-paypal-language-in-buy-me-a-beer-plugin#comments</comments>
		<pubDate>Sat, 26 Jan 2008 11:43:24 +0000</pubDate>
		<dc:creator>Alessio Placitelli</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[buy me a beer]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.a2p.it/wordpress/tech-stuff/tips-and-tricks/change-paypal-language-in-buy-me-a-beer-plugin/</guid>
		<description><![CDATA[There are so many great plugins for WordPress and Buy Me a Beer is one of them. It enables your blog users to donate you money through Paypal encouraging them with specific phrasing. One of the problems of the current Buy Me a Beer release, is that it doesn&#8217;t allow to choose the language of]]></description>
			<content:encoded><![CDATA[<p>There are so many great plugins for WordPress and <a href="http://www.blogclout.com/blog/goodies/buy-me-a-beer-paypal-donation-plugin/" target="_blank">Buy Me a Beer</a> is one of them. It enables your blog users  to donate you money through <a href="http://www.paypal.com" target="_blank">Paypal</a> encouraging them with specific phrasing. One of the problems of the current Buy Me a Beer release, is that it doesn&#8217;t allow to choose the language of the Paypal donation page. To overcome this issue, here&#8217;s the trick: in buy-me-beer.php, look for <em>$paypal_link</em> and <em>$paypal_contentlink</em> variables. They should look like this:</p>
<pre name="code" class="php:nocontrols">$paypal_contentlink =  "https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=".$options['business']."&amp;currency_code=".$options['currency']."&amp;amount=".$options['amount']."&amp;[...]</pre>
<pre name="code" class="php:nocontrols">$paypal_link = "https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=".$options['business']."&amp;currency_code=".$options['currency']."&amp;amount=".$options['amount']."&amp;return=".$options['thankspage']."&amp;lc=US&amp;item_name=".str_replace(" ","+",$args['title']);</pre>
<p>And add, after the first <em>&amp;</em> in each of the occurrence  of the variable, the string <em>lc=US&amp;</em> including the &#8220;;&#8221;.  You can change the language of the page by specifying a different country code instead of US (which stands for United States, so an English page is displayed). Query your favorite search engine for a list of country codes.</p>

]]></content:encoded>
			<wfw:commentRss>http://www.a2p.it/wordpress/lang/en/tech-stuff/tips-and-tricks/change-paypal-language-in-buy-me-a-beer-plugin/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
