<?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>guillaumestjean.com</title>
	<atom:link href="http://www.guillaumestjean.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.guillaumestjean.com</link>
	<description>le gars qui s&#039;est pogné un blogue</description>
	<lastBuildDate>Wed, 16 May 2012 01:26:12 +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>Pre-select node content on load with&#160;CKEditor</title>
		<link>http://www.guillaumestjean.com/technologie/pre-select-node-content-on-load-with-ckeditor</link>
		<comments>http://www.guillaumestjean.com/technologie/pre-select-node-content-on-load-with-ckeditor#comments</comments>
		<pubDate>Wed, 16 May 2012 01:15:50 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Développement web]]></category>
		<category><![CDATA[Technologie]]></category>
		<category><![CDATA[ckeditor]]></category>
		<category><![CDATA[contents]]></category>
		<category><![CDATA[getRanges]]></category>
		<category><![CDATA[getSelection]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[load]]></category>
		<category><![CDATA[selection]]></category>
		<category><![CDATA[selectNodeContents]]></category>
		<category><![CDATA[selectRanges]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=260</guid>
		<description><![CDATA[If you want to pre-select the first node of CKEditor on load, the user will loose the format tag (H1 for instance) when he&#8217;ll starts typing. This can be solved using the following code, that doesn&#8217;t set the selection on the node itself but on its contents. // Setup CKEditor CKEDITOR.replace('editor', { startupFocus: true, on: [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to pre-select the first node of CKEditor on load, the user will loose the format tag (H1 for instance) when he&#8217;ll starts typing. This can be solved using the following code, that doesn&#8217;t set the selection on the node itself but on its contents.</p>
<p><code><br />
// Setup CKEditor<br />
CKEDITOR.replace('editor',<br />
{<br />
startupFocus: true,<br />
on:<br />
{<br />
instanceReady:function(event)<br />
{<br />
// Set up initial text selection on element contents<br />
var selection = event.editor.getSelection();<br />
var ranges = selection.getRanges();<br />
var el = event.editor.document.getById('yourElement');<br />
ranges[0].selectNodeContents(el);<br />
event.editor.getSelection().selectRanges(ranges);<br />
}<br />
}<br />
});<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/technologie/pre-select-node-content-on-load-with-ckeditor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook is&#160;complete</title>
		<link>http://www.guillaumestjean.com/technologie/facebook-is-complete</link>
		<comments>http://www.guillaumestjean.com/technologie/facebook-is-complete#comments</comments>
		<pubDate>Sun, 13 May 2012 04:27:54 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Technologie]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[audiomessage]]></category>
		<category><![CDATA[audiomessageme]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[message]]></category>
		<category><![CDATA[version]]></category>
		<category><![CDATA[voice]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=254</guid>
		<description><![CDATA[You&#8217;re right, it&#8217;s done. The last missing part of Facebook has been developed. You can now type and send Audio Messages to your friends and a computer voice will read them the content. Try the Facebook version or the Web version.]]></description>
			<content:encoded><![CDATA[<p>You&#8217;re right, it&#8217;s done. The last missing part of Facebook has been developed. You can now type and send Audio Messages to your friends and a computer voice will read them the content.</p>
<p>Try the <a title="Audio Message Me on Facebook" href="https://www.facebook.com/audiomessageme?sk=app_308511395877154" target="_blank">Facebook version</a> or the <a title="Audio Message Me" href="http://audiomessage.me/" target="_blank">Web version</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/technologie/facebook-is-complete/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Problem with jQuery UI dialog border and&#160;ui-widget-shadow</title>
		<link>http://www.guillaumestjean.com/technologie/problem-with-jquery-ui-dialog-border-and-ui-widget-shadow</link>
		<comments>http://www.guillaumestjean.com/technologie/problem-with-jquery-ui-dialog-border-and-ui-widget-shadow#comments</comments>
		<pubDate>Fri, 13 Apr 2012 14:02:38 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Développement web]]></category>
		<category><![CDATA[Technologie]]></category>
		<category><![CDATA[border]]></category>
		<category><![CDATA[box-shadow]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[dialog]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<category><![CDATA[modal]]></category>
		<category><![CDATA[snipet]]></category>
		<category><![CDATA[transparency]]></category>
		<category><![CDATA[ui-widget-shadow]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=249</guid>
		<description><![CDATA[The current jQuery UI version 1.8.18 ignores the ui-widget-shadow css class and the jQuery UI dialog border with transparency does not appear when creating modal dialogs with javascript. This little CSS snipet will solve the problem and create the border manually : .ui-dialog { box-shadow: 0 0 0 7px rgba(255,255,255,0.5) !important; }]]></description>
			<content:encoded><![CDATA[<p>The current jQuery UI version 1.8.18 ignores the ui-widget-shadow css class and the jQuery UI dialog border with transparency does not appear when creating modal dialogs with javascript.</p>
<p>This little CSS snipet will solve the problem and create the border manually :</p>
<p><code> .ui-dialog { box-shadow: 0 0 0 7px rgba(255,255,255,0.5) !important; }</code></p>
<p><a href="http://www.guillaumestjean.com/wp-content/uploads/2012/04/dialog.png"><img class="alignnone size-full wp-image-250" title="jQuery ui dialog border shadow" src="http://www.guillaumestjean.com/wp-content/uploads/2012/04/dialog.png" alt="" width="393" height="197" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/technologie/problem-with-jquery-ui-dialog-border-and-ui-widget-shadow/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Aptana quotes to work like Eclipse&#160;ones</title>
		<link>http://www.guillaumestjean.com/technologie/get-aptana-quotes-to-work-like-eclipse-ones</link>
		<comments>http://www.guillaumestjean.com/technologie/get-aptana-quotes-to-work-like-eclipse-ones#comments</comments>
		<pubDate>Fri, 06 Apr 2012 19:22:55 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Développement web]]></category>
		<category><![CDATA[Technologie]]></category>
		<category><![CDATA[Aptana]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[editors]]></category>
		<category><![CDATA[preferences]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=244</guid>
		<description><![CDATA[Stop wrapping selected text with quotes when typing and get Aptana to act the same as Eclipse : Window &#62; Preferences &#62; Aptana Studio &#62; Editors &#62; Uncheck &#8220;Wrap selected text with matching characters&#8221;]]></description>
			<content:encoded><![CDATA[<p>Stop wrapping selected text with quotes when typing and get Aptana to act the same as Eclipse :</p>
<p>Window &gt; Preferences &gt; Aptana Studio &gt; Editors &gt; Uncheck &#8220;Wrap selected text with matching characters&#8221;</p>
<p><a href="http://www.guillaumestjean.com/wp-content/uploads/2012/04/capture-aptana-quotes.png"><img class="alignnone size-full wp-image-245" title="capture-aptana-quotes" src="http://www.guillaumestjean.com/wp-content/uploads/2012/04/capture-aptana-quotes.png" alt="" width="545" height="315" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/technologie/get-aptana-quotes-to-work-like-eclipse-ones/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easiest way to get a black theme for&#160;Eclipse</title>
		<link>http://www.guillaumestjean.com/technologie/easiest-way-to-get-a-black-theme-for-eclipse</link>
		<comments>http://www.guillaumestjean.com/technologie/easiest-way-to-get-a-black-theme-for-eclipse#comments</comments>
		<pubDate>Fri, 06 Apr 2012 16:54:47 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Développement web]]></category>
		<category><![CDATA[Technologie]]></category>
		<category><![CDATA[Aptana]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[developper]]></category>
		<category><![CDATA[Eclipse]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[thème]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=238</guid>
		<description><![CDATA[For web developpers, the easiest way to get a black theme for coding in Eclipse IDE is to get Aptana, which is Eclipse-based.]]></description>
			<content:encoded><![CDATA[<p>For web developpers, the easiest way to get a black theme for coding in Eclipse IDE is to <a href="http://aptana.com/">get Aptana</a>, which is Eclipse-based.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/technologie/easiest-way-to-get-a-black-theme-for-eclipse/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How long does it take to receive an iPhone 4S when ordering from the online Apple&#160;Store?</title>
		<link>http://www.guillaumestjean.com/technologie/how-long-does-it-take-to-receive-an-iphone-4s-when-ordering-from-the-online-apple-store</link>
		<comments>http://www.guillaumestjean.com/technologie/how-long-does-it-take-to-receive-an-iphone-4s-when-ordering-from-the-online-apple-store#comments</comments>
		<pubDate>Fri, 11 Nov 2011 21:26:57 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Technologie]]></category>
		<category><![CDATA[4S]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Canada]]></category>
		<category><![CDATA[China]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[shipping]]></category>
		<category><![CDATA[tracking number]]></category>
		<category><![CDATA[UPS]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=234</guid>
		<description><![CDATA[At the moment, it will take about 8 business days for Apple to ship the iPhone 4S and provide you a UPS tracking number.]]></description>
			<content:encoded><![CDATA[<p>At the moment, it will take about 8 business days for Apple to ship the iPhone 4S and provide you a UPS tracking number.</p>
<p>The shipment is sent from China and will take about 6 business days to be delivered to a shipping address in Canada.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/technologie/how-long-does-it-take-to-receive-an-iphone-4s-when-ordering-from-the-online-apple-store/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Akismet &#8211; Un plugin WordPress contre le&#160;spam</title>
		<link>http://www.guillaumestjean.com/technologie/akismet-un-plugin-wordpress-contre-le-spam</link>
		<comments>http://www.guillaumestjean.com/technologie/akismet-un-plugin-wordpress-contre-le-spam#comments</comments>
		<pubDate>Thu, 27 Oct 2011 21:11:53 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Développement web]]></category>
		<category><![CDATA[Technologie]]></category>
		<category><![CDATA[akismet]]></category>
		<category><![CDATA[indésirables]]></category>
		<category><![CDATA[messages]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[robots]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=232</guid>
		<description><![CDATA[Akismet est un plugin Wordpress gratuit pour les particuliers qui élimine définitivement les messages indésirables provenant des robots sur le Web. À ne pas manquer!]]></description>
			<content:encoded><![CDATA[<p>Akismet est un plugin WordPress gratuit pour les particuliers qui élimine définitivement les messages indésirables provenant des robots sur le Web. À ne pas manquer!</p>
<p><a href="http://akismet.com/">http://akismet.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/technologie/akismet-un-plugin-wordpress-contre-le-spam/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Adobe Flash technology may survive, but outside its&#160;plug-in</title>
		<link>http://www.guillaumestjean.com/technologie/flash-may-survive-but-outside-its-plug-in</link>
		<comments>http://www.guillaumestjean.com/technologie/flash-may-survive-but-outside-its-plug-in#comments</comments>
		<pubDate>Thu, 10 Mar 2011 18:18:47 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Développement web]]></category>
		<category><![CDATA[Technologie]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[adobe]]></category>
		<category><![CDATA[browser]]></category>
		<category><![CDATA[chrome]]></category>
		<category><![CDATA[device]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[html5]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[jangaroo]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[movie]]></category>
		<category><![CDATA[online]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[wallaby]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=209</guid>
		<description><![CDATA[Adobe just released Wallaby, an experimental technology to convert Flash files to HTML5. That means we will soon be able to convert those old websites built with Flash that no longer runs on iOS devices. Even more intersting, open source projects, such as Jangaroo, allow us to convert complex ActionScript 3 files to a fully [...]]]></description>
			<content:encoded><![CDATA[<p>Adobe just released <a href="http://labs.adobe.com/technologies/wallaby/">Wallaby</a>, an experimental technology to convert Flash files to <a href="http://www.w3.org/TR/html5/">HTML5</a>. That means we will soon be able to convert those old websites built with Flash that no longer runs on iOS devices.</p>
<p>Even more intersting, open source projects, such as <a href="http://www.jangaroo.net/home/index.html">Jangaroo</a>, allow us to convert complex ActionScript 3 files to a fully functional JavaScript and <a href="http://www.w3.org/TR/html5/">HTML5</a> format.</p>
<p>Get an <a href="http://www.w3.org/TR/html5/">HTML5</a> compatible browser like <a href="http://www.google.com/chrome">Google Chrome</a> and check out <a href="http://www.jangaroo.net/files/examples/flash/box2d/">this demo</a>.</p>
<p>I think Adobe is already working to modify their software to adapt to the changing needs of the web. Now, will they be able to keep the online presence that their Flash movies had? Of course not.</p>
<p><img style="padding: 0px; margin: 0px; border: 0px none initial;" title="Adobe Flash Player" src="http://www.guillaumestjean.com/wp-content/uploads/2011/03/flash-crashed.jpg" alt="crashed" width="177" height="175" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/technologie/flash-may-survive-but-outside-its-plug-in/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Wrong time on&#160;iPhone</title>
		<link>http://www.guillaumestjean.com/technologie/wrong-time-on-iphone</link>
		<comments>http://www.guillaumestjean.com/technologie/wrong-time-on-iphone#comments</comments>
		<pubDate>Sun, 07 Nov 2010 19:18:36 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Technologie]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[wrong]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=205</guid>
		<description><![CDATA[If your IPhone shows the wrong time after a time change, the solution is to reboot it.]]></description>
			<content:encoded><![CDATA[<p>If your IPhone shows the wrong time after a time change, the solution is to reboot it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/technologie/wrong-time-on-iphone/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Est-ce que Stromae est le chanteur de Louise&#160;Attaque?</title>
		<link>http://www.guillaumestjean.com/musique/est-ce-que-stromae-est-le-chanteur-de-louise-attaque</link>
		<comments>http://www.guillaumestjean.com/musique/est-ce-que-stromae-est-le-chanteur-de-louise-attaque#comments</comments>
		<pubDate>Sun, 27 Jun 2010 23:15:07 +0000</pubDate>
		<dc:creator>Guillaume St-Jean</dc:creator>
				<category><![CDATA[Musique]]></category>
		<category><![CDATA[chanteur]]></category>
		<category><![CDATA[Gaëtan Roussel]]></category>
		<category><![CDATA[humain]]></category>
		<category><![CDATA[Louise Attaque]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[Stromae]]></category>
		<category><![CDATA[Wikipedia]]></category>

		<guid isPermaLink="false">http://www.guillaumestjean.com/?p=198</guid>
		<description><![CDATA[NON. Contrairement à la croyance populaire, si on vérifie, le chanteur de Louise Attaque est Gaëtan Roussel, qui est un être humain distinct de Stromae. Les liens de l&#8217;article mènent vers les pages respectives de Wikipedia.]]></description>
			<content:encoded><![CDATA[<p><strong>NON.</strong> Contrairement à la croyance populaire, si on vérifie, le chanteur de Louise Attaque est <a href="http://fr.wikipedia.org/wiki/Ga%C3%ABtan_Roussel">Gaëtan Roussel</a>, qui est un être humain <strong>distinct</strong> de <a href="http://fr.wikipedia.org/wiki/Stromae">Stromae</a>. Les liens de l&#8217;article mènent vers les pages respectives de Wikipedia.</p>
<div id="attachment_199" class="wp-caption alignnone" style="width: 511px"><a href="http://www.guillaumestjean.com/wp-content/uploads/2010/06/stromae-gaetan-roussel.jpg"><img class="size-full wp-image-199" title="Stromae et Gaëtan Roussel" src="http://www.guillaumestjean.com/wp-content/uploads/2010/06/stromae-gaetan-roussel.jpg" alt="Stromae et Gaëtan Roussel" width="501" height="270" /></a><p class="wp-caption-text">Stromae et Gaëtan Roussel</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.guillaumestjean.com/musique/est-ce-que-stromae-est-le-chanteur-de-louise-attaque/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

