<?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>link2caro</title>
	<atom:link href="http://link2caro.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://link2caro.net</link>
	<description></description>
	<lastBuildDate>Mon, 30 Jan 2012 09:41:51 +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>New theme for my blog</title>
		<link>http://link2caro.net/read/new-theme-for-my-blog/</link>
		<comments>http://link2caro.net/read/new-theme-for-my-blog/#comments</comments>
		<pubDate>Sun, 30 Jan 2011 20:26:02 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=785</guid>
		<description><![CDATA[After a while, I&#8217;m now working on a new theme based on my new framework for WordPress. This theme will look like the last one, there is just new functionality behind-the-scene which are going to be added.]]></description>
			<content:encoded><![CDATA[<p>After a while, I&#8217;m now working on a new theme based on my new framework for WordPress. This theme will look like the last one, there is just new functionality behind-the-scene which are going to be added.</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/new-theme-for-my-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing PHP on Debian without Apache</title>
		<link>http://link2caro.net/read/installing-php-on-debian-without-apache/</link>
		<comments>http://link2caro.net/read/installing-php-on-debian-without-apache/#comments</comments>
		<pubDate>Fri, 03 Dec 2010 19:07:49 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Apt-Get]]></category>
		<category><![CDATA[Aptitude]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=740</guid>
		<description><![CDATA[If you need to install PHP without apache on a Debian machine, do not try the short way You need to install dependencies of php5 first and then install php5, like below]]></description>
			<content:encoded><![CDATA[<p>If you need to install PHP without apache on a Debian machine, do not try the short way</p>
<pre class="brush: bash; title: ; notranslate">
aptitude install php5
# or
apt-get install php5
</pre>
<p>You need to install dependencies of php5 first and then install php5, like below</p>
<pre class="brush: bash; title: ; notranslate">
aptitude install php5-common php5-cgi
aptitude install php5
</pre>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/installing-php-on-debian-without-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ssh-agent with cygwin on Windows</title>
		<link>http://link2caro.net/read/ssh-agent-with-cygwin-on-windows/</link>
		<comments>http://link2caro.net/read/ssh-agent-with-cygwin-on-windows/#comments</comments>
		<pubDate>Wed, 24 Nov 2010 11:50:34 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[cygwin]]></category>
		<category><![CDATA[private key]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[ssh-agent]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=712</guid>
		<description><![CDATA[Modify your .bashrc in your home directory in cygwin Add a variable into your environment variables As in this screenshot You can add the path to the directory /bin, /usr/sbin, /usr/local/bin into your PATH variable of windows too, so that you can use most of cygwin commands directly from Command Prompt. The most useful commands [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>Modify your .bashrc in your home directory in cygwin</li>
</ul>
<pre class="brush: bash; title: ; notranslate">export SSH_AUTH_SOCK=/tmp/.ssh-socket
ssh-add -l 2&gt;&amp;1 &amp;gt;/dev/null

if [ $? = 2 ]; then
# Exit status 2 means couldn't connect to ssh-agent; start one now
ssh-agent -a $SSH_AUTH_SOCK &gt; /tmp/.ssh-script
. /tmp/.ssh-script
echo $SSH_AGENT_PID &gt; /tmp/.ssh-agent-pid
echo &quot;Run ssh-add &lt;Private Key&gt; to add your key to ssh-agent&quot;
ssh-add ~/.ssh/id_rsa
fi

function kill-agent {
pid=`cat /tmp/.ssh-agent-pid`
kill $pid
}</pre>
<ul>
<li>Add a variable into your environment variables</li>
</ul>
<p>As in this screenshot <img class="aligncenter size-medium wp-image-729" title="Environment variables" src="http://files.link2caro.net/2010/11/Capture-500x230.png" alt="" width="500" height="230" /></p>
<p>You can add the path to the directory /bin, /usr/sbin, /usr/local/bin into your PATH variable of windows too, so that you can use most of cygwin commands directly from Command Prompt. The most useful commands for me are <strong>ssh</strong>,<strong> rsync </strong>and <strong>tail</strong>.</p>
<p>You can create a startup batch which launches <strong>bash</strong> when your PC starts up, so that it will start automatically the ssh-agent and register your private keys.</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/ssh-agent-with-cygwin-on-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft new Sync service is online</title>
		<link>http://link2caro.net/read/microsoft-new-sync-service-is-online/</link>
		<comments>http://link2caro.net/read/microsoft-new-sync-service-is-online/#comments</comments>
		<pubDate>Thu, 24 Jun 2010 12:14:40 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=726</guid>
		<description><![CDATA[The new Sync service of Microsoft which gives you 2GB for data synchronization and the ability to connect to your computer remotely is available as beta since today 24/06/2010. The funny thing is that, the icon which represents a notebook is one of the Macbook, Apple should learn from this, do not humiliate rival with [...]]]></description>
			<content:encoded><![CDATA[<p>The new Sync service of Microsoft which gives you 2GB for data synchronization and the ability to connect to your computer remotely is available as beta since today 24/06/2010.</p>
<p>The funny thing is that, the icon which represents a notebook is one of the Macbook, Apple should learn from this, do not humiliate rival with the old-fashioned blue screen&#8230;</p>
<p><img class="aligncenter size-medium wp-image-727" title="sync-macbook-icon" src="http://files.link2caro.net/2010/06/sync-macbook-icon-500x197.jpg" alt="" width="500" height="197" /></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/microsoft-new-sync-service-is-online/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0</title>
		<link>http://link2caro.net/read/wordpress-3-0/</link>
		<comments>http://link2caro.net/read/wordpress-3-0/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 09:41:15 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Release]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=716</guid>
		<description><![CDATA[&#160; WordPress 3.0 đã chính thức được phát hành ngày 17/06/2010 với nhiều tính năng mới nổi bật cho cả người dùng bình thường lẫn người dùng chuyên nghiệp (lập trình viên) Một tính năng nổi bật nhất đó là bạn có thể cắt, chỉnh sửa ảnh của bạn trực tiếp trong WordPress (như hình [...]]]></description>
			<content:encoded><![CDATA[<p>&nbsp;</p>
<p><img class="aligncenter" title="Chỉnh sửa ảnh  trong WordPress" src="http://files.link2caro.net/2010/06/ss4.png" alt="" width="466" height="303" /></p>
<p><img class="aligncenter size-medium wp-image-722" title="Chỉnh sửa ảnh trong WordPress 3.0" src="http://files.link2caro.net/2010/06/ss5-500x349.png" alt="" width="500" height="349" /></p>
<p style="text-align: left;">WordPress 3.0 đã chính thức được phát hành ngày 17/06/2010 với nhiều tính năng mới nổi bật cho cả người dùng bình thường lẫn người dùng chuyên nghiệp (lập trình viên)</p>
<p style="text-align: left;">Một tính năng nổi bật nhất đó là bạn có thể cắt, chỉnh sửa ảnh của bạn trực tiếp trong WordPress (như hình minh họa)</p>
<p style="text-align: left;">Bạn có thể tham khảo các tính năng mới của WordPress 3.0 tại đây:</p>
<p style="text-align: left;">http://codex.wordpress.org/Version_3.0</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3.7 will be available in 64bit for Mac OSX</title>
		<link>http://link2caro.net/read/firefox-3-7-will-be-available-in-64bit-for-mac-osx/</link>
		<comments>http://link2caro.net/read/firefox-3-7-will-be-available-in-64bit-for-mac-osx/#comments</comments>
		<pubDate>Tue, 20 Apr 2010 20:56:58 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=709</guid>
		<description><![CDATA[http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/firefox-3.7a5pre.en-US.mac64.dmg As you can see the name of this image, it&#8217;s a 64bit build for Mac OSX]]></description>
			<content:encoded><![CDATA[<p>http://ftp.mozilla.org/pub/mozilla.org/firefox/nightly/latest-trunk/firefox-3.7a5pre.en-US.mac64.dmg</p>
<p>As you can see the name of this image, it&#8217;s a 64bit build for Mac OSX <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/firefox-3-7-will-be-available-in-64bit-for-mac-osx/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Mac OSX &#8211; rsync to support iconv</title>
		<link>http://link2caro.net/read/mac-osx-rsync/</link>
		<comments>http://link2caro.net/read/mac-osx-rsync/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 17:24:28 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[compilation]]></category>
		<category><![CDATA[Mac OSX]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/read/mac-osx-rsync-to-support-iconv/</guid>
		<description><![CDATA[The rsync tool that comes in-the-box with OSX does not support iconv, so that you cannot activate this option in order to void any encoding issue when syncing with rsync. To use this option, you need to install XCode to compile rsync, by default on OSX 10.6, with default options (64-bit compilation) you don&#8217;t have [...]]]></description>
			<content:encoded><![CDATA[<p>The rsync tool that comes in-the-box with OSX does not support iconv, so that you cannot activate this option in order to void any encoding issue when syncing with rsync.<br />
To use this option, you need to install XCode to compile rsync, by default on OSX 10.6, with default options (64-bit compilation) you don&#8217;t have iconv enabled, you just need to precise rsync to compile in 32-bit mode and you are good to sync in UTF-8 now</p>
<p>If you sync from your Mac use</p>
<p style="padding-left: 30px;"><code>rsync --iconv=UTF8-MAC,UTF8</code></p>
<p><code>$ CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 ./configure --prefix=/usr/local<br />
$ CFLAGS=-m32 CPPFLAGS=-m32 CCASFLAGS=-m32 sudo make install</code></p>
<p>If you don&#8217;t want to install XCode, you can download a compiled version here: <a href="http://files.link2caro.net/2010/04/rsync.tar.gz">rsync-3.0.7 (compiled on OSX 10.6.3)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/mac-osx-rsync/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Static IP Configuration (Debian or Red Hat)</title>
		<link>http://link2caro.net/read/static-ip-linux/</link>
		<comments>http://link2caro.net/read/static-ip-linux/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 14:21:54 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=688</guid>
		<description><![CDATA[For Debian Modify /etc/network/interfaces # /etc/network/interfaces &#8212; configuration file for ifup(8), ifdown(8) # The loopback interface auto lo iface lo inet loopback # The first network card &#8211; this entry was created during the Debian installation # (network, broadcast and gateway are optional) auto eth0 iface eth0 inet static address 192.168.1.10 netmask 255.255.255.0 network 192.168.1.0 [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li>For Debian<br />
<code>Modify /etc/network/interfaces</code></p>
<p># /etc/network/interfaces &#8212; configuration file for ifup(8),  ifdown(8)</p>
<p>#  The loopback interface<br />
auto lo<br />
iface lo inet loopback</p>
<p>#  The first network card &#8211; this entry was created during the Debian   installation<br />
# (network, broadcast and gateway are optional)<br />
auto  eth0</p>
<p>iface eth0 inet static<br />
address 192.168.1.10<br />
netmask 255.255.255.0<br />
network 192.168.1.0<br />
broadcast 192.168.1.255<br />
gateway 192.168.1.1</li>
<li>For Red Hat<br />
<code>Modify /etc/sysconfig/network-scripts/ifcfg-eth*</code></p>
<p>DEVICE=eth0<br />
BOOTPROTO=static<br />
ONBOOT=yes<br />
IPADDR=192.168.1.10<br />
NETMASK=255.255.255.0<br />
GATEWAY=192.168.1.1</li>
</ul>
<p>Run /etc/init.d/networking restart to apply these changes</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/static-ip-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery 1.4 for WordPress</title>
		<link>http://link2caro.net/read/jquery-1-4-for-wordpress/</link>
		<comments>http://link2caro.net/read/jquery-1-4-for-wordpress/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 21:59:45 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=683</guid>
		<description><![CDATA[If you want to test out jQuery 1.4 with your current WordPress installation, you just need to add this code into functions.php of your theme if( !is_admin()){ wp_deregister_script('jquery'); wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js', false, 'latest'); wp_enqueue_script('jquery'); }]]></description>
			<content:encoded><![CDATA[<p><a href="http://files.link2caro.net/2010/02/jquery.gif" rel="lightbox[683]"></a><a href="http://files.link2caro.net/2010/02/jquery.png" rel="lightbox[683]"><img class="alignright size-full wp-image-685" title="jquery" src="http://files.link2caro.net/2010/02/jquery.png" alt="" width="239" height="101" /></a>If you want to test out jQuery 1.4 with your current WordPress installation, you just need to add this code into functions.php of your theme</p>
<p><code>if( !is_admin()){<br />
wp_deregister_script('jquery');<br />
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js', false, 'latest');<br />
wp_enqueue_script('jquery');<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/jquery-1-4-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird 3.0 is released</title>
		<link>http://link2caro.net/read/thunderbird-3/</link>
		<comments>http://link2caro.net/read/thunderbird-3/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 07:51:31 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Thunderbird]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/read/thunderbird-3-0-is-released/</guid>
		<description><![CDATA[Cool!!! The long-awaited cross-platform email client is out there: http://www.mozillamessaging.com/en-US/thunderbird/3.0/releasenotes/ I recommend you theses plugins: Lightening (for Agenda) AdBlock Plus Zindus (Googles/Zimbra contacts synchronization)]]></description>
			<content:encoded><![CDATA[<p><a href="http://files.link2caro.net/2009/12/Screenshot-2009-12-16-at-08.56.30.png" rel="lightbox[669]"></a><a href="http://files.link2caro.net/2009/12/Thunderbird3.png" rel="lightbox[669]"><img class="alignright size-full wp-image-673" title="Thunderbird3" src="http://files.link2caro.net/2009/12/Thunderbird3.png" alt="Thunderbird3" width="302" height="237" /></a>Cool!!!<br />
The long-awaited cross-platform email client is out there:<br />
<a href="http://www.mozillamessaging.com/en-US/thunderbird/3.0/releasenotes/"> http://www.mozillamessaging.com/en-US/thunderbird/3.0/releasenotes/</a></p>
<p>I recommend you theses plugins:<br />
Lightening (for Agenda)<br />
AdBlock Plus<br />
Zindus (Googles/Zimbra contacts synchronization)</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/thunderbird-3/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Won something from Microsoft</title>
		<link>http://link2caro.net/read/microsoft-lifecam/</link>
		<comments>http://link2caro.net/read/microsoft-lifecam/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 14:29:15 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[lifecam]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=662</guid>
		<description><![CDATA[I won this webcam and I received some mails about this, but never did I read those mail, I thought they were spam ) Till today, I received a mail asking for my postal address. I began to think, why would they need my address? And I looked at the sender, it&#8217;s an Microsoft address, [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://files.link2caro.net/2009/11/Screenshot-2009-11-04-at-14.59.37.png" rel="lightbox[662]"><img class="aligncenter size-medium wp-image-661" title="Lifecam nx-6000n" src="http://files.link2caro.net/2009/11/Screenshot-2009-11-04-at-14.59.37-500x467.png" alt="Lifecam nx-6000n" width="500" height="467" /></a>I won this webcam and I received some mails about this, but never did I read those mail, I thought they were spam <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> ) Till today, I received a mail asking for my postal address. I began to think, why would they need my address? And I looked at the sender, it&#8217;s an Microsoft address, for more information I checked in the original text and got this:</p>
<blockquote>
<pre>Received: from DB2PRD0102HT002.eurprd01.prod.exchangelabs.com ([213.199.174.125]) by bay0-omc1-s30.bay0.hotmail.com with Microsoft SMTPSVC(6.0.3790.3959);
	 Wed, 4 Nov 2009 05:49:50 -0800</pre>
</blockquote>
<p>I still do not believe in this. If I receive this webcam, I will tell you.</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/microsoft-lifecam/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>History of the name Samba</title>
		<link>http://link2caro.net/read/history-of-the-name-samba/</link>
		<comments>http://link2caro.net/read/history-of-the-name-samba/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 22:49:59 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[dictionary]]></category>
		<category><![CDATA[egrep]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[samba]]></category>
		<category><![CDATA[smb]]></category>
		<category><![CDATA[word]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=658</guid>
		<description><![CDATA[Source: svn://svnanon.samba.org/samba/tags/release-2-2-12/docs/history It&#8217;s now October 1998. We just got back from the 3rd CIFS conference in SanJose. The Samba Team was the biggest contingent there. Samba 2.0 should be shipping in the next few weeks with much better domain controller support, GUI configuration, a new user space SMB filesystem and lots of other neat stuff. [...]]]></description>
			<content:encoded><![CDATA[<p>Source: svn://svnanon.samba.org/samba/tags/release-2-2-12/docs/history</p>
<blockquote><p>It&#8217;s now October 1998. We just got back from the 3rd CIFS conference<br />
in SanJose. The Samba Team was the biggest contingent there.</p>
<p>Samba 2.0 should be shipping in the next few weeks with much better<br />
domain controller support, GUI configuration, a new user space SMB<br />
filesystem and lots of other neat stuff. I&#8217;ve also noticed that a<br />
search of job ads in DejaNews turned up 3900 that mention Samba. Looks<br />
like we&#8217;ve created a small industry.</p>
<p>I&#8217;ve been asked again where the name Samba came from. I might as well<br />
put it down here for everyone to read. The code in Samba was first<br />
called just &#8220;server&#8221;, it then got renamed &#8220;smbserver&#8221; when I<br />
discovered that the protocol is called SMB. Then in April 1994 I got<br />
an email from Syntax, the makers of &#8220;TotalNet advanced Server&#8221;, a<br />
commercial SMB server. They told me that they had a trademark on the<br />
name SMBserver and I would have to change the name. I ran an egrep for<br />
words containing S, M, and B on /usr/dict/words and the name Samba<br />
looked like the best choice. Strangely enough when I repeat that now I<br />
notice that Samba isn&#8217;t in /usr/dict/words on my system anymore!</p></blockquote>
<p>As he did not mention the command he ran to get this word out of the built-in dictionary, I tried some regex and got this one which is most likely the command:</p>
<blockquote><p>egrep -i &#8220;^s[a-z]{0,1}m[a-z]{0,1}b[a-z]{0,1}$&#8221; /usr/share/dict/words</p>
<p>On CentOS:</p>
<p>samba<br />
Sambo<br />
sambo<br />
Simaba<br />
simba<br />
SMB<br />
Sumba</p>
<p>On Mac OS X 10.6.1</p>
<p>samba<br />
Sambo<br />
sambo<br />
Simaba</p></blockquote>
<p>( /usr/share/dict/words, because I ran this on CentOS, Mac )</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/history-of-the-name-samba/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Snow Leopard and NTFS</title>
		<link>http://link2caro.net/read/snow-leopard-and-ntfs/</link>
		<comments>http://link2caro.net/read/snow-leopard-and-ntfs/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 13:31:18 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[NTFS]]></category>
		<category><![CDATA[NTFS-3G]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=644</guid>
		<description><![CDATA[NTFS is natively supported in Snow Leopard, it&#8217;s just not activated by default. You can simply activate this functionality by doing these following steps: Note: if you use 64-bit kernel, you cannot use NTFS-3G, and this solution is perfect for you If you want to use UUID (ID of the disk), do this step, or [...]]]></description>
			<content:encoded><![CDATA[<p>NTFS is natively supported in Snow Leopard, it&#8217;s just not activated by default. You can simply activate this functionality by doing these following steps:<br />
<span style="color: #ff6600;">Note: if you use 64-bit kernel, you cannot use NTFS-3G, and this solution is perfect for you <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </span></p>
<ul>
<li>If you want to use UUID (ID of the disk), do this step, or skip this if you can use LABEL of the disk<br />
In Terminal, type: diskutil info /Volumes/[Volume_Name]<br />
<a href="http://files.link2caro.net/2009/10/Screenshot-2009-10-26-at-14.23.38.png" rel="lightbox[644]"><img title="diskutil info" src="http://files.link2caro.net/2009/10/Screenshot-2009-10-26-at-14.23.38-500x400.png" alt="diskutil info" width="500" height="400" /><br />
</a></li>
<li>Type in Terminal: sudo nano /etc/fstab<br />
LABEL=[Volume_Name] or UUID=[Volume ID] and &#8220;none ntfs rw&#8221; at the end of the line.<br />
To save and quit, press Ctrl+X and then Y to confirm.<br />
<a href="http://files.link2caro.net/2009/10/Screenshot-2009-10-26-at-14.26.33.png" rel="lightbox[644]"><img title="fstab" src="http://files.link2caro.net/2009/10/Screenshot-2009-10-26-at-14.26.33.png" alt="fstab" width="220" height="96" /></a></li>
<li>Now you need to restart your Mac and when it is back, you will see this:<br />
<a href="http://files.link2caro.net/2009/10/Screenshot-2009-10-26-at-14.29.55.png" rel="lightbox[644]"><img class="alignleft size-full wp-image-648" title="NTFS on Snow Leopard is native" src="http://files.link2caro.net/2009/10/Screenshot-2009-10-26-at-14.29.55.png" alt="NTFS on Snow Leopard is native" width="265" height="224" /></a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/snow-leopard-and-ntfs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Snow Leopard is on its way home</title>
		<link>http://link2caro.net/read/snow-leopard-is-on-its-way-home/</link>
		<comments>http://link2caro.net/read/snow-leopard-is-on-its-way-home/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 11:11:24 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://link2caro.net/read/snow-leopard-is-on-its-way-home/</guid>
		<description><![CDATA[MAC OS X10.6 SNOWLEOPARD UTD FULLFIL-ZML Shipped to BRUZ, FR 27 Aug 2009 Estimated Delivery Date (Subject to change) 03 Sep 2009 (Subject to change) Current Delivery Status Postal delivery &#8211; please allow 5-10 days for delivery 24 Aug 2009 Signed by]]></description>
			<content:encoded><![CDATA[<p>MAC OS X10.6 SNOWLEOPARD UTD FULLFIL-ZML</p>
<blockquote><p>Shipped to	BRUZ, FR	27 Aug 2009<br />
Estimated Delivery Date (Subject to change)	03 Sep 2009 (Subject to change)<br />
Current Delivery Status	Postal delivery &#8211; please allow 5-10 days for delivery	24 Aug 2009<br />
Signed by</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/snow-leopard-is-on-its-way-home/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Phillips VoIP 321 &#8211; Windows 7</title>
		<link>http://link2caro.net/read/phillips-voip-321/</link>
		<comments>http://link2caro.net/read/phillips-voip-321/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 22:27:03 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Phllips]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[VoIP]]></category>

		<guid isPermaLink="false">http://link2caro.net/read/phillips-voip-321/</guid>
		<description><![CDATA[For Windows 7 users: - Install Skype 4.1 - Do not plug in the phone before installing software - Install the software VOIP 321 (for Vista), choose compability mode &#8220;Vista SP2&#8243; - Launch the software VOIP 321, and do as it asks Update: 28/10/2009 Note: If you installed the driver and you still receive a [...]]]></description>
			<content:encoded><![CDATA[<p>For Windows 7 users:</p>
<p>- Install Skype 4.1<br />
- Do not plug in the phone before installing software<br />
- Install the software VOIP 321 (for Vista), choose compability mode &#8220;Vista SP2&#8243;<br />
- Launch the software VOIP 321, and do as it asks</p>
<p>Update: 28/10/2009<br />
Note: If you installed the driver and you still receive a message saying that the device cannot be installed correctly, try to unplug it and change USB port, it helps, and sometimes it does not work well with an USB hub</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/phillips-voip-321/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Exporting Eclipse&#8217;s Color Schemes</title>
		<link>http://link2caro.net/read/eclipse-color-schemes/</link>
		<comments>http://link2caro.net/read/eclipse-color-schemes/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 23:11:21 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Scheme]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=634</guid>
		<description><![CDATA[Export your Eclipse preferences using File &#62; Export &#62; General &#62; Preferences. This will output a .epf file with a whole bunch of preferences including repository info; way more than you need. Run some simple  commands to create a preference file that contains color information only. Add &#8220;file_export_version=3.0&#8243; as the top line of your new [...]]]></description>
			<content:encoded><![CDATA[<ol>
<li>Export your Eclipse preferences using File &gt; Export &gt; General &gt; Preferences. This will output a .epf file with a whole bunch of preferences including repository info; way more than you need.</li>
<li>Run some simple  commands to create a preference file that contains color information only.</li>
<li>Add &#8220;file_export_version=3.0&#8243; as the top line of your new epf file. This allows the file to imported into Eclipse &gt;= 3.0. Without this your preferences will not be imported.</li>
</ol>
<p><code>"file_export_version=3.0" &gt; my_color_prefs.epf<br />
grep -i color &gt;&gt; my_color_prefs.epf<br />
grep -i org.eclipse.wst &gt;&gt; my_color_prefs.epf<br />
grep -i org.eclipse.php.ui &gt;&gt; my_color_prefs.epf</code></p>
<p>Update 27/10/2009 ( <a href="http://files.link2caro.net/2009/08/caro-20091027.epf">caro-20091027</a> )</p>
<p>Update 02/02/2010 ( <a href="http://files.link2caro.net/2009/08/caro-20100202.epf_.gz">caro-20100202</a> ) for PDT 2.2</p>
<p>Thanks to timrobles.com</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/eclipse-color-schemes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHP 5.3: New Features</title>
		<link>http://link2caro.net/read/php-5-3-new-features/</link>
		<comments>http://link2caro.net/read/php-5-3-new-features/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 07:57:47 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=631</guid>
		<description><![CDATA[Some interesting new features: Namespaces Late static binding Closures One-expression tenary operator Much better Windows support Since PHP 5.3, it is possible to leave out the middle part of the ternary operator. Expression expr1 ?: expr3 returns expr1 if expr1 evaluates to TRUE, and expr3 otherwise.]]></description>
			<content:encoded><![CDATA[<p>Some interesting new features:<a href="http://files.link2caro.net/2009/07/php.gif" rel="lightbox[631]"><img class="alignright size-full wp-image-632" title="php" src="http://files.link2caro.net/2009/07/php.gif" alt="php" width="120" height="67" /></a></p>
<ul>
<li><a href="http://php.net/manual/en/language.namespaces.faq.php">Namespaces</a></li>
<li><a href="http://php.net/lsb">Late static binding</a></li>
<li><a href="http://php.net/closures">Closures</a></li>
<li><a href="http://php.net/ternary">One-expression tenary operator </a></li>
<li><a href="http://windows.php.net/">Much better Windows support</a><br />
Since PHP 5.3, it is possible to leave out the middle part of the ternary      operator. Expression <em>expr1 ?: expr3</em> returns      <span>expr1</span> if <span>expr1</span> evaluates to <strong><tt>TRUE</tt></strong>, and <span>expr3</span> otherwise.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/php-5-3-new-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Theme link2caro</title>
		<link>http://link2caro.net/read/link2caro-theme/</link>
		<comments>http://link2caro.net/read/link2caro-theme/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 17:13:22 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=626</guid>
		<description><![CDATA[This theme will be released soon, the free license will have a blank CSS (only the proprieties are filtered out, the names of ids, classes will be included so you will be able to build up your own theme)]]></description>
			<content:encoded><![CDATA[<p>This theme will be released soon, the free license will have a blank CSS (only the proprieties are filtered out, the names of ids, classes will be included so you will be able to build up your own theme)</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/link2caro-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Waste Allocation Load Lifter-Earth</title>
		<link>http://link2caro.net/read/waste-allocation-load-lifter-earth/</link>
		<comments>http://link2caro.net/read/waste-allocation-load-lifter-earth/#comments</comments>
		<pubDate>Sun, 19 Jul 2009 17:42:55 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Français]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[Poster]]></category>
		<category><![CDATA[WALL-E]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=263</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://files.link2caro.net/2009/07/wall_e.jpg" rel="lightbox[263]"><img class="size-full wp-image-623  aligncenter" title="wall_e" src="http://files.link2caro.net/2009/07/wall_e.jpg" alt="wall_e" width="530" height="782" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/waste-allocation-load-lifter-earth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>French Movies</title>
		<link>http://link2caro.net/read/french-movies/</link>
		<comments>http://link2caro.net/read/french-movies/#comments</comments>
		<pubDate>Sun, 21 Jun 2009 20:20:23 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[Film]]></category>
		<category><![CDATA[Français]]></category>
		<category><![CDATA[French]]></category>
		<category><![CDATA[Movie]]></category>

		<guid isPermaLink="false">http://link2caro.net/read/french-movies/</guid>
		<description><![CDATA[Le Premier Jour Du Reste De Ta Vie http://www.megaupload.com/?d=RQI4AORX Pour Elle http://www.megaupload.com/?d=ME3C6E0V Home http://www.megaupload.com/?d=F35AUVMY]]></description>
			<content:encoded><![CDATA[<table style="border: 0pt none; width: 100%;" border="0">
<tbody>
<tr>
<td>
<p style="text-align: center;"><a href="http://files.link2caro.net/2009/06/Le-premier-jour-du-reste-de-ta-vie.jpg" rel="lightbox[614]"><img class="size-medium wp-image-612 aligncenter" title="Le premier jour du reste de ta vie" src="http://files.link2caro.net/2009/06/Le-premier-jour-du-reste-de-ta-vie-375x500.jpg" alt="Le premier jour du reste de ta vie" width="375" height="500" /></a></p>
<p style="text-align: center;">Le Premier Jour Du Reste De Ta Vie<br />
<a class="wp-caption-dd" href="http://www.megaupload.com/?d=RQI4AORX" target="_blank">http://www.megaupload.com/?d=RQI4AORX</a></p>
</td>
<td>
<p style="text-align: center;"><a href="http://files.link2caro.net/2009/06/pour_elle.jpg" rel="lightbox[614]"><img class="aligncenter size-medium wp-image-616" title="pour_elle" src="http://files.link2caro.net/2009/06/pour_elle-375x500.jpg" alt="pour_elle" width="375" height="500" /></a></p>
<p style="text-align: center;">Pour Elle<br />
<a class="wp-caption-dd" href="http://www.megaupload.com/?d=ME3C6E0V" target="_blank">http://www.megaupload.com/?d=ME3C6E0V</a></p>
</td>
</tr>
<tr>
<td>
<p style="text-align: center;"><a href="http://files.link2caro.net/2009/06/home.jpg" rel="lightbox[614]"><img class="aligncenter size-medium wp-image-620" title="home" src="http://files.link2caro.net/2009/06/home-375x500.jpg" alt="home" width="375" height="500" /></a></p>
<p style="text-align: center;">Home<br />
<a class="wp-caption-dd" href="http://www.megaupload.com/?d=F35AUVMY" target="_blank">http://www.megaupload.com/?d=F35AUVMY</a></p>
</td>
<td></td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/french-movies/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Backup your SVN repository with SVNSYNC</title>
		<link>http://link2caro.net/read/backup-your-svn-repository-with-svnsync/</link>
		<comments>http://link2caro.net/read/backup-your-svn-repository-with-svnsync/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 20:47:35 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Backup]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://link2caro.net/read/backup-your-svn-repository-with-svnsync/</guid>
		<description><![CDATA[In this article, I will tell you how to create a backup repository on your PC or your second server. First step: Create a new repository on your PC or your another server svnadmin create backup-repository Second step: Create a hook so as to give the repository the ability to change properties On Linux/Unix-like cat [...]]]></description>
			<content:encoded><![CDATA[<p>In this article, I will tell you how to create a backup repository on your PC or your second server.</p>
<p><span style="text-decoration: underline;">First step:</span> Create a new repository on your PC or your another server</p>
<p><span style="font-family: monospace; white-space: pre;">svnadmin create backup-repository</span></p>
<p><span style="text-decoration: underline;">Second step:</span> Create a hook so as to give the repository the ability to change properties</p>
<pre>
<b>On Linux/Unix-like</b>
</pre>
<pre>
<code>cat &lt;&lt;'EOF' &gt; <span style="font-family: Helvetica; white-space: normal;"><span style="font-family: monospace; white-space: pre;">backup-repository</span></span>/hooks/pre-revprop-change
#!/bin/sh
exit 0
EOF
</code>
</pre>
<pre>
Give the newly created file the permission of execution
</pre>
<pre>
chmod +w <span style="font-family: Helvetica; white-space: normal;"><span style="font-family: monospace; white-space: pre;">backup-repository</span></span>/hooks/pre-revprop-change
</pre>
<pre>
<b>On Windows</b>
</pre>
<pre>
Simply create an empty file named pre-revprop-change.bat in hooks directory (<span style="font-family: Helvetica; white-space: normal;"><span style="font-family: monospace; white-space: pre;">ackup-repository\</span></span>hooks\pre-revprop-change.bat)
</pre>
<pre>
<span style="text-decoration: underline;">Third step:</span> Initialization the newly created repository
</pre>
<pre>
Consult svnsync init --help for more information
</pre>
<pre>
<b>On Linux/Unix-like</b>
</pre>
<pre>
<code>svnsync init file://`pwd`/backup-repository http://svn.example.com/svn/ource-repository</code>
</pre>
<pre>
<b>On Windows</b>
</pre>
<pre>
<b><code><span style="font-weight: normal;">svnsync init file:///c:/full/path/to/backup-repository http://svn.example.com/source-repository</span></code></b>
</pre>
<pre>
<b><span style="font-weight: normal;"><span style="text-decoration: underline;">Forth step:</span> Sync them!</span></b>
</pre>
<pre>
<span style="font-weight: normal;"><code>svnsync sync file://`pwd`/backup-repository</code></span>
</pre>
<pre>
<span style="font-weight: normal;"><code>svnsync sync file:///c:/full/path/to/backup-repository</code></span>
</pre>
<pre>
<span style="font-weight: normal;">If you wish, you can hook this command to post-commit hook of the source-repository, with this hook, you will keep you backup-repository up-to-date <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </span>
</pre>
<pre>
<span style="font-weight: normal;"><b>On Windows</b></span>
</pre>
<pre>
<span style="font-weight: normal;"><b>On Linux/Unix-like</b></span>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/backup-your-svn-repository-with-svnsync/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Note to self: MySQL error 28 and /tmp size</title>
		<link>http://link2caro.net/read/note-to-self-increment-of-tmpdsk-cpanel/</link>
		<comments>http://link2caro.net/read/note-to-self-increment-of-tmpdsk-cpanel/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 23:02:08 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[size]]></category>
		<category><![CDATA[tmp]]></category>

		<guid isPermaLink="false">http://link2caro.net/read/note-to-self-increment-of-tmpdsk-cpanel/</guid>
		<description><![CDATA[#1030 &#8211; Got error 28 from storage engine This means there is no space left on the drive, usually this means your /tmp If you use cPanel, your /tmp could be mounted from /usr/tmpDSK, this is a file. If you want to increase this file you can type these following commands, change count=512000 to any [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><span style="color: #ff0000;">#1030 &#8211; Got error 28 from storage engine</span></p>
</blockquote>
<p>This means there is no space left on the drive, usually this means your <span style="color: #ff6600;"><em>/tmp</em></span></p>
<p>If you use cPanel, your /tmp could be mounted from <span style="color: #ff6600;"><em>/usr/tmpDSK</em></span>, this is a file. If you want to increase this file you can type these following commands, change count=512000 to any number thats match your need.</p>
<p>The command <span style="color: #ff6600;"><em>dd if=/dev/zero of=/usr/tmpDSK bs=1024 count=512000</em></span> is used to create a file whose size is <span style="color: #ff6600;"><em>512000 x 1024</em></span> bytes (or approx. 512MB).</p>
<blockquote><p>service httpd stop</p>
<p>service mysql stop
</p>
<p>umount /tmp</p>
<p>umount /var/tmp</p>
<p>dd if=/dev/zero of=/usr/tmpDSK bs=1024 count=512000</p>
<p>mkfs.ext3 /usr/tmpDSK</p>
<p>press &#8216;y&#8217; to continue</p>
<p>mount -o loop,rw,noexec,nosuid /usr/tmpDSK /tmp</p>
<p>mount -o bind,rw,noexec,nosuid /tmp /var/tmp</p>
<p>service mysql start</p>
<p>service httpd start</p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/note-to-self-increment-of-tmpdsk-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WHO tuyên bố đại dịch cúm A/H1N1 trên toàn cầu</title>
		<link>http://link2caro.net/read/who-tuyen-b%e1%bb%91-d%e1%ba%a1i-d%e1%bb%8bch-cum-ah1n1-tren-toan-c%e1%ba%a7u/</link>
		<comments>http://link2caro.net/read/who-tuyen-b%e1%bb%91-d%e1%ba%a1i-d%e1%bb%8bch-cum-ah1n1-tren-toan-c%e1%ba%a7u/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 11:48:26 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=600</guid>
		<description><![CDATA[Đọc bài này trên blog hutek, nên post lên đây để cảnh báo cho mọi người về mức độ nguy hiểm của dịch, trong khi đó mình thì mấy tuần nay vẫn ăn thịt lợn như đúng rồi ý sợ ghê Tổ chức Y tế Thế giới (WHO) đêm qua nâng mức báo động cúm [...]]]></description>
			<content:encoded><![CDATA[<p>Đọc bài này trên blog hutek, nên post lên đây để cảnh báo cho mọi người về mức độ nguy hiểm của dịch, trong khi đó mình thì mấy tuần nay vẫn ăn thịt lợn như đúng rồi ý <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  sợ ghê</p>
<p>Tổ chức Y tế Thế giới (WHO) đêm qua nâng mức báo động cúm A/H1N1 lên cấp 6, cấp cao nhất đồng nghĩa với tuyên bố đại dịch trên toàn cầu.</p>
<p><a href="http://files.link2caro.net/2009/06/cum.jpg" rel="lightbox[600]"><img class="alignright size-thumbnail wp-image-601" title="cum" src="http://files.link2caro.net/2009/06/cum-150x150.jpg" alt="cum" width="150" height="150" /></a>Đây là lần đầu tiên trong 41 năm qua, WHO đưa ra một tuyên bố về đại dịch toàn cầu. Việc tuyên này cho phép Chính phủ các nước đưa ra những quyết định quan trọng như cấm du khách từ vùng dịch đến và tăng ngân sách cho nỗ lực ngăn chặn virus lây lan, trong khi các nhà sản xuất tập trung sản xuất hàng loạt vaccine phòng cúm.</p>
<h4>Tuyên bố đại dịch là tất yếu</h4>
<p>Bộ trưởng Y tế Thụy điển Maria Larsson tổ chức họp báo để công bố thông tin trên sau khi WHO quyết định nâng mức cảnh báo lên cấp 6. Tuy nhiên, để đi đến quyết định này, WHO có cuộc họp riêng với 8 nước có nhiều ca nhiễm cúm nhất thế giới, đồng thời triệu tập cuộc họp Ủy ban Khẩn cấp để tham khảo ý kiến của các chuyên gia y tế trong bối cảnh cúm A/H1N1 tiếp tục lây lan nhanh ở Australia, Mỹ, Mexico và nhiều nước khác.</p>
<p>Tại Australia, số ca nhiễm tăng đột biến chỉ sau vài tuần, lên 1.263 ca. Theo quy định của WHO, điều kiện để tuyên bố đại dịch là khi có sự lây lan nhanh giữa người và người ở hai khu vực khác nhau trên thế giới. Thực tế diễn biến cúm thời gian gần đây cho thấy quyết định của WHO không có gì bất ngờ.</p>
<h4>Dịch ngày càng lan rộng.</h4>
<p>Theo lý thuyết, tuyên bố đại dịch sẽ đặt ra những yêu cầu đột xuất và mạnh mẽ đối với hệ thống y tế. Tuyên bố tình trạng khẩn cấp bộc lộ các điểm yếu tồn tại trong hệ thống y tế, hơn nữa. Sự hoành hành của dịch bệnh và tỷ lệ tử vong cao có thể làm gián đoạn các hoạt động và phát triển kinh tế. Các yêu cầu của phản ứng nhanh với đại dịch sẽ làm tiêu hao sức người, sức của cũng như các nguồn cung cấp khác từ các ưu tiên y tế trước đó của cộng đồng cũng như các hoạt động kiểm soát dịch bệnh như là chương trình tiêm chủng và phòng bệnh cho trẻ em, kiểm soát HIV/AIDS, lao hay sốt rét.</p>
<p>Đây cũng là một xác nhận khoa học cho thấy một loại virus cúm mới xuất hiện và đang nhanh chóng lây lan khắp thế giới. Khác với những lần tuyên bố đại dịch trước, theo WHO, dịch cúm lần này không nguy hiểm mà chỉ lây lan rộng. Vì thế, việc nâng mức báo động lên cao nhất không nghĩa là thế giới sắp chứng kiến thảm họa tương tự như đại dịch cúm Tây Ban Nha năm 1918 từng cướp đi sinh mạng của 50 triệu người hay cúm Hong Kong năm 1968 làm tử vong một triệu người. Vấn đề của mỗi nước là làm gì để đối phó cúm một cách hiệu quả, chứ không phụ thuộc vào kêu gọi của WHO.</p>
<h4>Hành động cụ thể tùy thuộc vào điều kiện mỗi nước</h4>
<p>Tại các quốc gia có hệ thống cơ sở hạ tầng yếu kém, tuyên bố khẩn cấp y tế thường làm gián đoạn các hệ thống y tế thông thường và các chương trình nhân đạo nhiều tháng sau đó. Điều này cũng có nghĩa là các nước nghèo sẽ phải chịu hậu quả nghiêm trọng khi không đủ tiềm lực phòng ngừa. Với việc giao thương bận rộn hiện nay, việc tuyên bố đại dịch có thể gây ra sự sụp đổ xã hội và kinh tế do bị các hệ thống thông tin điện tử thổi phồng và các nền kinh tế phụ thuộc lẫn nhau chặt chẽ.</p>
<h4>Dịch đang diễn ra theo chiều hướng xấu.</h4>
<p>Đối với thực tế cúm A/H1N1 hiện nay, tuyên bố đại dịch cũng không làm các biện pháp mà các nước đang thực hiện thay đổi quá nhiều. Đại dịch không có nghĩa là virus trở nên nguy hiểm hơn mà nó cho phép Chính phủ các nước đưa ra các quyết định quan trọng. Tuy nhiên, các biện pháp cụ thể lại tùy thuộc vào điều kiện của mỗi nước và mức độ lây lan của dịch.</p>
<p>Đối với quốc gia như Mỹ, khi virus cúm H1N1 đang lan tràn thì việc tuyên bố đại dịch tương đương với những biện pháp mà nước này đang thực hiện. Đối với những nước như Australia, Anh hay Chile nơi có những dấu hiệu lây nhiễm phạm vi địa phương ban đầu thì tuyên bố dịch bệnh có nghĩa là thúc giục Chính phủ các nước thực sự tăng cường các nỗ lực phòng chống dịch bệnh.</p>
<p>Phát ngôn viên WHO Dick Thompson nói: “Điều này có nghĩa là tuy tìm những người có tiếp xúc, cách ly bệnh nhân hoặc thực hiện các xét nghiệm trong phòng thí nghiệm ít quan trọng hơn”, và các nước nên “chuyển tập trung từ việc phát hiện và khoanh vùng sang điều trị”. Tại các quốc gia nơi virus chưa lây nhiễm đến, chính quyền có thể quyết định thực hiện các biện pháp khoanh vùng virus như là thông qua kiểm dịch chặt chẽ.</p>
<h4>Phản ứng ban đầu</h4>
<p>Bộ Y tế Singapore cho biết sẽ không nâng mức cảnh báo cúm trong nước. Lý do là hiện nay nước này đưa khả năng tuyên bố đại dịch của WHO để cân nhắc khi đưa ra chiến lược chống lại cúm A/H1N1, theo Bộ trưởng Y tế Khaw Boon Wan. Trong khi đó, theo Channel News Asia vào tối qua thì Singapore sẽ thay đổi chiến lược từ ngăn chặn thành giảm nhẹ dịch cúm. Điều này có nghĩa là thay vì điều trị cúm ngay tại bệnh viện, bệnh nhân sẽ được các bác sĩ đa khoa chữa trị tại các bệnh viện tư nhỏ. Các yêu cầu giám sát tại nhà cũng sẽ được bãi bỏ khi có sự lây lan trong cộng đồng.</p>
<p>Bộ trưởng Y tế Malaysia Datuk Seri Liow Tiong Lai cho biết nước này chuẩn bị cho tình huống đại dịch và sẵn sàng tiến hành thêm các biện pháp quyết liệt hơn, trong đó có việc tiến hành thêm nhiều cuộc kiểm tra triệt để đặc biệt ở các nơi như trường học và nhà trẻ. Ông Liow cho biết: “Không cần thiết phải đóng cửa các trường học. Nhưng chúng tôi sẽ tiến hành kiểm tra cúm tại trường học và nhiều hành động quyết liệt hơn để bảo vệ người dân”.</p>
<p>Tại Australia, Ủy ban Khẩn cấp Dịch Quốc gia sẽ họp vào ngày 12/6 trước tình hình mới. Thủ tướng Australia cho biết nước này được chuẩn tốt với 10,3 triệu liều vaccine cúm. Anh đang cân nhắc đưa ra biện pháp hạn chế các sự kiện quần chúng và tập trung thuốc cho những người bị nhiễm cúm.</p>
<p>Hongkong tuyên bố đóng cửa tất cả trường tiểu học và trung học trong 14 ngày kể từ hôm nay. Một số trường học của Thái Lan cũng tạm thời đóng cửa khi hôm qua, số ca nhiễm ở Thái Lan tăng nhanh đột biến từ 16 lên 46 người. Trước đó, WHO yêu cầu các nước không áp dụng biện pháp gây ảnh hưởng xấu đến nền kinh tế thế giới vốn đang suy thoái, như giới hạn việc đi lại.</p>
<p>Theo WHO, đến nay có 28.774 người trên 74 nước trên thế giới nhiễm cúm A/H1N1, trong đó có 141 người tử vong. Trên thực tế, mỗi năm có từ 250.000 đến 500.000 người tử vong do cúm thường.</p>
<p style="text-align: right;"><strong><em>(Theo Báo Đất Việt</em></strong>)</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/who-tuyen-b%e1%bb%91-d%e1%ba%a1i-d%e1%bb%8bch-cum-ah1n1-tren-toan-c%e1%ba%a7u/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eclipse Dark Color Scheme</title>
		<link>http://link2caro.net/read/eclipse-dark-color-scheme/</link>
		<comments>http://link2caro.net/read/eclipse-dark-color-scheme/#comments</comments>
		<pubDate>Fri, 15 May 2009 20:25:47 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Komodo Edit]]></category>

		<guid isPermaLink="false">http://link2caro.net/read/eclipse-dark-color-scheme/</guid>
		<description><![CDATA[Here is my Dark Color Scheme, cloned from my Dark Color Scheme for Komodo Edit Eclipse File &#62; Export Choose Export all and Export your current settings, in case you want to roll back File &#62; Import Choose Import all and click Finish, enjoy! CARO-ColorScheme-Eclipse.epf.zip Komodo Edit 5.1 Unzip the file in C:\Users\&#8230;..\AppData\Roaming\ActiveState\KomodoEdit\5.1\schemes\ or on [...]]]></description>
			<content:encoded><![CDATA[<p>Here is my Dark Color Scheme, cloned from my Dark Color Scheme for Komodo Edit</p>
<p><strong>Eclipse</strong></p>
<p><strong>File &gt; Export<br />
<span style="font-weight: normal;">Choose Export all and Export your current settings, in case you want to roll back</span></strong></p>
<p><strong>File &gt; Import<br />
<span style="font-weight: normal;">Choose Import all and click Finish, enjoy!</span></strong></p>
<p><img src="http://files.link2caro.net/2009/05/Picture-1.png" width="480" height="234" alt="Picture 1.png" title="Picture 1.png" /></p>
<p><a href="http://files.link2caro.net/2009/05/CARO-ColorScheme-Eclipse.epf.zip" title="CARO-ColorScheme-Eclipse.epf.zip">CARO-ColorScheme-Eclipse.epf.zip</a></p>
<p><strong>Komodo Edit 5.1</strong></p>
<p>Unzip the file in <strong>C:\Users\&#8230;..\AppData\Roaming\ActiveState\KomodoEdit\5.1\scheme</strong><strong>s\</strong> or on Mac <strong>~/Library/Application Support/KomodoEdit/5.1/schemes/</strong> and relaunch Komodo Edit</p>
<p><img src="http://files.link2caro.net/2009/05/Picture-2.png" width="480" height="268" alt="Picture 2.png" title="Picture 2.png" /> <a href="http://files.link2caro.net/2009/05/CARO-ColorScheme-KomodoEdit.ksf.zip" title="CARO-ColorScheme-KomodoEdit.ksf.zip">CARO-ColorScheme-KomodoEdit.ksf.zip</a></p>
<p><a href="http://files.link2caro.net/2009/05/CARO-ColorScheme-KomodoEdit.ksf.zip" title="CARO-ColorScheme-KomodoEdit.ksf.zip">CARO-ColorScheme-KomodoEdit.ksf.zip</a></p>
<p>Leave your comments about this color scheme <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/eclipse-dark-color-scheme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>WPVN &#8211; Username Changer</title>
		<link>http://link2caro.net/read/wpvn-username-changer/</link>
		<comments>http://link2caro.net/read/wpvn-username-changer/#comments</comments>
		<pubDate>Sun, 10 May 2009 18:09:14 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=576</guid>
		<description><![CDATA[If you have any feedback for this plugin please leave your feedback here!]]></description>
			<content:encoded><![CDATA[<p>If you have any feedback for this plugin please leave your feedback here!</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wpvn-username-changer/feed/</wfw:commentRss>
		<slash:comments>48</slash:comments>
		</item>
		<item>
		<title>Subversion</title>
		<link>http://link2caro.net/read/subversion/</link>
		<comments>http://link2caro.net/read/subversion/#comments</comments>
		<pubDate>Sun, 03 May 2009 21:23:16 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=509</guid>
		<description><![CDATA[Trong bài này, các bạn sẽ làm quen với Subversion qua các lệnh cơ bản của Subversion Sử dụng Subversion với các chương trình như TortoiseSVN, hay SmartSVN cũng theo các bước dưới đây. Bài cụ thể về các sử dụng từng chương trình, mình sẽ soạn thảo trong thời gian tới. Bài này được [...]]]></description>
			<content:encoded><![CDATA[<div class="itemizedlist">Trong bài này, các bạn sẽ làm quen với Subversion qua các lệnh cơ bản của Subversion <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Sử dụng Subversion với các chương trình như TortoiseSVN, hay SmartSVN cũng theo các bước dưới đây. Bài cụ thể về các sử dụng từng chương trình, mình sẽ soạn thảo trong thời gian tới.</div>
<div class="itemizedlist">Bài này được dịch từ <a href="http://svnbook.red-bean.com/en/1.2/svn.tour.cycle.html" target="_blank">http://svnbook.red-bean.com/en/1.2/svn.tour.cycle.html</a></div>
<div class="itemizedlist"><span id="more-509"></span></div>
<div class="itemizedlist"></div>
<div class="itemizedlist">Tạo bản làm việc mới cho bạn trên máy của bạn với lệnh <strong>svn checkout</strong></div>
<div class="itemizedlist">
<ul>
<li><strong>svn checkout (svn co)<span style="color: #993300;"> đường_dẫn_tới_repository</span> <span style="color: #993300;">[thư_mục_trên_máy</span><span style="color: #993300;">]</span><br />
</strong></li>
</ul>
</div>
<blockquote><p><code>link2caro@mac $&gt; svn co http://svn.automattic.com/wordpress/trunk wordpress_trunk<br />
A    wordpress_trunk/wp-pass.php<br />
A    wordpress_trunk/wp-rss.php<br />
A    wordpress_trunk/wp-comments-post.php<br />
...<br />
A    wordpress_trunk/wp-content/plugins/akismet/readme.txt<br />
Checked out external at revision 115314.</p>
<p>Checked out revision 11162.</code></p></blockquote>
<p>Nếu bạn không điền <strong><span style="color: #993300;">thư_mục_trên_máy</span></strong> thì thư mục được tạo ra sẽ mang tên thư mục trên repository</p>
<blockquote><p><code>link2caro@mac $&gt; svn co http://svn.automattic.com/wordpress/trunk<br />
A    trunk/wp-pass.php<br />
A    trunk/wp-rss.php<br />
A    trunk/wp-comments-post.php<br />
...<br />
A    trunk/wp-content/plugins/akismet/readme.txt<br />
Checked out external at revision 115316.</p>
<p>Checked out revision 11162.</code></p></blockquote>
<p><span style="color: #ff0000;"><em>Chú ý:</em></span> Các thư mục .svn là các thư mục quản lý của Subversion, bạn không được phép thay đổi, chỉnh sửa gì trong các thư mục này, nếu không bản làm việc của bạn sẽ không hoạt động được nữa với <strong>repository (repo)</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Multi Domains with one WordPress installation</title>
		<link>http://link2caro.net/read/multi-domains-with-one-wordpress-installation/</link>
		<comments>http://link2caro.net/read/multi-domains-with-one-wordpress-installation/#comments</comments>
		<pubDate>Sun, 03 May 2009 01:04:14 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[hướng dẫn]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=555</guid>
		<description><![CDATA[File to modify: wp-config.php]]></description>
			<content:encoded><![CDATA[<p>File to modify: wp-config.php</p>
<pre class="brush: php; title: ; notranslate">
&amp;amp;lt;?php
/* Domain detection - Xác định tên miền */

$host = $HTTP_HOST;
$parts = explode('.',$host);
if ($parts[3] = &quot;&quot;) {
$domain = $parts[0];
} else {
$domain = $parts[1];
}

/* Settings - Cài đặt */

switch ($domain) {
case &quot;domain1&quot;:		// &quot;domain&quot; in &quot;www.domain.com&quot;
$db = &quot;database1&quot;;		// the database for this domain
$user = &quot;username1&quot;;	// the username for this database
$password = &quot;pass1&quot;;	// the password for this database
$hostname = &quot;localhost&quot;;	// 99% chance you won't need to change this value
$table_prefix  = 'wp_';	// change for multiple installations in one database
$wplang = '';		// change to localize wordpress (must have an MO file in wp-includes/languages)
break;

case &quot;domain2&quot;:		// &quot;domain&quot; in &quot;www.domain.com&quot;
$db = &quot;database2&quot;;		// the database for this domain
$user = &quot;username2&quot;;	// the username for this database
$password = &quot;pass2&quot;;	// the password for this database
$hostname = &quot;localhost&quot;;	// 99% chance you won't need to change this value
$table_prefix  = 'wp_';	// change for multiple installations in one database
$wplang = '';		// change to localize wordpress (must have an MO file in wp-includes/languages)
break;
}

/* End of settings - Kết thúc phần cài đặt*/

define('DB_NAME', $db);
define('DB_USER', $user);
define('DB_PASSWORD', $password);
define('DB_HOST', $hostname);

define('DB_CHARSET', 'utf8');
define('DB_COLLATE', '');
define ('WPLANG', $wplang);

// Enable the WordPress Object Cache:
define('ENABLE_CACHE', true);
//define('WP_MEMORY_LIMIT', '48MB');

define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');

?&amp;amp;gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/multi-domains-with-one-wordpress-installation/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>WPVN-HideText</title>
		<link>http://link2caro.net/read/wpvn-hidetext/</link>
		<comments>http://link2caro.net/read/wpvn-hidetext/#comments</comments>
		<pubDate>Sat, 02 May 2009 23:14:56 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[plugin]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=544</guid>
		<description><![CDATA[This plugin is used to hide some content in a Post or a Page by a link, when you click the entire hidden content will appear. The link is not toggle between Show/Hide for this version, I will implement that function soon. Use: case insensitive [ hide[=Text to be displayed instead of default text]]TEXT[/hide ] [...]]]></description>
			<content:encoded><![CDATA[<p>This plugin is used to hide some content in a Post or a Page by a link, when you click the entire hidden content will appear.</p>
<p>The link is not toggle between Show/Hide for this version, I will implement that function soon.</p>
<p>Use: case insensitive</p>
<p><code>[ hide[=Text to be displayed instead of default text]]TEXT[/hide ]</code></p>
<p><a rel="nofollow" href="http://wordpress.org/extend/plugins/wp-hidetext/">http://wordpress.org/extend/plugins/wp-hidetext/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wpvn-hidetext/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Tiếng Việt đến với WordPress.com</title>
		<link>http://link2caro.net/read/wordpress-com/</link>
		<comments>http://link2caro.net/read/wordpress-com/#comments</comments>
		<pubDate>Tue, 28 Apr 2009 19:20:05 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[tiếng việt]]></category>
		<category><![CDATA[việt hóa]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=525</guid>
		<description><![CDATA[Vậy là 30% (vừa xem lại , 58% chứ :p chị tội 30% fuzzy, mai cập nhật bản 70%) WordPress.com đã được Việt hóa! Mong các bạn sẽ thấy WordPress.com trở nên gần gũi hơn]]></description>
			<content:encoded><![CDATA[<p><a href="http://files.link2caro.net/2009/04/picture-2.png" rel="lightbox[525]"><img class="size-medium wp-image-526 alignleft" title="WordPress.com" src="http://files.link2caro.net/2009/04/picture-2-300x150.png" alt="WordPress.com" width="300" height="150" /></a>Vậy là <span style="text-decoration: line-through;">30%</span> (vừa xem lại , 58% chứ :p chị tội 30% fuzzy, mai cập nhật bản 70%) WordPress.com đã được Việt hóa!</p>
<p>Mong các bạn sẽ thấy WordPress.com trở nên gần gũi hơn <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wordpress-com/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Komodo Edit</title>
		<link>http://link2caro.net/read/komodo-edit/</link>
		<comments>http://link2caro.net/read/komodo-edit/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 17:46:48 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=513</guid>
		<description><![CDATA[Nếu bạn phát triển PHP mà không cần đến các tính năng cao siêu như SVN, CVS, hay Debug (tìm lỗi), thì bạn hãy thử dùng Komodo Edit xem sao mình giờ phát triển plugin và giao diện với Komodo Edit, Eclipse thì dùng để phát triển site vì cần Debug Komodo Edit là một [...]]]></description>
			<content:encoded><![CDATA[<p>Nếu bạn phát triển PHP mà không cần đến các tính năng cao siêu như SVN, CVS, hay Debug (tìm lỗi), thì bạn hãy thử dùng Komodo Edit xem sao <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  mình giờ phát triển plugin và giao diện với Komodo Edit, Eclipse thì dùng để phát triển site vì cần Debug <img src='http://link2caro.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Komodo Edit là một trình soạn thảo khá mạnh, Komodo Edit có thể tìm và lên danh sách các hàm có trong mã nguồn của bạn để bạn có thể sử dụng nhanh các hàm này thông qua tính năng tự hoàn thành.  <img src='http://link2caro.net/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' /> </p>
<p>Để Komodo Edit tìm các functions, ví dụ của PHP framework bạn hãy vào Preferences &gt; Languages &gt; PHP và thêm vào thư mục bạn muốn quét. Tính năng này có thể đặt riêng cho từng dự án hoặc đặt chung cho môi trường làm việc của Komodo Edit.</p>
<p><a href="http://files.link2caro.net/2009/04/komodoedit2.png" rel="lightbox[513]"><img class="alignnone size-thumbnail wp-image-517" title="komodoedit2" src="http://files.link2caro.net/2009/04/komodoedit2-150x150.png" alt="komodoedit2" width="150" height="150" /></a><a href="http://files.link2caro.net/2009/04/komodoedit3.png" rel="lightbox[513]"><img class="alignnone size-thumbnail wp-image-517" title="komodoedit3" src="http://files.link2caro.net/2009/04/komodoedit3-150x150.png" alt="komodoedit3" width="150" height="150" /></a></p>
<p><a href="http://files.link2caro.net/2009/04/komodoedit4.png" rel="lightbox[513]"></a><a href="http://files.link2caro.net/2009/04/komodoedit4.png" rel="lightbox[513]"><img class="alignnone size-thumbnail wp-image-518" title="komodoedit4" src="http://files.link2caro.net/2009/04/komodoedit4-150x148.png" alt="komodoedit4" width="150" height="148" /></a><a href="http://files.link2caro.net/2009/04/komodoedit5.png" rel="lightbox[513]"><img class="alignnone size-thumbnail wp-image-517" title="komodoedit5" src="http://files.link2caro.net/2009/04/komodoedit5-150x150.png" alt="komodoedit5" width="150" height="150" /></a></p>
<p>Đây là bộ màu do mình tự chỉnh sửa, nếu muốn dùng, bạn chép vào C:\Users\Administrator\AppData\Roaming\ActiveState\KomodoEdit\5.1\schemes</p>
<p><a href="http://files.link2caro.net/2009/04/ca-ro-dark.ksf">ca-ro-dark</a></p>
<p><a href="http://files.link2caro.net/2009/04/ca-ro-dark.jpg" rel="lightbox[513]"><img class="alignnone size-medium wp-image-514" title="ca-ro-dark" src="http://files.link2caro.net/2009/04/ca-ro-dark-300x233.jpg" alt="ca-ro-dark" width="300" height="233" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/komodo-edit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle to buy Sun</title>
		<link>http://link2caro.net/read/oracle-to-buy-sun/</link>
		<comments>http://link2caro.net/read/oracle-to-buy-sun/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 15:22:57 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=501</guid>
		<description><![CDATA[http://www.techcrunch.com/2009/04/20/oracle-to-buy-sun-hold-on-to-your-hats/ My oh my!!! What the hell is this!!! Oracle said the deal is valued at $5.6 billion excluding cash and debt. Oracle is calling Sun’s Java “the most important software” it has ever acquired. The deal, which is expected to close in the Summer and was unanimously approved by Sun’s board of directors, has [...]]]></description>
			<content:encoded><![CDATA[<p>http://www.techcrunch.com/2009/04/20/oracle-to-buy-sun-hold-on-to-your-hats/</p>
<p>My oh my!!! What the hell is this!!!</p>
<blockquote>
<p style="text-align: center;">Oracle said the deal is valued at $5.6 billion excluding cash and debt. Oracle is calling Sun’s Java “the most important software” it has ever acquired. The deal, which is expected to close in the Summer and <strong>was unanimously approved by Sun’s board of directors, has massive implications for the future openness of Java and MySQL.<img class="aligncenter" title="Oracle -  Sun" src="http://www.techcrunch.com/wp-content/uploads/2009/04/oracle-sun.png" alt="" width="399" height="269" /></strong></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/oracle-to-buy-sun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WPVN Unload Hooks</title>
		<link>http://link2caro.net/read/wpvn-unload-hooks/</link>
		<comments>http://link2caro.net/read/wpvn-unload-hooks/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 12:16:26 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://link2caro.net/?p=495</guid>
		<description><![CDATA[http://wordpress.org/extend/plugins/wpvn-unload-hooks/]]></description>
			<content:encoded><![CDATA[<p>http://wordpress.org/extend/plugins/wpvn-unload-hooks/</p>

<a href='http://link2caro.net/read/wpvn-unload-hooks/screenshot-3/' title='screenshot-3'><img width="150" height="150" src="http://files.link2caro.net/2009/04/screenshot-3-150x150.png" class="attachment-thumbnail" alt="screenshot-3" title="screenshot-3" /></a>
<a href='http://link2caro.net/read/wpvn-unload-hooks/screenshot-2/' title='screenshot-2'><img width="150" height="150" src="http://files.link2caro.net/2009/04/screenshot-2-150x150.png" class="attachment-thumbnail" alt="screenshot-2" title="screenshot-2" /></a>
<a href='http://link2caro.net/read/wpvn-unload-hooks/screenshot-1/' title='screenshot-1'><img width="150" height="150" src="http://files.link2caro.net/2009/04/screenshot-1-150x150.png" class="attachment-thumbnail" alt="screenshot-1" title="screenshot-1" /></a>

]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wpvn-unload-hooks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>link2caro.net is getting a new look</title>
		<link>http://link2caro.net/read/link2caro-net-is-getting-a-new-look/</link>
		<comments>http://link2caro.net/read/link2caro-net-is-getting-a-new-look/#comments</comments>
		<pubDate>Wed, 22 Apr 2009 03:13:51 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=491</guid>
		<description><![CDATA[link2caro &#8211; my portfolio is getting redesigned. This work will be applied on-the-fly (à la volé) so sometimes the site will not be smooth as it should be After nearly 2 years since the first version made it online, nearly 5 years the domain is online, a sweet memory with this domain. cdata, the sharing [...]]]></description>
			<content:encoded><![CDATA[<p>link2caro &#8211; my portfolio is getting redesigned. This work will be applied on-the-fly (à la volé) so sometimes the site will not be smooth as it should be <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  After nearly 2 years since the first version made it online, nearly 5 years the domain is online, a sweet memory with this domain. cdata, the sharing place, with 3 users at that time :p and now this domain is dedicated for my portfolio <img src='http://link2caro.net/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' />  (remember, once it was in top 100.000 :p of alexa :p)</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/link2caro-net-is-getting-a-new-look/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox Personas &#8211; Style your Firefox</title>
		<link>http://link2caro.net/read/firefox-personas-style-your-firefox/</link>
		<comments>http://link2caro.net/read/firefox-personas-style-your-firefox/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 09:27:17 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=486</guid>
		<description><![CDATA[I&#8217;ve found out that Mozilla provides a coooool extension for Firefox 3 which is Firefox Personas, you can style up your Firefox as you like with themes by others or even your own theme, roll into it right away!!!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found out that Mozilla provides a coooool extension for Firefox 3 which is Firefox Personas, you can style up your Firefox as you like with themes by others or even your own theme, roll into it right away!!!</p>
<p style="text-align: center;"><a href="http://files.link2caro.net/2009/04/picture-14.png" rel="lightbox[486]"><img class="size-medium wp-image-487 aligncenter" title="Firefox Personas" src="http://files.link2caro.net/2009/04/picture-14-300x187.png" alt="Firefox Personas" width="300" height="187" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/firefox-personas-style-your-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quảng Cáo của Microsoft</title>
		<link>http://link2caro.net/read/qu%e1%ba%a3ng-cai-c%e1%bb%a7a-microsoft/</link>
		<comments>http://link2caro.net/read/qu%e1%ba%a3ng-cai-c%e1%bb%a7a-microsoft/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 16:42:32 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Giải trí]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=465</guid>
		<description><![CDATA[Đây là những quảng cáo mới nhất của Microsoft]]></description>
			<content:encoded><![CDATA[<p>Đây là những quảng cáo mới nhất của Microsoft <img src='http://link2caro.net/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' /> </p>
<p><span id="more-465"></span></p>
<p><object width="432" height="364" data="http://images.video.msn.com/flash/soapbox1_1.swf" type="application/x-shockwave-flash"><param name="id" value="n25932a0" /><param name="flashvars" value="c=v&amp;v=0bb6a07c-c829-4562-8375-49e6693810c7&amp;ifs=true&amp;fr=shared&amp;mkt=en-US" /><param name="src" value="http://images.video.msn.com/flash/soapbox1_1.swf" /><param name="allowfullscreen" value="true" /></object></p>
<p><object width="425" height="344" data="http://www.youtube.com/v/7hhVjSbV_oQ&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/7hhVjSbV_oQ&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p><object width="425" height="344" data="http://www.youtube.com/v/wj5UyZKo2iE&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/wj5UyZKo2iE&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p><object width="425" height="344" data="http://www.youtube.com/v/nNOohFst9Lc&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/nNOohFst9Lc&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
<p><object width="425" height="344" data="http://www.youtube.com/v/ImyK29QLs_A&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/ImyK29QLs_A&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/qu%e1%ba%a3ng-cai-c%e1%bb%a7a-microsoft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WP-AVIM-Reloaded</title>
		<link>http://link2caro.net/read/wp-avim-reloaded/</link>
		<comments>http://link2caro.net/read/wp-avim-reloaded/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 13:41:15 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=455</guid>
		<description><![CDATA[http://wordpress.org/extend/plugins/wp-avim-reloaded/ Với vài tính năng mới Sử dụng AVIM định hướng đối tượng để tránh các xung đột về javascript. Sửa cookie có path=/, thêm cookie AVIM_hidden để nhớ chế độ ẩn hiện. Có một bug nhỏ sau khi up lên svn mình mới để ý, nếu bạn lỡ tay ẩn bộ gõ đi ở [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/extend/plugins/wp-avim-reloaded/">http://wordpress.org/extend/plugins/wp-avim-reloaded/</a></p>
<p>Với vài tính năng mới <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  Sử dụng AVIM định hướng đối tượng để tránh các xung đột về javascript. Sửa cookie có path=/, thêm cookie AVIM_hidden để nhớ chế độ ẩn hiện. Có một bug nhỏ sau khi up lên svn mình mới để ý, nếu bạn lỡ tay ẩn bộ gõ đi ở trang có bảng điểu khiển ẩn được, trong trang có bảng điều khiển cố định, bạn không thể cho nó hiện ra lại, bạn buộc phải quay lại trang nào có bảng kiểu floating để hiện lại bảng điều khiển cố định.</p>
<p><span style="text-decoration: line-through;">Thêm phím Esc thay thế cho F12 (Mac thingy <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) &#8211; ngồi ấn F12 mãi chẳng được <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  )</span><br />
-&gt; Alt+F12<span style="text-decoration: line-through;"><br />
</span></p>
<p><span id="more-455"></span></p>
<p>Screen nè:</p>
<p><img src="http://wordpress.org/extend/plugins/wp-avim-reloaded/screenshot-1.png" alt="" /><br />
<img src="http://wordpress.org/extend/plugins/wp-avim-reloaded/screenshot-2.png" alt="" /><br />
<img src="http://wordpress.org/extend/plugins/wp-avim-reloaded/screenshot-3.png" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/wp-avim-reloaded/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>AVIM-Reloaded</title>
		<link>http://link2caro.net/read/avim-reloaded/</link>
		<comments>http://link2caro.net/read/avim-reloaded/#comments</comments>
		<pubDate>Fri, 27 Mar 2009 03:09:35 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=452</guid>
		<description><![CDATA[Hôm trước có người kêu cái AVIM này không có cookie cho chế độ ẩn đi nên giờ mình sửa một chút AVIM để thêm cookie cho việc ẩn hiện bảng điều khiển. Nếu trong thời gian tới CA RO rảnh, CA RO sẽ sửa lại dùng cookie theo hệ nhị phân để giảm số [...]]]></description>
			<content:encoded><![CDATA[<p>Hôm trước có người kêu cái AVIM này không có cookie cho chế độ ẩn đi nên giờ mình sửa một chút AVIM để thêm cookie cho việc ẩn hiện bảng điều khiển.</p>
<p style="text-align: left;">Nếu trong thời gian tới CA RO rảnh, CA RO sẽ sửa lại dùng cookie theo hệ nhị phân để giảm số cookie từ 5 xuống 2 (CA RO ghét nhìn thấy nhiều cookie <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' />  nản lắm, những lúc code gì cần cookie tìm mãi mới ra cái cookie của mình)</p>
<p style="text-align: left;">&#8211;</p>
<p style="text-align: left;">Updated: 29-03-2009</p>
<p style="text-align: left;"><a href="http://files.link2caro.net/2009/03/picture-14.png" rel="lightbox[452]"><img class="alignnone size-medium wp-image-478" title="picture-14" src="http://files.link2caro.net/2009/03/picture-14-300x37.png" alt="picture-14" width="300" height="37" /></a></p>
<p><a href="http://files.link2caro.net/2009/03/avim-20090327.zip"></a><a href="http://files.link2caro.net/2009/03/avimr-20090329.zip">avimr-20090329</a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/avim-reloaded/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Object-Oriented MySQLi based session handler</title>
		<link>http://link2caro.net/read/php-object-oriented-mysqli-based-session-handler/</link>
		<comments>http://link2caro.net/read/php-object-oriented-mysqli-based-session-handler/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 14:08:06 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=434</guid>
		<description><![CDATA[This is how you can start with your own database-based session controller.
This class is built with MySQLi functions, so be sure you are prepared for PHP5.]]></description>
			<content:encoded><![CDATA[<p>I ran into a problem with my file session handler, so that I decided to make a database session handler for myself.</p>
<p>You just need to create an instance of Session object-type. session_start() is required if in your php.ini, session.auto_start is set to Off, though you can declare $ini['auto_start']=1 before creating the session object, then pass the $ini array into constructor.</p>
<p><span id="more-434"></span></p>
<p>These are parameters you can pass through the constructor</p>
<pre class="brush: php; title: ; notranslate">
$ini['gc_probability']
$ini['gc_divisor']
$ini['gc_maxlifetime']
$ini['auto_start']</pre>
<pre class="brush: sql; title: ; notranslate">CREATE TABLE `sessions` (
`id` varchar(32) binary NOT NULL default '',
`access` int(10) unsigned NOT NULL default '0',
`data` text,
PRIMARY KEY  (`id`)
) TYPE=InnoDB
</pre>
<pre class="brush: php; title: ; notranslate">
&lt; ?php
/**
* link2caro PHP Library
* Class: Object-Oriented MySQLi based session handler
*
* @name: Object-Oriented MySQLi based session handler
* @version 1.0
* /

class Session {

private $_db;
private $_dbinfo;

/**
* Session Construction
* @return void
* @param mixed $dbinfo Database Information
* @param mixed $ini     Initialization Parameters
*/
public function __construct($dbinfo,$ini=null)
{
$this-&gt;_dbinfo = $dbinfo;
$this-&gt;_dbinfo = $dbinfo;

ini_set('session.save_path', '');
if(!empty($ini['gc_probability']))
ini_set('session.gc_probability', $ini['gc_probability']);
if(!empty($ini['gc_divisor']))
ini_set('session.gc_divisor', $ini['gc_divisor']);
if(!empty($ini['gc_maxlifetime']))
ini_set('session.gc_maxlifetime', $ini['gc_maxlifetime']);

register_shutdown_function('session_write_close');
session_set_save_handler(array(&amp;amp;$this,&quot;_open&quot;),
array(&amp;amp;$this,&quot;_close&quot;),
array(&amp;amp;$this,&quot;_read&quot;),
array(&amp;amp;$this,&quot;_write&quot;),
array(&amp;amp;$this,&quot;_destroy&quot;),
array(&amp;amp;$this,&quot;_gc&quot;));
if(get_cfg_var(&quot;session.auto_start&quot;) || $ini['autostart'])
session_start();
}

/**
* Open connection to database
* @return bool
*/
public function _open()
{
$this-&gt;_db = new mysqli($this-&gt;_dbinfo['host'], $this-&gt;_dbinfo['user'], $this-&gt;_dbinfo['pass'], $this-&gt;_dbinfo['database']);
unset($this-&gt;_dbinfo['pass']);

if(phpversion() &gt; '5.3.0')
{
if($this-&gt;_db-&gt;connect_error())
{
printf(&quot;Database Connection failed: %s&quot;, $this-&gt;_db-&gt;connect_error());
return FALSE;
}
}
else
{
if(mysqli_connect_error())
{
printf(&quot;Database Connection failed: %s&quot;, mysqli_connect_error());
return FALSE;
}
}
return TRUE;
}

/**
* Open connection to database
* @return bool
*/
public function _close()
{
if(is_object($this-&gt;_db))
return $this-&gt;_db-&gt;close();
return FALSE;
}

/**
* Open connection to database
* @return bool
* @param string $id Session id
*/
public function _read($id)
{
$sql = &quot;SELECT data
FROM   &quot;.$this-&gt;_dbinfo['table'].&quot;
WHERE  id = ?&quot;;
$query = $this-&gt;_db-&gt;prepare($sql);
$query-&gt;bind_param('s',$id);
$query-&gt;execute();
$query-&gt;bind_result($data);
$query-&gt;fetch();
if(!empty($data))
return $data;
else
return '';
}

/**
* Save/Edit data of this session
* @return bool
* @param string $id     Session id
* @param string $data     Data of this session
*/
public function _write($id, $data)
{
$sql = &quot;REPLACE
INTO    &quot;.$this-&gt;_dbinfo['table'].&quot;
VALUES  (?, ?, ?)&quot;;
$query = $this-&gt;_db-&gt;prepare($sql);
$query-&gt;bind_param(&quot;sis&quot;, $id, time(), $data);
$query-&gt;execute();
return $query-&gt;close();
}

/**
* Destroy this session
* @return bool
*/
public function _destroy($id)
{
$sql = &quot;DELETE
FROM   &quot;.$this-&gt;_dbinfo['table'].&quot;
WHERE  id = ?&quot;;
$query = $this-&gt;_db-&gt;prepare($sql);
$query-&gt;bind_param('s', $id);
$query-&gt;execute();
$query-&gt;close();
@session_unset();
//TODO: check recursivity
@session_destroy();
if($this-&gt;_db-&gt;affected_rows)
return TRUE;
else
return FALSE;
}

/**
* Garbage Collector
* @return bool
*/
public function _gc()
{
$sql = &quot;DELETE
FROM   &quot;.$this-&gt;_dbinfo['table'].&quot;
WHERE  access &lt; ?&quot;;

$expire = time() - get_cfg_var(&quot;session.gc_maxlifetime&quot;);
$query = $this-&gt;_db-&gt;prepare($sql);
$query-&gt;bind_param('i', $expire);
$query-&gt;execute();
$query-&gt;close();
if($this-&gt;_db-&gt;affected_rows)
return TRUE;
else
return FALSE;
}
}

$dbinfo['host']      = 'mac.lan.link2caro.net';
$dbinfo['user']      = 'root';
$dbinfo['pass']      = 'azerty1973';
$dbinfo['database']  = 'test';
$dbinfo['table']     = 'sessions';
$ini['autostart']     = 1;

$session = new Session($dbinfo,$ini);
?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/php-object-oriented-mysqli-based-session-handler/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>AutoCompletion Failed in Eclipse PDT</title>
		<link>http://link2caro.net/read/autocompletion-failed-in-eclipse-pdt/</link>
		<comments>http://link2caro.net/read/autocompletion-failed-in-eclipse-pdt/#comments</comments>
		<pubDate>Fri, 13 Mar 2009 19:24:58 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/autocompletion-failed-in-eclipse-pdt/</guid>
		<description><![CDATA[blockquote plt;naturesgt;br / nbsp;nbsp; lt;naturegt;org.eclipse.php.core.PHPNaturelt;/naturegt;br / lt;/naturesgt;/p /blockquote pIf your auto-completion in Eclipse PDT failed working normally, try in .project of each project you will find lt;naturesgt; tags, add the above line between opening and closing tag to re-enable the auto-completion function./p pHope this trick will help you /p]]></description>
			<content:encoded><![CDATA[<p>blockquote<br />
  plt;naturesgt;br /<br />
  nbsp;nbsp; lt;naturegt;org.eclipse.php.core.PHPNaturelt;/naturegt;br /<br />
  lt;/naturesgt;/p<br />
/blockquote<br />
pIf your auto-completion in Eclipse PDT failed working normally, try in .project of each project you will find lt;naturesgt; tags, add the above line between opening and closing tag to re-enable the auto-completion function./p<br />
pHope this trick will help you <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> /p</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/autocompletion-failed-in-eclipse-pdt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vi.WordPress.org</title>
		<link>http://link2caro.net/read/viwordpressorg/</link>
		<comments>http://link2caro.net/read/viwordpressorg/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 07:01:06 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Tiếng Việt]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=430</guid>
		<description><![CDATA[Phew, vậy là sau bao năm giờ đã có vi.WordPress.org, tiến tới sẽ làm forum trên WordPress.org]]></description>
			<content:encoded><![CDATA[<p>Phew, vậy là sau bao năm giờ đã có vi.WordPress.org, tiến tới sẽ làm forum trên WordPress.org <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/viwordpressorg/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing Subversion on Ubuntu</title>
		<link>http://link2caro.net/read/install-subversion-ubuntu/</link>
		<comments>http://link2caro.net/read/install-subversion-ubuntu/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 14:32:05 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Web&Dev]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/ubuntu/</guid>
		<description><![CDATA[Assuming that apache is installed! Install packages apt-get install subversion libapache2-svn libapache-mod-dav Enable SSL a2enmod Add &#8220;Listen 443&#8243; into httpd.conf if needed. Install SSL apt-get install ssl-cert mkdir /etc/apache2/ssl /usr/sbin/make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/site-name.crt Adding Basic Authentication: htpasswd2 -c -m /home/path-to/svn/project/.htpasswd username Configure site cp /etc/apache2/sites-available/default /etc/apache2/sites-available/site-name nano /etc/apache2/sites-available/site-name &#60;VirtualHost IP_ADDRESS:443&#62; ServerName hostname DocumentRoot /home/path-to/svn SSLEngine on [...]]]></description>
			<content:encoded><![CDATA[<p>Assuming that apache is installed!</p>
<ol>
<li><span style="color: #800000;"><strong>Install packages</strong></span><br />
apt-get install subversion libapache2-svn libapache-mod-dav</li>
<li><span style="color: #800000;"><strong>Enable SSL</strong></span><br />
a2enmod<br />
Add &#8220;Listen 443&#8243; into httpd.conf if needed.</li>
<li><span style="color: #800000;"><strong>Install SSL</strong></span><br />
apt-get install ssl-cert<br />
mkdir /etc/apache2/ssl<br />
/usr/sbin/make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/<strong>site-name.crt</strong></li>
<li><span style="color: #800000;"><strong>Adding Basic Authentication:</strong></span><br />
htpasswd2 -c -m /home/path-to/svn/project/.htpasswd <strong><em>username</em></strong></li>
<li><span style="color: #800000;"><strong>Configure site</strong></span><br />
cp /etc/apache2/sites-available/default /etc/apache2/sites-available/<strong>site-name</strong><br />
nano /etc/apache2/sites-available/site-name</p>
<blockquote><p>&lt;VirtualHost IP_ADDRESS:443&gt;<br />
ServerName <strong>hostname</strong><br />
DocumentRoot /home/path-to/svn</p>
<p>SSLEngine on<br />
SSLCertificateFile /etc/apache2/ssl/<strong>site-name.crt</strong><br />
SSLProtocol all<br />
SSLCipherSuite HIGH:MEDIUM</p>
<p>&lt;Directory &#8220;/home/path-to/svn&#8221;&gt;<br />
Options FollowSymLinks MultiViews<br />
AllowOverride All<br />
Order allow,deny<br />
Allow from All<br />
SSLRequireSSL<br />
&lt;/Directory&gt;</p>
<p>### project<br />
&lt;Location &#8220;/svn/project&#8221;&gt;<br />
AuthType Basic<br />
AuthName &#8220;Subversion Login&#8221;<br />
AuthUserFile /home/path-to/svn/project/<strong>.htpasswd</strong><br />
Require valid-user<br />
&lt;/Location&gt;<br />
&lt;/VirtualHost&gt;</p></blockquote>
<p><code>a2ensite <em>$SITENAME</em><br />
/etc/init.d/apache2 restart</code></li>
<li><span style="color: #800000;"><strong>Adding repository</strong></span><br />
mkdir /home/path-to/svn<br />
svnadmin create /home/path-to/svn/repos<br />
chown -R www-data:www-data /home/path-to/svn/repos<br />
chmod -R g+ws /home/path-to/svn/repos</li>
<li><span style="color: #800000;"><strong>Enabling SVN</strong></span><br />
Edit /etc/apache2/mods-available/dav_svn.conf<br />
<code>DAV svn<br />
SVNParentPath /home/path-to/svn (for multi repositories)<br />
SVNPath /home/path-to/svn (for single repository)</code>For non-anonymous access comment out:<br />
<code>#&lt;LimitExcept GET PROPFIND OPTIONS REPORT&gt;<br />
#&lt;/LimitExcept&gt;</code></li>
<li><span style="color: #800000;"><strong>Finalization</strong></span><br />
<code>/etc/init.d/apache2 restart</code></li>
<li><span style="color: #800000;"><strong>Initial Import and Checkout</strong></span><code><br />
svn import --username <em><strong>username</strong> <strong>files</strong></em> https://hostname/svn/<em>repos</em>/testdir -m “Testing”</code><code><br />
svn co --username <em><strong>username</strong> </em>https://hostname/svn<em>/repos</em></code></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/install-subversion-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transfer files between servers</title>
		<link>http://link2caro.net/read/transfer-files-between-servers/</link>
		<comments>http://link2caro.net/read/transfer-files-between-servers/#comments</comments>
		<pubDate>Sat, 07 Mar 2009 00:15:19 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=423</guid>
		<description><![CDATA[With Secure Copy (slowest) : scp -r dir user@destination-host:/tmp/ Tar through SSH: tar czpf &#8211; dir &#124; ssh user@destination-host tar xzpf &#8211; -C /tmp/ Tar with Netcat (fastest): On destination-host: nc -l -p 7000 &#124; tar xzpf &#8211; -C /tmp/ On source-host: tar czpf &#8211; dir &#124; nc -w 10 destination-host 7000 For the methods [...]]]></description>
			<content:encoded><![CDATA[<p>With Secure Copy (slowest) : scp -r dir user@destination-host:/tmp/</p>
<p>Tar through SSH: tar czpf &#8211; dir | ssh user@destination-host tar xzpf &#8211; -C /tmp/</p>
<p>Tar with Netcat (fastest):</p>
<ul>
<li>On destination-host: nc -l -p 7000 | tar xzpf &#8211; -C /tmp/</li>
<li>On source-host: tar czpf &#8211; dir | nc -w 10 destination-host 7000</li>
</ul>
<p>For the methods with tar command, you can use verbose with the command on the destination host to log the process.</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/transfer-files-between-servers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Transfering</title>
		<link>http://link2caro.net/read/transfering/</link>
		<comments>http://link2caro.net/read/transfering/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 06:05:29 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=419</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://files.link2caro.net/2009/03/scp.jpg" rel="lightbox[419]"><img class="alignnone size-medium wp-image-418" title="scp" src="http://files.link2caro.net/2009/03/scp-300x240.jpg" alt="scp" width="300" height="240" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/transfering/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zend Server CE (Community Edition)</title>
		<link>http://link2caro.net/read/zend-server-ce-community-edition/</link>
		<comments>http://link2caro.net/read/zend-server-ce-community-edition/#comments</comments>
		<pubDate>Wed, 04 Mar 2009 01:35:05 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[English]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Mac OS X]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=402</guid>
		<description><![CDATA[Today, after a long time messing up with XAMPP, MAMP and the Web Sharing &#8211; or default Web Server of Mac OS X, I found out a very new product which is free to &#8220;grand&#8221; public: Zend Server CE (Community Edition). There are Linux, Windows and Mac OS X versions. The versions for Unix-like OS [...]]]></description>
			<content:encoded><![CDATA[<p>Today, after a long time messing up with XAMPP, MAMP and the Web Sharing &#8211; or default Web Server of Mac OS X, I found out a very new product which is free to &#8220;grand&#8221; public: Zend Server CE (Community Edition). There are Linux, Windows and Mac OS X versions. The versions for Unix-like OS has a particularity is that the listening port is 10088 by default but not 80. The Windows version I have not tested yet, let that for tomorow, uses the defaul port 80; and Debian-based OS (Ubuntu) is for tomorow too.</p>
<p>It&#8217;s a bit late now, so I just head into the main point why I am writing this post <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  I wanted to change the default port to 80 on my Mac, ok, it&#8217;s a piece of cake, try <strong><em><span style="text-decoration: line-through;">/ZendServer</span> /usr/local/zend/apache2/conf/httpd.conf</em></strong> (I like the file structure of Zend Server, it&#8217;s way more familiar than other stuffs I cited above). After changing the Apache conf, I cannot make Zend AdminInterface (run on lighttpd) work with the Apache on new port, and I searched for a while and Eureka! found the config file here: <span style="text-decoration: line-through;"><strong><em>/ZendServer/gui/application/data/zwas.ini</em></strong></span> <strong>/usr/local/zend/gui/application/data/zend-server.ini</strong><strong> <em>(Since 4.0.1)</em></strong><span style="text-decoration: line-through;"><strong><em><br />
</em></strong></span></p>
<blockquote><p>[zendServer]<br />
version = 4.0.2<br />
build = ZEND_SERVER_GUI_4_0_22_20090426<br />
packageBuild = INSTALLATION_PLACEHOLDER_PACKAGE_BUILD_NUMBER<br />
rewriteEnabled = On</p>
<p>[userServer]<br />
<strong>url = http://127.0.0.1:10088/ZendServer (in my case I change it to http://127.0.0.1/ZendServer)<br />
</strong></p>
<p>&#8230;.</p></blockquote>
<p>Last thing, you need to make an alias of <span style="text-decoration: line-through;"><strong><em>/ZendServer/apache2/htdocs/ZendServer</em></strong></span><strong><em> </em></strong><strong>/usr/local/zend/apache2/htdocs</strong> in the new DocumentRoot to make sure that Apache can start correctly. (it&#8217;s actually an alias of <strong><em><span style="text-decoration: line-through;">/</span><span style="text-decoration: line-through;">ZendServer</span> /usr/local/zend/gui/UserServer</em></strong> as in the ini file it says.)</p>
<p><span style="text-decoration: underline;">To Linux Users:</span> If you have already have a running apache, when you install ZendServer, it will use your current apache server <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and things work just as smooth as it should be after a 3 minutes and 5 command lines installation <img src='http://link2caro.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  (tested on Ubuntu 8.10, the server which hosts this blog)</p>
<p>Hope this post help some one out there, tomorrow I will update more about this Zend Server.</p>
<p>At this time I have the problem with mysql.sock on Mac, as always <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p>Updated: ZendServer 4.0.2 has MySQL on its own, it&#8217;s now the best thing out there for Mac in my taste, pity that Zend still does not make 64bit version for Windows <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>

<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-68/' title='picture-68'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-68-150x150.png" class="attachment-thumbnail" alt="picture-68" title="picture-68" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-69/' title='picture-69'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-69-150x150.png" class="attachment-thumbnail" alt="picture-69" title="picture-69" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-70/' title='picture-70'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-70-150x150.png" class="attachment-thumbnail" alt="picture-70" title="picture-70" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-71/' title='picture-71'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-71-150x150.png" class="attachment-thumbnail" alt="picture-71" title="picture-71" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-72/' title='picture-72'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-72-150x150.png" class="attachment-thumbnail" alt="picture-72" title="picture-72" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-73/' title='picture-73'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-73-150x150.png" class="attachment-thumbnail" alt="picture-73" title="picture-73" /></a>
<a href='http://link2caro.net/read/zend-server-ce-community-edition/picture-74/' title='picture-74'><img width="150" height="150" src="http://files.link2caro.net/2009/03/picture-74-150x150.png" class="attachment-thumbnail" alt="picture-74" title="picture-74" /></a>

]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/zend-server-ce-community-edition/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Note to self: Not everyone who drops shit on you is your enemy</title>
		<link>http://link2caro.net/read/note-to-self-not-everyone-who-drops-shit-on-you-is-your-enemy/</link>
		<comments>http://link2caro.net/read/note-to-self-not-everyone-who-drops-shit-on-you-is-your-enemy/#comments</comments>
		<pubDate>Fri, 30 Jan 2009 04:55:35 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=344</guid>
		<description><![CDATA[Mai Hương Nguyễn: A little bird was flying south for the winter. It was so cold that the bird froze and fell to the ground in a large field. While it was lying there, a cow came by and dropped a load of hot, steaming dung on it. As the frozen bird lay there in [...]]]></description>
			<content:encoded><![CDATA[<p>Mai Hương Nguyễn:<br />
A little bird was flying south for the winter. It was so cold that the bird froze and fell to the ground in a large field. While it was lying there, a cow came by and dropped a load of hot, steaming dung on it. As the frozen bird lay there in the pile of shit, it began to realize how warm it was. The dung was actually thawing him out! He lay there all warm and happy and soon began to sing for joy. A passing cat heard the bird singing and came to investigate. Following the sound, the cat discovered the bird under the pile of cow dung. The cat promptly dug the bird out, killed him and ate it.<br />
The Lesson: Not everyone who drops shit on you is your enemy. Not everyone who pulls you out of shit is your friend. And when you’re warm and happy in your pile of shit, keep your mouth shut.</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/note-to-self-not-everyone-who-drops-shit-on-you-is-your-enemy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8230;(cont.)</title>
		<link>http://link2caro.net/read/tristesse-2/</link>
		<comments>http://link2caro.net/read/tristesse-2/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 15:48:47 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Français]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=338</guid>
		<description><![CDATA[Lâcher ou Tenir&#8230; dans quelques heures la réponse y sera]]></description>
			<content:encoded><![CDATA[<p>Lâcher ou Tenir&#8230; dans quelques heures la réponse y sera</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/tristesse-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8230;</title>
		<link>http://link2caro.net/read/tristesse/</link>
		<comments>http://link2caro.net/read/tristesse/#comments</comments>
		<pubDate>Mon, 12 Jan 2009 23:30:04 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=333</guid>
		<description><![CDATA[would things go wrong?]]></description>
			<content:encoded><![CDATA[<p>would things go wrong?</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/tristesse/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joyeux Noël</title>
		<link>http://link2caro.net/read/joyeux-noel/</link>
		<comments>http://link2caro.net/read/joyeux-noel/#comments</comments>
		<pubDate>Thu, 25 Dec 2008 01:25:15 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Français]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=314</guid>
		<description><![CDATA[Connection Internet est tellement mauvaise, j&#8217;ai perdu mon entrée (entry). Je résume seulement ce que je me rappelle &#8212; J&#8217;ai pensé à toi toute la soirée, je voulais que tu sois là, à la messe avec moi. J&#8217;avais si froid que mon coeur voulait se mettre à côté du tien. Je te &#8220;like&#8221; beaucoup. J&#8217;ai [...]]]></description>
			<content:encoded><![CDATA[<p> <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  Connection Internet est tellement mauvaise, j&#8217;ai perdu mon entrée (entry).</p>
<p>Je résume seulement ce que je me rappelle <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>&#8212;</p>
<p>J&#8217;ai pensé à toi toute la soirée, je voulais que tu sois là, à la messe avec moi. J&#8217;avais si froid que mon coeur voulait se mettre à côté du tien. Je te &#8220;like&#8221; beaucoup.</p>
<p>J&#8217;ai eu peur, je veux pas que tu me méprennes, je ne veux jamais te contrôler, je veux te donner tout le confort <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  car je t&#8217;aime. Je sais que cela te fait plaisir, te fait ressentir quelque chose! C&#8217;est de l&#8217;amour, tu le sais, mon coeur fond pour toi <img src='http://link2caro.net/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/joyeux-noel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jtm</title>
		<link>http://link2caro.net/read/jtm/</link>
		<comments>http://link2caro.net/read/jtm/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 20:23:59 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=312</guid>
		<description><![CDATA[Đã đến Roma, đã cảm thấy Roma xấu xí, đã muốn về Pháp cho gần chérie, một lí do khác cũng tại cái dd của mình hiện chưa được roaming quốc tế, lúc đang ở trên máy bay bật lên để xem mạng gì, không thấy có mạng, ức ( quên mất ko bật cái [...]]]></description>
			<content:encoded><![CDATA[<p>Đã đến Roma, đã cảm thấy Roma xấu xí, đã muốn về Pháp cho gần chérie, một lí do khác cũng tại cái dd của mình hiện chưa được roaming quốc tế, lúc đang ở trên máy bay bật lên để xem mạng gì, không thấy có mạng, ức <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( quên mất ko bật cái option internationale :-&lt;</p>
<p>Hôm qua, làm cho chérie thót tim, chéri cũng bùn bùn, chẳng muốn làm cho chérie như thế đâu, chéri xin lỗi bé bỏng dễ thương nhá? Pardonne-moi!</p>
<p>Đến Ý, đi mất cả tiếng tìm đường, cái GPS của em nó bị vướng nhà Ý nó ứ thèm bắt được sóng <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( đi sai bét nhè, rồi đến cuối GPS nó cũng chịu chạy, có GPS đi dễ hơn bao nhiêu :p tuy do có sai số nên thi thoảng bị hụt một nhịp. Trưa ăn Kebab (chéri ko khoái kebab, ăn cũng dc nhưng mà, thấy normal, chérie thích kebab ko?) tối thì ăn pizza bố ăn pâtes. hix sao mà tiếng Ý tiếng Pháp khác nhau thế, nhìn texte thì hiểu đc, nói thì chả hỉu dc gì <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  chẳng đoán dc ý.</p>
<p>Cả chiều đi vòng quanh cái khu thành cổ, vừa đi vừa nhớ đến ai đó, Roma và Rennes, xa phải đến 2 lần Hà Nội &#8211; Nha Trang ý :p, chérie ơi, tiamo!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/jtm/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Đời đẹp, người đẹp, cuối năm ấm áp&#8230;</title>
		<link>http://link2caro.net/read/d%e1%bb%9di-d%e1%ba%b9p-ng%c6%b0%e1%bb%9di-d%e1%ba%b9p-cu%e1%bb%91i-nam-%e1%ba%a5m-ap/</link>
		<comments>http://link2caro.net/read/d%e1%bb%9di-d%e1%ba%b9p-ng%c6%b0%e1%bb%9di-d%e1%ba%b9p-cu%e1%bb%91i-nam-%e1%ba%a5m-ap/#comments</comments>
		<pubDate>Sat, 20 Dec 2008 22:42:54 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=304</guid>
		<description><![CDATA[:&#8221;&#62; lâu lắm mới có hứng viết mấy dòng cho cái blog hẩm hiu của mình, khổ thân em blog quá, bị &#8220;bọ rơi&#8221;. Tự nhiên mọi thứ xung quanh thật đẹp đẽ, đi đâu nhìn mọi thứ cũng thấy có nét gì mới mẻ, chỉ tội là đi mà tâm trí cứ để đi [...]]]></description>
			<content:encoded><![CDATA[<p>:&#8221;&gt; lâu lắm mới có hứng viết mấy dòng cho cái blog hẩm hiu của mình, khổ thân em blog quá, bị &#8220;bọ rơi&#8221;.</p>
<p>Tự nhiên mọi thứ xung quanh thật đẹp đẽ, đi đâu nhìn mọi thứ cũng thấy có nét gì mới mẻ, chỉ tội là đi mà tâm trí cứ để đi đâu, mới xa có 3 ngày <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  còn tận 7 ngày nữa, mấy ngày nới lại còn xa lắm lắm ý chứ, ko net ko mạng ko gì cả haiz, sms thì cũng ko nốt <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( ôi nhớ em forfait bloqué, ghét em non bloqué này, ờ nói mới nghĩ ra, tí lên orange nạp tiền cho cái số cũ dùng tạm bên Ý <img src='http://link2caro.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Sais-tu combien je suis heureux d&#8217;être avec toi?</p>
<p>Tu me manques, sans toi ma vie <em>continue</em> (comme as tu dit) mais elle serait <em>sans saveur</em>.</p>
<p><span style="color: #ff0000;">Je t&#8217;aime, ma chérie <img src='http://link2caro.net/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' /> .</span></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/d%e1%bb%9di-d%e1%ba%b9p-ng%c6%b0%e1%bb%9di-d%e1%ba%b9p-cu%e1%bb%91i-nam-%e1%ba%a5m-ap/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My new E71</title>
		<link>http://link2caro.net/read/my-new-e71/</link>
		<comments>http://link2caro.net/read/my-new-e71/#comments</comments>
		<pubDate>Tue, 09 Dec 2008 07:32:23 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=302</guid>
		<description><![CDATA[My new Nokia, the seventh E71]]></description>
			<content:encoded><![CDATA[<p>My new Nokia, the seventh <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  E71</p>
<p style="text-align: center;"><a title="My New E71 by CA RO, on Flickr" href="http://www.flickr.com/photos/link2caro/3094272303/"><img class="aligncenter" src="http://farm4.static.flickr.com/3276/3094272303_ed9600e66b.jpg" alt="My New E71" width="334" height="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/my-new-e71/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH Tunneling</title>
		<link>http://link2caro.net/read/ssh-tunneling/</link>
		<comments>http://link2caro.net/read/ssh-tunneling/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 01:52:32 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=296</guid>
		<description><![CDATA[If you are behind a firewall which forbids you to use some useful ports, and if you can create an SSH outside, to the &#8220;internet cloud&#8221;, here is your solution. Tunnel Part On Windows: On Unix-like: ssh -D &#60;tunnel-entrance port&#62; username@server-ssh.com (to be verify these options) Application Configuration Part In IE or in Firefox (preferrable [...]]]></description>
			<content:encoded><![CDATA[<p>If you are behind a firewall which forbids you to use some useful ports, and if you can create an SSH outside, to the &#8220;internet cloud&#8221;, here is your solution.</p>
<ul>
<li><span id="more-296"></span> <strong>Tunnel Part</strong></li>
</ul>
<ul></ul>
<p><em>On Windows:</em></p>
<p style="text-align: center;"><a href="http://files.link2caro.net/2008/11/ssh-tunnel.jpg" rel="lightbox[296]"><img class="aligncenter size-medium wp-image-295" title="ssh-tunnel" src="http://files.link2caro.net/2008/11/ssh-tunnel.jpg" alt="ssh-tunnel" width="500" /></a></p>
<p style="text-align: left;"><em>On Unix-like:</em></p>
<p style="text-align: left;">ssh -D &lt;tunnel-entrance port&gt; username@server-ssh.com (to be verify these options)</p>
<ul>
<li><strong>Application Configuration Part</strong></li>
</ul>
<p style="text-align: left;">In IE or in Firefox (preferrable to configure with IE, because some other apps use the conf of IE), set Socks: localhost and the port is the port you set for the tunnel, in the photo on the right.</p>
<p style="text-align: left;">In Yahoo! Messenger as well as other apps such as µtorrent, you choose Socks 5 as proxy and localhost:&lt;tunnel-entrance port&gt;</p>
<p style="text-align: left;"><span style="text-decoration: underline;">@ To whom at INSA de Rennes</span>, the port 995 as well as 21 and some other common ports but not 22 do not necessite the proxy of INSA. (I will verified this method this Wednesday, what I wrote here is based on theory only :p )</p>
<p style="text-align: left;">Brief Explanation: After opening an SSH connection, Putty will listen on any defined Source Port (which I call Local Port) and it acts as a local proxy pass all connection through the SSH server, the SSH server then forward to other servers with the appropriate ports, this is enabled by the AllowTcpFowarding option of OpenSSH.</p>
<p style="text-align: left;">Further Info:</p>
<pre>pop3s           995/tcp    pop3 protocol over TLS/SSL (was spop3)
pop3s           995/udp    pop3 protocol over TLS/SSL (was spop3)</pre>
<p style="text-align: center;"><a href="http://files.link2caro.net/2008/11/yahoo.jpg" rel="lightbox[296]"><img class="aligncenter size-full wp-image-298" title="yahoo" src="http://files.link2caro.net/2008/11/yahoo.jpg" alt="yahoo" width="500" /></a><a href="http://files.link2caro.net/2008/11/utorrent.jpg" rel="lightbox[296]"><img class="aligncenter size-full wp-image-297" title="utorrent" src="http://files.link2caro.net/2008/11/utorrent.jpg" alt="utorrent" width="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/ssh-tunneling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Blog now is back</title>
		<link>http://link2caro.net/read/my-blog-now-is-back/</link>
		<comments>http://link2caro.net/read/my-blog-now-is-back/#comments</comments>
		<pubDate>Sun, 23 Nov 2008 14:50:54 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/my-blog-now-is-back/</guid>
		<description><![CDATA[I have just created a virtual server with VMware Server 2 with Ubuntu Server 8.10 and hosted on a Windows 2003 Server. So cool! CA RO&#8217;s Radio is found at: http://radio.link2caro.net which you can here all of my music in shuffle mode I will be back to blogging duty so keep in touch]]></description>
			<content:encoded><![CDATA[<p>I have just created a virtual server with VMware Server 2 with Ubuntu Server 8.10 and hosted on a Windows 2003 Server. So cool!</p>
<p>CA RO&#8217;s Radio is found at: http://radio.link2caro.net which you can here all of my music in shuffle mode <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I will be back to blogging duty <img src='http://link2caro.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  so keep in touch <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/my-blog-now-is-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Milk and Asian people</title>
		<link>http://link2caro.net/read/milk-and-asian-people/</link>
		<comments>http://link2caro.net/read/milk-and-asian-people/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 23:12:56 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/09/03/milk-and-asian-people/</guid>
		<description><![CDATA[Lactose intolerance is the inability to metabolize lactose, a sugar found in milk and other dairy products, because the required enzyme lactase is absent in the intestinal system or its availability is lowered. It is estimated that 75% of adults show some decrease in lactase activity during adulthood worldwide. The frequency of decreased lactase activity [...]]]></description>
			<content:encoded><![CDATA[<p>Lactose intolerance is the inability to metabolize lactose, a sugar found in milk and other dairy products, because the required enzyme lactase is absent in the intestinal system or its availability is lowered.</p>
<p>It is estimated that 75% of adults show some decrease in lactase activity during adulthood worldwide. The frequency of decreased lactase activity ranges from nearly 5% in northern Europe to more than 90% in some Asian and African countries [1]</p>
<p>Primary lactose intolerance. Environmentally induced when weaning a child in non-dairy consuming societies.[3] This is found in many Asian and African cultures, where industrialized and commercial dairy products are uncommon.</p>
<p>The normal mammalian condition is for the young of a species to experience reduced lactase production at the end of the weaning period (a species-specific length of time). In non dairy consuming societies, lactase production usually drops about 90% during the first four years of life, although the exact drop over time varies widely.[8]. The majority of the world’s human population follows this trend, with the lactase producing genes largely inactivated in adulthood.[9][1]</p>
<p>Some cultures, such as that of Japan, where dairy consumption has been on the increase, demonstrate a lower prevalence of lactose intolerance in spite of a genetic predisposition[10].</p>
<p>Lactose Intolerance Survey:</p>
<p>Northeastern Han Chinese: 92.3%<br />
Chinese: 93%<br />
Southeast Asians: 98%<br />
Thais: 98%</p>
<p>Lactose intolerance levels also increase with age.</p>
<p>It is not surprising then, that consuming milk products became an important part of the agricultural way of life in the Neolithic. It is believed that most of the milk was used to make mature cheeses which are mostly lactose free.[citation needed]</p>
<p>Roman authors recorded that the people of northern Europe, particularly Britain and Germany drank unprocessed milk (as opposed to the Romans who made cheese).[citation needed] This corresponds very closely with modern European distributions of lactose intolerance, where the people of Britain, Germany and Scandinavia have a good tolerance, and those of southern Europe, especially Italy, have a poorer tolerance.[34]</p>
<p>In east Asia, historical sources also attest that the Chinese did not consume milk, whereas the nomads that lived on the borders did. Again, this reflects modern distributions of intolerance. China is particularly notable as a place of poor tolerance, whereas in Mongolia and the Asian steppes horse milk is drunk regularly. This tolerance is thought to be advantageous as the nomads do not settle down long enough to process mature cheese. Given that their prime source of income is generated through horses, to ignore their milk as a source of calories would be greatly detrimental.</p>
<p>Source: http://en.wikipedia.org/wiki/Lactose_intolerance</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/milk-and-asian-people/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>C&#8217;est la rentrée &#8211; Ngày toàn dân đưa trẻ tới trường</title>
		<link>http://link2caro.net/read/cest-la-rentree-ngay-toan-dan-d%c6%b0a-tr%e1%ba%bb-t%e1%bb%9bi-tr%c6%b0%e1%bb%9dng/</link>
		<comments>http://link2caro.net/read/cest-la-rentree-ngay-toan-dan-d%c6%b0a-tr%e1%ba%bb-t%e1%bb%9bi-tr%c6%b0%e1%bb%9dng/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 20:16:23 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/09/02/cest-la-rentree-ngay-toan-dan-d%c6%b0a-tr%e1%ba%bb-t%e1%bb%9bi-tr%c6%b0%e1%bb%9dng/</guid>
		<description><![CDATA[Ảnh này chỉ có 1 nước có thôi nhé, mà sao có cái bình như bình sữa thế kia? bút chì, thước kẻ, compa đâu rùi? Chúc các bạn nào đi học một năm học mới vui vè, và nhiều điểm tốt &#62;:d&#60;]]></description>
			<content:encoded><![CDATA[<p><img src="http://files.link2caro.net/2008/09/picture-3.jpg" width="316" height="104" alt="Picture 3.png" title="Picture 3.png" /></p>
<p>Ảnh này chỉ có 1 nước có thôi nhé, mà sao có cái bình như bình sữa thế kia? bút chì, thước kẻ, compa đâu rùi?</p>
<p>Chúc các bạn nào đi học một năm học mới vui vè, và nhiều điểm tốt &gt;:d&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/cest-la-rentree-ngay-toan-dan-d%c6%b0a-tr%e1%ba%bb-t%e1%bb%9bi-tr%c6%b0%e1%bb%9dng/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>VTC &#8211; Leopard</title>
		<link>http://link2caro.net/read/vtc-leopard/</link>
		<comments>http://link2caro.net/read/vtc-leopard/#comments</comments>
		<pubDate>Tue, 02 Sep 2008 17:24:42 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Mac OS X]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/09/02/vtc-leopard/</guid>
		<description><![CDATA[Hôm nay ngồi lên thử VTC xem tivi quốc khánh tự nhiên thấy cái nền bắt chước MacOS X Leopard hehe nản )]]></description>
			<content:encoded><![CDATA[<p>Hôm nay ngồi lên thử VTC xem tivi quốc khánh tự nhiên thấy cái nền bắt chước MacOS X Leopard hehe nản <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )</p>
<p><a href="http://files.link2caro.net/2008/09/vtc-leopard1.jpg" rel="lightbox[283]"><img class="alignnone size-medium wp-image-553" title="vtc-leopard1" src="http://files.link2caro.net/2008/09/vtc-leopard1-300x187.jpg" alt="vtc-leopard1" width="300" height="187" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/vtc-leopard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Benjamin Franklin’s Governing Values</title>
		<link>http://link2caro.net/read/benjamin-franklin%e2%80%99s-governing-values/</link>
		<comments>http://link2caro.net/read/benjamin-franklin%e2%80%99s-governing-values/#comments</comments>
		<pubDate>Sun, 17 Aug 2008 10:27:41 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Entries by my friends]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/08/17/benjamin-franklin%e2%80%99s-governing-values/</guid>
		<description><![CDATA[1. Temperance- Eat not to dullness, drink not to evaluation 2. Silence- Speak not but may benefit others or yourself; avoid trifling conversation 3. Order- Let all your things have their place; let each par of your business have its own time 4. Resolution- Resolve to perform what you ought; perform without fail what you [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<p>1. Temperance- Eat not to dullness, drink not to evaluation<br />
  2. Silence- Speak not but may benefit others or yourself; avoid trifling conversation<br />
  3. Order- Let all your things have their place; let each par of your business have its own time<br />
  4. Resolution- Resolve to perform what you ought; perform without fail what you resolve<br />
  5. Frugality- Make no expense but to do good for others and yourself; that is, waste nothing<br />
  6. Industry- Lose no time; be always employed in something useful; cut off all unnecessary actions<br />
  7. Sincerity- Use no hurtful deceit; think innocently and justly, and if you speak, speak accordingly<br />
  8. Justice- Wrong none by doing injuries, or omitting the benefits that are your duty<br />
  9. Moderation- Avoid extremes; forbear resenting injuries so much as you think you deserve<br />
  10. Cleanliness- Tolerate no uncleanliness in body, clothes, or habitation<br />
  11. Tranquility- Be not disturbed at trifles, or at accidents common or avoidable<br />
  12. Chastity- Rarely use venery but for health or offspring, never to dullness, weakness, or the injuries of your own or another’s peace or reputation</p>
</blockquote>
<p>Thanks to <em>complicated_girl</em> :p</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/benjamin-franklin%e2%80%99s-governing-values/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1984 Apple&#8217;s Macintosh Commercial</title>
		<link>http://link2caro.net/read/1984-apples-macintosh-commercial/</link>
		<comments>http://link2caro.net/read/1984-apples-macintosh-commercial/#comments</comments>
		<pubDate>Fri, 08 Aug 2008 10:56:44 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Others]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/08/08/1984-apples-macintosh-commercial/</guid>
		<description><![CDATA[Hị không thể nào khác được =))]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="src" value="http://www.youtube.com/v/OYecfV3ubP8&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/OYecfV3ubP8&amp;hl=en&amp;fs=1&amp;rel=0&amp;color1=0x006699&amp;color2=0x54abd6" allowfullscreen="true"></embed></object></p>
<p>Hị không thể nào khác được =))</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/1984-apples-macintosh-commercial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Away from blogging</title>
		<link>http://link2caro.net/read/away-from-blogging/</link>
		<comments>http://link2caro.net/read/away-from-blogging/#comments</comments>
		<pubDate>Sat, 05 Jul 2008 23:46:11 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/07/06/away-from-blogging/</guid>
		<description><![CDATA[Just a small note to tell all of you that there will be not any entry this month and blogging publicly is too public that now I prefer email or private entries Have a nice summer, dears and cheers!!!]]></description>
			<content:encoded><![CDATA[<p>Just a small note to tell all of you that there will be not any entry this month <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and blogging publicly is too public that now I prefer email or private entries <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Have a nice summer, dears and cheers!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/away-from-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advert SONY</title>
		<link>http://link2caro.net/read/advertisment-sony/</link>
		<comments>http://link2caro.net/read/advertisment-sony/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 21:43:26 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/06/19/advertisment-sony/</guid>
		<description><![CDATA[Advert SONY Just seen this on TV, would love to be there with you :&#8221;&#62;]]></description>
			<content:encoded><![CDATA[<p><b>Advert SONY</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="480" height="360" allowscriptaccess="always" allowfullscreen="true" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://caro.data.b1o9.com/video/pub-sony-mousse.flv&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><br /><a href="http://caro.data.b1o9.com/video/pub-sony-mousse.flv"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a></p>
<p>Just seen this on TV, would love to be there with you :&#8221;&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/advertisment-sony/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[iLuv] Hugger got pinched by Huggee</title>
		<link>http://link2caro.net/read/iluv-hugger-got-pinched-by-huggee/</link>
		<comments>http://link2caro.net/read/iluv-hugger-got-pinched-by-huggee/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 01:59:40 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=124</guid>
		<description><![CDATA[I Need You Tonight &#8211; Backstreet Boys I Need You Tonight - Backstreet BoysThis is a high quality song, so it might take little time to be downloaded and played. Here am I, There is She! It&#8217;s a long long, far far distance, however I can feel it as real as the pain I got [...]]]></description>
			<content:encoded><![CDATA[<p style="width:200;padding:5px;text-align:center">
<a href="http://www.ipernity.com/doc/link2caro/2207209">I Need You Tonight &#8211; Backstreet Boys</a><br />
<embed src="http://www.ipernity.com/mp/2207209.2486ac33.mp3.swf" type="application/x-shockwave-flash" wmode="transparent" width="" height="20"></embed></p>
<p><b>I Need You Tonight - Backstreet Boys</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/6/72/09/2207209.e6eb1a08.mp3?download=I%20Need%20You%20Tonight%20-%20Backstreet%20Boys.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/6/72/09/2207209.e6eb1a08.mp3?download=I%20Need%20You%20Tonight%20-%20Backstreet%20Boys.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
<p>Here am I, There is She! It&#8217;s a long long, far far distance, however I can feel it as real as the pain I got when got burnt by oil while cooking. :p</p>
<p>For the second time, I feel deep deep deep in the red&#8230;</p>
<p>Luv Sum1, Thanks for cheering me, thanks for being with me every moment, thanks for not having flirted me ( >:p ), thanks for your trust, and thanks for every other reason&#8230;</p>
<p>A bear hug is rough, but extremely and lovely tight  >:D<
<p style="width: 200; padding: 5px; text-align: center;">
<a href="http://www.ipernity.com/doc/link2caro/2207213">Only Love &#8211; Trademark</a><br />
<embed src="http://www.ipernity.com/mp/2207213.0bca25e4.mp3.swf" " type="application/x-shockwave-flash" wmode="transparent" width="" height="20"></embed><br />
<b>Only Love - Trademark</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/6/72/13/2207213.89441d7a.mp3?download=Only%20Love%20-%20Trademark.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/6/72/13/2207213.89441d7a.mp3?download=Only%20Love%20-%20Trademark.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/iluv-hugger-got-pinched-by-huggee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>9515 km away</title>
		<link>http://link2caro.net/read/9515-km-away/</link>
		<comments>http://link2caro.net/read/9515-km-away/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 10:02:20 +0000</pubDate>
		<dc:creator>Rec</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=238</guid>
		<description><![CDATA[Long time no english entry. Quite a lotsa things have happened to me since then. I did suffer various emotions&#8230;. despair, anger, disappointment, exhaustion, guilty and even the feeling of fear&#8230; Love is not a crime. And lovers are not criminals at all. I feared everything&#8230;and among that &#8220;everything&#8221;, love is the thing I feared [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://us.f6.yahoofs.com/blog/42f1bf56zd82ab014/5/__hr_/d012.jpg?mgQf6UIBgxPA5PyZ"></a><a href="http://files.link2caro.net/2008/06/d012.jpg" rel="lightbox[238]"></a></p>
<p style="text-align: center;"><img class="alignnone size-thumbnail wp-image-241 aligncenter" title="d012" src="http://files.link2caro.net/2008/06/d012-150x150.jpg" alt="" width="150" height="150" /></p>
<p><a href="http://files.link2caro.net/2008/06/d012.jpg" rel="lightbox[238]"></a>Long time no english entry.</p>
<p>Quite a lotsa things have happened to me since then.</p>
<p>I did suffer various emotions&#8230;. despair, anger, disappointment, exhaustion, guilty and even the feeling of fear&#8230;</p>
<p>Love is not a crime. And lovers are not criminals at all.</p>
<p>I feared everything&#8230;and among that &#8220;everything&#8221;, love is the thing I feared the most.<br />
Afraid to love and to be in love.</p>
<p>Afraid that I will continue sinking in a ocean of deja vu&#8230;of all the doubts n sorrows. Even when people just want to trust each other and bring each other happiness&#8230;their efforts are totally useless because God doesnt like life to be that simple. Ultimately, everything turns wrong. People keep on stabbing at each other with their love&#8230;and keep on hurting each other in many different ways. And&#8230;more fearful&#8230;without their awareness.</p>
<p>Love is something you dont need to express by ur words, but everyone can feel it.</p>
<p>Im now happy. Not considering if its a new happiness or old happiness. Im still happy.</p>
<p>You guys can point at me and yell the world &#8220;Slut&#8221;</p>
<p>To me, &#8220;trust&#8221; is everything I ask for in life. Once it&#8217;s gone away, it will never come back again.</p>
<p>When the world is all against and puts no trust in me, i know you&#8217;re there&#8230;with ur arms opening to me&#8230;</p>
<p>And im happy to have you believing in me&#8230;.</p>
<p>And im happy to see your smile staying on your face&#8230;.</p>
<p>And im happy to watch every single postures of you&#8230;</p>
<p>And im happy that its not the last time i hug you&#8230;</p>
<p>An unreal hug for you&#8230;</p>
<p>So peaceful, so comfortable, so nice&#8230;but still lacks something&#8230;you know what it is.</p>
<p>9515 km away..or even more&#8230;.i still feel your warmth surrounding me&#8230;and i hope you feel the same&#8230;</p>
<p>Love you,</p>
<p>Ur Rec</p>
<p><a></a></p>
<p><a></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/9515-km-away/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>No fear in the dark</title>
		<link>http://link2caro.net/read/no-fear-in-the-dark/</link>
		<comments>http://link2caro.net/read/no-fear-in-the-dark/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 12:01:34 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/06/11/no-fear-in-the-dark/</guid>
		<description><![CDATA[Just bcoz someone is watching on you]]></description>
			<content:encoded><![CDATA[<p>Just bcoz someone is watching on you</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/no-fear-in-the-dark/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>07/06/2008</title>
		<link>http://link2caro.net/read/07062008/</link>
		<comments>http://link2caro.net/read/07062008/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 19:51:26 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/06/07/07062008/</guid>
		<description><![CDATA[Theo ông Nguyên, việc thu phí đối với giao dịch rút tiền mặt và chuyển khoản qua ATM là cần thiết nhằm hỗ trợ ngân hàng trong việc phát triển dịch vụ Hehe thế này thì sao dân nó chịu để tiền trong tài khoản thẻ chứ ) không hiểu HSBC VN thì sao nhể [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Theo ông Nguyên, việc thu phí đối với giao dịch rút tiền mặt và chuyển khoản qua ATM là cần thiết nhằm hỗ trợ ngân hàng trong việc phát triển dịch vụ</p></blockquote>
<p>Hehe thế này thì sao dân nó chịu để tiền trong tài khoản thẻ chứ <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) không hiểu HSBC VN thì sao nhể :-/</p>
<p>Tự nhiên năm nay ko biết có Euro, &#8216;tí vào, ronaldo ch. vừa sút phạt&#8217; (vừa viết vừa nghe TV), tự nhiên hôm qua lên Coca-Cola Fr xem thì thấy cái ảnh này mới biết hôm nay có Euro <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  lần đầu tiên thờ ơ với 1 giải bóng đá lớn, cũng tại không có Three lions nữa <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  bùn nhém <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><a href="http://www.flickr.com/photos/link2caro/2557958556/" title="qui tu hug by CA RO, on Flickr"><img src="http://farm4.static.flickr.com/3165/2557958556_a436f00f0b.jpg" width="500" height="355" alt="qui tu hug" /></a></p>
<p>Mà sao ghét đọc báo Việt Nam thế nhỉ, viết không bao giờ theo formal vietnamese <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  em có thói quen đọc báo, văn bản thì phải là văn formal, đọc báo Việt Nam, nhiều lúc như đọc blog, nhiều khi chán chả mún đọc nữa <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Đi nấu ăn đây, <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  dễ trận Bồ Đào Nha &#8211; Thổ Nhĩ Kì này hòa quá <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p><b>Three Lions</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/6/15/64/2151564.30bb7e33.mp3?download=Three%20Lions%20-%20Baddiel%20Skinner%20and%20the%20Lightning%20Seeds.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/6/15/64/2151564.30bb7e33.mp3?download=Three%20Lions%20-%20Baddiel%20Skinner%20and%20the%20Lightning%20Seeds.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/07062008/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CA RO, the Hugger and Huggee&#8230;</title>
		<link>http://link2caro.net/read/ca-ro-the-hugger-and-huggee/</link>
		<comments>http://link2caro.net/read/ca-ro-the-hugger-and-huggee/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 17:10:57 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/06/06/ca-ro-the-hugger-and-huggee/</guid>
		<description><![CDATA[Finished my academic year, finished in good and bad mood at the same time, good mood because I sang for the first time in my life, bad mood is accounted for messy troubles that need taken care of, and don&#8217;t know why recently I have troubles in communicating with people Troubles mean life, life means [...]]]></description>
			<content:encoded><![CDATA[<p>Finished my academic year, finished in good and bad mood at the same time, good mood because I sang for the first time in my life, bad mood is accounted for messy troubles that need taken care of, and don&#8217;t know why recently I have troubles in communicating with people <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  Troubles mean life, life means troubles, run away is so so pitiful for me to take that choice, so face those matters of life, flee them away b-)</p>
<p>Lately, I feel &#8220;a bit&#8221; Hanoi-sick and need hugs, this morning, I thought of these words: hugger and huggee :p I want to be both &gt;:) yeah I know it so so greedy of me  &gt;:d&lt;</p>
<p>Anyone hugs me? Meow, being a cat, a slim cat, a cat snuggling into his duvet, curl up and feel the matter of comfort :&#8221;&gt; meowww</p>
<p>Go in town tomorow for a lone hanging out, on a sunny summer day, hope so, it rained and was gloomy a lot this week <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  a bit cold in early morning, try to be a good cat, sleep at the right time, I have not slept at night since February, excluding the vacation of Paque, as known as Easter in other countries I think, not sure.</p>
<p>CA RO, the Hugger and Huggee&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/ca-ro-the-hugger-and-huggee/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>All I want to do is find a way back into love</title>
		<link>http://link2caro.net/read/all-i-want-to-do-is-find-a-way-back-into-love/</link>
		<comments>http://link2caro.net/read/all-i-want-to-do-is-find-a-way-back-into-love/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 02:01:02 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/06/06/all-i-want-to-do-is-find-a-way-back-into-love/</guid>
		<description><![CDATA[Way back into loveThis is a high quality song, so it might take little time to be downloaded and played. 3 hours today and 2 hours on Tuesday and Summer is out there Wanna be home home sweet home but don&#8217;t think I could get there this summer :-&#60; Cuddle up and Snuggle mean??? Yesterday, [...]]]></description>
			<content:encoded><![CDATA[<p><b>Way back into love</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/6/12/58/2141258.5ebf3ecf.mp3?download=Way%20Back%20Into%20Love%20-%20Hugh%20Grant%20%26amp%3B%20Drew%20Barrymore.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/6/12/58/2141258.5ebf3ecf.mp3?download=Way%20Back%20Into%20Love%20-%20Hugh%20Grant%20%26amp%3B%20Drew%20Barrymore.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
<p>3 hours today and 2 hours on Tuesday and Summer is out there <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Wanna be home <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  home sweet home but don&#8217;t think I could get there this summer :-&lt;</p>
<p>Cuddle up and Snuggle mean???</p>
<p>Yesterday, had nearly 2 hours so comfortable in my messy bed, long time not having that feelings, so so lovable&#8230; Uhm Yesterday, went to the canteen for all meals except, of course, the breakfast, it was not top at all <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /> </p>
<p><b>Winter in my heart - Befour</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/6/13/10/2141310.98468d94.mp3?download=Winter%20in%20my%20heart%20-%20Befour.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/6/13/10/2141310.98468d94.mp3?download=Winter%20in%20my%20heart%20-%20Befour.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
<p><b>How can I not love you - Joy Enriquez</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/6/13/11/2141311.b0da6b3f.mp3?download=How%20can%20I%20not%20love%20you%20-%20Joy%20Enriquez.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/6/13/11/2141311.b0da6b3f.mp3?download=How%20can%20I%20not%20love%20you%20-%20Joy%20Enriquez.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/all-i-want-to-do-is-find-a-way-back-into-love/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bad shape</title>
		<link>http://link2caro.net/read/bad-shape/</link>
		<comments>http://link2caro.net/read/bad-shape/#comments</comments>
		<pubDate>Tue, 03 Jun 2008 05:04:43 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=219</guid>
		<description><![CDATA[4 days, but can&#8217;t no force left, no motivation left, nothing left, just empty, even a small thing can&#8217;t do, what could I do then? Live for today not for tomorrow&#8230; &#8212; Air Supply - Two less lonely people in the worldThis is a high quality song, so it might take little time to be [...]]]></description>
			<content:encoded><![CDATA[<p>4 days, but can&#8217;t no force left, no motivation left, nothing left, just empty, even a small thing can&#8217;t do, what could I do then?</p>
<p>Live for today not for tomorrow&#8230;</p>
<p>&#8212;</p>
<p><b>Air Supply - Two less lonely people in the world</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/6/64/66/2126466.30b651cc.mp3?download=Air%20Supply%20-%20Two%20Less%20Lonely%20People%20in%20the%20Wor.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/6/64/66/2126466.30b651cc.mp3?download=Air%20Supply%20-%20Two%20Less%20Lonely%20People%20in%20the%20Wor.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/bad-shape/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MỆT MỎI</title>
		<link>http://link2caro.net/read/met-moi/</link>
		<comments>http://link2caro.net/read/met-moi/#comments</comments>
		<pubDate>Sun, 01 Jun 2008 02:51:21 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=217</guid>
		<description><![CDATA[&#8230; 3 dấu chấm và &#8230; 3 nữa rồi &#8230; thành ra 9, need off-stress time till 9/6  Oh my god, lâu lắm rồi mới bị một lần không giữ được bình tĩnh thế này, at least thì từ tháng 10 năm ngoái. mệt mỏi, cáu người khác, điên rồi pằng chíu]]></description>
			<content:encoded><![CDATA[<p>&#8230; 3 dấu chấm và &#8230; 3 nữa rồi &#8230; thành ra 9, need off-stress time till 9/6 </p>
<p>Oh my god, lâu lắm rồi mới bị một lần không giữ được bình tĩnh thế này, at least thì từ tháng 10 năm ngoái. mệt mỏi, cáu người khác, điên rồi <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  pằng chíu</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/met-moi/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hà Nội mới</title>
		<link>http://link2caro.net/read/ha-noi-moi/</link>
		<comments>http://link2caro.net/read/ha-noi-moi/#comments</comments>
		<pubDate>Thu, 29 May 2008 12:02:29 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=215</guid>
		<description><![CDATA[Địa giới Hà Nội chính thức mở rộng từ 1/8 Chiều 29/5, với 92% đại biểu tán thành, Quốc hội đã thông qua Nghị quyết điều chỉnh địa giới hành chính thủ đô Hà Nội và các tỉnh. Để có thêm thời gian chuẩn bị, nghị quyết có hiệu lực từ 1/8, lùi một tháng [...]]]></description>
			<content:encoded><![CDATA[<blockquote>
<p class="Title">Địa giới Hà Nội chính thức mở rộng từ 1/8</p>
<p class="Lead">Chiều 29/5, với 92% đại biểu tán thành, Quốc hội đã thông qua Nghị quyết điều chỉnh địa giới hành chính thủ đô Hà Nội và các tỉnh. Để có thêm thời gian chuẩn bị, nghị quyết có hiệu lực từ 1/8, lùi một tháng so với tờ trình trước đó của Chính phủ.</p>
<p class="Normal">Theo dự thảo Nghị quyết, thủ đô Hà Nội sẽ rộng gấp 3,6 diện tích hiện nay, bao gồm: thành phố Hà Nội hiện tại, toàn bộ tỉnh Hà Tây, huyện Mê Linh (Vĩnh Phúc) và 4 xã của huyện Lương Sơn (Hòa Bình). Tổng diện tích của thủ đô mới là 334.470 ha.</p>
</blockquote>
<p class="Normal">Thế này được gọi là theo ý dân đây, haizzz, 930km² lên 3345km² hị to vãi ạ&#8230; 1 tháng lùi, 1 tháng hơn được cái gì không nhể, lùi cho có hình thức là chuẩn bị  =))  có lùi lại 1 năm cũng chả đủ :p</p>
<p class="Normal">Lần tới về Việt Nam là về với thủ đô mới, với Hà Nội mới, ứ thích, thích Hà Nội xưa hơn chả bít sao nữa, cái dự án vùng thủ đô còn nghe hay hay hơn là cái việc mở rộng chính Hà Nội này <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   :((</p>
<blockquote>
<p class="Normal">Với phương án 1, Hà Nội có một không gian đủ lớn, đủ quỹ đất thuận lợi để xây dựng thủ đô với một không gian đô thị hiện đại bên cạnh một đô thị lịch sử, cổ kính có điều kiện thuận lợi để xây dựng thế trận vững chắc về quốc phòng, an ninh và không làm xáo trộn nhiều về địa giới hành chính đối với các tỉnh khác. Thủ đô mới sẽ nằm trong tốp 17 thành phố, thủ đô lớn của thế giới. Một km2 sẽ có mật độ dân số 3.500-4.000 người, tương đương với Paris (Pháp), London (Anh), Tokyo (Nhật Bản), Bắc Kinh (Trung Quốc).</p>
</blockquote>
<p class="Normal">Nguồn Wikipedia:</p>
<blockquote>
<p class="Normal">Paris:</p>
<ul>
<li>Diện tích: 86,9km²</li>
<li>Mật độ: 22948ng/km² &#8211; 2006</li>
<li>Diện tích vùng đô thị: 2723km²</li>
<li>Mật độ: 3542mn/km² &#8211; 2006</li>
</ul>
<div>London:</div>
<div>
<ul>
<li>Diện tích: 2,6km²</li>
<li>Mật độ: 3000ng/km² &#8211; 2006</li>
<li>Diện tích vùng đô thị: 1577km²</li>
<li>Mật độ: 4761ng/km² &#8211; 2006</li>
</ul>
<div>Tokyo:</div>
<div>
<ul>
<li>Diện tích: 2187km²</li>
<li>Mật độ: 5796ng/km² &#8211; 2007</li>
</ul>
</div>
</div>
</blockquote>
<div>Càng rộng càng khó quản chứ nhỉ, mà như vậy là 3344km² đấy có mỗi 1 cái Hội đồng thành phố đúng không nhỉ? Không rõ đề án thế nào cả <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  thông tin báo chí Việt Nam thì như mò kim đáy đại dương.</div>
<p style="text-align: center;"><a title="Paris Night by CA RO, on Flickr" href="http://www.flickr.com/photos/link2caro/2533886172/"><img class="aligncenter" src="http://farm3.static.flickr.com/2244/2533886172_53076830c6.jpg" alt="Paris Night" width="500" height="172" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/ha-noi-moi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quân phục mới</title>
		<link>http://link2caro.net/read/quan-phuc-moi/</link>
		<comments>http://link2caro.net/read/quan-phuc-moi/#comments</comments>
		<pubDate>Thu, 29 May 2008 06:49:35 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=214</guid>
		<description><![CDATA[Hôm nay tự nhiên hứng lên xem Thời sự trên VTV, tự nhiên thấy các bác đại biểu quốc hội là bộ đội mặc áo màu lạ hoắc, google mấy cái mới bít từ 10 ngày nay ở nhà đổi màu quân phục, xanh thẫm. Mũ brevet cho mùa hè :p hix nó ko hiện [...]]]></description>
			<content:encoded><![CDATA[<p>Hôm nay tự nhiên hứng lên xem Thời sự trên VTV, tự nhiên thấy các bác đại biểu quốc hội là bộ đội mặc áo màu lạ hoắc, google mấy cái mới bít từ 10 ngày nay ở nhà đổi màu quân phục, xanh thẫm.</p>
<p>Mũ brevet cho mùa hè :p</p>
<p>hix nó ko hiện ra ảnh <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />   -  Nhìn bốt các chị hơi ghê, ứ post lên :p</p>
<p><a href="http://files.link2caro.net/2008/05/quanphuc7.jpg" rel="lightbox[214]"><img class="alignnone size-thumbnail wp-image-213" title="quanphuc7" src="http://files.link2caro.net/2008/05/quanphuc7.jpg" alt="" width="125" height="96" /></a><a href="http://files.link2caro.net/2008/05/quanphuc1.jpg" rel="lightbox[214]"><img class="alignnone size-thumbnail wp-image-208" title="quanphuc1" src="http://files.link2caro.net/2008/05/quanphuc1.jpg" alt="" width="69" height="96" /></a></p>
<p><a href="http://files.link2caro.net/2008/05/quanphuc7.jpg" rel="lightbox[214]"></a><a href="http://files.link2caro.net/2008/05/quanphuc6.jpg" rel="lightbox[214]"><img class="alignnone size-thumbnail wp-image-212" title="quanphuc6" src="http://files.link2caro.net/2008/05/quanphuc6.jpg" alt="" width="52" height="96" /></a><a href="http://files.link2caro.net/2008/05/quanphuc3.jpg" rel="lightbox[214]"><img class="alignnone size-thumbnail wp-image-210" title="quanphuc3" src="http://files.link2caro.net/2008/05/quanphuc3.jpg" alt="" width="51" height="96" /></a><a href="http://files.link2caro.net/2008/05/quanphuc2.jpg" rel="lightbox[214]"><img class="alignnone size-thumbnail wp-image-209" title="quanphuc2" src="http://files.link2caro.net/2008/05/quanphuc2.jpg" alt="" width="60" height="96" /></a><a href="http://files.link2caro.net/2008/05/quanphuc4.jpg" rel="lightbox[214]"><img class="alignnone size-thumbnail wp-image-211" title="quanphuc4" src="http://files.link2caro.net/2008/05/quanphuc4.jpg" alt="" width="41" height="96" /></a></p>

]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/quan-phuc-moi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Limit IP Connection + Apache</title>
		<link>http://link2caro.net/read/limit-ip-connection-apache/</link>
		<comments>http://link2caro.net/read/limit-ip-connection-apache/#comments</comments>
		<pubDate>Tue, 27 May 2008 02:15:42 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Coding]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=205</guid>
		<description><![CDATA[http://dominia.org/djao/limit/win32/mod_ipconn.zip httpd.conf LoadModule status_module modules/mod_status.so ExtendedStatus On LoadModule limitipconn_module modules/mod_limitipconn.dll &#60;IfModule mod_limitipconn.c&#62; &#60;Location /&#62; MaxConnPerIP 3 NoIPLimit images/* &#60;/Location&#62; &#60;Location /mp3&#62; MaxConnPerIP 1 OnlyIPLimit audio/mpeg video &#60;/Location&#62; &#60;/IfModule&#62;     cd /usr/src wget http://dominia.org/djao/limit/mod_li&#8230;nn-0.04.tar.gz tar xzvf mod_limitipconn-0.04.tar.gz cd mod_limitipconn-0.04 pico Makefile find the line that reads APXS=apxs[/b] change that to  APXS=/usr/local/apache/bin/apxs press cntrl O to save then cntrl X  [...]]]></description>
			<content:encoded><![CDATA[<p>http://dominia.org/djao/limit/win32/mod_ipconn.zip</p>
<p>httpd.conf<br />
LoadModule status_module modules/mod_status.so<br />
ExtendedStatus On<br />
LoadModule limitipconn_module modules/mod_limitipconn.dll</p>
<p>&lt;IfModule mod_limitipconn.c&gt;<br />
&lt;Location /&gt;<br />
MaxConnPerIP 3<br />
NoIPLimit images/*<br />
&lt;/Location&gt;<br />
&lt;Location /mp3&gt;<br />
MaxConnPerIP 1<br />
OnlyIPLimit audio/mpeg video<br />
&lt;/Location&gt;<br />
&lt;/IfModule&gt;</p>
<p> </p>
<p> </p>
<p><strong>cd /usr/src</strong><br />
<strong>wget <a href="http://dominia.org/djao/limit/mod_limitipconn-0.04.tar.gz" target="_blank">http://dominia.org/djao/limit/mod_li&#8230;nn-0.04.tar.gz</a></strong><br />
<strong>tar xzvf mod_limitipconn-0.04.tar.gz</strong><br />
<strong>cd mod_limitipconn-0.04</strong></p>
<p><strong>pico Makefile</strong><br />
find the line that reads APXS=apxs[/b]<br />
change that to <br />
<strong>APXS=/usr/local/apache/bin/apxs</strong></p>
<p>press <strong>cntrl O</strong> to save<br />
then <strong>cntrl X </strong></p>
<p>// if your locations to apxs is different<br />
<strong>locate apxs</strong> and copy the path<br />
then paste that in<br />
//</p>
<p><strong>make</strong><br />
<strong>make install</strong></p>
<p><strong>service httpd restart</strong></p>
<p><strong>pico -w /etc/httpd/conf/httpd.conf</strong></p>
<p><strong>locate ExtendedStatus</strong><br />
Make sure ExtendedStatus is on and without the comment at the start</p>
<p>and add this line to every virtual directory you want to limit<br />
or add it once to the main directory to limit all</p>
<p><strong>&lt;IfModule mod_limitipconn.c&gt;<br />
&lt;Location /somewhere&gt;<br />
MaxConnPerIP 3<br />
# exempting images from the connection limit is often a good<br />
# idea if your web page has lots of inline images, since these<br />
# pages often generate a flurry of concurrent image requests<br />
NoIPLimit image/*<br />
&lt;/Location&gt;</p>
<p>&lt;Location /mp3&gt;<br />
MaxConnPerIP 1<br />
# In this case, all MIME types other than audio/<a class="tfTextLink" href="javascript:void(0)">mpeg</a> and <a class="tfTextLink" href="javascript:void(0)">video</a>*<br />
# are exempt from the limit check<br />
OnlyIPLimit audio/mpeg <a class="tfTextLink" href="javascript:void(0)">video</a><br />
&lt;/Location&gt;<br />
&lt;/IfModule&gt;</strong></p>
<p>press <strong>cntrl O</strong> to save<br />
then <strong>cntrl X </strong><br />
then <strong>service httpd restart</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/limit-ip-connection-apache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Orange, go for orange!!!</title>
		<link>http://link2caro.net/read/orange-go-for-orange/</link>
		<comments>http://link2caro.net/read/orange-go-for-orange/#comments</comments>
		<pubDate>Mon, 26 May 2008 20:25:00 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=202</guid>
		<description><![CDATA[Filled my blog with a bit orange Just make some photos for my contacts  &#62;:D&#60; And just add a Category called Entries by my subscribers :p don&#8217;t know if I would have any entry :p &#62;:D&#60; Back to work &#8212; I now manage 3 servers for galanime.com - this site dedicated itself to the Anime World it has [...]]]></description>
			<content:encoded><![CDATA[<p>Filled my blog with a bit orange <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Just make some photos for my contacts  &gt;:D&lt;</p>
<p>And just add a Category called Entries by my subscribers :p don&#8217;t know if I would have any entry :p &gt;:D&lt;</p>
<p>Back to work <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p>
<p>&#8212;</p>
<p>I now manage 3 servers for <a href="http://galanime.com" target="_blank">galanime.com</a> - this site dedicated itself to the Anime World <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  it has online animes but for now it&#8217;s still in beta phase. Check it out at <a href="http://online.galanime.com" target="_blank">online.galanime.com</a></p>
<p>And about TechInfo VN, 4 servers are in use now with the prefixes w1,w2,w3,w4. Main panel for posting is on w2 and it&#8217;s equipped a database-check, if the main database is down, posting function is automatically turned off. There is also a slave database for TechInfo VN, if the main database is down, the site itself switches for the slave database and keeps the whole site online. This is a big progress for TechInfo VN <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  , offline time is reduced at maximum  :-&gt;  b-)</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/orange-go-for-orange/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Lindt Peanut Butter Truffles</title>
		<link>http://link2caro.net/read/lindt-peanut-butter-truffles/</link>
		<comments>http://link2caro.net/read/lindt-peanut-butter-truffles/#comments</comments>
		<pubDate>Thu, 22 May 2008 23:43:49 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/05/23/lindt-peanut-butter-truffles/</guid>
		<description><![CDATA[     Lindt Peanut Butter Truffles by CA RO So so touché, received this small parcel today Just talked about that not long time ago, not more than two weeks right? I was joking that she should send me some US-culture chocolate, since Lindt is Swiss and in EU there is no stuff called Lindor Peanut [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"><a title="photo sharing" href="http://www.flickr.com/photos/link2caro/2514838890/"><img style="border: solid 2px #000000;" src="http://farm4.static.flickr.com/3152/2514838890_d4cc90c2b9_m.jpg" alt="" /></a>    <br />
<span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/link2caro/2514838890/">Lindt Peanut Butter Truffles</a> by <a href="http://www.flickr.com/people/link2caro/">CA RO</a><br />
</span></p>
</div>
<p style="text-align: justify;">So so touché, received this small parcel <img src='http://link2caro.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  today<br />
Just talked about that not long time ago, not more than two weeks right? I was joking that she should send me some US-culture chocolate, since Lindt is Swiss and in EU there is no stuff called Lindor Peanut Butter-flavored Truffles, there are only milk and dark Truffles by Lindt at least in France and the UK.</p>
<p style="text-align: justify;">Talking about chocolate and mentioned about the industrial chocolates of the America &#8211; Hershey&#8217;s, especially Kisses, I heard a lot about that, imagined it&#8217;d be wrapped, decorated in a lovely tiny box, but no, just like a plastic bag like a bag for candies. Anyway it&#8217;s still the famous Kisses that I heard about for a long time and now I can taste them (Kiss<strong>es</strong>)</p>
<p style="text-align: justify;">Thanks a lot lot, you are so cute, my days were brighten up when I found out that the package come from the USA :p Thanks and thanks.</p>
<p style="text-align: justify;">(Don&#8217;t dare to eat <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  so so expens.)  &gt;:D&lt; hugs</p>
<p style="text-align: center;"><a title="Kisses - Hershey's by CA RO, on Flickr" href="http://www.flickr.com/photos/link2caro/2514839110/"><img class="aligncenter" src="http://farm4.static.flickr.com/3214/2514839110_3e3981dec9.jpg" alt="Kisses - Hershey's" width="500" height="375" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/lindt-peanut-butter-truffles/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Superman</title>
		<link>http://link2caro.net/read/superman/</link>
		<comments>http://link2caro.net/read/superman/#comments</comments>
		<pubDate>Tue, 20 May 2008 12:52:45 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=199</guid>
		<description><![CDATA[Superman - Ronan KeatingThis is a high quality song, so it might take little time to be downloaded and played. I am not superman but I love you best I can I am no superman but I&#8217;ll always be your man Every Woman in the World - Air SupplyThis is a high quality song, so [...]]]></description>
			<content:encoded><![CDATA[<p><b>Superman - Ronan Keating</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/6/07/45/2040745.a08ae0fe.mp3?download=Superman%20-%20Ronan%20Keating.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/6/07/45/2040745.a08ae0fe.mp3?download=Superman%20-%20Ronan%20Keating.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
<p>I am not superman but I love you best I can<br />
I am no superman but I&#8217;ll always be your man</p>
<p><b>Every Woman in the World - Air Supply</b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/6/07/87/2040787.7477959a.mp3?download=Every%20Woman%20in%20the%20World%20-%20Air%20Supply.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/6/07/87/2040787.7477959a.mp3?download=Every%20Woman%20in%20the%20World%20-%20Air%20Supply.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/superman/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>:-s</title>
		<link>http://link2caro.net/read/vietnam/</link>
		<comments>http://link2caro.net/read/vietnam/#comments</comments>
		<pubDate>Fri, 16 May 2008 00:49:12 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=198</guid>
		<description><![CDATA[Mấy hôm ni đọc báo thấy tình hình ở nhà có vẻ ghê quá cơ, chả biết sẽ ra sao :-ss không loạn thì cũng hơi lạ :-ss Hôm qua là một ngày awful, không hiểu mình bị sao nữa :-ss About my neck pain, the doctor kind of gives up, he sent me to [...]]]></description>
			<content:encoded><![CDATA[<p>Mấy hôm ni đọc báo thấy tình hình ở nhà có vẻ ghê quá cơ, chả biết sẽ ra sao :-ss không loạn thì cũng hơi lạ :-ss</p>
<p>Hôm qua là một ngày awful, không hiểu mình bị sao nữa :-ss</p>
<p>About my neck pain, the doctor kind of gives up, he sent me to a neurology doctor - neurologist, appointment in two months, it&#8217;s how the health care system works in France :-&lt;</p>
<p>&#8212;</p>
<p>12:53</p>
<p>Đoán sai rồi, 16/5 gọi điện lấy hẹn, hẹn vào 16h15 ngày 19/8 (Giải phóng thủ đô) =&gt; 3 tháng 3 ngày =)) thế đấy Pháp đáng yêu vãi.</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/vietnam/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Be asked for 3 cents</title>
		<link>http://link2caro.net/read/be-asked-for-3-cents/</link>
		<comments>http://link2caro.net/read/be-asked-for-3-cents/#comments</comments>
		<pubDate>Wed, 14 May 2008 20:41:13 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=197</guid>
		<description><![CDATA[Hehe, hôm ni đi chợ, vừa vào phát có con bé tầm 10 tuổi nhìn thấy  mình hỏi xin 10 cents, tại thiếu tiền mua kem hơi choáng, tưởng nghe nhầm 8-} sau đó hỏi lại nó vẫn nói đúng thế, con bạn nó chạy ra bảo, 3 cents thôi =)) đến lúc đấy thì [...]]]></description>
			<content:encoded><![CDATA[<p>Hehe, hôm ni đi chợ, vừa vào phát có con bé tầm 10 tuổi nhìn thấy  mình hỏi xin 10 cents, tại thiếu tiền mua kem <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  hơi choáng, tưởng nghe nhầm 8-} sau đó hỏi lại nó vẫn nói đúng thế, con bạn nó chạy ra bảo, 3 cents thôi =)) đến lúc đấy thì =)) rồi lại còn được cảm ơn rối rít =)) trẻ con đáng yêu thật, lớn lên toàn xin nhiều thôi chứ chả ai thèm xin 3 cents, 10 cents cho có  khi bị lườm ý <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) Thích trẻ con, thế mà chửa được làm bố <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> (</p>
<p>Đi học đây, từ hôm ni online = mobile 20h-8h, đã bán cái Samsung mua 25€ bán lại với giá 41€ <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  hehe con bạn mà mình mua lại nó biết nó ghét mình lắm ý =)) giờ lại quay lại em MotoFone, có khi kí hợp đồng mới, chứ giữ số mà đổi máy thì được có 20€ refund, 2 năm loyalty = 20€, máy mới thì tầm 100-150€ refund =)) chán bọn này, chỉ tại ko muốn chuyển mạng khác thôi, chứ chuyển mạng khác làm cái hợp động với bọn mới chuyển số cũ sang thì vẫn được máy giá rẻ, hay là đổi dùng 1 năm nhỉ <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  nhưng em thích Orange <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>What should I do?  :-??</p>
<p> </p>
<p>&#8212;</p>
<p>P.S: hôm nay mình chính thức tuyên bố mình bị dị ứng café, uống xong 1 cái mắt lim dim <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  ko thể hiểu nổi luôn, hôm ni mua 1kg café, và 200g instant one,  hơn 1kg bánh biscuit, chuẩn bị ôn thi đấy =))</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/be-asked-for-3-cents/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>S-M-I-L-E</title>
		<link>http://link2caro.net/read/s-m-i-l-e/</link>
		<comments>http://link2caro.net/read/s-m-i-l-e/#comments</comments>
		<pubDate>Mon, 12 May 2008 05:11:55 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=193</guid>
		<description><![CDATA[Cười một cái chào ngày mới, tuần mới Have a great and easy week!]]></description>
			<content:encoded><![CDATA[<p>Cười một cái chào ngày mới, tuần mới <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Have a great and easy week!</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/s-m-i-l-e/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thời tiết này thì hết ý rồi còn gì</title>
		<link>http://link2caro.net/read/heading-to-not/</link>
		<comments>http://link2caro.net/read/heading-to-not/#comments</comments>
		<pubDate>Thu, 08 May 2008 00:25:35 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=159</guid>
		<description><![CDATA[2 ngày rưỡi ở Nott trời đẹp như gì, vừa đi phát trời đây mưa, đi về phát Nott mưa =)) tèn tén ten nhưng mà dự báo của bọn bên này sai suốt ngày, thời tiết bên này nó swing hơn việt nam đang sợ nóng mấy hni ngồi nhà toát mồ hôi sợ [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://files.link2caro.net/2008/05/meteo-5808.jpg" rel="lightbox[159]"><img class="alignnone size-medium wp-image-158 aligncenter" title="meteo-5808" src="http://files.link2caro.net/2008/05/meteo-5808.jpg" alt="" width="388" height="263" /></a></p>
<p style="text-align: left;">2 ngày rưỡi ở Nott trời đẹp như gì, vừa đi phát trời đây mưa, đi về phát Nott mưa =)) tèn tén ten nhưng mà dự báo của bọn bên này sai suốt ngày, thời tiết bên này nó swing hơn việt nam <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p style="text-align: left;"> <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  đang sợ nóng <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  mấy hni ngồi nhà toát mồ hôi <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  sợ lắm <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/heading-to-not/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How was your day?</title>
		<link>http://link2caro.net/read/how-was-your-day/</link>
		<comments>http://link2caro.net/read/how-was-your-day/#comments</comments>
		<pubDate>Mon, 05 May 2008 01:30:01 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=150</guid>
		<description><![CDATA[&#8220;It was fine&#8221;, answered I After an hour of wrestling with the Orange UK customer service so as to register my debit card to my UK n°. Called with my handset and call from Skype. ( He asked me what language I speak, that means I speak too badly English ( but he cannot speak [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>&#8220;It was fine&#8221;, answered I</p></blockquote>
<p>After an hour of wrestling with the Orange UK customer service so as to register my debit card to my UK n°. Called with my handset and call from Skype. <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( He asked me what language I speak, that means I speak too badly English <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( but he cannot speak French =)) so what did ask me that question? to speak in German or Spanish? or even better Vietnamese :p</p>
<p>Love Orange FR, don&#8217;t like Orange UK, don&#8217;t know why I stick with Orange UK anyway, because it is a French corp. ?</p>
<p>btw there is only a section of Top-Up that works at night =)) to make money, no any other reason possible =))</p>
<p>&#8212;</p>
<p>Fixed that bug, my bad, I did not put time in checking it all possibilities :( sorry, I did not mean, really <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>I will get an X660 &#8211; Samsung tomorow from a friend of mine for the UK n°</p>
<p>Many things to do tomorow, hi-zz</p>
<p>&#8212;</p>
<p>The entries in Cooking are not published on the main page, you can only see it in the Cooking section. (lately I use to much English, try to get my English reflection back, when I say numbers I often mistake them with French, the letters H, G, J too)</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/how-was-your-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Worries nibble my heart!</title>
		<link>http://link2caro.net/read/worries-nibble-my-heart/</link>
		<comments>http://link2caro.net/read/worries-nibble-my-heart/#comments</comments>
		<pubDate>Sat, 03 May 2008 16:04:59 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=148</guid>
		<description><![CDATA[&#8230;..]]></description>
			<content:encoded><![CDATA[<p>&#8230;..</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/worries-nibble-my-heart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A homemade healthy dinner</title>
		<link>http://link2caro.net/read/a-homemade-healthy-dinner/</link>
		<comments>http://link2caro.net/read/a-homemade-healthy-dinner/#comments</comments>
		<pubDate>Thu, 01 May 2008 20:14:46 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=147</guid>
		<description><![CDATA[Start my day with this Today I eat almost only vegetable :&#8221;> Starter: Creamy mushroom sauce (with red wine) Main Course: César Salad (with fried chicken breast) And a glass of red white (2000 &#8211; Bordeaux) far better than the two bottles drank in a restaurant in London last week. Love Bordeaux red wine&#8230; (Fortunately [...]]]></description>
			<content:encoded><![CDATA[<p>Start my day with this<br />
<a href="http://www.flickr.com/photos/link2caro/2457716786/" title="Coffee by CA RO, on Flickr"><img src="http://farm4.static.flickr.com/3138/2457716786_da9be228e3.jpg" width="500" height="375" alt="Coffee" /></a></p>
<p>Today I eat almost only vegetable :&#8221;></p>
<p>Starter: Creamy mushroom sauce (with red wine)<br />
<a href="http://www.flickr.com/photos/link2caro/2457717406/" title="Creamy Mushroom Sauce by CA RO, on Flickr"><img src="http://farm3.static.flickr.com/2205/2457717406_7c488526af.jpg" width="500" height="375" alt="Creamy Mushroom Sauce" /></a></p>
<p>Main Course: César Salad (with fried chicken breast)<br />
<a href="http://www.flickr.com/photos/link2caro/2457768594/" title="César Salad by CA RO, on Flickr"><img src="http://farm4.static.flickr.com/3127/2457768594_e37917301a.jpg" width="500" height="375" alt="César Salad" /></a></p>
<p>And a glass of red white (2000 &#8211; Bordeaux) far better than the two bottles drank in a restaurant in London last week. Love Bordeaux red wine&#8230;</p>
<p>(Fortunately I did not sell my old camera <img src='http://link2caro.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  )</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/a-homemade-healthy-dinner/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creamy Mushroom Sauce</title>
		<link>http://link2caro.net/read/creamy-mushroom-sauce/</link>
		<comments>http://link2caro.net/read/creamy-mushroom-sauce/#comments</comments>
		<pubDate>Thu, 01 May 2008 12:58:21 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Appetizer]]></category>
		<category><![CDATA[Cooking]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=146</guid>
		<description><![CDATA[<span class="stdtxt10"><strong>Ingredients (2 pers): </strong></span>

- 500g-600g mushroom
- 100ml white wine (optional)
- 150ml liquid cream
- 1 red onion (or yellow)
- 2 cloves of garlic
- 2 spoons of wheat flour (if no wine used, 1 spoon will do)
- oil, salt, pepper and paprika
- fine herbs (chive, basil, parsley, estragon...)
- 6 toasts
]]></description>
			<content:encoded><![CDATA[<p><span class="stdtxt10"><strong>Ingredients (2 pers): </strong></span></p>
<p>- 500g-600g mushroom<br />
- 100ml white wine (optional)<br />
- 150ml liquid cream<br />
- 1 red onion (or yellow)<br />
- 2 cloves of garlic<br />
- 2 spoons of wheat flour (if no wine used, 1 spoon will do)<br />
- oil, salt, pepper and paprika<br />
- fine herbs (chive, basil, parsley, estragon&#8230;)<br />
- 6 toasts</p>
<p><strong> Préparation:</strong></p>
<p>Cut the mushroom and onions into gill.</p>
<p><span class="stdtxt10">Brown the onions and garlic with oil, then add the mushroom, leave them 2-3 minutes.<br />
Pour the white wine and leave for 5-10 minutes.</span></p>
<p>Finally, add all the cream. In a bowl mix well the wheat flour with some cold water and pour into the sauce, mix while pouring the wheat flour, then <span class="stdtxt10">season the sauce with salt, pepper and herbs.</span></p>
<p>Serve with the toasts.</p>
<p>If you want a creamier, thicker sauce, after adding mushroom, leave more time for the mushroom to evaporate, you could either reduce the quantity of white wine or add more wheat flour to condense the sauce.</p>
<p><a href="http://www.flickr.com/photos/link2caro/2456889133/" title="Creamy Mushroom Sauce by CA RO, on Flickr"><img src="http://farm4.static.flickr.com/3228/2456889133_2f8a821ac8_m.jpg" width="240" height="180" alt="Creamy Mushroom Sauce" /></a></p>
<p><a href="http://www.flickr.com/photos/link2caro/2457717280/" title="Creamy Mushroom Sauce by CA RO, on Flickr"><img src="http://farm4.static.flickr.com/3018/2457717280_37a0a11cb9_m.jpg" width="240" height="180" alt="Creamy Mushroom Sauce" /></a></p>
<p><a href="http://www.flickr.com/photos/link2caro/2457717406/" title="Creamy Mushroom Sauce by CA RO, on Flickr"><img src="http://farm3.static.flickr.com/2205/2457717406_7c488526af_m.jpg" width="240" height="180" alt="Creamy Mushroom Sauce" /></a></p>
<p>(This photo is a sauce made with red white, this results the reddish color of the sauce)</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/creamy-mushroom-sauce/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>César Salad</title>
		<link>http://link2caro.net/read/cesar-salad/</link>
		<comments>http://link2caro.net/read/cesar-salad/#comments</comments>
		<pubDate>Thu, 01 May 2008 12:27:17 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Appetizer]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=145</guid>
		<description><![CDATA[Ingredients (4 pers.):

- 2 lettuces or Romaine lettuce (cos lettuce)
- 25g parmesan (thin slices)
- 4 slices of toasted bread
- 2 spoons of olive oil
- 1 boiled egg
- crumble bacon
- grilled chicken breast (optional)
- anchovy (optional)]]></description>
			<content:encoded><![CDATA[<p><span class="stdtxt10"><strong>Ingredients (4 pers.):</strong></span></p>
<p>- 2 lettuces or Romaine lettuce (cos lettuce)<br />
- 25g parmesan (thin slices)<br />
- 4 slices of toasted bread<br />
- 2 spoons of olive oil<br />
<span class="stdtxt10"> &#8211; 1 boiled egg<br />
- crumble bacon<br />
- grilled chicken breast (optional)<br />
- anchovy (optional)</span><span class="cald-hword"><br />
</span></p>
<p><span class="stdtxt10">For the sauce :</span></p>
<p>- 125ml m<span class="stdtxt10">ayonnaise<br />
- 75ml milk</span><span class="stdtxt10"><br />
- 50g rasped parmesan<br />
- 1 to 2 tea spoons of mustard (about 15ml)<br />
- 1 tea spoon of Tabasco (optional)<br />
- 1 to 2 tea spoons of Worcestershire sauce<br />
- juice of  1/2 citron or 2 to 3 spoon of vinegar (about 30ml)<br />
- 1 or 2 clove of garlic<br />
- 2 to 3 spoons of olive oil<br />
- salt and black pepper</span></p>
<p><strong>Preparation:</strong></p>
<p><span class="stdtxt10"><strong></strong></span><span class="stdtxt10">The sauce: just mix all the ingredients<br />
</span></p>
<p>Fry the bread with some olive oil and garlic then cut it into cubes.<br />
Cut the egg into 4.<br />
Mix all the ingredients or you can put the lettuce first then decorate on top with cubed bread, bacon, egg and parmesan.<br />
Dress with the sauce.</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/cesar-salad/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Salade Niçoise</title>
		<link>http://link2caro.net/read/salade-nicoise/</link>
		<comments>http://link2caro.net/read/salade-nicoise/#comments</comments>
		<pubDate>Thu, 01 May 2008 11:38:13 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Appetizer]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=144</guid>
		<description><![CDATA[Ingredients (4 pers.): - 1 salad: Scarola or Curly lettuce - 1 cucumber - 8 tomatoes - 4 boiled eggs - 1 celery - 3 artichokes - 1 green pepper (favorable the long one) - 200g tuna (nature or olive oil) - 1 bunch of radish - 1 bunch of basil &#8211; Black olives - [...]]]></description>
			<content:encoded><![CDATA[<p><span class="stdtxt10"><strong>Ingredients (4 pers.):</strong></span></p>
<p>-<span class="stdtxt10"> 1 salad: Scarola or Curly lettuce</span><br />
- 1 cucumber<br />
- 8 tomatoes<br />
- 4 boiled eggs<br />
- 1 celery<br />
- 3 artichokes<br />
- 1 green pepper (favorable the long one)<br />
- 200g tuna (nature or olive oil)<br />
- 1 bunch of radish<br />
- 1 bunch of basil<br />
<span class="stdtxt10"> &#8211; Black olives<br />
- Olive oil, vinegar (favorable balsamic vinegar)<br />
- 1 tsp of anchovy paste<br />
- Salt, black pepper</span></p>
<p>My recipe:</p>
<p>- <span style="color: black;">Some salted smoked herrings<br />
- Mayonnaise<br />
</span></p>
<p><span class="stdtxt10"><strong>Preparation:</strong></span></p>
<p>Sauce: mix olive oil with vinegar (3:1 or 4:1 tea spoon) and anchovy paste, season salt and pepper to your taste.</p>
<p style="padding-left: 30px;">My style: 1 tsp of mayonnaise and some juice from the can of tuna, mix well the sauce.</p>
<p><span class="stdtxt10">Cut all the ingredients into small pieces<br />
Take the inferior part of the artichokes and cut them into 4.<br />
Add tuna, basil and then, dress with the sauce.<br />
For each plate, cut a boiled egg into 4 and put them on top.</span></p>
<p style="padding-left: 30px;">My style: put some herrings on top, 2 to 4 slices.</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/salade-nicoise/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fiscality</title>
		<link>http://link2caro.net/read/fiscality-2008/</link>
		<comments>http://link2caro.net/read/fiscality-2008/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 22:59:03 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=111</guid>
		<description><![CDATA[Today received the fiscality declaration, have nothing to declare. &#8212; I don&#8217;t think big, don&#8217;t think far, future is mysterious so it&#8217;s just a waste of time to think too much, to plan too much. Anyway life is fulfilled of surprise, unexpected events, thus thinking big, thinking far do not help much. I do not [...]]]></description>
			<content:encoded><![CDATA[<p>Today received the fiscality declaration, have nothing to declare.</p>
<p>&#8212;</p>
<p>I don&#8217;t think big, don&#8217;t think far, future is mysterious so it&#8217;s just a waste of time to think too much, to plan too much. Anyway life is fulfilled of surprise, unexpected events, thus thinking big, thinking far do not help much. I do not like to plan anything which is foxy, evil or whatever towards ones I like, I just love to plan some lovely surprise, or lovely things for them (you know that I am not good at english, don&#8217;t have large vocab, want to have large one because it&#8217;s not just useful but also &#8220;sexy&#8221;)</p>
<p>Love being honest to ones whom I can rely on, that&#8217;s why I do not hide anything even the fact that I can. Doing wrong, my fault so I voluntarily accept the punishment, that&#8217;s all&#8230; hiding to ones who are close to me makes me not feel guilty, either a bit or a lot&#8230; talking about this because I still don&#8217;t know whether or not you give me a punishment for breaking my promise that night, now I will keep this promise for good, do not hate me when I say that I feel a bit needy, I will soon forget about that need&#8230;</p>
<p>I have to go to bed now, I will stay up at most 1:30 from now on, I will try, not good to sleep too late, you shouldn&#8217;t either&#8230; G9 my dear!</p>
<p>&#8212;</p>
<p>The title is not related much to the content  &gt;:D&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/fiscality-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nokia 2630</title>
		<link>http://link2caro.net/read/nokia-2630/</link>
		<comments>http://link2caro.net/read/nokia-2630/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 10:16:32 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/04/28/nokia-2630/</guid>
		<description><![CDATA[Nokia 2630 by CA RO My new phone 17€ more expensive in France, nearly buy it with my contract which means 100€ instead of 80€ (pay as you go plan) =)) That&#8217;s how they treat loyal customer! Thinking of another nokia for my Orange UK number. Dull day, grey, raining. Ah, and I went to [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"><a title="photo sharing" href="http://www.flickr.com/photos/link2caro/2448031799/"><img style="border: solid 2px #000000;" src="http://farm3.static.flickr.com/2371/2448031799_7164d96888_m.jpg" alt="" /></a></p>
<p><span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/link2caro/2448031799/">Nokia 2630</a> by <a href="http://www.flickr.com/people/link2caro/">CA RO</a><br />
</span></p>
</div>
<p>My new phone <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>17€ more expensive in France, nearly buy it with my contract which means 100€ instead of 80€ (pay as you go plan) =)) That&#8217;s how they treat loyal customer!</p>
<p>Thinking of another nokia for my Orange UK number.</p>
<p>Dull day, grey, raining.</p>
<p>Ah, and I went to police station to report that stolen Sim Card, and stolen phone so that they cannot use those phones in France, I believe that if I had reported to UK police, those two phones would not be usable in the UK either =)) The Orange agency adviced me so in order to get the refund for the Sim card (about 20-25€ I think).</p>
<p>Miz</p>
<p>&#8212;</p>
<p>This afternoon, the weather was fine, spent nearly two hours at the police station. She, who received me, told me directly that no chance, I expected nothing, the only reason why I need this declaration is to have my new Sim Card for free instead of 20 &#8211; 25€ fee.</p>
<p>Love u&#8230;</p>
<p>&#8212;</p>
<p>Things never go smoothly, it&#8217;s the life <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  what the hell do they think to put 4 hours of language on Friday 9/5? nothing in that afternoon, the English class I can manage with the prof but the French class, it&#8217;s kinda Mission Impossible <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> (</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/nokia-2630/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Improvement Done</title>
		<link>http://link2caro.net/read/improvement-done/</link>
		<comments>http://link2caro.net/read/improvement-done/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 02:33:42 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=141</guid>
		<description><![CDATA[For what I asked you before checking in at St. Pancras, I made a private section on this blog, which is dedicated for entries which are for you but not ne1 else so please do these steps in order to be able to read those entries: 1st method (Using Yahoo Account &#8211; If you have [...]]]></description>
			<content:encoded><![CDATA[<p>For what I asked you before checking in at St. Pancras, I made a private section on this blog, which is dedicated for entries which are for you but not ne1 else <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  so please do these steps in order to be able to read those entries:</p>
<p>1st method (Using Yahoo Account &#8211; If you have doubts about this, ask me, or answer this question &#8220;Who am I?&#8221; )</p>
<p>- Go to <a href="http://blog.link2caro.net/wp-login.php"><span class="Apple-style-span" style="border-collapse: separate; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: pre; widows: 2; word-spacing: 0px; font-family: 'Lucida Grande'; color: #000000;">http://blog.link2caro.net/wp-login.php</span></a></p>
<p>- <span class="Apple-style-span" style="border-collapse: separate; font-size: 12px; font-style: normal; font-variant: normal; font-weight: bold; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; font-family: 'Lucida Grande'; color: #333333;">Or login using your<span class="Apple-converted-space"> </span><a class="openid_link" style="margin: 0px; padding: 0px 0px 0px 18px; color: #2583ad; background-image: url(http://blog.link2caro.net/wp-content/plugins/openid/files/openid.gif); background-repeat: no-repeat; background-position: 0% 50%;" href="http://openid.net/">OpenID</a> url:</span> =&gt; Type <strong>yahoo.com</strong> and Enter</p>
<p>- You will be asked to login to Yahoo, it&#8217;s normal <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  just login and choose either the default link (the proposed one) or set up a new link <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>2nd method (if you really do not want to <span style="text-decoration: line-through;">you</span> use  (a bit crazy when mistook you and use <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  ) your Yahoo Account)</p>
<p>- Go to <a href="http://blog.link2caro.net/wp-login.php"><span class="Apple-style-span" style="border-collapse: separate; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: pre; widows: 2; word-spacing: 0px; font-family: 'Lucida Grande'; color: #000000;">http://blog.link2caro.net/wp-login.php</span></a></p>
<p>- Enter your wished username and your email</p>
<p>- Login and change your password</p>
<p><em>Uhm really advice you to use the first one,  less login needed, anyway it&#8217;s up to you <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  either the 1st or the 2nd method will give you the permission to read what I write for you <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/improvement-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I love you &#8211; Lorie</title>
		<link>http://link2caro.net/read/i-love-you-lorie/</link>
		<comments>http://link2caro.net/read/i-love-you-lorie/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 01:50:41 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=140</guid>
		<description><![CDATA[I love you - Lorie This is a high quality song, so it might take little time to be downloaded and played. Suddenly think of this song, heard in your room, French in Nott quite impressed by its lyric (I heard this song before but did not know its title) Tu ne sais pas me [...]]]></description>
			<content:encoded><![CDATA[<p><b>I love you - Lorie </b><br /><embed src="http://link2caro.net/wp-content/plugins/media-tek/mediaplayer.swf" width="300" height="20" allowfullscreen="true" allowscriptaccess="always" wmode="opaque" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" flashvars="file=http://u1.ipernity.com/o/NNjy4dMBjX8_B9j7C4AbEemMVcEJ.PDO.0W.nbss?download=Lorie%20-%20I%20Love%20You.mp3&showdigits=true&repeat=true&showdownload=true&autoscroll=true" /><a href="http://u1.ipernity.com/o/NNjy4dMBjX8_B9j7C4AbEemMVcEJ.PDO.0W.nbss?download=Lorie%20-%20I%20Love%20You.mp3"><img src="http://link2caro.net/wp-content/plugins/media-tek/download.png" alt="Download"></a><br /><h5>This is a high quality song, so it might take little time to be downloaded and played.</h5></p>
<p>Suddenly think of this song, heard in your room, French in Nott <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  quite impressed by its lyric (I heard this song before but did not know its title)</p>
<blockquote><p>Tu ne sais pas me dire &#8220;Je t&#8217;aime&#8221;, moi je te l&#8217;écrirai quand même<br />
Tu ne sais me dire que sans cesse &#8220;girl, I miss you&#8221;<br />
Tu ne sais pas me dire &#8220;je t&#8217;aime&#8221;, moi j&#8217;essaierai quand même &#8220;I love you&#8221;<br />
Do you love me too?</p>
<p>Tu ne sais pas me dire &#8220;Je t&#8217;aime&#8221;, moi je te l&#8217;écrirai quand même<br />
Tu ne sais me dire que sans cesse &#8220;girl, I need you&#8221;<br />
Tu ne sais pas me dire &#8220;je t&#8217;aime&#8221;<br />
C&#8217;est mon doux théorème: &#8220;I love you&#8221;&#8230; Et toi?<br />
Do you love me too?</p>
<p>&#8212;</p>
<p>You don&#8217;t know to say &#8220;I love you&#8221;, me, I will write it to you anyway<br />
You only know to say endlessly &#8220;girl, I miss you&#8221;<br />
You don&#8217;t know to say &#8220;I love you&#8221;, me, I will try anyway  &#8220;I love you&#8221;<br />
Do you love me too?</p>
<p>You don&#8217;t know to say &#8220;I love you&#8221;, me, I will write it to you anyway<br />
You only know to say endlessly &#8220;girl, I need you&#8221;<br />
You don&#8217;t know to say &#8220;I love you&#8221;,<br />
It&#8217;s my sweet theory: &#8220;I love you&#8221;&#8230; And you?<br />
Do you love me too?</p></blockquote>
<p>will or would, not sure (cannot listen the french lyric and tell which one it is, just guessing by meaning :p ) when you are free I will teach you to pronounce french, if you like &gt;:D&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/i-love-you-lorie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I &#8216;heart&#8217; London</title>
		<link>http://link2caro.net/read/i-heart-london/</link>
		<comments>http://link2caro.net/read/i-heart-london/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 14:06:44 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/04/27/i-heart-london/</guid>
		<description><![CDATA[I &#8216;heart&#8217; London by CA RO Just got back from the UL, 15h30-22h20 (nearly 7 hours needed to make a voyage from London to Paris then to Rennes the final destination), by flight it takes about only 3 to 4 hours (including waste time at airports). Everything in the UK is probably a bit less [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"><a title="photo sharing" href="http://www.flickr.com/photos/link2caro/2444675543/"><img style="border: solid 2px #000000;" src="http://farm3.static.flickr.com/2378/2444675543_beb92514ef_m.jpg" alt="" /></a></p>
<p><span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/link2caro/2444675543/">I &#8216;heart&#8217; London</a> by <a href="http://www.flickr.com/people/link2caro/">CA RO</a><br />
</span></p>
</div>
<p>Just got back from the UL, 15h30-22h20 (nearly 7 hours needed to make a voyage from London to Paris then to Rennes the final destination), by flight it takes about only 3 to 4 hours (including waste time at airports).</p>
<p>Everything in the UK is probably a bit less costly than in France, the same cellphone which I wanted to buy in Nottingham to replace my stolen one, is about 15£ cheaper <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' />  I could not imagine that <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /> </p>
<p>Traveling on 1st class of the new generation high speed train, known by the name TGV, is so so comfortable. One point I don&#8217;t really plug in with the rail system in the UK is that you can make, take phone call within the coach, sometimes it&#8217;s a bit annoying, perhaps it&#8217;s just I got used to the French rail system.</p>
<p>London is a big construction site with over 100 cranes everywhere. I took the London Eye and Thames River Cruise, it&#8217;s not really worth in comparison to Eiffel Tower and Seine River Cruise, just my point of view <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
London has not many trash bins, Paris is threatened by terrorism too but you can easily find a trash bin, however, it seems that London is cleaner&#8230;</p>
<p>I witnessed a gas leak yesterday when I was at Paul café, I was standing at the entrance, &#8216;coz there was no clients apart from me I think. A police told me to get inside &#8216;coz &#8220;you would regret standing outside if &#8230;&#8221; <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) funny sentence :p</p>
<p>After 9 days in the UK, or exactly in England, I missed speaking French a lot and yesterday, I wanted to go to Starbucks but they were all closed at 8am, it was Saturday so everything opens later than normally. Lucky me to find a Paul café opened at 7am <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) quite early, Paul is a french chain of breads, cakes, if any of you don&#8217;t know. I stayed at Paul from 8:30 to 13:30 and go to St. Pancras station with a box of dozen macarons for her <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Ki is online, chat with her now and back to this writing later if I am still in mood  :p   &gt;:D&lt;</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/i-heart-london/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A day w/o my little princess</title>
		<link>http://link2caro.net/read/a-day-wo-my-little-princess/</link>
		<comments>http://link2caro.net/read/a-day-wo-my-little-princess/#comments</comments>
		<pubDate>Tue, 22 Apr 2008 22:00:40 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=135</guid>
		<description><![CDATA[Wanderred around the Tower Bridge and London Bridge, stayed in Starbucks, enjoyed the sunst lights, had dinner alone, a bit bitter than last days, but still feel good just for a reason that I found my princess, I had not been sure before my arrival in the UK but now I am sure that it&#8217;s worth [...]]]></description>
			<content:encoded><![CDATA[<p>Wanderred around the Tower Bridge and London Bridge, stayed in Starbucks, enjoyed the sunst lights, had dinner alone, a bit bitter than last days, but still feel good just for a reason that I found my princess, I had not been sure before my arrival in the UK but now I am sure that it&#8217;s worth <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  u r underestimating yourself I think <img src='http://link2caro.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Sleep tight and take care, my little one :*</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/a-day-wo-my-little-princess/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>In London</title>
		<link>http://link2caro.net/read/in-london/</link>
		<comments>http://link2caro.net/read/in-london/#comments</comments>
		<pubDate>Mon, 21 Apr 2008 19:27:57 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=134</guid>
		<description><![CDATA[I am in London, after more than an hour calling the customer service center of Orange UK, got the bad news that I have to use the handset at less 3 months to be able to unlock it, and I cannot use the handset of Orange UK with an sim card Orange FR without unlocking [...]]]></description>
			<content:encoded><![CDATA[<p>I am in London, after more than an hour calling the customer service center of Orange UK, got the bad news that I have to use the handset at less 3 months to be able to unlock it, and I cannot use the handset of Orange UK with an sim card Orange FR without unlocking it <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Some one bought a photo of mine at the price of 20€, gosh</p>
<p>The fact is that I like you and I would do anything to be a better man, to be less childish in the way I am always still myself&#8230; I take that risk because I truly like you, one more thing about you that make me fall deeply in you is that you are &#8220;my&#8221; little princess, you are a bit childish (which is is positive) and you are really intelligente, or smart, or foxy? I don&#8217;t know which word suits you but this weekend made me understand you a bit more and I have no doubt that this trip to Nott is so valueable to me, I can now tell you that I like you with all my heart, believe or not it&#8217;s up to you&#8230; but I really mean it &gt;:)&lt;</p>
<p>I would make a list, if you ask me why I like you, each time I answer you one reason, I don&#8217;t think that one day I will run out of answers&#8230;</p>
<p>(I repeat my sentence: don&#8217;t believe in what I tell you, believe in what I can do for you)</p>
<p>I like you so so much, hope one day I can say that I love you with the true meaning of that sentence&#8230;</p>
<p>&#8212;</p>
<p>The person who told people that I had K-certificate, on a Sunday night of April gave me the mention (grade) for that certificate, which is good (deceived a bit, would prefer a better grade :p )</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/in-london/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chocolate Cakes</title>
		<link>http://link2caro.net/read/chocolate-cakes/</link>
		<comments>http://link2caro.net/read/chocolate-cakes/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 20:18:17 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/04/16/chocolate-cakes/</guid>
		<description><![CDATA[Chocolate Cakes by CA RO Was making a hot choco, an idea slipped in my mind and resulted this plate. Orange and Cake in the form of a tree (for ones who don&#8217;t see this out) Trembling hands, knees, I am sick. Yeap can call me a girl, I am sick all the time especially [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;"><a title="photo sharing" href="http://www.flickr.com/photos/link2caro/2418776969/"><img style="border: solid 2px #000000;" src="http://farm4.static.flickr.com/3146/2418776969_a71c6dde61_m.jpg" alt="" /></a></p>
<p><span style="font-size: 0.9em; margin-top: 0px;"><br />
<a href="http://www.flickr.com/photos/link2caro/2418776969/">Chocolate Cakes</a> by <a href="http://www.flickr.com/people/link2caro/">CA RO</a><br />
</span></p>
</div>
<p>Was making a hot choco, an idea slipped in my mind and resulted this plate. Orange and Cake <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  in the form of a tree (for ones who don&#8217;t see this out)</p>
<p>Trembling hands, knees, I am sick. Yeap can call me a girl, I am sick all the time especially on holidays, watever&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/chocolate-cakes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visa Refused :((</title>
		<link>http://link2caro.net/read/visa-refused/</link>
		<comments>http://link2caro.net/read/visa-refused/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 11:00:21 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=132</guid>
		<description><![CDATA[( poor me, lost 163€ for hotel reservation, got a 115€-costed visa refused, what the hell on earth could I call that bad luck? Tirrrrred, Exhaustttttted ( Haiz, haiz :-&#60; ủ rũ :-&#60; Đi ngủ đây CW ngoan, tớ chán lắm rồi, tớ đi ngủ rồi đi học đây, yêu ấy yêu&#8230;, à nhầm ghét [...]]]></description>
			<content:encoded><![CDATA[<p> <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( poor me, lost 163€ for hotel reservation, got a 115€-costed visa refused, what the hell on earth could I call that bad luck? Tirrrrred, Exhaustttttted <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> (</p>
<p>Haiz, haiz :-&lt; ủ rũ :-&lt;</p>
<p>Đi ngủ đây <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>CW ngoan, tớ chán lắm rồi, tớ đi ngủ rồi đi học đây, yêu ấy yêu&#8230;, à nhầm ghét ấy yêu <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( ghét cay ghét đắng, ghét từ nội tạng ghét ra ngoài da (điên òi) haiz <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( GHÉT ẤY YÊU <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>Hate my hatie</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/visa-refused/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ty-MacBook</title>
		<link>http://link2caro.net/read/ty-macbook/</link>
		<comments>http://link2caro.net/read/ty-macbook/#comments</comments>
		<pubDate>Wed, 16 Apr 2008 03:21:06 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/2008/04/16/ty-macbook/</guid>
		<description><![CDATA[Ty-MacBook by CA RO First time that I remote a Mac , last week remoted a PC to fix the USB pen drive problem, now just remoted a Mac to install Photoshop, and Firefox, Yahoo! Messenger, Skype; she used to run them from dmg image files :p Status updated: With courrier. Attempting with delivery. Today, [...]]]></description>
			<content:encoded><![CDATA[<div style="float: right; margin-left: 10px; margin-bottom: 10px;">
 <a href="http://www.flickr.com/photos/link2caro/2418004330/" title="photo sharing"><img src="http://farm3.static.flickr.com/2266/2418004330_ac515256bb_m.jpg" alt="" style="border: solid 2px #000000;" /></a><br />
<br />
 <span style="font-size: 0.9em; margin-top: 0px;"><br />
  <a href="http://www.flickr.com/photos/link2caro/2418004330/">Ty-MacBook</a> by <a href="http://www.flickr.com/people/link2caro/">CA RO</a><br />
 </span>
</div>
<p>First time that I remote a Mac <img src='http://link2caro.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> , last week remoted a PC to fix the USB pen drive problem, now just remoted a Mac to install Photoshop, and Firefox, Yahoo! Messenger, Skype; she used to run them from dmg image files :p</p>
<p>Status updated: With courrier. Attempting with delivery.</p>
<p>Today, worked on restructuring all websites, there are now three core folders which are my blog, techinfovn and other sites. Don&#8217;t want to mess my home page and techinfovn so let them alone, just regrouped other non-important sites. It helps a lot in future upgrade, 3 upgrades only <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> >-</p>
<p>My server is now running more smoothly than ever, after an outage of about 2 hours which needed an intervention of technician at the datacenter.</p>
<p>( nothing interesting about my day life apart these things that I am working on <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  sorry >:D< )<br />
<br clear="all" /></p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/ty-macbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Damn year :((</title>
		<link>http://link2caro.net/read/damn-year/</link>
		<comments>http://link2caro.net/read/damn-year/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 16:07:50 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=129</guid>
		<description><![CDATA[Bad luck smiles at me, 150€ just gone away for my mistake ( what the hell on earth could I make that stupid, idiotos mistake ( give me a shoulder to lean on ( I am getting crazy ( hope I won&#8217;t need to go to a psy camp (]]></description>
			<content:encoded><![CDATA[<p>Bad luck smiles at me, 150€ just gone away for my mistake <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( what the hell on earth could I make that stupid, idiotos mistake <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( give me a shoulder to lean on <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( I am getting crazy <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> ( hope I won&#8217;t need to go to a psy camp <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> (</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/damn-year/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nhìn về Việt nam :-s</title>
		<link>http://link2caro.net/read/econ-crisis/</link>
		<comments>http://link2caro.net/read/econ-crisis/#comments</comments>
		<pubDate>Fri, 11 Apr 2008 10:26:09 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=128</guid>
		<description><![CDATA[Chạy đi học cái đã, đọc xong mấy bài này thấy lo cho Việt nam, đúng như những lời thằng BA kể, chỉ tội giờ mới đọc trên báo. Mong không loạn&#8230; Tú Uyên, nhân viên một công ty xuất nhập khẩu đường Nguyễn Tất Thành, quận 4 TP HCM cho hay: Từ hơn một [...]]]></description>
			<content:encoded><![CDATA[<p class="Normal">Chạy đi học cái đã, đọc xong mấy bài này thấy lo cho Việt nam, đúng như những lời thằng BA kể, chỉ tội giờ mới đọc trên báo. Mong không loạn&#8230;</p>
<blockquote>
<p class="Normal">Tú Uyên, nhân viên một công ty xuất nhập khẩu đường Nguyễn Tất Thành, quận 4 TP HCM cho hay: Từ hơn một tháng nay, mỗi buổi sáng chị đều thức dậy từ lúc 5h30 để làm đồ ăn sáng, chiên cơm, nấu mì gói; sau đó phải nấu cơm mang theo ăn buổi trưa. Chiều đi làm về chị lại tất tả đi chợ lo cho bữa tối, bữa sáng và trưa của ngày hôm sau.</p>
<p class="Normal">&#8220;Mệt rã rời. Còn độc thân mà cứ như phải lo chăm sóc con mọn vậy. Lúc trước, đến hơn 7h mới thức dậy chuẩn bị quần áo, đồ dùng đi làm vì để ăn sáng chỉ việc ghé ra đầu hẻm gọi tô phở, hủ tíu, có hôm ngủ nướng vội quá chỉ kịp mua một ổ bánh mì ốp la mang xuống cơ quan&#8221; &#8211; chị Uyên than vãn.</p>
<p class="Normal">Lương nhân viên văn phòng của chị hơn một năm nay vẫn giậm chân ở mức 2 triệu đồng một tháng. Tiền thuê nhà mỗi tháng 500.000 đồng, chưa kể tiền xăng xe, điện thoại, ăn uống, chi tiêu&#8230; Dù đã hết sức tiết kiệm chắt bóp nhưng tháng nào cũng thiếu hụt. Uyên tâm sự: &#8220;Từ mấy tháng nay, các khoản mua sắm, cà phê, ăn tối cuối tuần với bạn bè đã bị cắt giảm hết. Riết rồi các mốí quan hệ xã hội, tình cảm bạn bè cũng mất luôn&#8221;.</p>
<p class="Normal">Hòa, một công nhân khu chế xuất TP HCM, cho biết, lương nhân viên thời vụ chỉ vỏn vẹn 1.050.000 đồng, không hề có thêm một khoản nào khác. Trước đây, tiền ăn sáng của anh là 6.000 đồng, trưa và chiều mỗi suất 12.000 đồng. Tiền ở trọ không phải tốn nhưng mỗi tháng tổng cộng chi tiêu cũng mất hết 900.000 đồng. Cuối tháng còn dư ra 100.000 đồng để dằn túi.</p>
<p class="Normal">Hiện nay, quán xá tăng giá, ăn sáng 8.000 đồng một suất, cơm trưa 15.000 đồng. Chỉ tiền ăn mỗi tháng hết 1.140.000 đồng. &#8220;Cũng may lương tháng mới đây đã tăng lên được 1.200.000 đồng. Tính ra vẫn còn dư 60.000 đồng bỏ túi, phòng khi hết xà bông tắm, giặt còn có tiền để mua&#8221;, anh công nhân chán nản cho biết.</p>
<p class="Normal">Chị Thanh Thúy, chủ một quán ăn lớn trên đường Phan Đăng Lưu, quận Phú Nhuận TP HCM cũng cho biết, thời gian gần đây lượng khách đến quán giảm sút thấy rõ. Vào giờ cao điểm (từ 19h đêm trở đi) hay những ngày cuối tuần khách rất thưa thớt.</p>
<p class="Normal">Theo chị Thúy, thời điểm này năm ngoái đã có nhiều nhóm bạn đặt tiệc sinh nhật, họp mặt, cơ quan đặt tiệc chiêu đãi nhân viên nhân dịp lễ 30/4, nhưng tình hình năm nay giá cả chi tiêu đắt đỏ, hiện giờ quán vẫn chưa nhận được đơn đặt hàng nào. Hồi đầu tháng này quán đã chuyển sang mở cửa lúc 3 giờ chiều, thay vì mở cả ngày như trước kia. &#8220;Khách thưa thớt quá, sợ không đủ chi phí để trả lương cho nhân viên&#8221;, chị Thúy cho biết.</p>
<p><strong></strong></p>
<p class="Normal">Trích từ vnExpress</p>
</blockquote>
<blockquote><p>Đất nước ta bước vào thực hiện kế hoạch phát triển kinh tế &#8211; xã hội năm 2008 trong bối cảnh kinh tế thế giới có nhiều biến động phức tạp và rất khó lường. Kinh tế Mỹ suy giảm nghiêm trọng: GDP quý IV năm 2007 chỉ tăng 0,6%, thấp hơn rất nhiều so với các quý trước đó. Theo nhiều dự báo, kinh tế Mỹ cả năm 2008 chỉ tăng 1,5%. Thậm chí, có những nhận định cho rằng, kinh tế Mỹ đã bước vào giai đoạn suy thoái. Đồng Đôla Mỹ (USD) giảm giá so với nhiều đồng tiền khác, giá cả của hầu hết các mặt hàng trên thị trường thế giới tăng cao, sự suy giảm của kinh tế Mỹ, nền kinh tế chiếm khoảng 25% tổng GDP toàn cầu và trên 15% tổng giá trị nhập khẩu hàng hoá thế giới, đã tác động mạnh và kéo theo sự suy giảm của nhiều nền kinh tế. Giá tăng cao ở hầu hết các nước, kể cả ở các nước có nền kinh tế mạnh và đã duy trì được mức giá thấp trong nhiều năm. Nhiều quốc gia đã phải điều chỉnh giảm mục tiêu tăng trưởng từ 1 đến 2%. Nếu kinh tế Mỹ rơi vào chu kỳ suy thoái, tình hình có thể còn phức tạp hơn.</p>
<p class="Normal">Đến nay, kinh tế nước ta đã hội nhập sâu, rộng vào nền kinh tế thế giới, độ mở của nền kinh tế là rất lớn với tổng kim ngạch xuất &#8211; nhập khẩu tương đương khoảng 160% GDP, trong đó, nhập khẩu gần 90% GDP. Những biến động bất lợi ngoài tầm dự đoán như vừa qua của kinh tế toàn cầu và giá cả thị trường thế giới đã tác động tiêu cực đến tăng trưởng và đến mặt bằng giá trong nước với mức độ mạnh hơn nhiều so với trước đây và so với nhiều nước khác.</p>
<p class="Normal">Trong nước, hai năm 2006 &#8211; 2007, thiên tai, dịch bệnh gây thiệt hại rất nặng nề (thiệt hại kinh tế khoảng 33.600 tỷ đồng) chưa được khắc phục thì đầu năm nay, đợt rét đậm, rét hại lịch sử kéo dài ở miền Bắc và Bắc Trung bộ đã gây tổn thất lớn về vật chất cho nhân dân và tác động bất lợi đến sản xuất nông nghiệp.</p>
<p class="Normal"><span style="color: #3f3f3f;"><strong>Bối cảnh quốc tế, trong nước nêu trên đã làm cho những yếu kém của</strong> </span><span style="color: #3f3f3f;"><strong>nền kinh tế và trong cơ cấu kinh tế của nước ta bộc lộ sâu sắc hơn trong điều kiện hội nhập kinh tế quốc tế, tạo ra những thách thức gay gắt cho việc quản lý và điều hành phát triển kinh tế</strong></span>. Trước tình hình này, toàn Đảng, toàn dân, toàn quân và cộng đồng doanh nghiệp nước ta đã nỗ lực phấn đấu, phát huy mọi tiềm năng lợi thế, đối phó và vượt qua những khó khăn thách thức, giữ vững ổn định chính trị &#8211; xã hội, cải thiện môi trường đầu tư kinh doanh, tạo ra những cơ sở để tăng trưởng cao trong trung và dài hạn, đã duy trì được tốc độ tăng trưởng GDP trong quý I đạt 7,4%. Đây là những cố gắng lớn của cả nước.</p>
<p class="Normal">Tuy nhiên, do những tác động của kinh tế thế giới và những bất cập, yếu kém trong quản lý, điều hành kết hợp với các nguyên nhân nội sinh từ nền kinh tế đã làm cho tình hình kinh tế quý I năm 2008 có những diễn biến bất lợi như: Lạm phát cao, giá tiêu dùng tháng 3 đã tăng 9,19% so với tháng 12 năm 2007; nhập khẩu tăng mạnh, chênh lệch xuất &#8211; nhập khẩu lên tới hơn 7 tỷ USD và bằng 56,5% kim ngạch xuất khẩu. Tình hình đó đã ảnh hưởng tiêu cực đến phát triển sản xuất và đời sống của các tầng lớp nhân dân, nhất là những người làm công ăn lương và người nghèo, đe doạ đến ổn định vĩ mô, tác động không thuận đến môi trường đầu tư, kinh doanh.</p>
<p class="Normal">Trích từ bài phát biểu của thủ tướng <em>Nguyễn Tấn Dũng</em></p>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/econ-crisis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Losing my nerves!</title>
		<link>http://link2caro.net/read/losing-my-nerves/</link>
		<comments>http://link2caro.net/read/losing-my-nerves/#comments</comments>
		<pubDate>Tue, 08 Apr 2008 22:16:19 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=127</guid>
		<description><![CDATA[Losing my nerves! Do not understand why I am charged over 15€ for incident of operation for the bank card!!! What the hell is going on, having money, and what could it be for&#8230; Really angry for that bad news, just so cute, when something is my fault ok but when it&#8217;s not, it&#8217;s really [...]]]></description>
			<content:encoded><![CDATA[<p>Losing my nerves!</p>
<p>Do not understand why I am charged over 15€ for incident of operation for the bank card!!! What the hell is going on, having money, and what could it be for&#8230; Really angry for that bad news, just so cute, when something is my fault ok but when it&#8217;s not, it&#8217;s really irritating!!!</p>
<p>&#8212;<br />
Update: at the beginning of March my account had no money, and I had my account negative, that is the reason. So OK now for that penalty <img src='http://link2caro.net/wp-includes/images/smilies/icon_neutral.gif' alt=':|' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/losing-my-nerves/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Well done</title>
		<link>http://link2caro.net/read/well-done/</link>
		<comments>http://link2caro.net/read/well-done/#comments</comments>
		<pubDate>Sun, 06 Apr 2008 18:22:56 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=126</guid>
		<description><![CDATA[Just resolved all issues with TechInfoVN and other sites, TechInfoVN is now in full production activity, no more tests or changes would be done directly on the principal site. Went to a party yesterday till 4AM after the secu came for the second time, at 1AM they came and we moved to another residence, 1 [...]]]></description>
			<content:encoded><![CDATA[<p>Just resolved all issues with TechInfoVN and other sites, TechInfoVN is now in full production activity, no more tests or changes would be done directly on the principal site.</p>
<p>Went to a party yesterday till 4AM after the secu came for the second time, at 1AM they came and we moved to another residence, 1 minute from where we were and we rested there till 4AM, after the secu came at 4, there were some rested to continue the party in a room of my friend, but it was less fun so I left with some friends. Did not drink much last night. It&#8217;s was a birthday party of a Romanian who is a friend of mine, the present was a sex toy (for nana (french familiar word for girl, don&#8217;t know the english word) <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) and there was another Romanian guy whose present was an inflatable doll =)) So funny =))</p>
<p>This weekend the weather is fine, I&#8217;m on some reading on photography.</p>
<p>After next week it&#8217;s Spring break <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>&#8212;</p>
<p>23:57</p>
<p>It&#8217;s nearly 4 days, not any sight of your existence :-&lt; or am I forgotten?</p>
<p>&#8212;</p>
<p>00:40</p>
<p>360° sucks, after nearly 4 months I added the feed from this blog to 360° now it appears!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/well-done/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>50€ for a website</title>
		<link>http://link2caro.net/read/50e-for-a-website/</link>
		<comments>http://link2caro.net/read/50e-for-a-website/#comments</comments>
		<pubDate>Thu, 03 Apr 2008 16:42:16 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=123</guid>
		<description><![CDATA[Just got this surprise, the president of UEVF (Union of Vietnamese Students in France) paid me 50€ for the website I built last week, the one which I put no much time into. And he asked me to build a website for his university class, btw he is 38 if my memory is good, of [...]]]></description>
			<content:encoded><![CDATA[<p>Just got this surprise, the president of UEVF (Union of Vietnamese Students in France) paid me 50€ for the website I built last week, the one which I put no much time into. And he asked me to build a website for his university class, btw he is 38 if my memory is good, of course I am paid, but don&#8217;t think it would be much just for drinks like a pourboire :p</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/50e-for-a-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rainny Paris</title>
		<link>http://link2caro.net/read/rainny-paris/</link>
		<comments>http://link2caro.net/read/rainny-paris/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 23:41:56 +0000</pubDate>
		<dc:creator>CA RO</dc:creator>
				<category><![CDATA[English]]></category>
		<category><![CDATA[Tiếng Việt]]></category>

		<guid isPermaLink="false">http://blog.link2caro.net/?p=122</guid>
		<description><![CDATA[Không bít bé nên gọi hôm nay là ngày buồn hay ngày vui đây, felt bad for the weather but felt so so so good for this 4 photos Bàn của tớ đây, ngồi nghịch cái máy ảnh :p Bé đi Champs-Elysées nhiều lắm rồi nhưng chưa bao giờ bít là có một cái Starbucks [...]]]></description>
			<content:encoded><![CDATA[<p>Không bít bé nên gọi hôm nay là ngày buồn hay ngày vui đây, felt bad for the weather but felt so so so good for this 4 photos<br />
<a href="http://www.flickr.com/photos/link2caro/2383242615/" title="Starbucks - Rue de Berri by CA RO, on Flickr"><img src="http://farm3.static.flickr.com/2403/2383242615_422d175a68.jpg" width="500" height="339" alt="Starbucks - Rue de Berri" /></a></p>
<p><a href="http://www.flickr.com/photos/link2caro/2384071852/" title="Starbucks - Rue de Berri by CA RO, on Flickr"><img src="http://farm4.static.flickr.com/3077/2384071852_796976fd59.jpg" width="500" height="339" alt="Starbucks - Rue de Berri" /></a></p>
<p>Bàn của tớ đây, ngồi nghịch cái máy ảnh :p</p>
<p><a href="http://www.flickr.com/photos/link2caro/2384071068/" title="Starbucks - Rue de Berri by CA RO, on Flickr"><img src="http://farm4.static.flickr.com/3235/2384071068_e2817f3bb4.jpg" width="500" height="338" alt="Starbucks - Rue de Berri" /></a></p>
<p><a href="http://www.flickr.com/photos/link2caro/2383239653/" title="Starbucks - Avenue des Champs-Elysées by CA RO, on Flickr"><img src="http://farm3.static.flickr.com/2319/2383239653_ea19db2442.jpg" width="500" height="339" alt="Starbucks - Avenue des Champs-Elysées" /></a></p>
<p>Bé đi Champs-Elysées nhiều lắm rồi nhưng chưa bao giờ bít là có một cái Starbucks tồn tại ở đó 8-} Cái nì chắc phải cảm ơn kưng ròy :p nhưng không thích cái atmosphere ở Starbucks Champs-Elysées đâu xô bồ lắm <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  không peaceful đâu :p toàn du lịch mà. Bé ôm lấy cái bàn ở Starbucks &#8211; Berri từ 2h đến 5h rồi quyết định đội mưa đội gió đi dạo, tại bùn ngủ quá <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  uống xong cốc whipped-cream expresso, lăn ra bùn ngủ <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Cốc cinnamon dolce latte thì nó tí quên cho cinnamon, cốc expresso, pha đến lần thứ 3 mới được, 2 lần đầu lúc phun kem bị tràn =)) cái bánh là Brownie</p>
<p>Đi lượn vào Sephora chơi, hỏi lung tung, được chỉ cái lọ Ultrared Man &#8211; Paco Rabanne, by any chance, kưng thử xem, cho bé ý kiến, bé thấy cũng thích, nhưng không hiểu sao bé nghĩ là cái mùi này kén người thích <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> )<br />
<a href="http://www.flickr.com/photos/link2caro/2383235741/" title="Sephora - Champs-Elysées by CA RO, on Flickr"><img src="http://farm3.static.flickr.com/2221/2383235741_da7fdbc0fa.jpg" width="500" height="339" alt="Sephora - Champs-Elysées" /></a></p>
<p>TGV new decor <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  khá thích :p mới được đi lần thứ 2 cái new decor thôi :p<br />
<a href="http://www.flickr.com/photos/link2caro/2383239013/" title="New TGV inside design by CA RO, on Flickr"><img src="http://farm4.static.flickr.com/3255/2383239013_4624a10165.jpg" width="500" height="339" alt="New TGV inside design" /></a></p>
<p>Hôm ni Paris trắng xóa, điểm mây xám <img src='http://link2caro.net/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  chán lắm, không lạnh lắm, lúc sáng đi từ nhà thì lạnh còn cả ngày thì mát mát tầm 12-15° chắc thía. Sáng ni bị lỡ tàu, thế là đi chuyến 9h (dự định là chuyến 6h) mấy chuyến 7h,8h còn toàn vé đắt gấp đôi 8-} nhưng chả sao đi ăn sáng ở ngoài, lâu rồi chả ăn sáng ở ngoài :p ăn 1 cái croissant, 1 cái briochette và một cốc expresso <img src='http://link2caro.net/wp-includes/images/smilies/icon_mad.gif' alt=':x' class='wp-smiley' />  thích.</p>
<p>Đi xem tận mắt cái Concept Car của Peugeot nữa, mấy hôm trước có đọc trên net đi qua cái showroom của nó thấy nhẩy vào tạch tạch vài cái ảnh luôn :p</p>
<p>Đi bộ dọc cả Champs-Elysées đi từ Khải Hoàn Môn đến Oblique (chưa bao giờ đi đến cái Oblique) <img src='http://link2caro.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> ) toàn đi gần gần đó cách tầm 1km nhưng chưa bao giờ đến tận chân :p</p>
<p>Tớ nhớ Ấy&#8230;</p>
<p>( After all I feel good for today, thay đổi không khí :p &#8211; chỉ tội là 1 ngày tốn gần 100€ thôi :p kinda too much )</p>
]]></content:encoded>
			<wfw:commentRss>http://link2caro.net/read/rainny-paris/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 1/377 queries in 0.395 seconds using apc
Object Caching 5517/6402 objects using apc

Served from: link2caro.net @ 2012-02-06 19:54:38 -->
