<?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>l'indicible blog</title>
	<atom:link href="http://www.lindicible.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lindicible.com/blog</link>
	<description>&#60;!--:en--&#62;the details of the inexpressible&#60;!--:--&#62;&#60;!--:fr--&#62;les détails de l'ineffable&#60;!--:--&#62;</description>
	<lastBuildDate>Fri, 02 Sep 2011 19:30:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>BkgSlider</title>
		<link>http://www.lindicible.com/blog/en/2011/02/24/bkgslider/</link>
		<comments>http://www.lindicible.com/blog/en/2011/02/24/bkgslider/#comments</comments>
		<pubDate>Thu, 24 Feb 2011 20:26:34 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=702</guid>
		<description><![CDATA[BkgSlider is a jQuery plugin giving you the opportunity to have a CSS background-image gallery. Demo You can check out an example on the demonstration page. Usage There&#8217;s nothing simpler than to use BkgSlide : you just have to include the jQery library and the BkgSlider plugin in your page and instanciate the plugin with [...]]]></description>
			<content:encoded><![CDATA[<p>BkgSlider is a jQuery plugin giving you the opportunity to have a CSS background-image gallery.</p>
<h3>Demo</h3>
<p>You can check out an example on <a rel="external" href="http://blog.lindicible.com/wp-content/_custom/bkgslide/">the demonstration page</a>.</p>
<h3>Usage</h3>
<p>There&#8217;s nothing simpler than to use BkgSlide : you just have to include the jQery library and the BkgSlider plugin in your page and instanciate the plugin with its options.</p>
<pre>&lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="jquery.bkgslide.js"&gt; &lt;/script&gt;
&lt;script type="text/javascript"&gt;
$(document).ready(function(){
    $('#target').bkgSlide({
        images: ['images/img1.jpg', 'images/img2.jpg']
    });
});</pre>
<h3>Options</h3>
<h4>images</h4>
<p>An array containing the name of the images to use.</p>
<h4>imagePath</h4>
<p>The path where to find the images.<br />
The script automatically adds an ending slash if necessary.</p>
<h4>speed</h4>
<p>The duration in milliseconds between two image changes.<br />
<strong>Default :</strong> 7000<br />
If you don&#8217;t want autoplay, set this value to 0.</p>
<h4>direction</h4>
<p>The direction to go to when changing image.<br />
<strong>Possible values :</strong> &#8216;random&#8217;, &#8216;next&#8217;, &#8216;prev&#8217;<br />
<strong>Default :</strong> &#8216;random&#8217;</p>
<h4>wrap</h4>
<p>Defines wheter or not to wrap around when reaching one end of the imges list.<br />
<strong>Default :</strong> true</p>
<h4>nav</h4>
<p>Defines the navigation tools.<br />
<strong>Possible values :</strong> true, an option as a string, an array of navigation tools in the order you want to see them</p>
<p>true / &#8216;all&#8217; : all the navigation tools<br />
&#8216;list&#8217;       : list of shortcuts to each image<br />
&#8216;prev&#8217;       : button to go to the previous image<br />
&#8216;next&#8217;       : bbutton to go to the next image<br />
&#8216;toggle&#8217;     : button to start or stop the slideshow</p>
<p><strong>Default :</strong> ['prev', 'list', 'next', 'toggle']</p>
<h4>stopOnNav</h4>
<p>Defines wheter or not to stop the slideshow when the user interacts with one of the navigation tools.<br />
<strong>Default :</strong> false</p>
<h4>width</h4>
<p>The width to give to the image containers.<br />
With the &#8216;auto&#8217; value, the script will use the width of the target element.<br />
<strong>Default :</strong> &#8216;auto&#8217;</p>
<h4>height</h4>
<p>The height to give to the image containers.<br />
With the &#8216;auto&#8217; value, the script will use the height of the target element.<br />
<strong>Default :</strong> &#8216;auto&#8217;</p>
<h4>containersClass</h4>
<p>Used to add a custom class to the image containers.<br />
<strong>Default :</strong> null</p>
<h4>effect</h4>
<p>The effect to apply when transitioning between two images.<br />
<strong>Possible values :</strong>  &#8216;fadeOut&#8217;, &#8216;slideUp&#8217;, &#8216;hide&#8217;<br />
<strong>Default :</strong> &#8216;fadeOut&#8217;</p>
<h4>duration</h4>
<p>The transition duration between two images (in milliseconds)<br />
</strong>Default :</strong> 500</p>
<h4>afterInit</h4>
<p>A callback function to do something right after the BkgSlider initialization.<br />
This function will have has parameter the target element and its BkgSlider.</p>
<h3>Methods</h3>
<h4>move</h4>
<p>Move within the images list.<br />
</strong>Possible values :</strong> &#8216;next&#8217;, &#8216;prev&#8217;, &#8216;random&#8217;<br />
If no parameter is passed, the direction set in the options is used.</p>
<h4>changeTo</h4>
<p>Move to the specified image index.<br />
This method requires the index of the image in the array as a parameter (a number between 0 and the number of images -1).</p>
<h4>play</h4>
<p>Begin the slideshow.<br />
This method accepts a number of milliseconds as a parameter, representing the time interval between two image changes.<br />
If no parameter is passed, the speed set in the options will be used.</p>
<h4>stop</h4>
<p>Stop the slideshow.</p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2011%2F02%2F24%2Fbkgslider%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2011/02/24/bkgslider/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Something is lurking&#8230;</title>
		<link>http://www.lindicible.com/blog/en/2010/12/05/quelque-chose-rode/</link>
		<comments>http://www.lindicible.com/blog/en/2010/12/05/quelque-chose-rode/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:34:02 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=699</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/0wcJFwzjMBM" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/0wcJFwzjMBM"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2010%2F12%2F05%2Fquelque-chose-rode%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2010/12/05/quelque-chose-rode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yellow, you say ?</title>
		<link>http://www.lindicible.com/blog/en/2010/12/05/jaune-vous-dites/</link>
		<comments>http://www.lindicible.com/blog/en/2010/12/05/jaune-vous-dites/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:31:20 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=697</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/gJA9t4KZ0Dw" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/gJA9t4KZ0Dw"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2010%2F12%2F05%2Fjaune-vous-dites%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2010/12/05/jaune-vous-dites/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>At Daewoo, they do like torchlights</title>
		<link>http://www.lindicible.com/blog/en/2010/12/05/chez-daewoo-on-aime-bien-les-lampes-de-poches/</link>
		<comments>http://www.lindicible.com/blog/en/2010/12/05/chez-daewoo-on-aime-bien-les-lampes-de-poches/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:30:24 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=695</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/nvTU0Zgjaj0" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/nvTU0Zgjaj0"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2010%2F12%2F05%2Fchez-daewoo-on-aime-bien-les-lampes-de-poches%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2010/12/05/chez-daewoo-on-aime-bien-les-lampes-de-poches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s so beautiful when a kid&#8217;s dream comes to life !</title>
		<link>http://www.lindicible.com/blog/en/2010/12/05/cest-beau-un-reve-denfant-qui-se-donne-les-moyens/</link>
		<comments>http://www.lindicible.com/blog/en/2010/12/05/cest-beau-un-reve-denfant-qui-se-donne-les-moyens/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:28:42 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=693</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/hyD7HJQ7m3c" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/hyD7HJQ7m3c"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2010%2F12%2F05%2Fcest-beau-un-reve-denfant-qui-se-donne-les-moyens%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2010/12/05/cest-beau-un-reve-denfant-qui-se-donne-les-moyens/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hermes fingerskate : nice sleight of hand !</title>
		<link>http://www.lindicible.com/blog/en/2010/12/05/hermes-fingerskate-joli-coup-de-main/</link>
		<comments>http://www.lindicible.com/blog/en/2010/12/05/hermes-fingerskate-joli-coup-de-main/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:26:25 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=691</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/wKVeSMDewnA" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/wKVeSMDewnA"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2010%2F12%2F05%2Fhermes-fingerskate-joli-coup-de-main%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2010/12/05/hermes-fingerskate-joli-coup-de-main/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Poker Ray, the come back of the vengeance of the killing teaser</title>
		<link>http://www.lindicible.com/blog/en/2010/12/05/poker-ray-le-retour-de-la-vengeance-du-teaser-qui-tue/</link>
		<comments>http://www.lindicible.com/blog/en/2010/12/05/poker-ray-le-retour-de-la-vengeance-du-teaser-qui-tue/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:23:51 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=689</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/3Ki5OEmkhMY" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/3Ki5OEmkhMY"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2010%2F12%2F05%2Fpoker-ray-le-retour-de-la-vengeance-du-teaser-qui-tue%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2010/12/05/poker-ray-le-retour-de-la-vengeance-du-teaser-qui-tue/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The new Skoda is mean ! Find out why&#8230;</title>
		<link>http://www.lindicible.com/blog/en/2010/12/05/la-nouvelle-skoda-est-une-mechante-voiture-decouvrez-pourquoi/</link>
		<comments>http://www.lindicible.com/blog/en/2010/12/05/la-nouvelle-skoda-est-une-mechante-voiture-decouvrez-pourquoi/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:21:28 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=687</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/aHzYLJEZ9cw" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/aHzYLJEZ9cw"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2010%2F12%2F05%2Fla-nouvelle-skoda-est-une-mechante-voiture-decouvrez-pourquoi%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2010/12/05/la-nouvelle-skoda-est-une-mechante-voiture-decouvrez-pourquoi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Time to kick ass and chew bubblegum !</title>
		<link>http://www.lindicible.com/blog/en/2010/12/05/diesel-en-mode-coup-de-pied-au-cul/</link>
		<comments>http://www.lindicible.com/blog/en/2010/12/05/diesel-en-mode-coup-de-pied-au-cul/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:19:13 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=685</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/EJ9LV8kuafs" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/EJ9LV8kuafs"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2010%2F12%2F05%2Fdiesel-en-mode-coup-de-pied-au-cul%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2010/12/05/diesel-en-mode-coup-de-pied-au-cul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>It&#8217;s all in your head&#8230; !</title>
		<link>http://www.lindicible.com/blog/en/2010/12/05/cest-juste-votre-imagination/</link>
		<comments>http://www.lindicible.com/blog/en/2010/12/05/cest-juste-votre-imagination/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 13:07:40 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Viral]]></category>

		<guid isPermaLink="false">http://www.lindicible.com/blog/?p=683</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object type="application/x-shockwave-flash" data="http://www.youtube.com/v/F50GCxzspCc" width="425" height="344"><param name="movie" value="http://www.youtube.com/v/F50GCxzspCc"/><param name="FlashVars" value="playerMode=embedded"/><param name="wmode" value="transparent"/></object></p>

<div class="like">
<iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.lindicible.com%2Fblog%2Fen%2F2010%2F12%2F05%2Fcest-juste-votre-imagination%2F&amp;layout=standard&amp;show_faces=true&amp;width=450&amp;action=like&amp;font=&amp;colorscheme=light" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:450px; height:62px; "></iframe>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.lindicible.com/blog/en/2010/12/05/cest-juste-votre-imagination/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

