<?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/"
		xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Precea</title>
	<atom:link href="http://www.precea.jp/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.precea.jp</link>
	<description></description>
	<lastBuildDate>Fri, 28 Jan 2011 14:43:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<copyright>Copyright &#xA9; Precea 2010 </copyright>
	<managingEditor>precea@precea.jp (Precea)</managingEditor>
	<webMaster>precea@precea.jp (Precea)</webMaster>
	<image>
		<url>http://www.precea.jp/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Precea</title>
		<link>http://www.precea.jp</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle></itunes:subtitle>
	<itunes:summary></itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Society &#38; Culture" />
	<itunes:author>Precea</itunes:author>
	<itunes:owner>
		<itunes:name>Precea</itunes:name>
		<itunes:email>precea@precea.jp</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://www.precea.jp/wp-content/plugins/podpress/images/powered_by_podpress_large.jpg" />
		<item>
		<title>Cross-domain Ajax</title>
		<link>http://www.precea.jp/2011/01/cross-domain-ajax/</link>
		<comments>http://www.precea.jp/2011/01/cross-domain-ajax/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 20:27:47 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Cross-domain]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[JS]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=111</guid>
		<description><![CDATA[If you want to make a nice widget for someone with some Ajax in it, you will learn quickly one thing : Same Origin Policy. This security feature is a pain for developer, but usefull for anybody, because this prevent &#8230; <span class="read-more"><a href="http://www.precea.jp/2011/01/cross-domain-ajax/">#LINK#</a></span>]]></description>
			<content:encoded><![CDATA[<p>If you want to make a nice widget for someone with some Ajax in it, you will learn quickly one thing : Same Origin Policy.</p>
<p>This security feature is a pain for developer, but usefull for anybody, because this prevent XSS injection for example. But, with this, we can make a query in a different domain with the XMLHttpRequest object.</p>
<p>In reallity, you can, but it&#8217;s not the same thing if it&#8217;s IE or Firefox or Webkit. For IE, we have the <a href="http://msdn.microsoft.com/en-us/library/cc288060(v=vs.85).aspx" target="_blank">XDomainRequest</a>. This object allow to do Ajax query in a different domain, but, you can&#8217;t add some headers, and, the most important, you can&#8217;t use cookie with it. Second point, same as Firefox, the browser will check if the requested domain accepts query from you (Access-Control-Allow-Origin header).</p>
<p>For Firefox, you can use the XMLHttpRequest object, but you have to check the Access-Control-Allow-Origin header from server.</p>
<p>For Webkit, I don&#8217;t really see a dificulty for make Ajax cross-domain query.</p>
<p>If you need cookies for IE, you can add a wrapper in JSONP, like me. And after that give the PHPSESSID all the time in your queries.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2011/01/cross-domain-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery and scrollTop, how can this work for IE/Chrome/Safari and Firefox ?</title>
		<link>http://www.precea.jp/2010/05/jquery-and-scrolltop-how-can-this-work-for-iechromesafari-and-firefox/</link>
		<comments>http://www.precea.jp/2010/05/jquery-and-scrolltop-how-can-this-work-for-iechromesafari-and-firefox/#comments</comments>
		<pubDate>Wed, 12 May 2010 07:42:02 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[scrollTop]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=70</guid>
		<description><![CDATA[Today I have to make a scrollTop for a webpage, and I use jQuery for the most part of the javascript in the website. So, the problem is, I do $(&#8216;body&#8217;).scrollTop(0); and this work for Safari/Chrome, but only for it. &#8230; <span class="read-more"><a href="http://www.precea.jp/2010/05/jquery-and-scrolltop-how-can-this-work-for-iechromesafari-and-firefox/">#LINK#</a></span>]]></description>
			<content:encoded><![CDATA[<p>Today I have to make a scrollTop for a webpage, and I use jQuery for the most part of the javascript in the website.</p>
<p>So, the problem is, I do $(&#8216;body&#8217;).scrollTop(0); and this work for Safari/Chrome, but only for it. So, I looking for a solution in the Internet, and it&#8217;s a pain to find one for all. But finally I found one, やった (yatta)!</p>
<p>What is it ? Simply $(&laquo;&nbsp;html,body&nbsp;&raquo;).animate({scrollTop: 0},0); and it&#8217;s work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2010/05/jquery-and-scrolltop-how-can-this-work-for-iechromesafari-and-firefox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Photos prises sur le toit d&#8217;un immeuble</title>
		<link>http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/</link>
		<comments>http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/#comments</comments>
		<pubDate>Mon, 10 May 2010 10:03:37 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=53</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6191/' title='IMG_6191'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6191-150x150.jpg" class="attachment-thumbnail" alt="IMG_6191" title="IMG_6191" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6192/' title='IMG_6192'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6192-150x150.jpg" class="attachment-thumbnail" alt="IMG_6192" title="IMG_6192" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6196/' title='IMG_6196'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6196-150x150.jpg" class="attachment-thumbnail" alt="IMG_6196" title="IMG_6196" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6199/' title='IMG_6199'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6199-150x150.jpg" class="attachment-thumbnail" alt="IMG_6199" title="IMG_6199" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6201/' title='IMG_6201'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6201-150x150.jpg" class="attachment-thumbnail" alt="IMG_6201" title="IMG_6201" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6202/' title='IMG_6202'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6202-150x150.jpg" class="attachment-thumbnail" alt="IMG_6202" title="IMG_6202" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6203/' title='IMG_6203'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6203-150x150.jpg" class="attachment-thumbnail" alt="IMG_6203" title="IMG_6203" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6204/' title='IMG_6204'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6204-150x150.jpg" class="attachment-thumbnail" alt="IMG_6204" title="IMG_6204" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6205/' title='IMG_6205'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6205-150x150.jpg" class="attachment-thumbnail" alt="IMG_6205" title="IMG_6205" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6206/' title='IMG_6206'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6206-150x150.jpg" class="attachment-thumbnail" alt="IMG_6206" title="IMG_6206" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6207/' title='IMG_6207'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6207-150x150.jpg" class="attachment-thumbnail" alt="IMG_6207" title="IMG_6207" /></a>
<a href='http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/img_6208/' title='IMG_6208'><img width="150" height="150" src="http://www.precea.jp/wp-content/uploads/2010/05/IMG_6208-150x150.jpg" class="attachment-thumbnail" alt="IMG_6208" title="IMG_6208" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2010/05/photos-prisent-sur-le-toit-dun-immeuble/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CSS a nice popup with a border radius and opacity</title>
		<link>http://www.precea.jp/2010/05/css-a-nice-popup-with-a-border-radius-and-opacity/</link>
		<comments>http://www.precea.jp/2010/05/css-a-nice-popup-with-a-border-radius-and-opacity/#comments</comments>
		<pubDate>Mon, 03 May 2010 07:13:32 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=46</guid>
		<description><![CDATA[Today I try to do a simple and nice popup in CSS without image. So what I really want to do ? Simple no ? Unfortunatly not. One, you need to do the border opacity. For that one thing : &#8230; <span class="read-more"><a href="http://www.precea.jp/2010/05/css-a-nice-popup-with-a-border-radius-and-opacity/">#LINK#</a></span>]]></description>
			<content:encoded><![CDATA[<p>Today I try to do a simple and nice popup in CSS without image.</p>
<p>So what I really want to do ?</p>
<p><a href="http://www.precea.jp/wp-content/uploads/2010/05/Screen-shot-2010-05-03-at-4.11.27-PM.png" rel="lightbox"><img src="http://www.precea.jp/wp-content/uploads/2010/05/Screen-shot-2010-05-03-at-4.11.27-PM-300x254.png" alt="" title="Screen shot 2010-05-03 at 4.11.27 PM" width="300" height="254" class="aligncenter size-medium wp-image-47" /></a></p>
<p>Simple no ? Unfortunatly not.</p>
<p>One, you need to do the border opacity. For that one thing : If you have an opacity in one element, all its child have the same opacity (an opacity of 1 in the child is the opacity of the parent, an opacity of 0.5 in the child is 0.5*opacity of the parents).</p>
<p>So, I do that with 2 div in the same parents :</p>
<blockquote><p>&lt;div id=&nbsp;&raquo;parents&nbsp;&raquo;&gt;<br />
&lt;div id=&nbsp;&raquo;child_border&nbsp;&raquo;&gt;<br />
&lt;/div&gt;<br />
&lt;div id=&nbsp;&raquo;child_content&nbsp;&raquo;&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;</p></blockquote>
<p>After that, I fix the opacity of child_border at 0.5 and I put it in center of the screen and x pixel from top. For the child_content I add 10px margin, so in reality I add the same margin-left than child_border plus 10px and I remove 20px from the width. And for the top, just add 10px to top.</p>
<p>So with thatm you have the basse. You have just to add the border radius : for webkit : -webkit-border-radius:10px; For Firefox : -moz-border-radius:10px; And for IE &#8230; Nothing for the moment. But you can add the standard border-radius:10px;</p>
<p>For IE opacity is not the same than webkit based browser (Safari/Chrome for example) or Gecko based (Firefox for example), it&#8217;s filter:alpha(opacity=50) for an opacity of 0.5.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2010/05/css-a-nice-popup-with-a-border-radius-and-opacity/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>AkihabaraNews, a new website released</title>
		<link>http://www.precea.jp/2010/01/akihabaranews-new-website/</link>
		<comments>http://www.precea.jp/2010/01/akihabaranews-new-website/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 03:47:37 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[Tibanne]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=33</guid>
		<description><![CDATA[The January 4th, the new website of Akihabara News was online ! It took a really long time until we finally reached release, and I must say we can be proud of the result.]]></description>
			<content:encoded><![CDATA[<p>The January 4th, the new website of <a href="http://www.akihabaranews.com/">Akihabara News</a> was online !</p>
<p>It took a really long time until we finally reached release, and I must say we can be proud of the result.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2010/01/akihabaranews-new-website/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Border Radius in CSS3, how not to do simple ?</title>
		<link>http://www.precea.jp/2010/01/border-radius-in-css3-how-not-to-do-simple/</link>
		<comments>http://www.precea.jp/2010/01/border-radius-in-css3-how-not-to-do-simple/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 03:42:15 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[border-radius]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Safari]]></category>
		<category><![CDATA[Webkit]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=31</guid>
		<description><![CDATA[When you want a border-radius in your box, you have to choice : use CSS3, because it&#8217;s the standard or not. The CSS3 is cute, nice, other stuff, but, Firefox and Safari (and IE) don&#8217;t implement it for border-radius &#8230; &#8230; <span class="read-more"><a href="http://www.precea.jp/2010/01/border-radius-in-css3-how-not-to-do-simple/">#LINK#</a></span>]]></description>
			<content:encoded><![CDATA[<p>When you want a border-radius in your box, you have to choice : use CSS3, because it&#8217;s the standard or not.</p>
<p>The CSS3 is cute, nice, other stuff, but, Firefox and Safari (and IE) don&#8217;t implement it for border-radius &#8230;</p>
<p>How can I do ? In Safari, it&#8217;s easy, just to add -webkit- (ex : -webkit-border-radius). For Firefox, it&#8217;s -moz-border-radius too. But if you want use border-top-right-radius, or other specific choice, in Firefox, it&#8217;s -moz-border-radius-top(no space, no -)right.</p>
<p>Safari it&#8217;s juste -webkit-border-top-right-radius.</p>
<p>Simple no ?</p>
<p>(But only Safari support an another propriety : -webkit-box-shadow, with that, you can add a shadow to your box, and it&#8217;s very cool)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2010/01/border-radius-in-css3-how-not-to-do-simple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My first snowstorm in Québec !</title>
		<link>http://www.precea.jp/2009/12/my-first-snowstorm-in-quebec/</link>
		<comments>http://www.precea.jp/2009/12/my-first-snowstorm-in-quebec/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 21:05:30 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[Non classé]]></category>
		<category><![CDATA[Quebec]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=23</guid>
		<description><![CDATA[Hi, today, in this afternoon, I can see my first snowstorm ! (Ok, my second, the first is when I come in Quebec) When I remember my grandfather and his &#8216;No snow if the temperature is not 0°C &#8230; For &#8230; <span class="read-more"><a href="http://www.precea.jp/2009/12/my-first-snowstorm-in-quebec/">#LINK#</a></span>]]></description>
			<content:encoded><![CDATA[<p>Hi, today, in this afternoon, I can see my first snowstorm ! (Ok, my second, the first is when I come in Quebec)</p>
<p>When I remember my grandfather and his &#8216;No snow if the temperature is not 0°C &#8230; For the moment, I can see -7°C, and a lot of snow fail from the sky. Why ? I don&#8217;t know.</p>
<p>In 21 days, I go to Japan, and, I think, I&#8217;ll never see other snowstorm in Japan. <span style="color: #333333;">But I&#8217;ll see a lot of japanese schoolgirls ! The dream !</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2009/12/my-first-snowstorm-in-quebec/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Little multi-image display script in Javascript</title>
		<link>http://www.precea.jp/2009/10/a-little-in-focus-script-in-javascript/</link>
		<comments>http://www.precea.jp/2009/10/a-little-in-focus-script-in-javascript/#comments</comments>
		<pubDate>Fri, 02 Oct 2009 22:16:45 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=14</guid>
		<description><![CDATA[This is a little script made in CSS and JavaScript. It&#8217;s a little multi-image display script with the ability to display 4 images and two lines of related text per image. You can do anything with this code, as long &#8230; <span class="read-more"><a href="http://www.precea.jp/2009/10/a-little-in-focus-script-in-javascript/">#LINK#</a></span>]]></description>
			<content:encoded><![CDATA[<p>This is a little script made in CSS and JavaScript.</p>
<p>It&#8217;s a little multi-image display script with the ability to display 4 images and two lines of related text per image. You can do anything with this code, as long as you comply with GPL v2.</p>
<p>To test : <a href="http://precea.jp/prepre/carrousel">http://precea.jp/prepre/carrousel</a></p>
<p>To download it : <a href="http://precea.jp/prepre/carrousel/carrousel.zip">http://precea.jp/prepre/carrousel/carrousel.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2009/10/a-little-in-focus-script-in-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>La France, sont gouvernement et le Net &#8230;</title>
		<link>http://www.precea.jp/2009/09/la-france-sont-gouvernement-et-le-net/</link>
		<comments>http://www.precea.jp/2009/09/la-france-sont-gouvernement-et-le-net/#comments</comments>
		<pubDate>Wed, 16 Sep 2009 19:06:42 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[Non classé]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=11</guid>
		<description><![CDATA[Aujourd&#8217;hui, je reçois un étrange mail sur la mailing d&#8217;OVH. Voici le message : Bonjour, C&#8217;est triste de constater que le monde politique français n&#8217;utilise pas systématiquement de noms de domaine en .fr et ne s&#8217;héberge pas en France. La &#8230; <span class="read-more"><a href="http://www.precea.jp/2009/09/la-france-sont-gouvernement-et-le-net/">#LINK#</a></span>]]></description>
			<content:encoded><![CDATA[<p>Aujourd&#8217;hui, je reçois un étrange mail sur la mailing d&#8217;OVH. Voici le message :</p>
<blockquote><p>Bonjour,<br />
C&#8217;est triste de constater que le monde politique français n&#8217;utilise pas systématiquement de noms de domaine en .fr et ne s&#8217;héberge pas en France.<br />
La peur de la loi LCEN ? Le boycott de la loi HADOPI/HADOPI 2 ? Et pourtant il y a plein de bons hébergeurs en France qui font parfaitement bien leur boulot. Et pourquoi un .com ??? Le .fr n&#8217;est pas assez français ? Non, je ne comprends pas. Ce sont les évidences, ça saute aux yeux, et pourtant &#8230; bon &#8230; il ne reste plus qu&#8217;à avoir désir de faire mieux la prochaine fois &#8230; mais faites passer le mot que le Net en France ça existe et ça marche pas trop mal &#8230;</p>
<p>Amicalement<br />
Octave</p></blockquote>
<p>Avant cela j&#8217;avais vu l&#8217;excellant site suivant <a href="http://www.desirsdavenir.org/">http://www.desirsdavenir.org/</a></p>
<p>Et ça tombe bien, il y a une réponse assez bonne :</p>
<blockquote><p>c&#8217;est pas la période en ce moment pour du made-in-france&#8230;</p>
<p>la nouvelle de la semaine : <a href="http://www.desirsdavenir.org/">http://www.desirsdavenir.org/</a>, mort-né après sa refonte, et qui a déjà était parodié des centaines de fois (ex : <a href="http://www.meme-desirsdavenir.com/">http://www.meme-desirsdavenir.com/</a> ).</p>
<p>c&#8217;est français malheureusement, hébergé chez 1et1, et ça a couté 41k € pour une page d&#8217;accueil à chier et un joomla mal intégré&#8230; <img src='http://www.precea.jp/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> </p></blockquote>
<p>Comme quoi, le Net en France &#8230;.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2009/09/la-france-sont-gouvernement-et-le-net/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hadopi, petite vidéo du jour</title>
		<link>http://www.precea.jp/2009/09/hadopi-petite-video-du-jour/</link>
		<comments>http://www.precea.jp/2009/09/hadopi-petite-video-du-jour/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 16:57:44 +0000</pubDate>
		<dc:creator>Precea</dc:creator>
				<category><![CDATA[Hadopi]]></category>

		<guid isPermaLink="false">http://www.precea.jp/?p=5</guid>
		<description><![CDATA[Bon, mon colocataire québécois ma donné aujourd&#8217;hui un lien vers une vidéo assez intéressante sur Hadopi. Bon, je préviens à l&#8217;avance, c&#8217;est une caricature mais elle est bien faite. La vidéo ? La voici : Vidéo sur Youtube Bon, et &#8230; <span class="read-more"><a href="http://www.precea.jp/2009/09/hadopi-petite-video-du-jour/">#LINK#</a></span>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.youtube.com/watch?v=Jgjuv7q31-E&amp;eurl=http%3A%2F%2Fwww.bhmag.fr%2Fn8175-insolite-la-brigade-d-intervention-hadopi-en-action.html&amp;feature=player_embedded">B</a>on, mon colocataire québécois ma donné aujourd&#8217;hui un lien vers une vidéo assez intéressante sur Hadopi.</p>
<p>Bon, je préviens à l&#8217;avance, c&#8217;est une caricature mais elle est bien faite.</p>
<p>La vidéo ? La voici : <a href="http://www.youtube.com/watch?v=Jgjuv7q31-E&amp;eurl=http%3A%2F%2Fwww.bhmag.fr%2Fn8175-insolite-la-brigade-d-intervention-hadopi-en-action.html&amp;feature=player_embedded">Vidéo sur Youtube</a></p>
<p>Bon, et une deuxième faite par la Quadrature du net : <a href="http://www.youtube.com/watch?v=m6cQpGdj6u0&amp;feature=related">Sur Youtube encore</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.precea.jp/2009/09/hadopi-petite-video-du-jour/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

