<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="Tiki CMS/Groupware via FeedCreator 1.7.2.1" -->
<?xml-stylesheet href="http://software.cristianoleoni.com/lib/rss/rss-style.css" type="text/css"?>
<?xml-stylesheet href="http://software.cristianoleoni.com/lib/rss/rss20.xsl" type="text/xsl"?>
<rss version="2.0">
    <channel>
        <title>Tiki RSS feed for the wiki pages</title>
        <description><![CDATA[Last modifications to the Wiki.]]></description>
        <link>http://software.cristianoleoni.com/tiki-wiki_rss.php?ver=2</link>
        <lastBuildDate>Sun, 05 Sep 2010 21:46:33 +0100</lastBuildDate>
        <generator>Tiki CMS/Groupware via FeedCreator 1.7.2.1</generator>
        <image>
            <url>http://software.cristianoleoni.com/img/tiki.jpg</url>
            <title>Software by Cristiano Leoni</title>
            <link>http://software.cristianoleoni.com/tiki-index.php</link>
            <description><![CDATA[Feed provided by Software by Cristiano Leoni. Click to visit.]]></description>
        </image>
        <language>en-us</language>
        <item>
            <title>HomePage</title>
            <link>http://software.cristianoleoni.com/tiki-index.php?page=HomePage</link>
            <description><![CDATA[<style TYPE="text/css"> .diffchar { color:red; } </style>+ <h4 class="showhide_heading" id="a_class_wiki_href_http_software_cristianoleoni_com_freebies_glossaryconv_php_rel_Free_ATutor_to_Moodle_Glossary_Converter_a_"><a class="wiki"  href="http://software.cristianoleoni.com/freebies/glossaryconv.php" rel="">Free ATutor to Moodle Glossary Converter</a></h4>]]></description>
            <author>admin</author>
            <pubDate>Fri, 03 Sep 2010 13:57:46 +0100</pubDate>
        </item>
        <item>
            <title>Moodle</title>
            <link>http://software.cristianoleoni.com/tiki-index.php?page=Moodle</link>
            <description><![CDATA[<style TYPE="text/css"> .diffchar { color:red; } </style>- <ul><li>  <a class="wiki"  href="tiki-download_file.php?fileId=8" rel="">Activity Locking Module for 1.9.5 (stable)</a> Build: 20090515+ <ul><li>  <a class="wiki"  href="tiki-download_file.php?fileId=8" rel="">Activity Locking Module<span class="diffchar"> update &quot;A&quot;</span> for 1.9.5 (stable)</a> Build: 20090515<span class="diffchar"> - Module's update &quot;A&quot; - Allows individual activity locking</span>]]></description>
            <author>admin</author>
            <pubDate>Mon, 08 Jun 2009 08:05:39 +0100</pubDate>
        </item>
        <item>
            <title>Search &amp;amp; Replace in mySQL</title>
            <link>http://software.cristianoleoni.com/tiki-index.php?page=Search+%26amp%3B+Replace+in+mySQL</link>
            <description><![CDATA[<style TYPE="text/css"> .diffchar { color:red; } </style>+ Performing a search-and-replace through a table is easy with MySQL when you know how.<br />+ <div class="simplebox">update table_name set table_field = replace(table_field,'replace_that','with_this');</div><br />+ <br />+ So, for example, let’s say you have a table called “posts” with a data stored in a field called “content” and you want to replace all instances of the word “dog” with “cat”, then your SQL would look like this:<br />+ <div class="simplebox">update posts set content = replace(content,'dog','cat');</div><br />+ <br />+ <br />+ Similar, with regexp<br />+ <br />+ <div class="simplebox">UPDATE `mos2_content` SET introtext = replace(introtext,&quot;&lt;p&gt;&quot;,&quot;&quot;) WHERE `title` REGEXP '-0';</div><br />+ <br />+ <br />]]></description>
            <author>admin</author>
            <pubDate>Sun, 10 May 2009 09:42:20 +0100</pubDate>
        </item>
        <item>
            <title>Free Quick Guides</title>
            <link>http://software.cristianoleoni.com/tiki-index.php?page=Free+Quick+Guides</link>
            <description><![CDATA[<style TYPE="text/css"> .diffchar { color:red; } </style>+ </li><li><a title="Search &amp; Replace in mySQL" href='tiki-index.php?page=Search+%26amp%3B+Replace+in+mySQL' class='wiki'>Search &amp; Replace in mySQL</a>]]></description>
            <author>admin</author>
            <pubDate>Sun, 10 May 2009 09:40:41 +0100</pubDate>
        </item>
        <item>
            <title>A simple script for backing up your wordpress site every night</title>
            <link>http://software.cristianoleoni.com/tiki-index.php?page=A+simple+script+for+backing+up+your+wordpress+site+every+night</link>
            <description><![CDATA[<style TYPE="text/css"> .diffchar { color:red; } </style>- </li><li> Create a <b>backup<span class="diffchar">-</span>project.sh</b> in the HOME folder and paste the code you find below.+ </li><li> Create a <b>backup<span class="diffchar">_</span>project.sh</b> in the HOME folder and paste the code you find below.- </li><li> Save and chmod for execution (chmod u+x backup<span class="diffchar">-</span>project.sh )<br /></li><li> Create a <b>backup<span class="diffchar">-</span>project.exclusions</b> file and customize the sample. The example will skip all .tar files and the specified folders. Make file empty for no exclusions at all+ </li><li> Save and chmod for execution (chmod u+x backup<span class="diffchar">_</span>project.sh )<br /></li><li> Create a <b>backup<span class="diffchar">_</span>project.exclusions</b> file and customize the sample. The example will skip all .tar files and the specified folders. Make file empty for no exclusions at all- backup<span class="diffchar">-</span>project.sh script<br />+ backup<span class="diffchar">_</span>project.sh script<br />-  # WPFOLDER=where <span class="diffchar">W</span>or<span class="diffchar">dpr</span>e<span class="diffchar">ss</span> is installed<br /><br />WPFOLDER=/var/www<span class="diffchar">/spider</span>/wordpress<br />+  # WPFOLDER=where <span class="diffchar">y</span>o<span class="diffchar">u</span>r<span class="diffchar"> sit</span>e is installed<br /><br />WPFOLDER=/var/www/wordpress<br />- PROJECT=<span class="diffchar">we</span>b<span class="diffchar">pa</span><br />+ PROJECT=<span class="diffchar">my</span>b<span class="diffchar">log</span><br />- DBNAME=<span class="diffchar">we</span>b<span class="diffchar">-pa2</span><br /><br />DBPASS=&quot;1<span class="diffchar">webpa1</span>&quot;<br /><br />DBUSER=<span class="diffchar">pa</span>o<span class="diffchar">s2</span>u<br />+ DBNAME=<span class="diffchar">myblogd</span>b<br /><br />DBPASS=&quot;1<span class="diffchar">23456</span>&quot;<br /><br />DBUSER=<span class="diffchar">mybl</span>o<span class="diffchar">gdb</span>u<span class="diffchar">ser</span><br />- tar cvf $HOME/$PROJECT-files.tar -X $HOME/backup<span class="diffchar">-</span>$PROJECT.exclusions *<br />+ tar cvf $HOME/$PROJECT-files.tar -X $HOME/backup<span class="diffchar">_</span>$PROJECT.exclusions *<br />- backup<span class="diffchar">-</span>project.exclusions file<br />+ backup<span class="diffchar">_</span>project.exclusions file<br />]]></description>
            <author>admin</author>
            <pubDate>Fri, 27 Mar 2009 10:17:22 +0100</pubDate>
        </item>
        <item>
            <title>Deleting unmatched records on mySQL 4.1 and 5.x</title>
            <link>http://software.cristianoleoni.com/tiki-index.php?page=Deleting+unmatched+records+on+mySQL+4.1+and+5.x</link>
            <description><![CDATA[<style TYPE="text/css"> .diffchar { color:red; } </style>- case<span class="diffchar">:</span> <b>table1</b> contains records with a <b>userid</b> field which points to (and SHOULD match with a record in) the <b>users</b> table<br />+ <span class="diffchar"><h4 </span>c<span class="diffchar">l</span>as<span class="diffchar">s="showhid</span>e<span class="diffchar">_heading" id="Scenario">Scenario</h4><br</span> <span class="diffchar">/></span><b>table1</b> contains records with a <b>userid</b> field which points to (and SHOULD match with a record in) the <b>users</b> table<br />- <h<span class="diffchar">3</span> class="showhide_heading" id="mySQL_4_1">mySQL 4.1</h<span class="diffchar">3</span>>+ <h<span class="diffchar">4</span> class="showhide_heading" id="mySQL_4_1">mySQL 4.1</h<span class="diffchar">4</span>>- <h<span class="diffchar">3</span> class="showhide_heading" id="mySQL_5_x">mySQL 5.x</h<span class="diffchar">3</span>>+ <h<span class="diffchar">4</span> class="showhide_heading" id="mySQL_5_x">mySQL 5.x</h<span class="diffchar">4</span>>]]></description>
            <author>admin</author>
            <pubDate>Fri, 12 Dec 2008 12:53:45 +0100</pubDate>
        </item>
        <item>
            <title>Calendar</title>
            <link>http://software.cristianoleoni.com/tiki-index.php?page=Calendar</link>
            <description><![CDATA[<style TYPE="text/css"> .diffchar { color:red; } </style>- <a class="wiki external" target="_blank" href="http://30boxes.com/<span class="diffchar">w</span>i<span class="diffchar">dget</span>/41625/CristianoLeoni/68a45a3fcf57f82a3da689f76fd3ca5c/0/" rel="external">calendar</a><img border="0" class="externallink" src="img/icons/external_link.gif" alt=" (external link)" /><br />+ <a class="wiki external" target="_blank" href="http://30boxes.com/<span class="diffchar">publ</span>i<span class="diffchar">c</span>/41625/CristianoLeoni/68a45a3fcf57f82a3da689f76fd3ca5c/0/" rel="external">calendar</a><img border="0" class="externallink" src="img/icons/external_link.gif" alt=" (external link)" /><br />]]></description>
            <author>admin</author>
            <pubDate>Mon, 06 Oct 2008 07:50:11 +0100</pubDate>
        </item>
        <item>
            <title>Accessing Your Projects Web Space on Sourceforge Using WinSCP</title>
            <link>http://software.cristianoleoni.com/tiki-index.php?page=Accessing+Your+Projects+Web+Space+on+Sourceforge+Using+WinSCP</link>
            <description><![CDATA[<style TYPE="text/css"> .diffchar { color:red; } </style>+ <br />+ <span class="img"><img alt="" src="show_image.php?id=8" border="0"  /></span><br />]]></description>
            <author>admin</author>
            <pubDate>Thu, 02 Oct 2008 09:03:08 +0100</pubDate>
        </item>
    </channel>
</rss>
