<?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>Daniele Demichelis &#187; Uncategorized</title>
	<atom:link href="http://www.danidemi.com/mainwww/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danidemi.com/mainwww</link>
	<description>There are 10 types of people in the world: Those who understand binary, and those who don&#039;t...</description>
	<lastBuildDate>Wed, 14 Apr 2010 08:14:26 +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>Svn toolkit</title>
		<link>http://www.danidemi.com/mainwww/2010/04/svn-toolkit/</link>
		<comments>http://www.danidemi.com/mainwww/2010/04/svn-toolkit/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 08:14:26 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=158</guid>
		<description><![CDATA[<p>This is a quick SVN reference I update regularly, with the commands I use more. I hope you&#8217;ll find it useful.</p>
Task: Browse a remote repository



&#160;svn ls svn+ssh://[alias]/[path]



Task: create a directory on a remote repository



&#160;svn mkdir -m &#34;[message]&#34; svn+ssh://&#91;alias&#93;/&#91;path_to_new_dir&#93;



Task: import a directory



svn import -m &#34;[message]&#34; &#91;path_to_be_imported&#93; &#91;repository_url&#93;



Task: check out



svn checkout [repository url]



]]></description>
			<content:encoded><![CDATA[<p>This is a quick SVN reference I update regularly, with the commands I use more. I hope you&#8217;ll find it useful.</p>
<h2>Task: Browse a remote repository</h2>
<div class="geshi no shell">
<ol>
<li class="li1">
<div class="de1">&nbsp;svn ls svn+ssh://[alias]/[path]</div>
</li>
</ol>
</div>
<h2>Task: create a directory on a remote repository</h2>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1">&nbsp;svn <span class="kw2">mkdir</span> -m <span class="st0">&quot;[message]&quot;</span> svn+<span class="kw2">ssh</span>:<span class="sy0">//</span><span class="br0">&#91;</span><span class="kw3">alias</span><span class="br0">&#93;</span><span class="sy0">/</span><span class="br0">&#91;</span>path_to_new_dir<span class="br0">&#93;</span></div>
</li>
</ol>
</div>
<h2>Task: import a directory</h2>
<div class="geshi no bash">
<ol>
<li class="li1">
<div class="de1">svn import -m <span class="st0">&quot;[message]&quot;</span> <span class="br0">&#91;</span>path_to_be_imported<span class="br0">&#93;</span> <span class="br0">&#91;</span>repository_url<span class="br0">&#93;</span></div>
</li>
</ol>
</div>
<h2>Task: check out</h2>
<div class="geshi no shell">
<ol>
<li class="li1">
<div class="de1">svn checkout [repository url]</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.danidemi.com/mainwww/2010/04/svn-toolkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get rid of MantisBT date_default_timezone_get() warning</title>
		<link>http://www.danidemi.com/mainwww/2010/03/get-rid-of-mantisbt-date_default_timezone_get-warning/</link>
		<comments>http://www.danidemi.com/mainwww/2010/03/get-rid-of-mantisbt-date_default_timezone_get-warning/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 10:13:42 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=137</guid>
		<description><![CDATA[<p>If you installed a MantisBT instance on a system with a recent PHP version, there&#8217;s the chance you get a warning saying:</p>
<p>SYSTEM WARNING: date_default_timezone_get(): It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods [...]]]></description>
			<content:encoded><![CDATA[<p>If you installed a MantisBT instance on a system with a recent PHP version, there&#8217;s the chance you get a warning saying:</p>
<blockquote><p>SYSTEM WARNING: date_default_timezone_get(): It is not safe to rely on the system&#8217;s timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected &#8216;Europe/Berlin&#8217; for &#8216;CET/1.0/no DST&#8217; instead</p></blockquote>
<p>A quick way to get rid of this is to set an explicit time zone.</p>
<p>Just open the config_inc.php file and add the date_default_timezone_set() line.</p>
<div class="geshi no php">
<ol>
<li class="li1">
<div class="de1"><span class="kw2">&lt;?php</span></div>
</li>
<li class="li1">
<div class="de1">date_default_timezone_set<span class="br0">&#40;</span><span class="st0">&quot;Europe/Rome&quot;</span><span class="br0">&#41;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re1">$g_hostname</span> <span class="sy0">=</span> <span class="st0">&#39;localhost&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re1">$g_db_type</span> <span class="sy0">=</span> <span class="st0">&#39;mysql&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re1">$g_database_name</span> <span class="sy0">=</span> <span class="st0">&#39;db_name&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re1">$g_db_username</span> <span class="sy0">=</span> <span class="st0">&#39;user&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="re1">$g_db_password</span> <span class="sy0">=</span> <span class="st0">&#39;secret&#39;</span><span class="sy0">;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="kw2">?&gt;</span></div>
</li>
</ol>
</div>
<p>Please refer to this <a href="http://www.php.net/manual/en/timezones.php">list</a> to discover the available time zones.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danidemi.com/mainwww/2010/03/get-rid-of-mantisbt-date_default_timezone_get-warning/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux Shell Survival Toolkit</title>
		<link>http://www.danidemi.com/mainwww/2010/03/linux-shell-survival-toolkit/</link>
		<comments>http://www.danidemi.com/mainwww/2010/03/linux-shell-survival-toolkit/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 10:00:24 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=133</guid>
		<description><![CDATA[<p>Hi, having a strong Windows background, I hardly remember all options of the huge set of commands available in the Linux shell&#8230; so, I&#8217;m slowly but steadily building up this Survival Toolkit. Hope it helps.</p>
File and directory management
Symbolic link
<p>Sometimes it is useful to hide the real location of a directory. For instance you could have [...]]]></description>
			<content:encoded><![CDATA[<p>Hi, having a strong Windows background, I hardly remember all options of the huge set of commands available in the Linux shell&#8230; so, I&#8217;m slowly but steadily building up this Survival Toolkit. Hope it helps.</p>
<h1>File and directory management</h1>
<h2>Symbolic link</h2>
<p>Sometimes it is useful to hide the real location of a directory. For instance you could have various folders containing different versions of the same software. So, for instance you got /opt/package-1.2, /opt/package-1.3, /opt/package/1.4beta. But maybe you like to have an /opt/package folder that should contain the version that should be currently used, so, you can use a symbolic link:</p>
<div class="geshi no shell">
<ol>
<li class="li1">
<div class="de1">ln -s &lt;existing_directory&gt; &lt;path_of_the_link_to_be_created&gt;</div>
</li>
</ol>
</div>
<p>In our case</p>
<div class="geshi no shell">
<ol>
<li class="li1">
<div class="de1">ln -s /opt/package-1.3 /opt/package</div>
</li>
</ol>
</div>
<h2>Compressed files</h2>
<p>Often one downloads an open source project as a bundle which extension is .tar.gz. Here&#8217;s how to inflate it.</p>
<div class="geshi no shell">
<ol>
<li class="li1">
<div class="de1">tar xvf [filename.tar]</div>
</li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.danidemi.com/mainwww/2010/03/linux-shell-survival-toolkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Playing around with twitter list</title>
		<link>http://www.danidemi.com/mainwww/2010/03/playing-around-with-twitter-list/</link>
		<comments>http://www.danidemi.com/mainwww/2010/03/playing-around-with-twitter-list/#comments</comments>
		<pubDate>Wed, 17 Mar 2010 17:01:44 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=131</guid>
		<description><![CDATA[An F1 related list on Tweetter. Just follow F1 without a [...]]]></description>
			<content:encoded><![CDATA[<p>Hi to you all, I was playing around with the twitter list feature. It happens I&#8217;m a big F1 fan, so, I built up a list with all tweetters that I think deserve to be followed. Here&#8217;s the link: <a title="F1" href="http://twitter.com/#/list/escher75/f1" target="_blank">http://twitter.com/#/list/escher75/f1</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danidemi.com/mainwww/2010/03/playing-around-with-twitter-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>First Facebook application</title>
		<link>http://www.danidemi.com/mainwww/2010/01/first-facebook-application/</link>
		<comments>http://www.danidemi.com/mainwww/2010/01/first-facebook-application/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 17:04:42 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[facebook]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/2010/01/first-facebook-application/</guid>
		<description><![CDATA[<p>My first Facebook application &#8220;Car Pooling&#8221;, developed at Tmind, is currently on line and available to you all. Just browse to the following link http://apps.facebook.com/car_pooling/. I hope you&#8217;ll enjoy it. And if you have a comment, please let me know!</p>
]]></description>
			<content:encoded><![CDATA[<p>My first Facebook application &#8220;Car Pooling&#8221;, developed at Tmind, is currently on line and available to you all. Just browse to the following link <a title="Car Pooling Facebook application" href="http://apps.facebook.com/car_pooling/" target="_blank">http://apps.facebook.com/car_pooling/</a>. I hope you&#8217;ll enjoy it. And if you have a comment, please let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danidemi.com/mainwww/2010/01/first-facebook-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
