<?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>Florian Bersier</title>
	<atom:link href="http://florianbersier.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://florianbersier.com/blog</link>
	<description>Florian Bersier: Economist, Internet Researcher, DPhil (read PhD) student Oxford Internet Institute, University of Oxford.</description>
	<lastBuildDate>Mon, 12 Jul 2010 16:06:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Display a Shop Schedule (Open/Closed) on a website with JavaScript</title>
		<link>http://florianbersier.com/blog/webdesign/display-a-shop-schedule-openclosed-on-a-website-with-javascript/</link>
		<comments>http://florianbersier.com/blog/webdesign/display-a-shop-schedule-openclosed-on-a-website-with-javascript/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 12:16:26 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=229</guid>
		<description><![CDATA[Estimated Reading time: 2 &#8211; 2 minutes Here is a very short and simple way to display on a website some information about the current status of a restaurant, shop, helpdesk (i.e. whether it is open or closed at the time of the visit). It is written in Javascript. For example, suppose that you want to [...]]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: 2 &#8211; 2 minutes</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fwebdesign%2Fdisplay-a-shop-schedule-openclosed-on-a-website-with-javascript%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fwebdesign%2Fdisplay-a-shop-schedule-openclosed-on-a-website-with-javascript%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Here is a very short and simple way to display on a website some information about the current status of a restaurant, shop, helpdesk (i.e. whether it is open or closed at the time of the visit). It is written in Javascript.</p>
<p><span id="more-229"></span></p>
<p>For example, suppose that you want to display the status of your helpdesk and consider that this one is open from Monday to Friday, 8:30am to 6pm (GMT0). </p>
<p><strong>DEMO:</strong> Our helpdesk is currently <script src="http://florianbersier.com/code/helpdesk.js" type="text/javascript"></script> <script type="text/javascript">// < ![CDATA[
// < ![CDATA[
 updatepage();
// ]]&gt;</script></p>
<p>The code will look as follows:</p>
<pre>
<div class="codecolorer-container text geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">var d = new Date();<br />
var t_hour = d.getUTCHours(); // getUTC for GMT0<br />
var t_min = d.getUTCMinutes();<br />
var t_day = d.getUTCDay();<br />
<br />
if (t_hour == 8 &amp;&amp; t_min &gt;= 30 &amp;&amp; t_day &gt; 0 &amp;&amp; t_day &lt; = 5)<br />
&nbsp; &nbsp;{<br />
&nbsp; document.write('&lt;span style=&quot;color: green;&quot;&gt;open.');<br />
&nbsp; &nbsp;}<br />
else if (t_hour &gt; 8 &amp;&amp; t_hour &lt; 18 &amp;&amp; t_day &gt; 0 &amp;&amp; t_day &lt; = 5)<br />
&nbsp; &nbsp;{<br />
&nbsp; document.write('&lt;span style=&quot;color: green;&quot;&gt;open.');<br />
&nbsp; &nbsp;}<br />
else<br />
&nbsp; &nbsp;{<br />
&nbsp; &nbsp;document.write('&lt;span style=&quot;color: red;&quot;&gt;closed&lt;/span&gt;.');<br />
&nbsp; &nbsp;}</div></div>
</pre>
<p>Now, to display this on your website, you will need:</p>
<ol>
<li>to save the few lines above in a file such as &#8220;helpdesk.js&#8221; and upload it wherever you wish on your server (e.g. &#8220;../js/helpdesk.js&#8221;);</li>
<li>copy and paste the line below into the body of your HTML code:</li>
</ol>
<pre>
<div class="codecolorer-container text geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Our helpdesk is &lt;script src=&quot;/js/helpdesk.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;.</div></div>
</pre>
<p><strong>DEMO:</strong> Our helpdesk is currently <script src="http://florianbersier.com/code/helpdesk.js" type="text/javascript"></script> <script type="text/javascript">// < ![CDATA[
// < ![CDATA[
 updatepage();
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/webdesign/display-a-shop-schedule-openclosed-on-a-website-with-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No time to write a post&#8230;</title>
		<link>http://florianbersier.com/blog/fun/no-time-to-write-a-post/</link>
		<comments>http://florianbersier.com/blog/fun/no-time-to-write-a-post/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 00:12:01 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[Academic]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[academia]]></category>
		<category><![CDATA[oxford]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=222</guid>
		<description><![CDATA[Estimated Reading time: < 1 minute]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: < 1 minute</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Ffun%2Fno-time-to-write-a-post%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Ffun%2Fno-time-to-write-a-post%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;"><a href="http://www.phdcomics.com/comics/archive.php?comicid=1303"><img class="aligncenter" src="http://www.phdcomics.com/comics/archive/phd040910s.gif" alt="" width="600" height="260" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/fun/no-time-to-write-a-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>e-Reputation is not Advertising</title>
		<link>http://florianbersier.com/blog/e-trust/e-reputation-is-not-advertising/</link>
		<comments>http://florianbersier.com/blog/e-trust/e-reputation-is-not-advertising/#comments</comments>
		<pubDate>Sun, 18 Apr 2010 01:07:06 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[cyberspace]]></category>
		<category><![CDATA[e-reputation]]></category>
		<category><![CDATA[e-trust]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=179</guid>
		<description><![CDATA[Estimated Reading time: 3 &#8211; 5 minutes A friend asked me a few days ago what are (in my opinion) the fundamental differences between advertising and (online) reputation. Actually, this is a really good question! Indeed, nowadays, many people are not very comfortable whenever they have to dissociate between those two notions and even tend [...]]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: 3 &#8211; 5 minutes</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fe-trust%2Fe-reputation-is-not-advertising%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fe-trust%2Fe-reputation-is-not-advertising%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>A friend asked me a few days ago what are (in my opinion) the fundamental differences between advertising and (online) reputation. Actually, this is a really good question!</p>
<p><span id="more-179"></span></p>
<p>Indeed, nowadays, many people are not very comfortable whenever they have to dissociate between those two notions and even tend to mix up both of them. To be short, I identify two main reasons to that:</p>
<ul>
<li> The fast emergence and sound adoption of the word &#8216;(e-)reputation&#8217; in our everyday life. Quite interestingly, such a process has been so fast that it&#8217;s almost impossible to find today any satisfactory definition of what is e-reputation.</li>
<li>The use of of a marketing-oriented terminology when dealing with the concept of e-reputation, e.g. &#8216;personal-branding&#8217;, &#8216;promotion of yourself&#8217; and so on and so forth.</li>
</ul>
<p>It seems then valuable to start the development of an answer by defining (concisely) advertising and e-reputation.</p>
<h2>Definitions</h2>
<p><strong>Advertising</strong> is a form of communication intended to persuade an audience (viewers, readers or listeners) to take some action. It includes the name of a product or service and how that product or service could benefit the consumer, to persuade potential customers to purchase or to consume that particular brand.<em> Source:Wikipedia</em></p>
<p>I would define <strong>e-reputation</strong> as a social evaluation made by electronic entities toward a specific electronic entity, where an e-entity can be an individual, a group of individuals or an organization. Such an evaluation rests on the publicly observable online history attached to the online identity of the e-entity evaluated, that is the entity&#8217;s digital footprint.</p>
<p>Or, put differently:</p>
<ul>
<li><strong>A</strong><strong>dvertising</strong> refers to <strong><em>the persuasion</em> </strong>of agents/entities (i.e. audience)<strong> </strong><em>t<strong>o take some action toward a specific brand&#8217;s product/service</strong></em><em><strong> by using</strong> </em>the available means of communication (e.g. Internet, radio, TV&#8230;).</li>
</ul>
<ul>
<li><strong>e-Reputation</strong> refers to <em><strong>the perception</strong></em> of agents/entities <em><strong>toward a specific digital identity by observing</strong></em> the available <em><strong>digital data attached to this identity</strong></em>.</li>
</ul>
<h2>Analysis</h2>
<p>Then, we remark that:</p>
<ul>
<li>Advertising is the creation of an image (e.g. of a product) whereas e-Reputation is the meta-evaluation of an image (e.g. of a person).</li>
<li>Advertising is action-oriented whereas e-reputation is belief-oriented.</li>
<li>Advertising is a Flow of Capital whereas e-reputation is a Social-Capital, that is advertising depends on the quantity of available capital for a brand and aims money creation whereas e-reputation depends on the quantity of digital data available for an identity and creates Social Capital, or capital necessary to trust formation.</li>
<li>Advertising refers to a passive role of the entities (i.e. from media to the audience) whereas e-reputation refers to an active role (i.e. from the entities to the media). Put differently, advertising targets an entity thanks to the use of a specific medium whereas, concerning e-reputation, it&#8217;s the entity which targets an online identity thanks to the use of a specific medium, the Internet.</li>
<li>e-Reputation is a Capital/Stock and is so manageable whereas advertising is not.</li>
<li>Advertising is primarily bounded by regulations whereas e-Reputation should be primarily bounded by ethics.</li>
<li>more to come</li>
</ul>
<h2>Conclusion</h2>
<p>To summarize<strong> advertising vs e-reputation</strong>:</p>
<div class="summary">
<ol>
<li><em>Creation of an image</em> vs <em>meta-Evaluation of an image</em>;</li>
<li><em>Action-oriented</em> vs <em>Belief-oriented</em>;</li>
<li><em>Passive role of the entities</em> vs <em>Active role</em>;</li>
<li><em>Flow</em> vs <em>Capital</em>;</li>
<li><em>Not Manageable</em> vs <em>Manageable</em> over a defined period of time.</li>
<li><em>Regulations</em> vs <em>Ethics</em>.</li>
</ol>
</div>
<hr />
<p>Dear readers, your comments/ideas/suggestions are [as usual] very welcome!</p>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/e-trust/e-reputation-is-not-advertising/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Directory of links: e-Reputation, e-Trust, Identification &amp; Authentication</title>
		<link>http://florianbersier.com/blog/e-trust/directory-of-links-e-reputation-e-trust-identification-authentication/</link>
		<comments>http://florianbersier.com/blog/e-trust/directory-of-links-e-reputation-e-trust-identification-authentication/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 13:57:21 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[Academic]]></category>
		<category><![CDATA[cyberspace]]></category>
		<category><![CDATA[e-reputation]]></category>
		<category><![CDATA[e-trust]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=155</guid>
		<description><![CDATA[Estimated Reading time: < 1 minute Please leave comments to share/add URLs to this directory. Cheers. function scro11me(f){f.contentWindow.scrollTo(340,200); }﻿]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: < 1 minute</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fe-trust%2Fdirectory-of-links-e-reputation-e-trust-identification-authentication%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fe-trust%2Fdirectory-of-links-e-reputation-e-trust-identification-authentication%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>Please leave comments to share/add URLs to this directory</strong>. Cheers.</p>
<p><span id="more-155"></span></p>
<iframe class="" src="http://florianbersier.com/links" style="width: 660px; height: 920px; " frameborder="0" scrolling="no" onload="scro11me(this)"></iframe><script type="text/javascript">function scro11me(f){f.contentWindow.scrollTo(340,200); }</script>﻿</p>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/e-trust/directory-of-links-e-reputation-e-trust-identification-authentication/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>My new Firefox add-on: GMail Ads Remover</title>
		<link>http://florianbersier.com/blog/google/gmail/my-new-firefox-add-on-gmail-ads-remover/</link>
		<comments>http://florianbersier.com/blog/google/gmail/my-new-firefox-add-on-gmail-ads-remover/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 23:22:36 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=142</guid>
		<description><![CDATA[Estimated Reading time: 1 &#8211; 2 minutes I just finished coding a new add-on for Firefox: &#8220;Gmail Ads Remover&#8220;. The extension provides a very light and efficient way to remove all the ads present in Gmail. See screenshots below for illustration. Try it there: https://addons.mozilla.org/en-US/firefox/addon/120014/ A few screenshots: Please do not hesitate to share it&#8230;and [...]]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: 1 &#8211; 2 minutes</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fgoogle%2Fgmail%2Fmy-new-firefox-add-on-gmail-ads-remover%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fgoogle%2Fgmail%2Fmy-new-firefox-add-on-gmail-ads-remover%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><strong>I just finished coding a new add-on for Firefox: &#8220;<a href="https://addons.mozilla.org/en-US/firefox/addon/120014/" target="_blank">Gmail Ads Remover</a>&#8220;. </strong>The extension provides a very light and efficient way to remove all the ads present in Gmail. See screenshots below for illustration.</p>
<p><span id="more-142"></span></p>
<p>Try it there: <a href="https://addons.mozilla.org/en-US/firefox/addon/120014/" target="_blank">https://addons.mozilla.org/en-US/firefox/addon/120014/</a></p>
<p><em>A few screenshots:</em></p>
<div class="wp-caption alignnone" style="width: 640px"><a href="http:/florianbersier.com/IMG/firefox/inbox_with.png"><img title="Gmail Inbox without the add-on" src="http://florianbersier.com/IMG/firefox/inbox_with.png" alt="" width="630" height="90" /></a><p class="wp-caption-text">Gmail Inbox without the add-on</p></div>
<div class="wp-caption alignnone" style="width: 640px"><img title="Gmail Inbox with the add-on" src="http://florianbersier.com/IMG/firefox/inbox_no.png" alt="" width="630" height="83" /><p class="wp-caption-text">Gmail Inbox with the add-on</p></div>
<div class="wp-caption alignnone" style="width: 640px"><img title="Gmail without the add-on" src="http://florianbersier.com/IMG/firefox/mail.png" alt="" width="630" height="185" /><p class="wp-caption-text">Gmail without the add-on</p></div>
<div class="wp-caption alignnone" style="width: 640px"><img title="Gmail with the add-on, no more ads" src="http://florianbersier.com/IMG/firefox/mail_no.png" alt="" width="630" height="172" /><p class="wp-caption-text">Gmail with the add-on, no more ads (top and right)</p></div>
<p>Please do not hesitate to share it&#8230;and rate it!</p>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/google/gmail/my-new-firefox-add-on-gmail-ads-remover/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>New Paper: Towards Better Policy and Practice using Real-Time Data</title>
		<link>http://florianbersier.com/blog/academic/new-paper-towards-better-policy-and-practice-using-real-time-data/</link>
		<comments>http://florianbersier.com/blog/academic/new-paper-towards-better-policy-and-practice-using-real-time-data/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 00:17:09 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[Academic]]></category>
		<category><![CDATA[cyberspace]]></category>
		<category><![CDATA[e-entity]]></category>
		<category><![CDATA[economics]]></category>
		<category><![CDATA[topology]]></category>
		<category><![CDATA[academia]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=128</guid>
		<description><![CDATA[Estimated Reading time: 2 &#8211; 4 minutes Can Search Engines (SE) queries and Tweets help predict economic activity? Can Social Networking Services (SNS) help understand time use and help predict online activity? Clearly, those two questions address different issues, but both emphasize the use of (near) real-time data to refine and improve the comprehension of [...]]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: 2 &#8211; 4 minutes</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Facademic%2Fnew-paper-towards-better-policy-and-practice-using-real-time-data%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Facademic%2Fnew-paper-towards-better-policy-and-practice-using-real-time-data%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Can Search Engines (SE) queries and Tweets help predict economic activity? Can Social Networking Services (SNS) help understand time use and help predict online activity?</p>
<p><span id="more-128"></span></p>
<p>Clearly, those two questions address different issues, but both emphasize the use of (near) real-time data to refine and improve the comprehension of our Society. Indeed, in a fast changing world such as the one we live in, it appears more and more crucial for policy and practice to be aware of what is going on in the very present in view of proposing responsive and relevant solutions in the near future. One very innovative and promising way to achieve this is by using online real-time data.</p>
<p>Real-time data denotes information that is delivered immediately after collection, meaning there is no delay or extremely small delay in the time-line of information provided. For example, thanks to the <a href="http://twitter.com" target="_blank">Twitter</a> API , it is nowadays possible to easily gather data on what people are doing/thinking right now. Besides, tools like <a href="http://www.google.com/trends/">Google Trends</a> provide a very simple way to collect hourly, daily or weekly data on the volume of queries related to various keywords. Now, those tools enable researchers to get a fantastic amount of data on an extremely large set of topics. For instance, an economist could use SE queries related to a specific industry (e.g. cars) in a specific part of the world (e.g. France) to refine his seasonal autoregressive model for this industry in this country.<br />
Similarly, it could be interesting to analyse SE queries and tweets making reference to ‘job interviews’ or to online job platforms such as ‘monster.com’ to help predict global and local unemployment rates.</p>
<p>Finally, data gathering on the individuals’ online activity, that is, for example, the number of tweets and retweets per units of time (e.g. minutes) or the number of Facebook status updates per units of time could help understand when people are the most active online and, performed together with a contents’ semantic analysis, could help understand for what purpose.</p>
<p>This short paper aims at proposing methods to enhance current policy and practice. The first section is interested in enhancing current forecasting methods for macroeconomic activity by taking into account real-time data. The second section proposes and discusses methods using real time data to examine the time use of individuals or groups of individuals. Finally, conclusion takes place in the last section.</p>
<p>&#8211;</p>
<p>The paper is available <a href="http://florianbersier.com/papers/PDF/realtimedata.pdf" target="_blank">here</a> [pdf: 335 KB] : http://florianbersier.com/papers/PDF/realtimedata.pdf</p>
<p>&#8211;</p>
<p><a href="http://florianbersier.com/blog/wp-content/uploads/2010/03/realtime.png"><img class="aligncenter size-full wp-image-132" title="realtime" src="http://florianbersier.com/blog/wp-content/uploads/2010/03/realtime.png" alt="" width="672" height="505" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/academic/new-paper-towards-better-policy-and-practice-using-real-time-data/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[Just for Fun] &#8220;L&#8217;Espion de LOPPSI&#8221; par La Parisienne Libérée</title>
		<link>http://florianbersier.com/blog/fun/just-for-fun-lespion-de-loppsi-par-la-parisienne-liberee/</link>
		<comments>http://florianbersier.com/blog/fun/just-for-fun-lespion-de-loppsi-par-la-parisienne-liberee/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 12:35:15 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[france]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[internet]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=125</guid>
		<description><![CDATA[Estimated Reading time: < 1 minute Take a look (in French), Video, Song Source: http://laparisienneliberee.blogspot.com/2010/02/n17-lespion-de-loppsi.html]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: < 1 minute</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Ffun%2Fjust-for-fun-lespion-de-loppsi-par-la-parisienne-liberee%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Ffun%2Fjust-for-fun-lespion-de-loppsi-par-la-parisienne-liberee%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Take a look (in French), Video, Song</p>
<p><span id="more-125"></span></p>
<p><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/Bk_Smi5giLA&#038;hl=en_GB&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Bk_Smi5giLA&#038;hl=en_GB&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="340"></embed></object><br />
<br />
Source: <a href="http://laparisienneliberee.blogspot.com/2010/02/n17-lespion-de-loppsi.html">http://laparisienneliberee.blogspot.com/2010/02/n17-lespion-de-loppsi.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/fun/just-for-fun-lespion-de-loppsi-par-la-parisienne-liberee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Video: &#8216;Fear the Boom and Bust&#8217; [Keynes vs Hayek]</title>
		<link>http://florianbersier.com/blog/fun/great-video-fear-the-boom-and-bust/</link>
		<comments>http://florianbersier.com/blog/fun/great-video-fear-the-boom-and-bust/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 21:22:31 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[economics]]></category>
		<category><![CDATA[fun]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=119</guid>
		<description><![CDATA[Estimated Reading time: < 1 minute Who said Economists are not cool?! Source: http://econstories.tv/home.html]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: < 1 minute</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Ffun%2Fgreat-video-fear-the-boom-and-bust%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Ffun%2Fgreat-video-fear-the-boom-and-bust%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Who said Economists are not cool?!</p>
<p><span id="more-119"></span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/d0nERTFo-Sk&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/d0nERTFo-Sk&amp;rel=0&amp;color1=0x3a3a3a&amp;color2=0x999999&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Source: <a href="http://econstories.tv/home.html" target="_blank">http://econstories.tv/home.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/fun/great-video-fear-the-boom-and-bust/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a Beautiful and Original Contact Page</title>
		<link>http://florianbersier.com/blog/how-to/how-to-create-a-beautiful-and-original-contact-page/</link>
		<comments>http://florianbersier.com/blog/how-to/how-to-create-a-beautiful-and-original-contact-page/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 00:16:31 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[code]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=101</guid>
		<description><![CDATA[Estimated Reading time: 2 &#8211; 4 minutes Many web-designers often struggle to develop original, beautiful and cool contact pages. This short post proposes a quick and efficient way to pimp such (boring) pages by simply using a few lines of CSS and Google Map. What you need first is to go to Google Map and [...]]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: 2 &#8211; 4 minutes</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fhow-to%2Fhow-to-create-a-beautiful-and-original-contact-page%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Fhow-to%2Fhow-to-create-a-beautiful-and-original-contact-page%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://florianbersier.com/contact/"><img class="aligncenter size-full wp-image-102" title="contact" src="http://florianbersier.com/blog/wp-content/uploads/2010/02/contact.png" alt="" width="500" height="423" /></a></p>
<p><span id="more-101"></span></p>
<p>Many web-designers often struggle to develop original, beautiful and cool contact pages. This short post proposes a quick and efficient way to pimp such (boring) pages by simply using a few lines of CSS and Google Map.</p>
<p>What you need first is to go to <a href="http://maps.google.com/" target="_blank">Google Map</a> and to type your address. This done, click on &#8220;link&#8221; (top-right corner) and then click on &#8220;Customize and preview embedded map&#8221;. You are now ready to choose the format of your map/the zoom/the position of the label. Of course, you will need to choose a sufficiently large sized map since it will be the background of your form. When you are happy with your map, then copy the iframe code that should look like that:</p>
<pre>
<div class="codecolorer-container text geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;iframe width=&quot;700&quot; height=&quot;550&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot; marginheight=&quot;0&quot; marginwidth=&quot;0&quot;<br />
src=&quot;http://maps.google.co.uk/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=oxford+internet+institute&amp;amp;sll=44.72293,-107.703874&amp;amp;sspn=143.717289,358.242188&amp;amp;ie=UTF8&amp;amp;hq=oxford+internet+institute&amp;amp;hnear=&amp;amp;cid=9782261097568857188&amp;amp;ll=51.759447,-1.287804&amp;amp;spn=0.058439,0.119991&amp;amp;z=13&amp;amp;iwloc=A&amp;amp;output=embed&quot;&gt;&lt;/iframe&gt;<br />
&lt;br /&gt;&lt;small&gt;<br />
&lt;a href=&quot;http://maps.google.co.uk/maps?f=q&amp;amp;source=embed&amp;amp;hl=en&amp;amp;geocode=&amp;amp;q=oxford+internet+institute&amp;amp;sll=44.72293,-107.703874&amp;amp;sspn=143.717289,358.242188&amp;amp;ie=UTF8&amp;amp;hq=oxford+internet+institute&amp;amp;hnear=&amp;amp;cid=9782261097568857188&amp;amp;ll=51.759447,-1.287804&amp;amp;spn=0.058439,0.119991&amp;amp;z=13&amp;amp;iwloc=A&quot; style=&quot;color:#0000FF;text-align:left&quot;&gt;View Larger Map&lt;/a&gt;<br />
&lt;/small&gt;</div></div>
</pre>
<p>Paste this code into a specific div in your contact page code source, e.g.:</p>
<pre>
<div class="codecolorer-container text geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;div id=&quot;map&quot;&gt;<br />
<br />
&lt;iframe blahblah.....&gt;View Larger Map&lt;/a&gt;&lt;/small&gt;<br />
&lt;/div&gt;</div></div>
</pre>
<p>Now, what we need is to create a second div for the form, e.g.:</p>
<pre>
<div class="codecolorer-container text geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">&lt;div id=&quot;form&quot;&gt;<br />
:: Send me an Email&lt;br &nbsp;/&gt;&lt;br &nbsp;/&gt;<br />
&lt;form method=&quot;POST&quot; action=&quot;&quot;&gt;<br />
Your Name:<br />
&lt;input type=&quot;text&quot; name=&quot;name&quot; size=&quot;35&gt;&lt;br &nbsp;/&gt;&lt;br &nbsp;/&gt;<br />
Your Email:&amp;amp;amp;nbsp;<br />
&lt;input type=&quot;text&quot; name=&quot;email&quot; size=&quot;35&gt;<br />
[...]<br />
&lt;/form&gt;<br />
&lt;/div&gt;</div></div>
</pre>
<p>We are almost done. We just need to apply some CSS to the two divs we created above, that is, for the map:</p>
<pre>
<div class="codecolorer-container text geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">#map {<br />
z-index:1; &nbsp; &nbsp; &nbsp; &nbsp;/*order of display*/<br />
position: absolute;<br />
display: block;<br />
width: 700px; &nbsp;/*the width of your iframed map*/<br />
height: 550px; /*the height of your iframed map*/<br />
top:70px; &nbsp; &nbsp; &nbsp; &nbsp;/*the margin form the top*/<br />
}</div></div>
</pre>
<p>and for the form:</p>
<pre>
<div class="codecolorer-container text geshi" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">#form {<br />
z-index:3;<br />
position:absolute;<br />
display: block;<br />
overflow:auto;<br />
left: 390px; &nbsp;/*position of the div w.r.t. the other one*/<br />
top: 70px; &nbsp; /*position of the div w.r.t. the other one*/<br />
width: 365px;<br />
height: 530px;<br />
padding:10px;<br />
background: #fff; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;/*the background color, here white*/<br />
filter:alpha(opacity=90); &nbsp;/*the transparency percentage, here, 90%. For different browsers, IE, Firefox, Safari, Chrome*/<br />
&nbsp; &nbsp; -moz-opacity:0.9;<br />
&nbsp; &nbsp; -khtml-opacity: 0.9;<br />
&nbsp; &nbsp; opacity: 0.9;<br />
}</div></div>
</pre>
<p>That&#8217;s it! Wasn&#8217;t it simple? Demo <a href="http://florianbersier.com/contact/" mce_href="http://florianbersier.com/contact/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/how-to/how-to-create-a-beautiful-and-original-contact-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LOPPSI II &#8211; La France et le Cyberspace #1 (in French)</title>
		<link>http://florianbersier.com/blog/france/loppsi-ii-le-cyberspace-et-la-france-1-in-french/</link>
		<comments>http://florianbersier.com/blog/france/loppsi-ii-le-cyberspace-et-la-france-1-in-french/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 22:15:24 +0000</pubDate>
		<dc:creator>Florian</dc:creator>
				<category><![CDATA[france]]></category>
		<category><![CDATA[cyberspace]]></category>

		<guid isPermaLink="false">http://florianbersier.com/blog/?p=75</guid>
		<description><![CDATA[Estimated Reading time: 11 &#8211; 18 minutes LOPPSI II ( Loi d&#8217;Orientation et de Programmation pour la Performance de la Sécurité Intérieure) Depuis quelques mois maintenant (~10), j&#8217;ai mal au coeur à chaque fois que j&#8217;aperçois ou entends ces 6 petites lettres! Pire qu&#8217;HADOPI (cf. image)! C&#8217;est peut-être le fait de m&#8217;être exilé aux UK, [...]]]></description>
			<content:encoded><![CDATA[<p>Estimated Reading time: 11 &#8211; 18 minutes</p>
<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Ffrance%2Floppsi-ii-le-cyberspace-et-la-france-1-in-french%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fflorianbersier.com%2Fblog%2Ffrance%2Floppsi-ii-le-cyberspace-et-la-france-1-in-french%2F&amp;source=xpressyoo&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;">
<p><span id="more-75"></span></p>
<p style="text-align: center;"><a href="http://www.fcointe.com/blog/images/hadopibis.jpg"><img class="aligncenter" title="hadopi" src="http://www.fcointe.com/blog/images/hadopibis.jpg" alt="" width="536" height="339" /></a></p>
<p style="text-align: center;"><a href="http://www.assemblee-nationale.fr/13/projets/pl1697.asp" target="_blank"><strong>LOPPSI II</strong></a> ( Loi d&#8217;Orientation et de Programmation pour la Performance de la Sécurité Intérieure)</p>
<p>Depuis quelques mois maintenant  (~10), j&#8217;ai mal au coeur à chaque fois que j&#8217;aperçois ou entends ces 6 petites lettres! Pire qu&#8217;HADOPI (cf. image)! C&#8217;est peut-être le fait de m&#8217;être exilé aux UK, mais je n&#8217;arrive pas à comprendre ce qui se passe dans la tête de certains de mes concitoyens ces derniers temps, particulièrement quand il s&#8217;agit d&#8217;Internet.</p>
<p>A titre d&#8217;exemple, Arte, chaîne TV habituellement  &#8216;intelligente&#8217;, qui propose un reportage diffusé il y a quelques jours intitulé &#8220;<a href="http://www.linternaute.com/television/programme-tv/programme/3289047/les-effroyables-imposteurs/" target="_blank">Les effroyables imposteurs</a>&#8221; et qui a pour sujet &#8220;l&#8217;analyse de la face sombre de la course à l&#8217;info immédiate qui caractérise la Toile, source d&#8217;une dérive qui finit par contaminer les médias traditionnels&#8221;&#8211; tout un programme! Pour résumer l&#8217;émission, on peut y entendre une accumulation de clichés sur Internet. Ainsi, pour quelques politiques rancis, nostalgiques de l&#8217;ORTF et ignorants technologiquement parlant, Internet est &#8220;pourri&#8221; et devrait être nationalisé; pour un ou deux marchands de réclame du siècle dernier, c&#8217;est &#8220;la plus grande saloperie inventée par les hommes&#8221; (rien que ça!); pour ce nouveau philosophe plus très frais, c&#8217;est une &#8220;poubelle&#8221;; pour certains journalistes en mal d&#8217;exotisme numérique, on y aligne les forçats; pour d&#8217;autres, les médias traditionnels &#8220;abdiquent&#8221; (!) devant le Web&#8230; no comment!</p>
<p>A noter que ce reportage est programmé juste avant les débats de cette semaine à l&#8217;Assemblée au sujet de LOPPSI, ce cher projet de loi&#8230; Pour faire court, LOPPSI et ses articles traitant de l&#8217;Internet, c&#8217;est une sorte d&#8217;HADOPI:</p>
<ol>
<li> qui propose encore et toujours des articles de loi sans prendre en compte la complexité des problèmes ciblés;</li>
<li>qui va encore plus à l&#8217;encontre du concept fondateur d&#8217;Internet, i.e. la <a href="http://fr.wikipedia.org/wiki/Net_neutrality" target="_blank"><em>Net-Neutrality</em></a>;</li>
<li>qui porte atteinte à liberté d’expression et aux libertés numériques des citoyens;</li>
<li>qui crée ou augmente l’usage du fichage des individus,  &#8220;fichiers d’analyse sérielle&#8221;;</li>
<li>qui permet le piratage des ordinateurs de certains individus par les autorités compétentes.</li>
</ol>
<p>Ces 5 points me rendent nerveux tellement ils sont inadaptés et dangeureux pour l&#8217;avenir de notre Société.</p>
<p>Ainsi et peut-être par besoin de me défouler, j&#8217;ai décidé d&#8217;écrire quelques <em>posts</em>. Aujourd&#8217;hui, je commence donc cette série de cinq numéros intitulée &#8220;LOPPSI II &#8211; Le Cyberspace et la France&#8221; en m&#8217;attaquant au premier point cité ci-dessus, c&#8217;est-à-dire le manque flagrant d&#8217;analyse quant au traîtement des problèmes que LOPPSI cible.</p>
<p>Sur la totalité des 115 pages du texte de loi, un article capture à lui seul tout le manque de pertinence de LOPPSI,<strong> </strong>c&#8217;es<strong>t l&#8217;article 4</strong>:</p>
<blockquote>
<p style="text-align: justify;">
<p style="text-align: justify;">L’<strong>article 4</strong> protège les internautes contre les images de pornographie enfantine. Le nombre d’images de pornographie enfantine diffusées sur Internet est en augmentation constante depuis plusieurs années. La communauté internationale s’est progressivement mobilisée pour lutter contre ce phénomène préoccupant.</p>
<p style="text-align: justify;">La France est aujourd’hui dotée d’un dispositif législatif sanctionnant l’ensemble des comportements délictuels, tels que la production d’images pédophiles, leur consultation habituelle, leur détention, leur enregistrement, ou encore leur diffusion.</p>
<p style="text-align: justify;">L’activité répressive des services d’enquête, notamment des offices spécialisés pour la répression des violences aux personnes (OCRVP) et de lutte contre la criminalité liée aux technologies de l’information et de la communication (OCLCTIC), s’est également renforcée.</p>
<p style="text-align: justify;">Lorsque les images ou représentations de mineurs à caractère pornographique sont hébergées en France, la législation permet actuellement au juge civil d’imposer à l’hébergeur la suppression du contenu ou la fermeture du site.</p>
<p style="text-align: justify;">Toutefois, la plupart des images de pornographie enfantine diffusées sur internet le sont via des sites hébergés hors de France. C’est pourquoi de nombreuses démocraties voisines se sont dotées de dispositifs techniques permettant de bloquer l’accès à ces sites depuis leur territoire national. C’est le cas du Danemark, de la Grande-Bretagne, de la Norvège, des Pays-Bas et de la Suède.</p>
<p style="text-align: justify;">L’OCRVP, assisté de l’OCLCTIC, assure le suivi et la transposition en France du projet de blocage des tentatives d’accès aux sites qui diffusent des images et représentations de mineur à caractère pornographique (Cospol Internet Related Child Abusive Material Project). Chaque pays adhérent de ce projet s’est engagé à convaincre les fournisseurs d’accès à Internet (FAI) de mettre en place, sur leur réseau, un logiciel visant à empêcher toute connexion à des sites à caractère pédophiles répertoriés par les services de police.</p>
<p style="text-align: justify;">Conformément à l’engagement de la ministre de l’intérieur, le présent projet d’article met à la charge des fournisseurs d’accès à Internet l’obligation d’empêcher l’accès des utilisateurs aux contenus illicites. La liste des sites dont il convient d’interdire l’accès leur sera communiquée sous la forme d’un arrêté du ministre de l’intérieur. En pratique, l’OCLCTIC transmettra au FAI les données utiles par voie dématérialisée. Les FAI auront le libre choix des technologies de blocage selon leurs infrastructures.</p>
<p style="text-align: justify;">Un décret viendra préciser les modalités d’application de ce texte dont l’économie générale a été définie en concertation avec le <em>Forum des droits sur l’Internet</em> (association de la loi de 1901 composée notamment de juristes, de parlementaires, d’utilisateurs et de fournisseurs d’accès à Internet).</p>
</blockquote>
<blockquote>
<p style="text-align: justify;">
</blockquote>
<p>En gros, cet article à la motivation plus que louable se propose de combattre la pédopornographie/pédophilie en<strong> filtrant </strong>les sites pédopornographiques &#8211;se basant sur l&#8217;exemple d&#8217;autres pays dont la Grande-Bretagne&#8230; Or,  un tel procédé est:</p>
<ol>
<li> <strong>inutile et inefficace;</strong></li>
<li><strong>dangeureux pour la sacro-sainte Neutralité du Net;</strong></li>
<li><strong>contreproductif voire même dangeureux pour notre Société;</strong></li>
</ol>
<p>et devrait à tout prix être évité!</p>
<p>Commençons avec le premier point; combattre la (www) pédopornographie en utilisant ce genre de technique (préhistorique) se rapproche un peu de l&#8217;idée d&#8217;arrêter un avion en plein vol avec une voiture! Ce que je veux dire par là, c&#8217;est que l&#8217;organisation de cette &#8220;industrie infâme&#8221; est ajourd&#8217;hui beaucoup plus évoluée techniquement que le texte de loi ne l&#8217;envisage. Un tel filtrage aurait pu s&#8217;avérer efficace il y a dix ans (et je suis gentil) quand les images pédophiles présentes sur le web étaient encore majoritairement rendues disponibles par quelques individus non organisés sur des plateformes statiques et facilement repérables. C&#8217;est une pratique d&#8217;un autre âge et les personnes qui le font encore sont généralement assez vite découvertes et neutralisées. On voit donc que le filtrage est inutile puisque ce qu&#8217;il propose de potentiellement neutraliser l&#8217;est déjà très bien par le système actuel.</p>
<p>Maintenant, en plus d&#8217;être inutile, la solution du filtrage est aussi inéfficace. En effet, les réseaux Peer-2-Peer, Usenet, Chat de type IRC ne sont pas inscrits dans le périmètre de blocage (filtrage). Or  IRC est depuis longtemps une des principales plateformes d’échange d’images pédopornographiques. En outre, comme déjà vaguement souligné, la distribution digitale de contenus pédophiles s&#8217;apparente plus de nos jours à une organisation mafieuse extrêmement douée techniquement car composée d&#8217;un certain nombre de <em>blackhats</em> (i.e. &#8216;méchants&#8217; hackers à opposer aux <em>whitehats</em>). Bien que le texte comprenne que cette distribution vient principalement de l&#8217;étranger, généralement de l&#8217;Est, particulièrement de la Russie pour ne pas la citer, il ne prend pas en compte la combinaison de technologies utilisées sous-jacentes à cette même distribution. Or, il s&#8217;avère que la pédopornographie digitale est de plus en plus rendue possible et soutenue par:</p>
<ul>
<li> Des <strong>chevaux de Troie</strong> ou Trojans qui infectent les PCs avec des petits logiciels conçus pour exécuter subrepticement des actions à l’insu de l&#8217;utilisateur. 1/4 des PCs de la planète seraient infectés par des Trojans! Dans le cas de la pédopornographie, l&#8217;utilité faite de ces micro-logiciels par les blackhats est de prendre le contrôle de plusieurs ordinateurs (création de <em>botnets</em>) pour uploader du contenu sur un serveur, créer des clusters (~réseaux indépendants) entre différents ordinateurs ou envoyer du spam depuis une machine infectée.</li>
<li>Le <strong>Spam</strong> est la stratégie la plus utilisée par la distribution pédopornographique pour promouvoir et amener du trafic sur les serveurs cachés ou isolés contenant le contenu pédophile. Les bases de données d&#8217;emails sont soit achetées à des sociétés ou viennent &#8220;d&#8217;anciens clients&#8221;.</li>
<li>Le<strong> vol et l&#8217;usurpation d&#8217;identité</strong>. En gros, un grand nombre de blakhats créent des bases de données de numéros de carte de crédit, emails et données personnelles et les vendent à des (groupes de) personnes qui pourront les utiliser dans le cas de la pédopornographie pour louer des serveurs et des noms de domaines, tout en restant anonymes.</li>
<li>Un large nombre de <strong>différents serveurs</strong> au contenu uploadé via des <strong>proxys SOCKS </strong>ou intermédiaires, i.e. via des machines infectées, appelées dans le jargon informatique &#8220;zombies&#8221;.</li>
<li>La <strong>démocratisation des Virtualiseurs</strong> (e.g. Windows Remote Desktop), une technologie qui permet de se connecter à un ordinateur distant et d’en prendre le contrôle à partir de votre ordinateur, l’écran de l’ordinateur distant étant alors affiché sur votre PC.</li>
</ul>
<p>Autant dire que tout filtrage est complètement impuissant ou inefficcace contre tout cela! Une meilleure solution technique pour combattre la distibution pédopornographique serait donc une meilleure protection des ordinateurs personnels, i.e. en éduqant les citoyens à télécharger les mises-à-jours de leurs navigateurs et anti-virus, en développant de meilleurs anti-virus open-source, en démocratisant les OS à base UNIX..</p>
<p>Ma deuxième critique contre ce projet de loi en général et cet article 4 en particulier est qu&#8217;il met sérieusement en danger la neutralité du Net, concept fondateur d&#8217;Internet, moteur de son innovation et symbole démocratique. En effet, La neutralité du Net exclut toute discrimination à l&#8217;égard de la source, de la destination, ou du contenu de l&#8217;information transmise sur le réseau. Ainsi, ce principe garantit que les utilisateurs ne feront face à aucune gestion du trafic internet qui aurait pour effet de limiter leur accès aux applications et services distribués sur le réseau. Concrètement, la neutralité du Net assure que les flux d&#8217;information ne sont ni bloqués, ni dégradés par les opérateurs de télécommunications, permettant ainsi aux utilisateurs d&#8217;utiliser librement l&#8217;architecture communicationnelle.</p>
<p>Maintenant, mettre en place un système de filtrage va, par définition, à l&#8217;encontre de ce principe et ouvre une boîte de pandore. Si on le fait pour les contenus pédopornographiques, aujourd&#8217;hui, pourquoi ne pas l&#8217;appliquer à d&#8217;autres systèmes de distributions demain?</p>
<p>Finalement, et d&#8217;un point de vue plus philosophique, le concept de filtrage, même si appliqué à des fins légitimes, me semble complètement incompatible avec les valeurs du pays des <em>Droits de l&#8217;Homme</em>!</p>
<p>Mon dernier point sur l&#8217;article 4 de LOPPSI II est qu&#8217;il est contreproductif voire même dangeureux pour notre Société. En effet, aux vues de l&#8217;organisation et des supports techniques de la distribution pédopornographique actuelle, il semble que vouloir implémenter un filtrage aura pour conséquence d&#8217;encourager /développer encore plus le système mafieux d&#8217;aujourd&#8217;hui, compliquant ainsi la tâche des services de traque de l&#8217;origine de ces contenus. La volonté inflexible d&#8217;un gouvernement de contrôler quoique ce soit (e.g. l&#8217;accès à l&#8217;alcool pendant la Prohibition aux USA, ou, dans le cas présent, l&#8217;accès à du contenu sur Internet)  a souvent pour fâcheuse conséquence de développer encore plus la puissance des organisations mafieuses (Contre-bande à la Al-Capone aux Etats-Unis, mafia de l&#8217;Est aujourd&#8217;hui).</p>
<p>Finalement, en encourageant l&#8217;utilisation et l&#8217;innovation en terme de moyens de distribuer dans le cyberspace de tels contenus, il se pourrait bien que dans un futur proche tout &#8216;netizen&#8217; soit confronté involontairement à du contenu pédopornographique via un spam par exemple, ce qui est exactement l&#8217;inverse du but recherché par l&#8217;article 4 du projet de loi!</p>
<p style="text-align: right;"><em>La suite au prochain numéro&#8230;.</em></p>
<p>&#8211;</p>
<p><em><strong>Sources et Crédits:</strong></em></p>
<ul>
<li>Le projet de loi: http://www.assemblee-nationale.fr/13/projets/pl1697.asp</li>
<li>http://fr.wikipedia.org/wiki/Net_neutrality</li>
<li>http://fr.wikipedia.org/wiki/Cheval_de_Troie_(informatique)</li>
<li>http://fr.readwriteweb.com/2010/01/29/a-la-une/loppsi-pedophiles-business-analyse/</li>
<li>http://www.pcinpact.com/actu/news/55267-loppsi-assembee-nationale-texte-synthese.htm</li>
<li>http://www.acrimed.org/article3289.html</li>
<li>http://blogs.lexpress.fr/cgi-bin/mt-search.cgi?tag=beno%C3%AEt%20Rapha%C3%ABl&amp;blog_id=120&amp;IncludeBlogs=120</li>
<li>Etude réalisée par Fabrice Epelboin (.pdf): <a href="http://bit.ly/pedobiz" target="_blank">http://bit.ly/pedobiz</a>.</li>
<li>Crédits image: http://www.fcointe.com/blog/</li>
</ul>
<p><!--subscribe2--></p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 402px; width: 1px; height: 1px;">Les clichés sur Internet ont l&#8217;épiderme épais. Pour quelques politiques rancis, nostalgiques de l&#8217;ORTF, <a href="http://www.pcinpact.com/actu/news/54628-jacques-myard-nationalisation-loi-internet.htm">Internet est &#8220;pourri&#8221; et devrait être nationalisé</a>; pour un ou deux marchands de réclame du siècle dernier, c&#8217;est &#8220;<a href="http://www.ozap.com/actu/seguela-internet-grande-saloperie-inventee-hommes/306114">la plus grande saloperie inventée par les hommes</a>&#8221; (rien que ça!); pour ce nouveau philosophe plus très frais, <a href="http://www.dailymotion.com/video/x957zk_pour-finkielkraut-internet-est-une_news">c&#8217;est une &#8220;poubelle&#8221;</a>; pour certains journalistes en mal d&#8217;exotisme numérique, <a href="http://blogs.lexpress.fr/nouvelleformule/2009/05/xavier-ternissen-est-le-nouvea.php">on y aligne les forçats</a>; pour d&#8217;autres, <a href="http://tv.lepost.fr/2009/12/19/1848179_debat-internet-contamine-chez-gisbert.html">les médias traditionnels &#8220;abdiquent&#8221; (!) devant le Web</a>&#8230; Rien de nouveau sous le soleil: la capacité de résistance au changement, chez l&#8217;homo-pedibus, c&#8217;est une constante.</div>
]]></content:encoded>
			<wfw:commentRss>http://florianbersier.com/blog/france/loppsi-ii-le-cyberspace-et-la-france-1-in-french/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
