<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.6" -->
<rss version="0.92">
<channel>
	<title>Darkis - Developpeur web 2.0, php, C/C++ -</title>
	<link>http://www.boxcreation.com/blog</link>
	<description>Pour mieux voir les choses !</description>
	<lastBuildDate>Fri, 16 Jul 2010 16:09:22 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>resolvconf: Error: /etc/resolv.conf must be a symlink</title>
		<description><![CDATA[fix:

/etc$ sudo ln -s /etc/resolvconf/run/resolv.conf

Actually, for me it required to follow the following steps (I learned from launchpad, bug #324233):
Before:

$ ls -l /etc/resolv.conf
&#160;
-rw-r--r-- 1 root root 30 2009-08-16 13:38 /etc/resolv.conf
$ sudo rm /etc/resolv.conf
$ sudo ln -s /etc/resolvconf/run/resolv.conf /etc/resolv.conf
$ ls -l /etc/resolv.conf
lrwxrwxrwx 1 root root 31 2009-08-16 13:42 /etc/resolv.conf -&#38;gt /etc/resolvconf/run/resolv.conf
$ sudo reboot

After:

$ ls -l /etc/resolv.conf
lrwxrwxrwx [...]]]></description>
		<link>http://www.boxcreation.com/blog/2010/04/13/resolvconf-error-etcresolvconf-must-be-a-symlink/</link>
			</item>
	<item>
		<title>Boonex dolphin what?</title>
		<description><![CDATA[Pourquoi Boonex est une arnaque?
problème Boonex NR1. Aucune norme de codage
Boonex est écrit par plusieurs personnes en utilisant différentes technologies. Sa base principale (Dolphin) est écrit en PHP pur avec son propre moteur de template et un forum (Orca) utilise XSLT. Cela a de grandes répercussions négatives de l&#8217;intégration du forum dans le site et [...]]]></description>
		<link>http://www.boxcreation.com/blog/2010/04/02/boonex-dolphin-what/</link>
			</item>
	<item>
		<title>How to install an updated version of PEAR / PHPUnit on Ubuntu</title>
		<description><![CDATA[
First, install PEAR.


sudo apt-get install php-pear

Next, tell PEAR to update its own channel.

sudo pear channel-update pear.php.net

Then, tell PEAR to upgrade itself to the newest version.

sudo pear upgrade-all

You should now have the newest version of PEAR installed.
To install PHPUnit, let PEAR know where to find PHPUnit.

sudo pear channel-discover pear.phpunit.de

Then install PHPUnit. (the -a makes sure all [...]]]></description>
		<link>http://www.boxcreation.com/blog/2010/03/09/how-to-install-an-updated-version-of-pear-phpunit-on-ubuntu/</link>
			</item>
	<item>
		<title>Howto install the new Skype version 2.1 beta in Ubuntu</title>
		<description><![CDATA[Skype is a software application that allows users to make voice calls over the Internet. Calls to other users of the service and, in some countries, to free-of-charge numbers are free, while calls to other landlines and mobile phones can be made for a fee. Additional features include instant messaging, file transfer and video conferencing.
Note:- [...]]]></description>
		<link>http://www.boxcreation.com/blog/2010/01/15/howto-install-skype-21-beta-in-ubuntu/</link>
			</item>
	<item>
		<title>Hot asian girl breaks her boyfriend playstation 3 with hammer</title>
		<description><![CDATA[Les copines de Geek peuvent parfois péter un cable quand elle voit leur copain passé plus de temps sur leur console que sur elles!
Certaines femmes n&#8217;aiment pas être  à l&#8217;écarte par une console.
Aujourd’hui, c’est une autre jeune femme qui ne supporte plus de voir son copain passait des heures sur un jeu.
J&#8217;aimerais pas être a [...]]]></description>
		<link>http://www.boxcreation.com/blog/2010/01/06/asian-girl-break-playstation3-hammer/</link>
			</item>
	<item>
		<title>What UUIDs Are and How To Use Them in Ubuntu</title>
		<description><![CDATA[If you tried installing or upgrading Ubuntu recently, you probably noticed that all the storage devices are now using UUID – Universally Unique IDentifiers. I&#8217;m not claiming to know everything there is to know about UUIDs, but have become quite comfortable managing them lately, so hopefully this post will help you achieve the same.
What is [...]]]></description>
		<link>http://www.boxcreation.com/blog/2010/01/04/what-uuids-are-and-how-to-use-them-in-ubuntu/</link>
			</item>
	<item>
		<title>Easy Fast Lockerz invites.</title>
		<description><![CDATA[One of the hottest sites on the web right now is called Lockerz but the only problem is you need an invite. This is called a Lockerz invite and has to be sent to you via another Lockerz member.
On the website Lockerz you can play games, watch movies, listen to music and many other activities [...]]]></description>
		<link>http://www.boxcreation.com/blog/2010/01/03/easy-fast-lockerz-invites/</link>
			</item>
	<item>
		<title>Remote Desktop slow problem solved</title>
		<description><![CDATA[Remote Desktop 6.0, the latest version of Microsoft Remote Desktop client, which comes pre-installed with Vista was slower than molasses when I tried connecting to some Windows 2003 servers. In particular, I was trying to manage a Windows 2003 R2 64-bit Server running Exchange 2007 with 4GB of RAM and a fast 1.83Ghz dual-core processor. [...]]]></description>
		<link>http://www.boxcreation.com/blog/2009/11/05/remote-desktop-slow-problem-solved/</link>
			</item>
	<item>
		<title>phpIp2Country - PHP geolocalization class</title>
		<description><![CDATA[This class can be used to determine the country of a given IP searching in an IP range database.
It accesses a SQL database that has a table with the countries associated to each known IP range.
The IP address to check is searched to determine which IP range it belongs. If its IP range is found, [...]]]></description>
		<link>http://www.boxcreation.com/blog/2009/10/28/phpip2country-php-geolocalization-class/</link>
			</item>
	<item>
		<title>Detecting if your application is already running in C/C++</title>
		<description><![CDATA[how to detect if your application is already running in C/C++?
The Mutex may seem like a weird and wonderful term, but it is simply a means of creating a unique process ID within the windows operating system. You can use these values for many different means, but here it is being used to uniquely identify [...]]]></description>
		<link>http://www.boxcreation.com/blog/2009/10/25/detecting-if-your-application-is-already-running-in-cc/</link>
			</item>
</channel>
</rss>
