<?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>Raymondopedia</title>
	<atom:link href="http://lucraymond.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://lucraymond.net</link>
	<description>Multimedia, programming and more!</description>
	<lastBuildDate>Fri, 04 Nov 2011 01:42:18 +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>Installing Apache2 and PHP 5.4 from source on Ubuntu 11.10</title>
		<link>http://lucraymond.net/2011/10/31/installing-apache2-and-php-5-4-from-source-on-ubuntu-11-10/</link>
		<comments>http://lucraymond.net/2011/10/31/installing-apache2-and-php-5-4-from-source-on-ubuntu-11-10/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 14:01:08 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[apache2]]></category>
		<category><![CDATA[fastcgi]]></category>
		<category><![CDATA[install]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql5]]></category>
		<category><![CDATA[php5]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=230</guid>
		<description><![CDATA[This guide will show you how to install Apache 2.2 (2.2.21) and PHP 5.4 and MySQL 5.6 from the latest source First, we will make sure that [...]]]></description>
			<content:encoded><![CDATA[<h1>This guide will show you how to install Apache 2.2 (2.2.21) and PHP 5.4 and MySQL 5.6 from the latest source</h1>
<p>First, we will make sure that the development environment and libraries are install on your server<br />
Setup Development Environment tools and libraries</p>
<p><code>sudo apt-get update<br />
sudo apt-get -y -q install make g++ flex bison build-essential zlib1g-dev binutils cmake<br />
sudo apt-get -y -q install libmcrypt-dev libmhash-dev libxslt1-dev libtidy-dev libbz2-dev libxml2-dev libssl-dev libmysqlclient16 libmysqlclient16-dev<br />
sudo apt-get -y -q install libpng12-dev libpng12-0 libpng3 libjpeg62 libjpeg62-dev libxpm-dev libpcre3 libpcre3-dev zlib1g zlib1g-dev libltdl-dev libltdl7<br />
sudo apt-get -y -q install pkg-config libcurl4-openssl-dev libfreetype6 libfreetype6-dev libc-client2007e libc-client2007e-dev libkrb5-3 libkrb5-dev<br />
sudo apt-get -y -q install openssl libglobus-openssl libglobus-openssl-dev libcurl4-openssl-dev libicu-dev libicu44 libpspell-dev<br />
sudo apt-get -y -q install linux-libc-dev libc-dev-bin libc-bin libc-client2007e-dev eglibc-source libkrb5-3 libkrb5-dev libkrb53 libkrb5support0<br />
sudo apt-get -y -q install libncurses5-dev libncurses5 ncurses-base ncurses-bin ncurses-term libaio-dev</code></p>
<h1>Installing Apache 2.2.21 from source</h1>
<p><code> wget http://apache.mirror.nexicom.net//httpd/httpd-2.2.21.tar.gz<br />
tar zxf httpd-2.2.21.tar.gz cd httpd-2.2.21<br />
./configure --enable-file-cache --enable-cache --enable-disk-cache --enable-mem-cache --enable-deflate --enable-expires --enable-headers --enable-usertrack --enable-ssl --enable-cgi --enable-vhost-alias --enable-rewrite --enable-so<br />
make -s<br />
sudo make install<br />
sudo mkdir /var/www/<br />
sudo chgrp -R www-data /var/www/</code></p>
<p>Configure Apache2 to start automatically when system is rebooted</p>
<p><code>runlevel (should output a number like 2)<br />
cd /etc/rcX.d/ (replace X with the number you saw when you run 'runlevel') </code></p>
<p>sudo ln -s -T /usr/local/apache2/bin/apachectl S80apache</p>
<p>Easy enough, Apache2 is already installed and ready to serve normal HTML web pages.</p>
<p>You can control the status of the web server with these commands:</p>
<p>Stop the web server<br />
<code>/usr/local/apache2/bin/apachectl stop</code></p>
<h1>Start the web server<br />
<code>/usr/local/apache2/bin/apachectl start</code><br />
Installing MySQL 5.6 from source<br />
<code><br />
sudo groupadd mysql<br />
sudo useradd -r -g mysql mysql </code></h1>
<p>sudo mkdir /var/log/mysql/<br />
sudo chgrp -R mysql /var/log/mysql/</p>
<p>wget http://dev.mysql.com/get/Downloads/MySQL-5.6/mysql-5.6.3-m6.tar.gz/from/http://mirror.csclub.uwaterloo.ca/mysql/<br />
mv index.html mysql.tar.gz<br />
tar zxf mysql.tar.gz<br />
cd mysql-5.6.3-m6/<br />
mkdir bld<br />
cd bld<br />
cmake -DBUILD_CONFIG=mysql_release ..<br />
sudo make install</p>
<p>cd /usr/local/mysql<br />
sudo chown -R mysql .<br />
sudo chgrp -R mysql .<br />
sudo scripts/mysql_install_db &#8211;user=mysql &#8211;basedir=/usr/local/mysql/ &#8211;datadir=/usr/local/mysql/data</p>
<p>sudo chown -R root .<br />
sudo chown -R mysql data</p>
<p>sudo cp support-files/my-medium.cnf /etc/my.cnf<br />
sudo cp support-files/mysql.server /etc/init.d/mysql.server</p>
<p>Edit configuration file sudo nano /etc/mysql/my.cnf</p>
<p>under [MYSQLD] edit or add the following lines:<br />
<code>basedir=/usr/local/mysql<br />
datadir=/usr/local/mysql/data</code><br />
to save<br />
to exit</p>
<p><code>sudo /usr/local/mysql/bin/mysqld_safe --user=mysql &amp;<br />
sudo /usr/local/mysql/bin/mysqladmin -u root password "NEW PASSWORD"<br />
</code></p>
<p>Installing PHP 5.4 from source</p>
<p><code>wget http://downloads.php.net/stas/php-5.4.0beta2.tar.gz<br />
tar zxf php-5.4.0beta2.tar.gz<br />
cd php-5.4.0beta2/<br />
'./configure' '--disable-short-tags' '--enable-exif' '--with-zlib' '--with-bz2' '--with-openssl' '--with-pcre-regex' '--with-gettext' '--with-mcrypt' '--with-mhash' '--with-iconv' '--with-gd' '--with-jpeg-dir' '--with-png-dir' '--with-zlib-dir' '--with-xpm-dir' '--with-xsl' '--with-tidy' '--with-freetype-dir' '--enable-gd-native-ttf' '--enable-calendar' '--enable-mbstring' '--enable-ftp' '--enable-bcmath' '--enable-sockets' '--enable-dom' '--enable-xml' '--enable-soap' '--enable-libxml' '--enable-session' '--enable-simplexml' '--enable-calendar' '--without-pear' '--enable-mbstring' '--disable-cli' '--with-png-dir=/usr/lib/libpng12.so' '--with-mysql-sock' '--with-mysql=mysqlnd' '--with-mysqli=mysqlnd' '--with-pdo-mysql=mysqlnd' --with-imap-ssl --with-kerberos --with-curl --enable-ftp<br />
make -s<br />
sudo make install</code></p>
<p>If you want to configure PHP in development mode, run this line:<br />
<code>sudo cp php.ini-development /usr/local/lib/php.ini</code></p>
<p>If you want to configure PHP in production mode, run this line:<br />
<code>sudo cp php.ini-production /usr/local/lib/php.ini</code></p>
<p>Configuring Apache2 to run PHP scripts</p>
<p><code>wget http://apache.parentinginformed.com/httpd/mod_fcgid/mod_fcgid-2.3.6.tar.gz<br />
tar zxf mod_fcgid-2.3.6.tar.gz<br />
cd mod_fcgid-2.3.6<br />
APXS=/usr/local/apache2/bin/apxs ./configure.apxs<br />
make<br />
sudo make install </code></p>
<p>You also need to edit Apache2 config file<br />
<code><br />
Order allow,deny<br />
Allow from all<br />
AllowOverride All<br />
Options MultiViews Indexes Includes FollowSymLinks ExecCGI<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2011/10/31/installing-apache2-and-php-5-4-from-source-on-ubuntu-11-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making a perfect DVD rip on Windows</title>
		<link>http://lucraymond.net/2011/09/05/making-a-perfect-dvd-rip-on-windows/</link>
		<comments>http://lucraymond.net/2011/09/05/making-a-perfect-dvd-rip-on-windows/#comments</comments>
		<pubDate>Mon, 05 Sep 2011 21:23:56 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Media Center]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[movies]]></category>
		<category><![CDATA[rip]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=322</guid>
		<description><![CDATA[&#160; I just posted a new tutorial to show how to RIP a DVD movie (free) http://lucraymond.net/windows/making-a-perfect-dvd-rip/ &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>I just posted a new tutorial to show how to RIP a DVD movie (free)</p>
<p><a title="http://lucraymond.net/windows/making-a-perfect-dvd-rip/" href="http://lucraymond.net/windows/making-a-perfect-dvd-rip/">http://lucraymond.net/windows/making-a-perfect-dvd-rip/</a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2011/09/05/making-a-perfect-dvd-rip-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Build and install APC extension on Mac OSX 10</title>
		<link>http://lucraymond.net/2011/06/12/build-and-install-apc-extension-on-mac-osx-10/</link>
		<comments>http://lucraymond.net/2011/06/12/build-and-install-apc-extension-on-mac-osx-10/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 14:23:01 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[APC]]></category>
		<category><![CDATA[building]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[installing]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=273</guid>
		<description><![CDATA[If you tried to install the APC extension on the MAC and got the following error: pecl mac error: ‘apc_regex’ has no member named ‘nreg’ The problem [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lucraymond.net/files/2010/04/mac-osx-leopard.png"><img class="alignright size-thumbnail wp-image-287" title="mac-osx-leopard" src="http://lucraymond.net/files/2010/04/mac-osx-leopard-150x150.png" alt="" width="150" height="150" /></a></p>
<p>If you tried to install the APC extension on the MAC and got the following error:</p>
<p style="padding-left: 30px;"><em>pecl mac error: ‘apc_regex’ has no member named ‘nreg’</em></p>
<p>The problem is that APC depends on the PCRE library and we need to install it before compiling APC. Here is how to fix it!</p>
<ul>
<li>Open a <strong>TERMINAL</strong> session,  type : <strong> mkdir  temp </strong></li>
<li>Head up to <a title="download page" href="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/" target="_blank">this page</a> and download a PCRE library (try to use the latest one). I took <a href="ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.12.zip">pcre-8.12.zip</a>, put the file inside the <strong>temp</strong> directory</li>
<li>uncompress the PCRE archive via Finder (or any other way)</li>
</ul>
<p style="padding-left: 60px;"><code><br />
<strong>cd  pcre-x.xx</strong> replace x with the version number (example: cd  pcre-8.12)<br />
.<strong>/configure</strong><br />
<strong>make</strong><br />
<strong>sudo make install</strong><br />
</code></p>
<ul>
<li>now download the latest APC release (<a title="download link APC" href="http://pecl.php.net/get/APC" target="_blank">link here</a>)</li>
<li>uncompress the APC archive via finder  (or terminal by typing    <strong>tar zxf  APC-X-XX  replace X with archive name and version number</strong> )</li>
<li>type</li>
</ul>
<p style="padding-left: 60px;"><strong><code>cd ~/temp/APC-3.1.9    (change the version number if you're using something different)<br />
phpize</code></strong><br />
<strong> <code> <strong><code>./configure</code></strong><br />
<strong> <code> </code></strong>make</code></strong><br />
<strong> <code> sudo make install </code></strong><code> </code></p>
<p>you should see something similar to this when it&#8217;s done compiling</p>
<p style="padding-left: 30px;"><code>Installing shared extensions:     /usr/lib/php/extensions/no-debug-non-zts-20090626/<br />
Installing header files:          /usr/include/php/</code></p>
<p>&nbsp;</p>
<p>Modify your php.ini file to have the extension loaded at php startup</p>
<ul>
<li>Open /private/etc/php.ini   (in Finder, select GO menu, select GO TO FOLDER and type /private/etc)</li>
<li>add this line in the Dynamic extensions area</li>
</ul>
<p style="padding-left: 60px;"><code><strong>extension=/usr/lib/php/extensions/no-debug-non-zts-20090626/apc.so</strong><br />
</code></p>
<p>Restart the web server (reboot your machine if your lazy, or go into the System preferences, click on Sharing, un-select Web sharing , wait a few seconds and select it again )</p>
<p>You&#8217;re done, congrats!</p>
<p>&nbsp;</p>
<p>Note:</p>
<p>There is a bug in version APC 3.1.9  <img src='http://lucraymond.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>if you get error</p>
<p style="padding-left: 30px;"><code>Fatal error: Unknown: apc_fcntl_unlock failed: in Unknown on line 0</code></p>
<p>Relax! just modify the file apc_lock.h inside the APC folder you created. Edit the following line around lines 155-160</p>
<p>Find the following:</p>
<pre style="padding-left: 30px;"><strong># define apc_lck_rdunlock(a) apc_fcntl_unlock(&amp;a TSRMLS_CC)</strong></pre>
<p>Replace by the following</p>
<pre style="padding-left: 30px;"><strong># define apc_lck_rdunlock(a) apc_fcntl_unlock(a TSRMLS_CC)</strong></pre>
<p>&nbsp;</p>
<p>Recompile APC by doing:</p>
<pre style="padding-left: 30px;"><strong>cd ~/temp/APC-x-xx (replace X with version number) make clean phpize ./configure make sudo make install</strong></pre>
<p>And restart your web server! Too easy !  enjoy!</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2011/06/12/build-and-install-apc-extension-on-mac-osx-10/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Canceled TV series not to buy on DVD or Bluray!</title>
		<link>http://lucraymond.net/2011/06/11/tv-series-not-to-buy/</link>
		<comments>http://lucraymond.net/2011/06/11/tv-series-not-to-buy/#comments</comments>
		<pubDate>Sun, 12 Jun 2011 03:43:18 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Entertainment]]></category>
		<category><![CDATA[Movies]]></category>
		<category><![CDATA[blu-ray]]></category>
		<category><![CDATA[bluray]]></category>
		<category><![CDATA[caprica]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[tv series]]></category>
		<category><![CDATA[v]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=268</guid>
		<description><![CDATA[I&#8217;m building a list of TV Series that got canceled, it&#8217;s a waste of money to buy any of the released seasons since you will never see [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://lucraymond.net/files/2011/06/Anna-from-V.png"><img class="alignright size-medium wp-image-291" title="Anna from V" src="http://lucraymond.net/files/2011/06/Anna-from-V-261x300.png" alt="" width="261" height="300" /></a></p>
<p>I&#8217;m building a list of TV Series that got canceled, it&#8217;s a waste of money to buy any of the released seasons since you will never see the end for any of these shows:</p>
<p><strong>SYFY</strong><br />
Caprica<br />
Stargate Universe<br />
WWE NXT</p>
<p><span style="text-decoration: underline;"><strong>ABC</strong></span><br />
All My Children<br />
Better With You<br />
Brothers &amp; Sisters<br />
Detroit 1-8-7<br />
Invasion<br />
The Gates<br />
Mr. Sunshine<br />
My Generation<br />
No Ordinary Family<br />
One Life to Live<br />
Scoundrels<br />
Secret Millionaire<br />
Skating With the Stars<br />
Supernanny<br />
V<br />
The Whole Truth</p>
<p><span style="text-decoration: underline;"><strong>NBC</strong></span><br />
100 Questions<br />
Breakthrough With Tony Robbins<br />
The Cape<br />
Chase<br />
The Event<br />
Friday Night Lights<br />
Last Comic Standing<br />
Law &amp; Order: LA<br />
Outlaw<br />
Outsourced<br />
The Paul Reiser Show<br />
Perfect Couples<br />
Persons Unknown<br />
School Pride<br />
Undercovers<br />
Who Do You Think You Are?</p>
<p><span style="text-decoration: underline;"><strong>FOX</strong></span><br />
America&#8217;s Most Wanted<br />
Breaking In<br />
The Chicago Code<br />
The Good Guys<br />
Human Target<br />
Lie to Me<br />
Lone Star<br />
Running Wilde<br />
Traffic Light</p>
<p><span style="text-decoration: underline;"><strong>CBS</strong></span><br />
As the World Turns<br />
The Bridge<br />
CHAOS<br />
Criminal Minds: Suspect Behavior<br />
The Defenders<br />
Live to Dance<br />
Mad Love<br />
Medium<br />
$#*! My Dad Says</p>
<p><span style="text-decoration: underline;"><strong> </strong></span></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2011/06/11/tv-series-not-to-buy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixing VLC and NVidia color profile</title>
		<link>http://lucraymond.net/2011/06/08/fixing-vlc-and-nvidia-color-profile/</link>
		<comments>http://lucraymond.net/2011/06/08/fixing-vlc-and-nvidia-color-profile/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 21:49:31 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Media Center]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[bright]]></category>
		<category><![CDATA[brightness]]></category>
		<category><![CDATA[colors]]></category>
		<category><![CDATA[colours]]></category>
		<category><![CDATA[light]]></category>
		<category><![CDATA[mudded]]></category>
		<category><![CDATA[nvidia]]></category>
		<category><![CDATA[vlc]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=255</guid>
		<description><![CDATA[&#160; If you have an NVidia card, I recommend you to change a setting on your Nvidia control panel as soon as possible.  I was often using [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p>If you have an NVidia card, I recommend you to change a setting on your Nvidia control panel as soon as possible.  I was often using VLC to play back movies and was puzzled why the black were pictured as dark grays.</p>
<p><a href="http://lucraymond.net/files/2011/06/16-235.jpg"><img class="size-medium wp-image-256 alignleft" title="16-235" src="http://lucraymond.net/files/2011/06/16-235-300x195.jpg" alt="" width="300" height="195" /></a><a href="http://lucraymond.net/files/2011/06/0-255.jpg"> <img class="size-medium wp-image-258 alignleft" title="0-255" src="http://lucraymond.net/files/2011/06/0-255-300x195.jpg" alt="" width="300" height="195" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>The picture on the left is greyer and the picture on the right has better contrast. The explanation is that the color palette on our generation of video cards are based on 4 color components ranging from 0 to 255. No every screen is able to reproduce the entire color spectrum so it was a normal practice to limit the range to values between 16 and 235. So instead of having a darkest color with a value of 0 (which gives black), you end up having a darkest color with a value of 16 which is dark grey.</p>
<p>&nbsp;</p>
<p>You can easily fix this yourself, just go into Windows <strong>Control Panel</strong>, and click <strong>Appearance and Personalization</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel1.jpg"><img class="alignnone size-full wp-image-259" title="controlpanel1" src="http://lucraymond.net/files/2011/06/controlpanel1.jpg" alt="" width="893" height="520" /></a></p>
<p>Click <strong>Nvidia Control Panel</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel2.jpg"><img class="alignnone size-full wp-image-260" title="controlpanel2" src="http://lucraymond.net/files/2011/06/controlpanel2.jpg" alt="" width="902" height="548" /></a></p>
<p>Click <strong>Adjust Video Color Settings</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel3.jpg"><img class="alignnone size-full wp-image-261" title="controlpanel3" src="http://lucraymond.net/files/2011/06/controlpanel3.jpg" alt="" width="938" height="699" /></a></p>
<p>&nbsp;</p>
<p>Click on <strong>Advanced</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel4.jpg"><img class="alignnone size-full wp-image-262" title="controlpanel4" src="http://lucraymond.net/files/2011/06/controlpanel4.jpg" alt="" width="938" height="699" /></a></p>
<p>Click on <em>Limited (16-235)</em> next to the <strong>Dynamic Range</strong><em><br />
</em></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel51.jpg"><img class="alignnone size-full wp-image-266" title="controlpanel5" src="http://lucraymond.net/files/2011/06/controlpanel51.jpg" alt="" width="938" height="699" /></a></p>
<p>Change it to <strong>Full (0-255)</strong></p>
<p><a href="http://lucraymond.net/files/2011/06/controlpanel6.jpg"><img class="alignnone size-full wp-image-264" title="controlpanel6" src="http://lucraymond.net/files/2011/06/controlpanel6.jpg" alt="" width="938" height="699" /></a></p>
<p>Click <strong>Apply </strong>and your done..</p>
<p>You should see a difference if you use a software like VLC. Some software seem to bypass the NVidia control panel and they doesn&#8217;t have this issue.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2011/06/08/fixing-vlc-and-nvidia-color-profile/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fixing SMB issue with Mac OSX 10.6.3 update</title>
		<link>http://lucraymond.net/2010/04/13/fixing-smb-issue-with-mac-osx-10-6-3-update/</link>
		<comments>http://lucraymond.net/2010/04/13/fixing-smb-issue-with-mac-osx-10-6-3-update/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 15:31:24 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[10.6.3]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=219</guid>
		<description><![CDATA[You may have noticed problems when trying to save/write/create/delete stuff on a SMB share after updating your Mac to update 10.6.3. The quick turn around is to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: left;"><a href="http://lucraymond.net/files/2010/04/mac-osx-leopard.png"><img class="alignright size-medium wp-image-287" title="mac-osx-leopard" src="http://lucraymond.net/files/2010/04/mac-osx-leopard-300x300.png" alt="" width="300" height="300" /></a></p>
<p>You may have noticed problems when trying to save/write/create/delete stuff on a SMB share after updating your Mac to update 10.6.3. The quick turn around is to edit the smb.conf file (usually find in /etc/samba/smb.conf) and add this line in the  <strong>[GLOBAL]</strong> section:</p>
<p><em>unix extensions = no</em></p>
<p>restart samba and it will work again!</p>
<p>to restart SAMBA:     <em>/etc/init.d/samba restart</em></p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2010/04/13/fixing-smb-issue-with-mac-osx-10-6-3-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>my Ibanez</title>
		<link>http://lucraymond.net/2010/03/30/my-ibanez/</link>
		<comments>http://lucraymond.net/2010/03/30/my-ibanez/#comments</comments>
		<pubDate>Wed, 31 Mar 2010 01:21:43 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Photography]]></category>
		<category><![CDATA[ibanez]]></category>
		<category><![CDATA[nikon]]></category>
		<category><![CDATA[photography]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=212</guid>
		<description><![CDATA[Well I was testing my new Nikon lens, which is a 50mm f1/4 If you have a 27&#8243; monitor, this is a version matching the new iMac [...]]]></description>
			<content:encoded><![CDATA[<p>Well I was testing my new Nikon lens, which is a 50mm f1/4</p>
<p>If you have a 27&#8243; monitor, this is a version matching the new iMac 27&#8243; 16:9 resolution<br />
<a href="http://lucraymond.net/files/2010/03/ibanez_2560x1440.jpg"><img class=" size-medium wp-image-213" title="ibanez_2560x1440" src="http://lucraymond.net/files/2010/03/ibanez_2560x1440-300x199.jpg" alt="" width="300" height="199" /></a></p>
<p>High-definition 1920&#215;1080<br />
<a href="http://lucraymond.net/files/2010/03/ibanez_1920x1080.jpg"><img class=" size-medium wp-image-214" title="ibanez_1920x1080" src="http://lucraymond.net/files/2010/03/ibanez_1920x1080-300x199.jpg" alt="" width="300" height="199" /></a></p>
<p>Standard definition 1024&#215;768<br />
<a href="http://lucraymond.net/files/2010/03/ibanez_1024x768.jpg"><img class=" size-medium wp-image-215" title="ibanez_1024x768" src="http://lucraymond.net/files/2010/03/ibanez_1024x768-300x199.jpg" alt="" width="300" height="199" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2010/03/30/my-ibanez/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to install Windows 2008 Easy Print sucessfully</title>
		<link>http://lucraymond.net/2010/03/24/how-to-install-without-failure-windows-2008-easy-print-terminal-service-sucessfully/</link>
		<comments>http://lucraymond.net/2010/03/24/how-to-install-without-failure-windows-2008-easy-print-terminal-service-sucessfully/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 00:02:13 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[System]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[2008]]></category>
		<category><![CDATA[easy print]]></category>
		<category><![CDATA[easyprint]]></category>
		<category><![CDATA[terminal server]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=195</guid>
		<description><![CDATA[If you&#8217;re not careful, you may have a few issues trying to use the Easy print feature, read the article for a problem free approach Click here [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;re not careful, you may have a few issues trying to use the Easy print feature, read the article for a problem free approach</p>
<p><a href="http://lucraymond.net/windows/windows-2008-easy-print-terminal-service-how-to-install-without-failure/">Click here </a>to read article</p>
<p>http://lucraymond.net/windows/windows-2008-easy-print-terminal-service-how-to-install-without-failure/</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2010/03/24/how-to-install-without-failure-windows-2008-easy-print-terminal-service-sucessfully/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building a HD Linux based multimedia streaming server PART 1 – (dvd and bluray and more)</title>
		<link>http://lucraymond.net/2010/03/24/building-a-hd-linux-based-multimedia-streaming-server-part-1-%e2%80%93-dvd-and-bluray-and-more/</link>
		<comments>http://lucraymond.net/2010/03/24/building-a-hd-linux-based-multimedia-streaming-server-part-1-%e2%80%93-dvd-and-bluray-and-more/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 17:50:39 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[bluray]]></category>
		<category><![CDATA[dvd]]></category>
		<category><![CDATA[streaming]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=176</guid>
		<description><![CDATA[I started a new article to show how to build a HD home entertainment streaming server. If you ever wanted to watch Bluray/DVD from anywhere in your [...]]]></description>
			<content:encoded><![CDATA[<p>I started a new article to show how to build a HD home entertainment streaming server. If you ever wanted to watch Bluray/DVD from anywhere in your house, this is for you.</p>
<p>You will learn:</p>
<ul>
<li>how to setup your network</li>
<li>setup a server</li>
<li>stream music</li>
<li>stream pictures</li>
<li>stream DVD movies</li>
<li>stream Bluray movies</li>
<li>access files and documents across any machines</li>
</ul>
<p>You can see the first part of the article <a href="http://lucraymond.net/linux/building-a-hd-linux-based-multimedia-streaming-server-part-1-dvd-and-bluray-and-more/">here</a> :</p>
<p>http://lucraymond.net/linux/building-a-hd-linux-based-multimedia-streaming-server-part-1-dvd-and-bluray-and-more/</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2010/03/24/building-a-hd-linux-based-multimedia-streaming-server-part-1-%e2%80%93-dvd-and-bluray-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>history behind theKolonee and WoxCore</title>
		<link>http://lucraymond.net/2010/03/22/history-behind-thekolonee-and-woxcore/</link>
		<comments>http://lucraymond.net/2010/03/22/history-behind-thekolonee-and-woxcore/#comments</comments>
		<pubDate>Mon, 22 Mar 2010 16:16:54 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[thekolonee]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=133</guid>
		<description><![CDATA[You may wonder why I felt the need to write another PHP framework when there are already plenty freely available on the market. I will do my [...]]]></description>
			<content:encoded><![CDATA[<p>You may wonder why I felt the need to write another PHP framework when there are already plenty freely available on the market. I will do my best to describe my problems.</p>
<p><span id="more-133"></span></p>
<p>Like many people, I have to maintain several web sites. The web sites I maintain are often built from the ground up but I wanted something new. I tried every versions of Drupal and WordPress and none of them perfectly suit my needs. WordPress by default is slow and does not support multiple languages content without external plug-ins. If you install any of these plugins you cannot upgrade the main WordPress version without making sure there is a new version of the plug-in also. Drupal support multiple language but does not work the way I expect it to work. If you post a page with pictures and want to translate the page to another language, you need to re-upload all the images, so they end up stored twice. The problem could be fix with external plug-ins.</p>
<p>Solution  &#8211;&gt; <strong>theKolonee</strong> &lt;&#8211;</p>
<p><strong>theKolonee</strong> will be a mix of my favorites features from various CMS, it will have extended default functionnality without requiring the use of any external plug-ins. The problem with that is letting other people extend your product so I required a framework. I checked some frameworks: Zend, Symphony. There all nice but they will slow down any application to a crawl.</p>
<p>The problem with these frameworks is that they are starting small and they end up having more than a hundred source files. They often focus on features  without being speed demon.</p>
<p>Solution &#8211;&gt; <strong>WoxCore</strong> &lt;&#8211;</p>
<p>WoxCore if my answer. It&#8217;s a framework used by theKolonee CMS and features are added when they are really needed. Performance and usefulness are top priorities. The framework support a basic MV / MVC mechanism. Here is a list of the core modules currently implemented:</p>
<ul>
<li>Core: provide several functions to read $_GET and $_POST, language detection and more</li>
<li>Comment: functions related to comments handling</li>
<li>DB : database wrapper</li>
<li>Controller: define the MVC mechanism</li>
<li>Directory: functions to handle filesystem functions</li>
<li>Files: functions to handle filesystem functions</li>
<li>Import: all import functions (misc files, images, videos)</li>
<li>Log : helper class for logging events in the database</li>
<li>HTML: html helper, let you write html ouput without knowing any HTML coding standard.</li>
<li>Security: Handle authentication and access control</li>
<li>Caching:  pages  and data caching</li>
<li>and more&#8230; <img src='http://lucraymond.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </li>
</ul>
<p>Data  classes</p>
<ul>
<li>Events: functions related to events management</li>
<li>News: functions related to news management</li>
</ul>
<p>Okay, that may sound a lot, you may think there are hundred of files also?  yes and no! there are a few files yes, but they are compiled in a single file that is used by your pages. The file itself is 19k (as we speak), so that&#8217;s not scary at all.</p>
<p><strong>Caching mechanism</strong></p>
<p>Each page can be set to be cached or not individually, the built-in modules will also used cache by default when fetching data from the MYSQL database.</p>
<p><strong>Time for examples</strong><br />
This is a basic MVC example. Here you have the controller which will handle caching, creation of a page name &#8216;Error&#8217;, and when the framework&#8217;s Render() function is called, it will display a linked html file name  &#8216;error-default-html-en.php&#8217;</p>
<p>Woxcore supports multiple render targets (web, mobile, &#8230;.) and multi-languages. So depending of the current language or render target, another html file may be linked</p>
<p><code><br />
function __autoload($class_name) {    include '../woxcore/'. $class_name . '.php';}$ctrl = new wcController('error','html');<br />
switch( $ctrl-&gt;Action )<br />
{<br />
default:<br />
break;<br />
}<br />
$ctrl-&gt;Render();</code></p>
<p>examples of the wcHTML helper class</p>
<p><code><br />
echo wcHtml::EncodeHeader('hello world');      //produce</code></p>
<h1>hello world</h1>
<p>echo wcHtml::EncodeHeader(&#8216;hello world&#8217;,2);   //produce</p>
<h2>hello world</h2>
<p>if you want to transform an array to list items<br />
<code><br />
$my_array=array(1,2,3)<br />
wcHtml::encodeList( $my_array )/*<br />
will produce</code></p>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
<p>want to know more? drop me a line</p>
<p>LINKS</p>
<p><a href="http://www.thekolonee.com" target="_blank">theKolonee web site</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2010/03/22/history-behind-thekolonee-and-woxcore/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>theKolonee CMS</title>
		<link>http://lucraymond.net/2010/03/14/thekolonee-cms/</link>
		<comments>http://lucraymond.net/2010/03/14/thekolonee-cms/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 14:03:54 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[cms]]></category>

		<guid isPermaLink="false">http://lucraymond.net/?p=130</guid>
		<description><![CDATA[I&#8217;m still working on my own personal CMS project theKolonee. Since it&#8217;s a part time hobby, the development does not goes always as fast I want it [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still working on my own personal CMS project <a href="http://www.thekolonee.com">theKolonee</a>. Since it&#8217;s a part time hobby, the development does not goes always as fast I want it to go.<br />
To make sure it&#8217;s not missing any feature, I created another site with it: <a title="VSC" href="http://www.virtualshowcar.com">VirtualShowCar</a>. By doing that, I can measure the power and weaknesses of the CMS in real time as I build the site.<br />
When a feature is not working, I know right away.</p>
<p>Go check the site for more information.</p>
<p>* supports the latest PHP version 5.3.2</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2010/03/14/thekolonee-cms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>woxcore project created on googlecode</title>
		<link>http://lucraymond.net/2009/08/11/woxcore-project-created-on-googlecode/</link>
		<comments>http://lucraymond.net/2009/08/11/woxcore-project-created-on-googlecode/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 12:31:44 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.lucraymond.net/?p=114</guid>
		<description><![CDATA[I create a new source code repository on GoogleCode.  WoxCore is the framework I created to build my new CMS named theKolonee. I will commit soon. Feel free [...]]]></description>
			<content:encoded><![CDATA[<p>I create a new <a title="WoxCore" href="http://code.google.com/p/woxcore/">source code repository</a> on GoogleCode.  WoxCore is the framework I created to build my new CMS named <a title="theKolonee CMS" href="http://www.thekolonee.com">theKolonee</a>. I will commit soon. Feel free to comment and contribute.</p>
<p><strong>Features</strong></p>
<ul>
<li>Multi lingual</li>
<li>MVC</li>
<li>Static content can be separated and delivered over a CDN (content delivery network)</li>
<li>bulk import of files</li>
<li>support APC and MemCache?</li>
<li>very lightweight and fast (one single file, so no recursive includes)</li>
<li>Uses PHP 5.3 new features</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2009/08/11/woxcore-project-created-on-googlecode/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Working on a new cms!</title>
		<link>http://lucraymond.net/2009/08/11/working-on-a-new-cms/</link>
		<comments>http://lucraymond.net/2009/08/11/working-on-a-new-cms/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 11:40:57 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Php]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[thekolonee]]></category>

		<guid isPermaLink="false">http://www.lucraymond.net/?p=107</guid>
		<description><![CDATA[If you ever tried to do a multi-lingual site, you know that this is a painful task!  Not so long ago, I created a new project called [...]]]></description>
			<content:encoded><![CDATA[<p>If you ever tried to do a multi-lingual site, you know that this is a painful task!  <span id="more-107"></span>Not so long ago, I created a new project called <a href="http://www.thekolonee.com" target="_blank">theKolonee</a>. The objective is to create a CMS (content management system) that supports plugins but that doesn&#8217;t require any.</p>
<p>Out of the box:</p>
<ul>
<li>Host multiple sites with only one applicative instance</li>
<li>Each site can support up to 255 languages</li>
<li>Visual text editor</li>
<li>Fassssssssst (the core framework is a single file ~ around 20k)</li>
<li>MVC system which is easily expandable</li>
<li>Facebook integration</li>
<li>Forums and photo galleries (with IPTC and Exif support, support for bulk importing files)</li>
<li>support APC and MEMCACHE</li>
<li>and more&#8230;</li>
</ul>
<p>if you want to help drop me a line!</p>
<p><strong>Requirements</strong></p>
<ul>
<li>PHP 5.3</li>
</ul>
<p>early screenshot of the administration interface</p>
<div id="attachment_109" class="wp-caption alignnone" style="width: 160px"><a href="http://www.lucraymond.net/wp-content/uploads/2009/08/kolonee.jpg"><img class="size-thumbnail wp-image-109" src="http://www.lucraymond.net/wp-content/uploads/2009/08/kolonee-150x150.jpg" alt="kolonee screenshot" width="150" height="150" /></a><p class="wp-caption-text">kolonee screenshot</p></div>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2009/08/11/working-on-a-new-cms/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New linux hard disk performance article</title>
		<link>http://lucraymond.net/2009/07/09/new-linux-hard-disk-performance-article/</link>
		<comments>http://lucraymond.net/2009/07/09/new-linux-hard-disk-performance-article/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 04:03:20 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[System]]></category>
		<category><![CDATA[hdd]]></category>
		<category><![CDATA[performance]]></category>

		<guid isPermaLink="false">http://www.lucraymond.net/?p=99</guid>
		<description><![CDATA[This article talks about how to measure hard disk performance and give a few tips on how to improve it. You can read the article by clicking [...]]]></description>
			<content:encoded><![CDATA[<p>This article talks about how to measure hard disk performance and give a few tips on how to improve it.</p>
<p><span>You can read the article by <a href="http://www.lucraymond.net/linux/hard-disk-performance-on-linux/">clicking here</a><br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2009/07/09/new-linux-hard-disk-performance-article/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guitar Hero madness!!</title>
		<link>http://lucraymond.net/2009/02/19/guitar-hero-madness/</link>
		<comments>http://lucraymond.net/2009/02/19/guitar-hero-madness/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 03:53:22 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[gh]]></category>
		<category><![CDATA[guitar hero]]></category>
		<category><![CDATA[xbox]]></category>

		<guid isPermaLink="false">http://www.lucraymond.net/?p=62</guid>
		<description><![CDATA[Since December we actually bought Guitar Hero : World tour + GH: Aerosmith + GH 2 + GH 3... we&#8217;re almost playing every night. I&#8217;m trying to [...]]]></description>
			<content:encoded><![CDATA[<p>Since December we actually bought Guitar Hero : World tour + GH: Aerosmith + GH 2 + GH 3..<span id="more-62"></span>.   we&#8217;re almost playing every night. I&#8217;m trying to finish the career at HARD &amp; Expert for each game and each instruments. Easier said than done. We sometime dress up with wigs and glasses.. we&#8217;re having a blast every week..</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2009/02/19/guitar-hero-madness/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New iMac, old one was defect</title>
		<link>http://lucraymond.net/2009/01/13/new-imac-old-one-was-defect/</link>
		<comments>http://lucraymond.net/2009/01/13/new-imac-old-one-was-defect/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 18:12:19 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.lucraymond.net/?p=55</guid>
		<description><![CDATA[I got my new iMac last thursday!! yeahhhh.. this was my Christmas gift but the one I got was defect. Every once in a while, it was [...]]]></description>
			<content:encoded><![CDATA[<p>I got my new iMac last thursday!! yeahhhh.. <span id="more-55"></span><br />
this was my Christmas gift but the one I got was defect. Every once in a while, it was shutting down and I needed to unplug it, wait a while to get it back working again. Since it was bought at FutureShop, I had no problem exchanging it for another one. Will post a picture soon..</p>
<p>Spec:</p>
<p>24&#8243; inch iMac<br />
2.8ghz<br />
4g ram</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2009/01/13/new-imac-old-one-was-defect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>30 days of Rapidcuts extreme</title>
		<link>http://lucraymond.net/2009/01/06/30-days-of-rapidcuts-extreme-week-1-review/</link>
		<comments>http://lucraymond.net/2009/01/06/30-days-of-rapidcuts-extreme-week-1-review/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 13:46:41 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Training]]></category>

		<guid isPermaLink="false">http://www.lucraymond.net/?p=30</guid>
		<description><![CDATA[** THIS POST IS NO MORE UPDATED ** updated on FEB 17,2009 since rapidcuts requires a lot of exercises I will reschedule a new trial period after [...]]]></description>
			<content:encoded><![CDATA[<p><em><br />
** THIS POST IS NO MORE UPDATED ** updated on FEB 17,2009<br />
since rapidcuts requires a lot of exercises I will reschedule a new trial period after a quick break. So far no changes were detected</em></p>
<p>Welcome to 2009, beginning a new year also imply going on a diet. Like many people, we eat more during the holydays and regret it when the new year begin. So what is Rapidcuts? RC is a pill labeled as a fat burner, instead of describing what it&#8217;s suppose to do, I suggest browsing the internet to find the information that you want. You should note that RC is not something that you take for the fun of it, you must be aware that it may improve your weight loss but you have to do something about it , like train and eat well. <span id="more-30"></span></p>
<p>I went to a local supplement store to buy some hydrocut. I took this product before but seen no weight loss at all. I was wondering if I was doing everything well and decided to give the product a second try. Once a was in the store, the rep told me about Rapidcuts. He told me that it was very popular and that many were successful.</p>
<p>During my 30 days I will try to get rid of : sodas, desserts of any kind. Each days, I will take : plenty of water, some coffees, vitamins supplement and a protein shake.</p>
<p>NOTE: You should not take these products when using fat burners ( or take very moderately) :  coffee, tea, energy drinks. Also avoid if you have heart related problems.</p>
<p>&nbsp;</p>
<hr />
<em><br />
If you want to try RAPIDCUTS you can order it via Amazon.com by following this link:</em><br />
<a href="http://www.amazon.com/gp/product/B001216AJG?ie=UTF8&amp;tag=woxxom-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=B001216AJG">RapidCuts Hardcore</a><img src="http://www.assoc-amazon.com/e/ir?t=woxxom-20&amp;l=as2&amp;o=1&amp;a=B001216AJG" width="1" height="1" border="0" alt="" style="border:none !important;margin:0px !important" /><br />
<br />&nbsp;</p>
<hr />
<p>&nbsp;</p>
<p><strong>Day 1 (January 5, 2009): 91.7 kg </strong></p>
<p>tooks 3 pills, did some training at night, ate some chips, sheppard&#8217;s pie and soup. At my job, I took the stairs instead of the elevators .</p>
<p><strong>Day 2 (January 6,2009) :  90.8 kg</strong></p>
<p>almost down 1kg, did I lost fat already? Probably not, part of it could be water. We&#8217;ll see after one week.</p>
<p><strong>Day 3 (January 7,2009) : 89.73 kg</strong></p>
<p>hmm , nice, another kilo gone, did some weight training for 35-40 min. I had sheppard&#8217;s pie, pork chop, some chips and a diet soda.. I drink more than twelve glasses of water a day and still drink coffee.</p>
<p><strong>Day 4 (January 7,2009) : 90.26 kg</strong></p>
<p>I did not have a chance to train yesterday and no  magic happened</p>
<p><strong>Day 5-10 : same old </strong></p>
<p>To be honest, I was suspecting the product would be more effective. I know that you need to have a special diet and I also understand that you have to exercices but if you&#8217;re doing all that, you should lose weight without taking anything. What&#8217;s left for me to do, is train hard and see if the product gives me better results.</p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2009/01/06/30-days-of-rapidcuts-extreme-week-1-review/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>New discovery!</title>
		<link>http://lucraymond.net/2008/12/09/new-discovery/</link>
		<comments>http://lucraymond.net/2008/12/09/new-discovery/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 16:50:04 +0000</pubDate>
		<dc:creator>Luc</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://www.lucraymond.net/?p=7</guid>
		<description><![CDATA[It's been a while since I wanted to rush in a store to buy a CD but today it's happening.]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while since I wanted to rush in a store to buy a CD but today it&#8217;s happening.  I was surfing the web and stumbled upon the Art of Dying web site.</p>
<p>What are you waiting for, head up for the web site and hear for yourself..</p>
<p><a href="http://www.artofdyingmusic.com" target="_blank">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lucraymond.net/2008/12/09/new-discovery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

