<?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>vizou.com &#187; Actualités</title>
	<atom:link href="http://vizou.com/category/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://vizou.com</link>
	<description>Design pour } for culture</description>
	<lastBuildDate>Mon, 30 Aug 2010 01:34:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding a jQuery slider to a self-hosted WordPress site</title>
		<link>http://vizou.com/2010/05/adding-a-jquery-slider-to-a-self-hosted-wordpress-site/</link>
		<comments>http://vizou.com/2010/05/adding-a-jquery-slider-to-a-self-hosted-wordpress-site/#comments</comments>
		<pubDate>Mon, 24 May 2010 17:56:23 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>
		<category><![CDATA[Geekery]]></category>

		<guid isPermaLink="false">http://vizou.com/?p=106236539</guid>
		<description><![CDATA[In the search for a jQuery "slider" (made popular by the nice one at http://panic.com) for a client's WordPress installation, I decided to give EasySlider a try. After QUITE a bit of tinkering I was able to integrate it into the site and there were moments I thought the plugin ought to be entitled NotSoEasySlider, which is a greater reflection on how WordPress made it a bit complicated than on the great work by the author, Alen Grakalic! ]]></description>
			<content:encoded><![CDATA[<p>In the search for a jQuery &#8220;slider&#8221; (made popular by the nice one at <a href="http://panic.com">http://panic.com</a>) for a client&#8217;s WordPress installation, I decided to give EasySlider a try. After QUITE a bit of tinkering I was able to integrate it into the site and there were moments I thought the plugin ought to be entitled NotSoEasySlider, which is a greater reflection on how WordPress made it a bit complicated than on the great work by the author, <a title="Alen Grakalic" href="http://grakalic.com/" target="_blank">Alen Grakalic</a>! Along the way, I boned up on how to use the existing jQuery already loaded by WordPress (saving on resources) and a few more tricks to ensure that jQuery loaded properly for the plugin (paths can be frustrating!).</p>
<p>Click on the image to see a demo. The demo is in my own site and is a slightly adapted version (different height, content; doesn&#8217;t really go with my site!) than on the client site as their site is not yet live.</p>
<p><a title="easySlider demo" href="/examples"><img class="alignnone size-large wp-image-106236565" title="easySlider custom installation" src="http://vizou.com/wp-content/uploads/slider_screenshot-900x272.jpg" alt="easySlider custom installation" width="500" height="151" /></a></p>
<h3>Objective</h3>
<p>My goal was to have a &#8220;featured&#8221; area on the home page where weekly specials would be displayed in a continuous horizontal slider, each one a Post in a category titled &#8220;featured&#8221;. Only the last 3 items would be displayed.</p>
<h3>Ingredients</h3>
<p>These are the files you&#8217;ll need to either create or edit.</p>
<p><strong>js folder</strong> (create it in your theme folder; although it could be elsewhere)<strong><br />
easySlider.js</strong> (download and put it in the js folder)<strong><br />
slider.php</strong> (create this document in your theme folder)<strong><br />
index.php </strong>(or whatever page you want to display the slider on)<strong><br />
header.php</strong> (in your theme)<strong><br />
style.css</strong> (in your theme)</p>
<h3>Instructions</h3>
<p>Before I start, I want to mention that I&#8217;m first and foremost a designer and my years of scanning things that are neatly lined up to the left prevents me from being able to efficiently read (or write) indented code. I&#8217;ve tried and tried, but it just doesn&#8217;t work for me, so my apologies to you hard-boiled coders! So, here&#8217;s what to do if you&#8217;re trying to do this kind of implementation :</p>
<p><strong>1. </strong>Download the slider code from CSSGlobe at <a href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider">http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider</a></p>
<p><strong>2. </strong>Creat a folder called <span style="color: #ff0000;">js</span> in your client WordPress theme and copy easyslider.js into it. I took the version number off of the script title because I wanted to be able to easily update it without changing the link in the WP header to reflect the newer version.</p>
<p><strong>3. </strong>Open <span style="color: #ff0000;"><span class="highlight">header.php</span></span> in your theme (or create a custom header if this is just for use on one page) and add the following just before <span style="color: #ff0000;">wp_head</span> (after your stylesheet and RSS links). This is really, really important to getting it working in WordPress as this code makes sure that WordPress&#8217;s jQuery is queued up for use by the javascript function we&#8217;re about to add. This way, we don&#8217;t have to add ANOTHER link to ANOTHER instance of jQuery (which you would need to link to if your site didn&#8217;t already have it activated). I also discovered that WordPress includes the latest, streamlined version of jQuery and uses what is referred to as &#8220;no-conflict&#8221; mode so that (hopefully) it won&#8217;t clash with plugins that try to use a different version. Or something like that. Google it.</p>
<pre class="brush:php">&lt;?php wp_enqueue_script("jquery"); ?&gt;</pre>
<p>Then comes&#8230;</p>
<pre class="brush:php">&lt;?php wp_head(); ?&gt;</pre>
<p>Followed by the link to the plugin. Please note that I used the full path to avoid additional queries being made by WordPress template tags, but you could do it that way (i.e blog_url and  template_url). And notice that the only link is to the easySlider script; I&#8217;ve left off the link to jQuery which Alen includes in his instructions (which are not for installation on WordPress)  :</p>
<pre class="brush:js">&lt;script type="text/javascript" src="<a href="http://yourdomain.com/wp-content/themes/yourtheme/js/easySlider.js">http://yourdomain.com/wp-content/themes/yourtheme/js/easySlider.js</a>"&gt;&lt;/script&gt;
</pre>
<p>Note that the easySlider instructions tell us to use the following code  following the link to the script :</p>
<pre class="brush:js">&lt;script type="text/javascript"&gt;
$(document).ready(function(){
$("#slider").easySlider({
continuous: true,
controlsFade: false
});
});
&lt;/script&gt;</pre>
<p>But this wasn&#8217;t working for me, so I went looking for the answer. A comment from reader Otto (no link given, but THANKS, Otto!) in response to <a title="Digging WordPress" href="http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/" target="_blank">this fantastic article</a> by <a title="Chris Coyier" href="http://chriscoyier.net/" target="_blank">Chris Coyier</a> in the <a title="CSS-Tricks" href="http://css-tricks.com">CSS-Tricks</a> forum about properly loading jQuery suggested employing this different structure, which is what I did, and it worked like a charm! Apparently it prevents conflict with certain plugins that use the $ variable.</p>
<pre class="brush:js">
<pre class="brush:js">jQuery(document).ready(function($){
// your $ code here
});<span id="more-106236539"></span></pre>
<p>So here's what I did  after reading that :</pre>
<pre>&lt;script type="text/javascript"&gt;
jQuery(document).ready(function($){
$("#slider").easySlider({
continuous: true,
controlsFade: false
});
});
&lt;/script&gt;</pre>
<p>The easySlider plugin has a ton of options, including automatic scrolling, continuous (endless carousel), option to fade out next/previous controls when they&#8217;re not useful, numeric slide navigation and more. I opted for continuous and didn&#8217;t want the disappearing controls since I created a design that lets users click on arrows to go forward or backward (or just forward or backward, endlessly!).</p>
<p><strong>4. </strong>Visually speaking, in my client&#8217;s theme the slider is positioned across the top  of two righthand sidebars, so I had to mess with the original CSS to  adjust to a different width as well as a <span style="color: #ff0000;">li</span> containing more than a  simple image of exactly the right size! I added it to the appropriate  template in their theme with this :</p>
<pre>&lt;?php include(TEMPLATEPATH."/slider.php");?&gt;</pre>
<p><strong>5. </strong>The CSS is without a doubt the hardest part of all this. A tip I can offer is that you need to understand up front that Alen has configured the javascript to handle layout and navigation using unordered lists (<span style="color: #ff0000;">ul</span>, <span style="color: #ff0000;">li</span>) so EACH SLIDE is a single <span style="color: #ff0000;">li</span>. This is easy if your list item will always be a single image or a few lines of text. I couldn&#8217;t do it the easy way, of course; I wanted each <span style="color: #ff0000;">li</span> to be a complete post with a link to the post. I started out by trying to do this using the handy Simple Image Grabber plugin and the_excerpt and got frustrated by problems with the math that manages the &#8220;continuous&#8221; option. It didn&#8217;t like my floating two line items next to each other to fill the (actually double) space in a single &#8220;slide&#8221;. Finally, I opted for a WP query that grabbed 6 posts from the appropriate category and put the entire content, including image, into a single line item as intended. If I was any good at javascript I&#8217;d probably figure out how to change the selectors and customize the easySlider script but I&#8217;d already spent an entire day trying to get this working, so I&#8217;ll leave that &#8217;til another day!</p>
<p>Here&#8217;s what the CSS looks like for the demo version here on my site (you&#8217;ll likely be messing with the #slider li width and height and the padding around the post text). The text for the buttons (which I&#8217;ve included in the demo but not in my client&#8217;s site) is in the easySlider.js itself.</p>
<pre class="brush:css">
<pre class="brush:css">#featured {
width: 450px;
height: 290px;
background: #fff url(images/featured.jpg) no-repeat -8px -12px;
border: 1px solid #ccc;
overflow: hidden;
margin-top: 10px;
}

#slider {
}

#slider img {
float: left;
margin: 0 10px 0 0;
padding: 5px;
width: 150px;
height: auto;
}

.slide-title {
color: #fff;
font-weight: bold;
line-height: 100%;
display: block;
text-align: center;
margin-bottom: 35px;
}

#slider p {
padding: 0 15px;
}

#slider ul,
#slider li {
list-style: none;
overflow: hidden;
margin: 0;
}

#slider li {
width: 440px;
height: 290px;
padding: 5px 0px;
overflow: hidden;
}

