<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Pascal Charest - Consultant en logiciel libre</title>
	
	<link>http://blog.pacharest.com</link>
	<description>CloudMaster - Consultant en Logiciel Libre - Photographe</description>
	<lastBuildDate>Fri, 19 Feb 2010 20:50:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9-rare</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/PascalCharest" /><feedburner:info uri="pascalcharest" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>server maintenance.</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/JvV2a7TlBNM/</link>
		<comments>http://blog.pacharest.com/2010/02/server-maintenance/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 20:50:03 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1397</guid>
		<description><![CDATA[The server supporting this virtual instance (xen) just went through a big maintenance. Lots more memory now, going to be faster, going to be easier for this blog (and my other &#8216;webbased system&#8217;) to live with a zabbix instance. 
If you have any stake in fire0, sorry for those bug. 
]]></description>
			<content:encoded><![CDATA[<p>The server supporting this virtual instance (xen) just went through a big maintenance. Lots more memory now, going to be faster, going to be easier for this blog (and my other &#8216;webbased system&#8217;) to live with a zabbix instance. </p>
<p>If you have any stake in fire0, sorry for those bug. </p>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/JvV2a7TlBNM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2010/02/server-maintenance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2010/02/server-maintenance/</feedburner:origLink></item>
		<item>
		<title>MySQL’s innodb_file_per_table</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/8i1oA6IjPdc/</link>
		<comments>http://blog.pacharest.com/2010/02/mysqls-innodb_file_per_table/#comments</comments>
		<pubDate>Thu, 18 Feb 2010 00:02:08 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1395</guid>
		<description><![CDATA[I&#8217;m still alive &#8211; preparing my presentation for ConFoo conference (about massive scalability), writing an article on load balancer in the free software domain, doing a technical review of a book on Nginx (it should be pretty good), and driving my company at crazy speed (some new contracts and operations for existing ones). Ho, and [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m still alive &#8211; preparing my presentation for ConFoo conference (about massive scalability), writing an article on load balancer in the free software domain, doing a technical review of a book on Nginx (it should be pretty good), and driving my company at crazy speed (some new contracts and operations for existing ones). Ho, and I&#8217;m preparing a wedding (mine) &#8211; yeah, I&#8217;m alive and living my life at the fullest.</p>
<p>In the midst of all that, I&#8217;ve got a mandate involving MySQL databases and the import of a big chunk of data (about 8gb raw). Yeah, I know, some peoples reading my blog will know whom I speaking of. The data come with the schema, the load data queries and the CSV files. Should be pretty easy, long, but easy. </p>
<p><strong>Got that one wrong. I&#8217;ve been bitten by all the bugs that were on the road</strong>:<br />
 &#8211; MySQL LoadData (from CSV) use the TMPDIR variable (which was on root filesystem) and LoadData generate a temporary queries in that directory. In the present case, the 8GB raw csv represented over 40GB of required tmpdir space.<br />
 &#8211; MySQL Replication doesn&#8217;t live really well with importing large amount of data. The first (failed) import broke all the replication (ring of masters + slaves).<br />
 &#8211; and&#8230; </p>
<p><strong>MySQL&#8217;s innodb log file cannot shrink its size</strong>. That&#8217;s pretty simple as a rule, but it creates lots of problems when you have a failed import due to free space issue. Whatever you do, MySQL will NOT give back this hard drive space unless you dump all and re-import. The current case being a database of over 20GB, it&#8217;s really a no-go (and since you are lacking free space, dump is a no-go).</p>
<p>The important things to take away from that encounter is: always enable innodb_file_per_table on MySQL. The performance overhead will be minimal (very) &#8211; you might even get better performance depending on your file system tolerance for fragmentation &#8211; AND &#8211; you will be able to drop table and regain the disk space&#8230; even if its only for a couple hours. The drop of a 10GB database should always give you some free space ;-). Question is: why haven&#8217;t MySQL put this setting as default ? Its been around for long enough&#8230; is stable and does help the general user (a sysadmin) experience.</p>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/8i1oA6IjPdc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2010/02/mysqls-innodb_file_per_table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2010/02/mysqls-innodb_file_per_table/</feedburner:origLink></item>
		<item>
		<title>breathing space</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/wg_6mgZ57qc/</link>
		<comments>http://blog.pacharest.com/2010/01/breathing-space/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 14:20:32 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Conférence]]></category>
		<category><![CDATA[confoo]]></category>
		<category><![CDATA[consultant]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[labsphoenix]]></category>
		<category><![CDATA[Linux+DVD]]></category>
		<category><![CDATA[Personnel]]></category>
		<category><![CDATA[scalability]]></category>
		<category><![CDATA[talk]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1393</guid>
		<description><![CDATA[Last couples of weeks been pretty crazy. The number of drafts I&#8217;ve got prepared for this blog keep growing while my time to edit/publish them seem to strangely dissolve in the event around me. I&#8217;ve done my share of &#8216;This blog will get the time it deserve&#8217; quite enough to know not to do that [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Last couples of weeks been pretty crazy.</strong> The number of drafts I&#8217;ve got prepared for this blog keep growing while my time to edit/publish them seem to strangely dissolve in the event around me. I&#8217;ve done my share of &#8216;This blog will get the time it deserve&#8217; quite enough to know not to do that anymore. I won&#8217;t apologize for having a full schedule, I&#8217;ll just outline why I got one so full:</p>
<p> &#8211; Les Laboratoires Phoenix welcomes a new managed client, at the same time as I got my two first contractual employee (with enough job to drive them for years).<br />
 &#8211; I&#8217;ll be giving a talk at <a href="http://www.confoo.ca/en">ConFoo</a>, March 12th, called &#8216;Massive Scalability&#8217;. Be there, its going to be a pretty good one.<br />
 &#8211; I&#8217;ve been mandated to write another article for the European edition of <a href="http://lpmagazine.org/">Linux+DVD</a>. Deadline is in a couples days.<br />
 &#8211; I&#8217;ve started dancing classes. (No comments please ;-))<br />
 &#8211; With the wedding happening soon, we are totally swamped with stuff to do. From food tasting to getting whatever I will wear, going through hotel reservation, decoration choices&#8230; By themself, each task is quite easy to manage, but add to that the fact we are doing most of it remotely and that Catherine schedule is just crazy.  </p>
<p>At least, this morning, I&#8217;ve got a 20 minutes break, waiting for the bus thats going to take me to Montreal &#8211; on yet another &#8216;business trip&#8217;.</p>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/wg_6mgZ57qc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2010/01/breathing-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2010/01/breathing-space/</feedburner:origLink></item>
		<item>
		<title>backup or restore?</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/0ZvvOlVZChk/</link>
		<comments>http://blog.pacharest.com/2010/01/backup-or-restore/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 00:40:00 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[consultant]]></category>
		<category><![CDATA[jobs]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1386</guid>
		<description><![CDATA[Been away for 2 month (from this blog). This isn&#8217;t from the lack of thing to speak about &#8211; my life have been really busy. In fact, never been so interesting and full &#8211; I&#8217;ve got at least 10 posts drafted. From photography to sysadmin work, to writing. The problem : time was lacking &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>Been away for 2 month (from this blog). This isn&#8217;t from the lack of thing to speak about &#8211; my life have been really busy. In fact, never been so interesting and full &#8211; I&#8217;ve got at least 10 posts drafted. From photography to sysadmin work, to writing. The problem : time was lacking &#8211; to be honest, it still is. </p>
<p>But, beside everything that might be happening with my business (work log never been that full, started to get employees), I decided to take 2 minutes for a big fact of life (for sysadmin/management). Watch it, watch it: <strong>Nobody (especially YOU) care about backup. You care about successful restore</strong>. There! Now, I don&#8217;t want to hear about how great your backup are, if you don&#8217;t do regular restore (even as test), they&#8217;re not worth anything. </p>
<p>Reread those last sentences. Important point in a sysadmin life.</p>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/0ZvvOlVZChk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2010/01/backup-or-restore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2010/01/backup-or-restore/</feedburner:origLink></item>
		<item>
		<title>Hard schedule</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/TaulD7K-s_M/</link>
		<comments>http://blog.pacharest.com/2009/12/hard-schedule/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 12:35:59 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[activities]]></category>
		<category><![CDATA[Montreal]]></category>
		<category><![CDATA[Ottawa]]></category>
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1381</guid>
		<description><![CDATA[Big big week-end &#8211;  lots of stuff to do. In fact,  way too much stuff vs the time I have to do it. I don&#8217;t know how other entrepreneur does it. 
Anyway, in the top of the list, I&#8217;ll be going to a &#8216;wine &#038; cheese&#8216;, to Montreal to meet my family, to [...]]]></description>
			<content:encoded><![CDATA[<p>Big big week-end &#8211;  lots of stuff to do. In fact,  way too much stuff vs the time I have to do it. I don&#8217;t know how other entrepreneur does it. </p>
<p>Anyway, in the top of the list, I&#8217;ll be going to a &#8216;<strong>wine &#038; cheese</strong>&#8216;, to Montreal to <strong>meet my family</strong>, to the <strong>church to meet the priest</strong>. But, as always, I also need to work. So <strong>Sphinx</strong>, <strong>Chef</strong> &#038; <strong>Puppet</strong>, <strong>MySQL Multi-master replication</strong>, <strong>MySQL snapshot</strong> + <strong>recovery</strong>&#8230;. </p>
<p>&#8230; not counting the fact that a new website is underway for my enterprise (<a href="http://labsphoenix.com">Les Laboratoires Phoenix</a>), that I&#8217;m dealing with a designer for new logo and business cards, that my accounting is being entirely re-done to &#8216;account&#8217; for my migration to a corporation, that I need to finish 3 projects drafts by Monday morning (for the R&#038;D papers), and that I need to complete my invoicing for November. </p>
<p>.Don&#8217;t know how others does it, but I guess they just do. Like I&#8217;ll be doing this week-end. </p>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/TaulD7K-s_M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2009/12/hard-schedule/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2009/12/hard-schedule/</feedburner:origLink></item>
		<item>
		<title>PHP MultiPart Form-Data Denial of Service proof of concept</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/tfC9BN9Chsw/</link>
		<comments>http://blog.pacharest.com/2009/11/php-multipart-form-data-denial-of-service-proof-of-concept/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 16:12:29 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[consultant]]></category>
		<category><![CDATA[labsphoenix]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[sysadmin]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1376</guid>
		<description><![CDATA[PHP version 5.3.1 was just released. This release contains a patch for a denial of service condition we&#8217;ve reported on 27 October 2009. The problem is related with PHP&#8217;s handling of RFC 1867 (Form-based File upload in HTML).
Source: http://www.securityfocus.com/archive/1/507982
 Exploit already on PacketStorm&#8230; 
]]></description>
			<content:encoded><![CDATA[<blockquote><p>PHP version 5.3.1 was just released. This release contains a patch for a denial of service condition we&#8217;ve reported on 27 October 2009. The problem is related with PHP&#8217;s handling of RFC 1867 (Form-based File upload in HTML).</p></blockquote>
<p><strong>Source</strong>: <a href="http://www.securityfocus.com/archive/1/507982">http://www.securityfocus.com/archive/1/507982</a></p>
<p> Exploit already on <a href="http://packetstormsecurity.org/0911-exploits/php_mpfd_dos.py.txt">PacketStorm</a>&#8230; </p>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/tfC9BN9Chsw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2009/11/php-multipart-form-data-denial-of-service-proof-of-concept/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2009/11/php-multipart-form-data-denial-of-service-proof-of-concept/</feedburner:origLink></item>
		<item>
		<title>Cutting-edge of Cloud Computing</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/H2eqt7X_nbQ/</link>
		<comments>http://blog.pacharest.com/2009/11/cutting-edge-of-cloud-computing/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 04:43:04 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[consultant]]></category>
		<category><![CDATA[drbd]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[labsphoenix]]></category>
		<category><![CDATA[Montreal]]></category>
		<category><![CDATA[SAN]]></category>
		<category><![CDATA[vnodes.net]]></category>
		<category><![CDATA[wackamole]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1371</guid>
		<description><![CDATA[Just got off the bus in Montreal, Québec. This is a lightning visit, in 48 hours, I&#8217;ll be back in my office in Ottawa. But, right now, I&#8217;m taking a drink in one of my favorite downtown coffee shop and I&#8217;m planning.
The next few hours will see little sleep and lots of action ; More [...]]]></description>
			<content:encoded><![CDATA[<p>Just got off the bus in Montreal, Québec. This is a lightning visit, in 48 hours, I&#8217;ll be back in my office in Ottawa. But, right now, I&#8217;m taking a drink in one of my favorite downtown coffee shop and I&#8217;m planning.</p>
<p>The next few hours will see little sleep and lots of action ; More precisely I&#8217;ll be deploying lots of hardware (2 IBM SAN, 2 core servers, 2 switchs, 2 APC, 5 branchs servers &#8211; supporting up to 20 &#8216;leaf&#8217;/virtual servers), and then somes (3 couples of 2 systems in high redundancy (wackamole IP &#8216;fencing&#8217;, shared-storage through DRBD). All that will go in &#8216;my&#8217; new 48U cage @Hypertec (old nortel building) to act as a demo for some clients.  </p>
<p>Once that&#8217;s completed, the true fun start: A very big part of this infrastructure is going to be self-healing, failure resitant and high performance. We are speaking of : </p>
<li>automatic &#038; dynamic launch of new &#8216;branch&#8217; systems (xen dom0), without having to do anything more than to rack them (no OS install needed, can be upgraded by rebooting them), </li>
<li>high redundancy at the leaf level (xen domU, automatic migration toward less used dom0), </li>
<li>failure resistace through bonded interface, multi-path &#038; multi-host fiberchannel SAN &#038; controller&#8230; </li>
<p></p>
<p> This is going to be <strong>solid, scalable, fast</strong> : the holy grail of a lot of service provider that are aiming at automatization of their &#8216;hosting&#8217; business. The result of a lot of planning and testing ; <strong>the cutting-edge of cloud-computing</strong>. </p>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/H2eqt7X_nbQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2009/11/cutting-edge-of-cloud-computing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2009/11/cutting-edge-of-cloud-computing/</feedburner:origLink></item>
		<item>
		<title>Apple in the Sun ; I feel like an Oracle.</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/dbzQFb_wDso/</link>
		<comments>http://blog.pacharest.com/2009/10/apple-in-the-sun-i-feel-like-an-oracle/#comments</comments>
		<pubDate>Tue, 27 Oct 2009 20:12:31 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[filesystem]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[xsan]]></category>
		<category><![CDATA[zfs]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1364</guid>
		<description><![CDATA[Ok, 
After a title like that, I&#8217;m going to let you down with a very bad news: 
Apple cans the ZFS integration project. 
I&#8217;m really not happy about that, but we can&#8217;t do much about it. This is very weird because, last week, I drafted a post about ZFS &#038; XSAN2. It was about my [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, </p>
<p>After a title like that, I&#8217;m going to let you down with a very bad news: </p>
<blockquote><p><a href="http://mail.opensolaris.org/pipermail/zfs-discuss/2009-October/033125.html">Apple cans the ZFS integration project</a>. </p></blockquote>
<p>I&#8217;m really not happy about that, but we can&#8217;t do much about it. This is very weird because, last week, I drafted a post about ZFS &#038; XSAN2. It was about my expectation for the world of &#8216;integrated&#8217; filesystem&#8230; guess they are a bit lower now. </p>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/dbzQFb_wDso" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2009/10/apple-in-the-sun-i-feel-like-an-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2009/10/apple-in-the-sun-i-feel-like-an-oracle/</feedburner:origLink></item>
		<item>
		<title>Wolf trail – Gatineau Park</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/_3WHv9kZvX4/</link>
		<comments>http://blog.pacharest.com/2009/10/wolf-trail-gatineau-park/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 12:03:31 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[gatineau]]></category>
		<category><![CDATA[hiking]]></category>
		<category><![CDATA[Ottawa]]></category>
		<category><![CDATA[Personnel]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1353</guid>
		<description><![CDATA[Nice! Was about time I started moving again!
Great hiking yesterday, went for a variation of the Wolf Trail near the Blanchet Beach (@Lac Meech). About 350m of elevation gain and 7.5km walk in the forest.

Should be able to post one or two pictures today.


Wolf Trail &#8211; 8.3km return, expert, 400m elevation gain &#8211; The trail [...]]]></description>
			<content:encoded><![CDATA[<p>Nice! Was about time I started moving again!</p>
<p>Great hiking yesterday, went for a variation of the Wolf Trail near the Blanchet Beach (@Lac Meech). About 350m of elevation gain and 7.5km walk in the forest.<br />
<br />
Should be able to post one or two pictures today.<br />
</p>
<blockquote><p>
<strong>Wolf Trail</strong> &#8211; 8.3km return, expert, 400m elevation gain &#8211; The trail starts at parking lot P13 at Blanchet Beach and continues to a fork where you should keep left. You will shortly pass a beaver pond on your right. Further on the trial intersects with #38 and you should keep right at this point. You&#8217;ll next encounter the intersection with trail #1, the Fire Tower Road. The trail at this point is no longer numbered but keep going and you&#8217;ll reach you&#8217;re objective in no time, the very short spur to the Tawadina Lookout and an excellent overview of the Ottawa Valley. A little further on the trail swings back towards the start passing three more lookouts along the way before the final steep descent to the parking lot. The trail takes about 4 hours to complete.<br />
Source: <a href="http://www.out-there.com/gatineau.htm">http://www.out-there.com/gatineau.htm</a>
</p></blockquote>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/_3WHv9kZvX4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2009/10/wolf-trail-gatineau-park/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2009/10/wolf-trail-gatineau-park/</feedburner:origLink></item>
		<item>
		<title>Couples of stats/facts.</title>
		<link>http://feedproxy.google.com/~r/PascalCharest/~3/YFulrEOV7FI/</link>
		<comments>http://blog.pacharest.com/2009/10/pascal-and-labsphoenix-in-stats/#comments</comments>
		<pubDate>Sat, 10 Oct 2009 14:15:07 +0000</pubDate>
		<dc:creator>pascal.charest</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Asterisk]]></category>
		<category><![CDATA[cloud computing]]></category>
		<category><![CDATA[freesoftware]]></category>
		<category><![CDATA[glusterfs]]></category>
		<category><![CDATA[GNU/Linux]]></category>
		<category><![CDATA[labsphoenix]]></category>
		<category><![CDATA[Lustre]]></category>
		<category><![CDATA[mailman]]></category>
		<category><![CDATA[masi]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[personnal]]></category>
		<category><![CDATA[sme]]></category>
		<category><![CDATA[zabbix]]></category>
		<category><![CDATA[zimbra]]></category>

		<guid isPermaLink="false">http://blog.pacharest.com/?p=1345</guid>
		<description><![CDATA[As I look over 6 very interesting projects overview on my desk, I&#8217;m forced to do a bit of thinking about how the last year went by. A year is a lot of time, and so much plans finally came to fruition that I can&#8217;t think of listing them all here today.  Which is [...]]]></description>
			<content:encoded><![CDATA[<p>As I look over <em>6 very interesting projects</em> overview on my desk, I&#8217;m forced to do a bit of thinking about how the last year went by. A year is a lot of time, and so much plans finally came to fruition that I can&#8217;t think of listing them all here today.  Which is kinda a good sign for me and my enterprise ;-)<br />
<br />
Most of my readers doesn&#8217;t really know who I am, even when you take into account that I blog under my real name. Most don&#8217;t know that I bought a condo in Hull (now part of Gatineau, near Ottawa &#8211; the capital of Canada), that I still have a rent in Montreal, that I proposed to my girlfriend (she said &#8220;Yes!&#8221;), that I own a dog (greatest experience of forcing a regular schedule I ever had), that my greatest motivation in life is to be able to go where I want, whenever I want. My dream is going back to Yosemite, California&#8230; and bring hiking gear.<br />
<br />
Another big aspect of my life is my business, <em>Les Laboratoires Phoenix</em>. I&#8217;ve been working full time at it for the last 9 months and its been a great experience. Over those months : I&#8217;ve worked with clients from 7 countries, contributed to 3 major open source projects, went to the &#8220;Free Software Foundation&#8221; Libre Planet confrence in Boston, went to the DefCon in Las Vegas, I&#8217;ve been named SME for {<a href="http://zabbix.com">Zabbix</a>, <a href="http://zimbra.com">Zimbra</a>, <a href="http://www.asterisk.org/">Asterisk</a>, <a href="http://www.openldap.org/">OpenLDAP</a>, extended LAMP Stack, <a href="http://www.gnu.org/software/mailman/index.html">Mailman</a>, <a href="http://www.gluster.org/">GlusterFS</a>, Lustre, MySQL, Cloud Computing, &#8230;}, 3 of my articles have been published (>40K prints), and I&#8217;m involved in a book project (from a major publisher)&#8230;<br />
<br />
And, even thinking about all those achievements, I still look for the future of <a href="http://labsphoenix.com">Les Laboratoires Phoenix</a>. I guess that working with startups influenced me a lot : those 6 projects are all different from each others, they represent good revenue potential (clear business plan) and require low capital input to be started. So, I guess I&#8217;ll stop speaking about them and work ;-). Btw, two of those projects would be online services (SAAS) for well known parts of Internet infrastructure (not webserver). Another is a cloud computing infrastructure services based in Montreal (this one if almost finished! &#038; I got an hardware provider)&#8230; A lot of fun to be had.<br />
<br />
More news to come. </p>
<img src="http://feeds.feedburner.com/~r/PascalCharest/~4/YFulrEOV7FI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.pacharest.com/2009/10/pascal-and-labsphoenix-in-stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://blog.pacharest.com/2009/10/pascal-and-labsphoenix-in-stats/</feedburner:origLink></item>
	</channel>
</rss>