#prevBtn,
#nextBtn {
display: block;
width: 80px;
position: absolute;
top: 92px;
font-size: 0.8em;
}

#prevBtn {
left: 53px;
}

#nextBtn {
left:418px;
}

#prevBtn a,
#nextBtn a {
color: #fff;
display: block;
width: 80px;
height: 32px;
padding-top: 5px;
text-transform: uppercase;
}</pre>
</pre>
<h3>Resources for this post</h3>
<p><a href="http://vizou.com/wp-content/uploads/easySlider_WordPress_integration.zip">Download zipped text file containing above code</a> | <a title="Download easySlider" href="http://cssglobe.com/lab/easyslider1.7/easyslider1.7.zip">Download easySlider 1.7</a></p>
<p>Help and research for this project.</p>
<p><a href="http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider">http://cssglobe.com/post/5780/easy-slider-17-numeric-navigation-jquery-slider</a></p>
<p><a href="http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/">http://digwp.com/2009/06/including-jquery-in-wordpress-the-right-way/</a></p>
<p><a href="http://codex.wordpress.org/Function_Reference/wp_enqueue_script">http://codex.wordpress.org/Function_Reference/wp_enqueue_script</a></p>
<p><a href="http://justintadlock.com/archives/2009/08/06/how-to-disable-scripts-and-styles">http://justintadlock.com/archives/2009/08/06/how-to-disable-scripts-and-styles</a></p>
<p><a href="http://css-tricks.com/forums">http://css-tricks.com/forums</a></p>
<p><a href="http://digwp.com/book/">http://digwp.com/book/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2010/05/adding-a-jquery-slider-to-a-self-hosted-wordpress-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Debugging MailChimp RSS-to-Email from Wordpress Custom Feed</title>
		<link>http://vizou.com/2010/02/debugging-mailchimp-rss-to-email-from-wordpress-custom-feed/</link>
		<comments>http://vizou.com/2010/02/debugging-mailchimp-rss-to-email-from-wordpress-custom-feed/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 01:40:37 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>
		<category><![CDATA[Geekery]]></category>

		<guid isPermaLink="false">http://vizou.com/2010/02/debugging-mailchimp-rss-to-email-from-wordpress-custom-feed/</guid>
		<description><![CDATA[I spent nearly 2 solid days trying to figure out why the latest posts on one of my clients' sites were not showing up in the "popup preview" provided by email marketing site MailChimp. I love http://MailChimp.com, but this had me stumped and my eyes were beginning to cross. I had already spent countless hours learning how to create a custom RSS feed, template and query in Wordpress (future, much bigger article). ]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost"><img src="http://posterous.com/getfile/files.posterous.com/vizou/TYtvqZTFxFNrM9Q5FpEXsY4bGvFMxwAbfPAXGoZiBEB5EGbiYx3sutVAIkLK/pastedGraphic.jpg" alt="" width="240" height="250" /></div>
<div class="posterous_autopost">I spent nearly 2 solid days trying to figure out why the latest posts on one of my clients&#8217; sites were not showing up in the &#8220;popup preview&#8221; provided by email marketing site MailChimp. I love <a href="http://MailChimp.com">http://MailChimp.com</a>, but this had me stumped and my eyes were beginning to cross. I had already spent countless hours learning how to create a custom RSS feed, template and query in Wordpress (future, much bigger article). The answer had to be in either the RSS feed itself – which validated perfectly and showed up as planned in my Feedly page – or there was some Wordpress or MailChimp quirk. After reading, studying, trying and tweaking (see resources below), I finally found that it most likely had to do with the way Wordpress writes the publish date (lastBuildDate in XML) to the database. Just changing the date or unpublishing/republishing didn&#8217;t fix the problem, but copying the content and creating a brand new post (and chucking the old one) did. Luckily, I only had to do this for a few posts. Whew!</div>
<div class="posterous_autopost">
<p>This all came about because I needed to reset the original publish date on a monthly RSS-to-email campaign to a different day and MailChimp was apparently not able to see some of the original posts as &#8220;new&#8221; when I paused and restarted my campaign a few times. Now it remains to be seen if this really fixes the problem for next month, too, but I have my fingers and toes crossed!</p>
<p>Custom RSS feed resources that I found helpful :</p>
<p><a href="http://www.frank-verhoeven.com/create-an-rss-feed-with-wordpress/">http://www.frank-verhoeven.com/create-an-rss-feed-with-wordpress/</a><br />
<a href="http://yoast.com/custom-rss-feeds-wordpress/">http://yoast.com/custom-rss-feeds-wordpress/</a><br />
<a href="http://www.pearsonified.com/2007/06/how-to-format-images-for-feed-readers.php">http://www.pearsonified.com/2007/06/how-to-format-images-for-feed-readers.php</a><br />
<a href="http://dailycupoftech.com/2007/07/25/creating-custom-wordpress-feeds/">http://dailycupoftech.com/2007/07/25/creating-custom-wordpress-feeds/</a><br />
<a href="http://digwp.com/2009/09/easy-custom-feeds-in-wordpress/">http://digwp.com/2009/09/easy-custom-feeds-in-wordpress/</a><br />
<a href="http://www.rssboard.org/rss-specification">http://www.rssboard.org/rss-specification</a></p>
<p>(Cool Feed Me t-shirt available from <a href="http://www.bytelove.com/bytelove-clothes/geek/rss-feed-me/prod_34.html)">http://www.bytelove.com/bytelove-clothes/geek/rss-feed-me/prod_34.html)</a></p>
<p style="font-size: 10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://vizou.posterous.com/debugging-mailchimp-rss-to-email-from-wordpre">vizou</a></p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2010/02/debugging-mailchimp-rss-to-email-from-wordpress-custom-feed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Feedly, aggregateur de flux RSS extra!</title>
		<link>http://vizou.com/2010/01/feedly-aggregateur-de-flux-rss-extra/</link>
		<comments>http://vizou.com/2010/01/feedly-aggregateur-de-flux-rss-extra/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 00:41:07 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>

		<guid isPermaLink="false">http://vizou.com/2010/01/feedly-aggregateur-de-flux-rss-extra/</guid>
		<description><![CDATA[Depuis son lancement il y a moins qu&#8217;un an, je suis sérieusement amoureuse de l&#8217;application (extension Firefox) Feedly qui est un aggregateur de flux RSS sans pareille. C&#8217;est ma page d&#8217;accueil dans Firefox, ma lecture de soirée, ma façon de surveiller des centaines de sites ou blogues que je n&#8217;ai pas assez de temps à [...]]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost"><img src="http://posterous.com/getfile/files.posterous.com/vizou/gwylcX13S8B6ies0m9jihUt4hTIpYuMeq8xGAMj9OI789PuW1DWoAhy3BN7G/feedly.jpg" alt="Feed me" width="272" height="240" />Depuis son lancement il y a moins qu&#8217;un an, je suis sérieusement amoureuse de l&#8217;application (extension Firefox) Feedly qui est un aggregateur de flux RSS sans pareille. C&#8217;est ma page d&#8217;accueil dans Firefox, ma lecture de soirée, ma façon de surveiller des centaines de sites ou blogues que je n&#8217;ai pas assez de temps à visiter par URL. De plus, l&#8217;équipe de Feedly est incroyable! Hier, j&#8217;ai eu le mauvais surprise de voir un élément de l&#8217;interface de Feedly change d&#8217;un manière choquant (pour moi). Je voulait pleurer&#8230; mais j&#8217;ai lancé un &#8220;tweet&#8221; @feedly et en moins de 1 minute j&#8217;ai eu un message direct! J&#8217;ai aussi fait une recherche sur les #hashtags Twitter où j&#8217;ai trouvé nombreuses de personnes insatisfait avec le &#8220;nouveau&#8221; Feedly. Ensuite, je suis allé laissé des objections sur GetSatisfaction (dont je ne suis pas vraiment un fan) et voilà, une réponse de Feedly dans 5 minutes&#8230; et la fin de l&#8217;histoire c&#8217;est que je ne suis pas la seule qui aimait pas les modifications; alors, ils m&#8217;ont demandé mes réponses et idées&#8230; et ils vont faire des changements pour plaire à tous qui aimait certains options dans l&#8217;original tableau de bord. Wow! Vive Feedly!</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2010/01/feedly-aggregateur-de-flux-rss-extra/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Posterous is totally cool!</title>
		<link>http://vizou.com/2010/01/posterous-is-totally-cool/</link>
		<comments>http://vizou.com/2010/01/posterous-is-totally-cool/#comments</comments>
		<pubDate>Sat, 23 Jan 2010 00:11:25 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>

		<guid isPermaLink="false">http://vizou.com/2010/01/posterous-is-totally-cool/</guid>
		<description><![CDATA[
I just posted this using the web service http://posterous.com where you can create links with a host of blogs, social sites and more, and then send posts via email. I fooled around with it a bit first to see what it came out like and here are a few tips :
 1. I&#8217;m posting to [...]]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><img src="http://posterous.com/getfile/files.posterous.com/vizou/mcOc8Qg0Ks46xxy1QcCQPjmJNybNh3J2j4JtV4kbYzzcIahAu8CX8younyHT/posterous.jpg" width="320" height="190"/>
<p>I just posted this using the web service <a href="http://posterous.com">http://posterous.com</a> where you can create links with a host of blogs, social sites and more, and then send posts via email. I fooled around with it a bit first to see what it came out like and here are a few tips :
<p /> 1. I&#8217;m posting to a WordPress blog (self-hosted) so I needed to set my default category in Dashboard/Settings/Write to the appropriate category for where I want the post to appear (this seems like something Posterous needs to deal with in the future, allowing some sort of method for selecting a category).
<p /> 2. When I created my email, once I&#8217;d written it I set it to be formatted as plain text to avoid getting all sorts of crap code in my nice, neat post.
<p /> 3. I&#8217;m using Apple Mail to send usually, so I after I attached an image, I made sure to select a decent size so it wouldn&#8217;t overwhelm my post.
<p /> That&#8217;s about it! It works just great and will save hassle when posting from the road (or my iPod Touch).</p>
</p></div>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2010/01/posterous-is-totally-cool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>patrimoinevivant.qc.ca</title>
		<link>http://vizou.com/2009/12/patrimoinevivant-qc-ca/</link>
		<comments>http://vizou.com/2009/12/patrimoinevivant-qc-ca/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 21:36:50 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>
		<category><![CDATA[Portefolio]]></category>

		<guid isPermaLink="false">http://vizou.com/?p=278</guid>
		<description><![CDATA[
Site web pour l&#8217;organisation Conseil québécois du patrimoine vivant à Québec. Fait en Wordpress, c&#8217;est un site très complexe qui implique nombreux d&#8217;aspects et fonctions : l&#8217;adhésion et répertoire des membres par champs d&#8217;activité, actualités dans le secteur culturel-politico, paiement d&#8217;inscriptions en ligne, téléchargement et entretien de documents PDF, flux RSS spécialisé qui envoi automatiquement [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://vizou.com/wp-content/uploads/Conseil-québécois-du-patrimoine-vivant1.jpg"><img class="alignnone size-medium wp-image-279" title="Conseil québécois du patrimoine vivant" src="http://vizou.com/wp-content/uploads/Conseil-québécois-du-patrimoine-vivant1-300x213.jpg" alt="Conseil québécois du patrimoine vivant" width="300" height="213" /></a></p>
<p>Site web pour l&#8217;organisation <strong>Conseil québécois du patrimoine vivant</strong> à Québec. Fait en Wordpress, c&#8217;est un site très complexe qui implique nombreux d&#8217;aspects et fonctions : l&#8217;adhésion et répertoire des membres par champs d&#8217;activité, actualités dans le secteur culturel-politico, paiement d&#8217;inscriptions en ligne, téléchargement et entretien de documents PDF, flux RSS spécialisé qui envoi automatiquement un bulletin mensuel RSS-vers-courriel aux membres.</p>
<p>Site for the <strong>Conseil québécois du patrimoine vivant</strong> in Québec City. Running Wordpress, it is a complex site that invovles numerous characteristics and functions : online signup and member directory by field of activity, news from cultural and political sector, online membership payment, download and maintenance of PDF documents, a custom RSS feed automatically sending a monthly RSS-to-email newsletter to members.</p>
<p><a href="http://patrimoinevivant.qc.ca">http://patrimoinevivant.qc.ca</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2009/12/patrimoinevivant-qc-ca/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jeremykittel.com</title>
		<link>http://vizou.com/2009/12/jeremykittel-com/</link>
		<comments>http://vizou.com/2009/12/jeremykittel-com/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 21:21:49 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>
		<category><![CDATA[Portefolio]]></category>

		<guid isPermaLink="false">http://vizou.com/?p=276</guid>
		<description><![CDATA[
Working on a new website for award winning American fiddler Jeremy Kittel.This is a design for a single holding page while the complete site is developed (it will be up very soon).
Je travail actuellement sur le design du site web pour le violoniste américain Jeremy Kittel. Cette image provient de la page d&#8217;attente pendant que [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://vizou.com/wp-content/uploads/Jeremy-Kittel.jpg"><img class="alignnone size-medium wp-image-273" title="Jeremy Kittel" src="http://vizou.com/wp-content/uploads/Jeremy-Kittel-300x185.jpg" alt="Jeremy Kittel" width="300" height="185" /></a></p>
<p>Working on a new website for award winning American fiddler Jeremy Kittel.This is a design for a single holding page while the complete site is developed (it will be up very soon).</p>
<p>Je travail actuellement sur le design du site web pour le violoniste américain Jeremy Kittel. Cette image provient de la page d&#8217;attente pendant que le site complèt est en construction (bientôt à l&#8217;affiche).</p>
<p><a href="http://jeremykittel.com">http://jeremykittel.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2009/12/jeremykittel-com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>violontradquebec.com</title>
		<link>http://vizou.com/2009/12/violontradquebec/</link>
		<comments>http://vizou.com/2009/12/violontradquebec/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 19:37:42 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>
		<category><![CDATA[Portefolio]]></category>
		<category><![CDATA[camp]]></category>
		<category><![CDATA[musique]]></category>
		<category><![CDATA[website]]></category>

		<guid isPermaLink="false">http://vizou.com/?p=274</guid>
		<description><![CDATA[
Design/développement du site pour Camp ViolonTradQuébec, un camp d&#8217;été devoué au perfectionnement et répertoire du violon traditionnel québécois. Sur le site : biographies des professeurs, réservation en ligne, achat de marchandise et informations sur les programmes.
Design/development of a site for Camp ViolonTradQuébec, summer camp devoted to learning and sharing traditional Québécois fiddle music. Features teacher [...]]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://vizou.com/wp-content/uploads/Camp-ViolonTrad-Québec-»-Historique.jpg"><img class="alignnone size-medium wp-image-271" title="Camp ViolonTrad Québec » Historique" src="http://vizou.com/wp-content/uploads/Camp-ViolonTrad-Québec-»-Historique-300x196.jpg" alt="Camp ViolonTrad Québec » Historique" width="300" height="196" /></a></p>
<p>Design/développement du site pour Camp ViolonTradQuébec, un camp d&#8217;été devoué au perfectionnement et répertoire du violon traditionnel québécois. Sur le site : biographies des professeurs, réservation en ligne, achat de marchandise et informations sur les programmes.</p>
<p>Design/development of a site for Camp ViolonTradQuébec, summer camp devoted to learning and sharing traditional Québécois fiddle music. Features teacher bios, onsite reservations, merchandise for sale and complete info for coming to camp.</p>
<p><a href="http://violontradquebec.com">http://violontradquebec.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2009/12/violontradquebec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Folquébec dixième anniversaire</title>
		<link>http://vizou.com/2009/12/folquebec-dixieme-anniversaire/</link>
		<comments>http://vizou.com/2009/12/folquebec-dixieme-anniversaire/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 04:02:07 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>
		<category><![CDATA[Portefolio]]></category>

		<guid isPermaLink="false">http://vizou.com/?p=241</guid>
		<description><![CDATA[
Nouveau look pour l&#8217;entête du site Folquébec pour débuter la dixième anniversaire de l&#8217;organisation. New look for the Folquébec website header, to celebrate the beginning of the organization&#8217;s tenth anniversay.
http://folquebec.com.
]]></description>
			<content:encoded><![CDATA[<p><a rel="lightbox" href="http://vizou.com/wp-content/uploads/Folquébec1.jpg"><img class="alignnone size-medium wp-image-285" title="Folquébec" src="http://vizou.com/wp-content/uploads/Folquébec1-300x223.jpg" alt="Folquébec" width="300" height="223" /></a></p>
<p>Nouveau look pour l&#8217;entête du site Folquébec pour débuter la dixième anniversaire de l&#8217;organisation. New look for the Folquébec website header, to celebrate the beginning of the organization&#8217;s tenth anniversay.</p>
<p><a href="http://folquebec.com">http://folquebec.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2009/12/folquebec-dixieme-anniversaire/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Trying out the Apture plugin</title>
		<link>http://vizou.com/2009/09/trying-out-the-apture-plugin/</link>
		<comments>http://vizou.com/2009/09/trying-out-the-apture-plugin/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 01:57:10 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>
		<category><![CDATA[Geekery]]></category>

		<guid isPermaLink="false">http://vizou.com/?p=231</guid>
		<description><![CDATA[
I&#8217;ve been looking high and low, for a client, to find some way to easily  upload and link to PDF documents. I came across the Apture plugin for Wordpress, which interfaces with the Apture website (http://apture.com) and lets you pick from uploaded documents of all types (multi-media, pdf, xls, pp, etc.). Click on the sample [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-298" title="apture" src="http://vizou.com/wp-content/uploads/apture-300x240.jpg" alt="apture" width="300" height="240" /></p>
<p>I&#8217;ve been looking high and low, for a client, to find some way to easily  upload and link to PDF documents. I came across the Apture plugin for Wordpress, which interfaces with the Apture website (<a href="http://apture.com">http://apture.com</a>) and lets you pick from uploaded documents of all types (multi-media, pdf, xls, pp, etc.). Click on the sample link below to give it a spin!</p>
<p><a id="aptureLink_iEo3tLqKb4" href="http://www.scribd.com/doc/20188332">Sample PDF</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2009/09/trying-out-the-apture-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>aprilverch.com</title>
		<link>http://vizou.com/2009/07/april-verch/</link>
		<comments>http://vizou.com/2009/07/april-verch/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 04:13:06 +0000</pubDate>
		<dc:creator>Dana</dc:creator>
				<category><![CDATA[Actualités]]></category>
		<category><![CDATA[Portefolio]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://vizou.com/2009/07/april-verch/</guid>
		<description><![CDATA[
I had so much fun doing a new website for April Verch, a great Canadian fiddler, singer and stepdancer from the Ottawa Valley. I’m very proud of this site, which is in WordPress (of course) and really has so many of the elements and functions that a performing artist needs to maintain a good web [...]]]></description>
			<content:encoded><![CDATA[<p><img title="aprilverch.jpg" src="http://vizou.com/wp-content/uploads/aprilverch.jpg" alt="aprilverch.jpg" width="384" height="271" /></p>
<p>I had so much fun doing a new website for April Verch, a great Canadian fiddler, singer and stepdancer from the Ottawa Valley. I’m very proud of this site, which is in WordPress (of course) and really has so many of the elements and functions that a performing artist needs to maintain a good web presence. <a href="http://aprilverch.com">http://aprilverch.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://vizou.com/2009/07/april-verch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
