scratch/output/Scratch/en/index.html
2010-09-28 03:34:37 +02:00

1313 lines
No EOL
61 KiB
HTML

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="fr" xml:lang="fr">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="shortcut icon" type="image/x-icon" href="/Scratch/img/favicon.ico" />
<link rel="stylesheet" type="text/css" href="/Scratch/assets/css/main.css" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="http://feeds.feedburner.com/yannespositocomen"/>
<link rel="alternate" lang="fr" xml:lang="fr" title="Accueil" type="text/html" hreflang="fr" href="/Scratch/fr/" />
<link rel="alternate" lang="en" xml:lang="en" title="Homepage" type="text/html" hreflang="en" href="/Scratch/en/" />
<script type="text/javascript" src="/Scratch/js/jquery-1.3.1.min.js"></script>
<script type="text/javascript" src="/Scratch/js/jquery.cookie.js"></script>
<script type="text/javascript" src="/Scratch/js/index.js"></script>
<script type="text/javascript" src="/Scratch/js/menu.js"></script>
<title>Homepage</title>
</head>
<body lang="en">
<script type="text/javascript">// <![CDATA[
document.write('<div id="blackpage"><img src="/Scratch/img/loading.gif" alt="loading..."/></div>');
// ]]>
</script>
<div id="content">
<div id="entete">
<div id="choix">
<div id="choixrss">
<a id="rss" href="http://feeds.feedburner.com/yannespositocomen">
Subscribe
</a>
</div>
<div id="choixlang">
<a href="/Scratch/fr/" onclick="setLanguage('fr')">en Français</a>
</div>
<div id="liens">
<ul><li><span class="active" title="You're here.">Homepage</span></li>
<li><a href="/Scratch/en/blog/">Blog</a></li>
<li><a href="/Scratch/en/software/">Softwares</a></li>
<li><a href="/Scratch/en/about/">About</a></li></ul>
</div>
</div>
</div>
<img src="/Scratch/img/presentation.png" alt="Presentation drawing"/>
<div id="titre">
<h1>
Homepage
</h1>
</div>
<div class="flush"></div>
<div class="flush"></div>
<div id="afterheader">
<div class="corps">
<p>Welcome on my personnal website.</p>
<p>Here are the begining<sup><a href="#footnote1">&dagger;</a></sup> of my 5 last blog posts.</p>
<p> You can also search the entries with <a href="#tagcloud">tag cloud</a></p>
You can subscribe to my RSS feed. You'll never miss a post. <a href="/Scratch/en/rss">Click here</a> if you don't know what RSS feeds are.
<hr/>
<p class="small"><span id="footnote1">&dagger;</span> approximatively the 800 first characters.</p>
</div>
<h1>
<span class="date">
<span class="day">2</span>
<span class="month">Sep</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/">Use git to calculate trusted mtimes</a>
</h1>
<div class="corps">
<p>You can remark at the bottom of each page I provide a last modification date.
This label was first calculated using the <code>mtime</code> of the file on the file system.
But many times I modify this date just to force some recompilation.
Therefore the date wasn&rsquo;t a date of <em>real</em> modification.</p>
<p>I use <a href="http://git-scm.org">git</a> to version my website.
And fortunately I can know the last date of <em>real</em> change of a file.
This is how I do this with <a href="http://nanoc.stoneship.org">nanoc</a>:</p>
<div class="code"><div class="file"><a href="/Scratch/en/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/code/gitmtime.rb"> &#x27A5; gitmtime.rb </a></div><div class="withfile">
<pre class="twilight">
<span class="Keyword">def</span> </pre></div></div>
<p>
<a href="/Scratch/en/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/">Read more &rarr;</a>
</p>
</div>
<h1>
<span class="date">
<span class="day">1</span>
<span class="month">Sep</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-09-02-base64-and-sha1-on-iPhone/">base64 and sha1 on iPhone</a>
</h1>
<div class="corps">
<p>Lets be straight:
here are two functions to add to your code to have <code>base64</code> and <code>hexadecimal</code> version of the <code>sha1</code> hash of an NSString.</p>
<p>To use it, simply copy the code in your class and use as this:</p>
<pre class="twilight">
<span class="CCCPreprocessorLine">#<span class="CCCPreprocessorDirective">import</span> <span class="String"><span class="String">&lt;</span>CommonCrypto/CommonDigest.h<span class="String">&gt;</span></span></span>
...
<span class="Support">NSString</span> *b64_hash = [<span class="Variable">self</span> <span class="SupportFunction">b64_sha1<span class="SupportFunction">:</span></span><span class="String"><span class="String">@&quot;</span>some NSString to be sha1'ed<span class="String">&quot;</span></span>];
...
</pre>
<p>
<a href="/Scratch/en/blog/2010-09-02-base64-and-sha1-on-iPhone/">Read more &rarr;</a>
</p>
</div>
<h1>
<span class="date">
<span class="day">31</span>
<span class="month">Aug</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-08-31-send-mail-from-command-line-with-attached-file/">send mail from command line with attached file</a>
</h1>
<div class="corps">
<p>I had to send a mail using only command line.
I was surprised it isn&rsquo;t straightforward at all.
I didn&rsquo;t had <code>pine</code> nor <code>mutt</code> or anything like that.
Just <code>mail</code> and <code>mailx</code>.</p>
<p>What Internet say (via google) is</p>
<pre class="twilight">
uuencode fic.jpg fic.jpg <span class="Keyword">|</span> mail -s <span class="String"><span class="String">'</span>Subject<span class="String">'</span></span>
</pre>
<p>I tried it.
And it works almost each times.
But for my file, it didn&rsquo;t worked.
I compressed it to <code>.gz</code>, <code>.bz2</code> and <code>.zip</code>.
Using <code>.bz2</code> format it worked nicely, but not with other formats.
Instead of having an attached file I saw this in my email.</p>
<pre>
begin 664 fic....</pre>
<p>
<a href="/Scratch/en/blog/2010-08-31-send-mail-from-command-line-with-attached-file/">Read more &rarr;</a>
</p>
</div>
<h1>
<span class="date">
<span class="day">23</span>
<span class="month">Aug</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-08-23-Now-heberged-on-heroku/">Now hosted by heroku</a>
</h1>
<div class="corps">
<h1 class="first" id="now-on-herokuhttpherokucom">Now on <a href="http://heroku.com">Heroku</a></h1>
<p>I now changed my hosting to <a href="http://heroku.com">Heroku</a>.
I believe it will be far more reliable.</p>
<p>But as you should know my website is completely static.
I use <a href="http://nanoc.stoneship.org/">nanoc</a> to generate it.
But here is the conf to make it work on heroku.</p>
<p>The root of my files is <code>/output</code>. You only need to create a <code>config.ru</code><sup id="fnref:1"><a href="#fn:1" rel="footnote">1</a></sup> file:</p>
<div class="code"><div class="file"><a href="/Scratch/en/blog/2010-08-23-Now-heberged-on-heroku/code/config.ru"> &#x27A5; config.ru </a></div><div class="withfile">
<pre class="twilight">
<span class="Keyword">require</span> </pre></div></div>
<p>
<a href="/Scratch/en/blog/2010-08-23-Now-heberged-on-heroku/">Read more &rarr;</a>
</p>
</div>
<h1>
<span class="date">
<span class="day">11</span>
<span class="month">Aug</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-09-Indecidabilities/">Undecidabilities (part 1)</a>
</h1>
<div class="corps">
<div class="intro">
<p><span class="sc"><abbr title="Too long; don't read">tl;dr</abbr>: </span> I pretend to create a world to give examples of different meanings behind the word <em>undecidability</em>:</p>
<ul>
<li>Undecidability due to measure errors, </li>
<li>Big errors resulting from small initial measure error,</li>
<li>Fractal undecidability&nbsp;;</li>
<li>Logic Undecidability.</li>
</ul>
</div>
</div>
<div class="corps">
<h1 class="first" id="the-undecidabilities">The Undecidabilities</h1>
<div class="intro">
<p>If a demiurge made our world, he certainly had a great sense of humor.
After this read, you should be convinced.
I&rsquo;ll pretend to be him.
I&rsquo;ll create a simplified world.
A world that obey to simple mathematical rules.
And I&rsquo;ll ...</p></div>
<p>
<a href="/Scratch/en/blog/2010-07-09-Indecidabilities/">Read more &rarr;</a>
</p>
</div>
<div class="corps">
<h2 class="first">tag cloud (2 or more posts only)</h2>
<script type="text/javascript">
$(document).ready( function(){$('.list').hide();$('#tagcloud a').removeAttr("href")} );
function tagSelected(id) {
$('.list').hide();
$('#'+id).fadeIn();
$('.tag.selected').removeClass('selected');
$('#tag_'+id).addClass('selected');
}
</script><div id="tagcloud"><a href="#analytics" style="font-size: 1.125em;" class="tag" onclick="tagSelected('analytics')" id="tag_analytics">analytics</a> <a href="#Apple" style="font-size: 1.625em;" class="tag" onclick="tagSelected('Apple')" id="tag_Apple">Apple</a> <a href="#blog" style="font-size: 1.75em;" class="tag" onclick="tagSelected('blog')" id="tag_blog">blog</a> <a href="#design" style="font-size: 1.125em;" class="tag" onclick="tagSelected('design')" id="tag_design">design</a> <a href="#disqus" style="font-size: 1.0em;" class="tag" onclick="tagSelected('disqus')" id="tag_disqus">disqus</a> <a href="#git" style="font-size: 1.75em;" class="tag" onclick="tagSelected('git')" id="tag_git">git</a> <a href="#intense_debate" style="font-size: 1.0em;" class="tag" onclick="tagSelected('intense_debate')" id="tag_intense_debate">intense&nbsp;debate</a> <a href="#iPhone" style="font-size: 1.125em;" class="tag" onclick="tagSelected('iPhone')" id="tag_iPhone">iPhone</a> <a href="#javascript" style="font-size: 1.625em;" class="tag" onclick="tagSelected('javascript')" id="tag_javascript">javascript</a> <a href="#jQuery" style="font-size: 1.875em;" class="tag" onclick="tagSelected('jQuery')" id="tag_jQuery">jQuery</a> <a href="#mac" style="font-size: 1.0em;" class="tag" onclick="tagSelected('mac')" id="tag_mac">mac</a> <a href="#mathematics" style="font-size: 1.0em;" class="tag" onclick="tagSelected('mathematics')" id="tag_mathematics">mathematics</a> <a href="#mobileme" style="font-size: 1.0em;" class="tag" onclick="tagSelected('mobileme')" id="tag_mobileme">mobileme</a> <a href="#nanoc" style="font-size: 1.0em;" class="tag" onclick="tagSelected('nanoc')" id="tag_nanoc">nanoc</a> <a href="#programming" style="font-size: 1.25em;" class="tag" onclick="tagSelected('programming')" id="tag_programming">programming</a> <a href="#protection" style="font-size: 1.0em;" class="tag" onclick="tagSelected('protection')" id="tag_protection">protection</a> <a href="#regexp" style="font-size: 1.375em;" class="tag" onclick="tagSelected('regexp')" id="tag_regexp">regexp</a> <a href="#regular_expression" style="font-size: 1.25em;" class="tag" onclick="tagSelected('regular_expression')" id="tag_regular_expression">regular&nbsp;expression</a> <a href="#ruby" style="font-size: 1.125em;" class="tag" onclick="tagSelected('ruby')" id="tag_ruby">ruby</a> <a href="#script" style="font-size: 1.5em;" class="tag" onclick="tagSelected('script')" id="tag_script">script</a> <a href="#shell" style="font-size: 1.125em;" class="tag" onclick="tagSelected('shell')" id="tag_shell">shell</a> <a href="#synchronisation" style="font-size: 1.0em;" class="tag" onclick="tagSelected('synchronisation')" id="tag_synchronisation">synchronisation</a> <a href="#tip" style="font-size: 1.0em;" class="tag" onclick="tagSelected('tip')" id="tag_tip">tip</a> <a href="#tree" style="font-size: 1.0em;" class="tag" onclick="tagSelected('tree')" id="tag_tree">tree</a> <a href="#web" style="font-size: 2.5em;" class="tag" onclick="tagSelected('web')" id="tag_web">web</a> <a href="#WebDav" style="font-size: 1.0em;" class="tag" onclick="tagSelected('WebDav')" id="tag_WebDav">WebDav</a> <a href="#webdesign" style="font-size: 1.0em;" class="tag" onclick="tagSelected('webdesign')" id="tag_webdesign">webdesign</a> <a href="#zsh" style="font-size: 1.125em;" class="tag" onclick="tagSelected('zsh')" id="tag_zsh">zsh</a> </div><div id="hiddenDivs" ><div id="analytics" class="list"><h4>analytics <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-17-hide-yourself-to-analytics/">Hide Yourself to your Analytics</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-17-track-events-with-google-analytics/">Track Events with Google Analytics</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">11</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/09_Why_I_didn-t_keep_whosamung-us/">Why I didn't keep whos.amung.us</a>
</li>
</ul></div><div id="Apple" class="list"><h4>Apple <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">4</span>
<span class="month">Jan</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-01-04-Change-default-shell-on-Mac-OS-X/">Change default shell on Mac OS X</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">6</span>
<span class="month">Dec</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-12-06-iphone-call-filter/">iphone call filter</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/">custom website synchronisation with mobileme (2)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">11</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/">Synchronize Custom WebSite with mobileMe</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">7</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/08_Configure_ssh_to_listen_the_port_443_on_Snow_Leopard/">ssh to Listen 443 on Snow Leopard</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">6</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/07_Screensaver_compilation_option_for_Snow_Leopard/">Screensaver compilation option for Snow Leopard<sub>&copy;</sub></a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">15</span>
<span class="month">Aug</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/04_drm/">DRM are EVIL</a>
</li>
</ul></div><div id="blog" class="list"><h4>blog <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Aug</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-08-23-Now-heberged-on-heroku/">Now hosted by heroku</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">19</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/">jQuery popup the easy way</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-17-hide-yourself-to-analytics/">Hide Yourself to your Analytics</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-17-track-events-with-google-analytics/">Track Events with Google Analytics</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">15</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-15-Get-my-blog-engine/">Get my blog engine</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">14</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-14-multi-language-choices/">multi language choices</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">May</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-05-17-at-least-this-blog-revive/">I live again!</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/">Disqus versus Intense Debate (Why I switched)</a>
</li>
</ul></div><div id="design" class="list"><h4>design <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">31</span>
<span class="month">Jul</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-31-New-style-after-holidays/">New style after holidays</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">26</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/">Menu waiting to hide himself</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">22</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-Focus-vs-Minimalism/">Focus &gt; Minimalism</a>
</li>
</ul></div><div id="disqus" class="list"><h4>disqus <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/">Disqus versus Intense Debate (Why I switched)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/11_Load_Disqus_Asynchronously/">Load Disqus Asynchronously</a>
</li>
</ul></div><div id="git" class="list"><h4>git <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">2</span>
<span class="month">Sep</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/">Use git to calculate trusted mtimes</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Mar</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-03-23-Encapsulate-git/">Encapsulate git</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">22</span>
<span class="month">Mar</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-03-22-Git-Tips/">Git Tips</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">14</span>
<span class="month">Dec</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-12-14-Git-vs--Bzr/">Git vs. Bzr</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">12</span>
<span class="month">Nov</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-11-12-Git-for-n00b/">Git for n00b</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">13</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-untaught-git-usage/">Untaught Git usage</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">18</span>
<span class="month">Aug</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/06_How_I_use_git/">Git for self</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Aug</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/05_git_create_remote_branch/">Git remote branch creation</a>
</li>
</ul></div><div id="intense_debate" class="list"><h4>intense debate <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/">Disqus versus Intense Debate (Why I switched)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/11_Load_Disqus_Asynchronously/">Load Disqus Asynchronously</a>
</li>
</ul></div><div id="iPhone" class="list"><h4>iPhone <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">1</span>
<span class="month">Sep</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-09-02-base64-and-sha1-on-iPhone/">base64 and sha1 on iPhone</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">5</span>
<span class="month">Jul</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-05-Cappuccino-and-Web-applications/">Cappuccino vs jQuery</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">6</span>
<span class="month">Dec</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-12-06-iphone-call-filter/">iphone call filter</a>
</li>
</ul></div><div id="javascript" class="list"><h4>javascript <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">5</span>
<span class="month">Jul</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-05-Cappuccino-and-Web-applications/">Cappuccino vs jQuery</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">19</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/">jQuery popup the easy way</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-17-hide-yourself-to-analytics/">Hide Yourself to your Analytics</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-17-track-events-with-google-analytics/">Track Events with Google Analytics</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">26</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/">Menu waiting to hide himself</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-jQuery-Tag-Cloud/">jQuery Tag Cloud</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/11_Load_Disqus_Asynchronously/">Load Disqus Asynchronously</a>
</li>
</ul></div><div id="jQuery" class="list"><h4>jQuery <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">5</span>
<span class="month">Jul</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-05-Cappuccino-and-Web-applications/">Cappuccino vs jQuery</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">19</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/">jQuery popup the easy way</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-17-hide-yourself-to-analytics/">Hide Yourself to your Analytics</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-17-track-events-with-google-analytics/">Track Events with Google Analytics</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">30</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-30-How-to-handle-evil-IE/">How to handle evil IE</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">26</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/">Menu waiting to hide himself</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">22</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-Focus-vs-Minimalism/">Focus &gt; Minimalism</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">3</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-How-to-preload-your-site-with-style/">How to preload your site with style</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-jQuery-Tag-Cloud/">jQuery Tag Cloud</a>
</li>
</ul></div><div id="mac" class="list"><h4>mac <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">7</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/08_Configure_ssh_to_listen_the_port_443_on_Snow_Leopard/">ssh to Listen 443 on Snow Leopard</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">6</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/07_Screensaver_compilation_option_for_Snow_Leopard/">Screensaver compilation option for Snow Leopard<sub>&copy;</sub></a>
</li>
</ul></div><div id="mathematics" class="list"><h4>mathematics <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">11</span>
<span class="month">Aug</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-09-Indecidabilities/">Undecidabilities (part 1)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">24</span>
<span class="month">May</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-05-24-Trees--Pragmatism-and-Formalism/">Trees; Pragmatism and Formalism</a>
</li>
</ul></div><div id="mobileme" class="list"><h4>mobileme <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/">custom website synchronisation with mobileme (2)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">11</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/">Synchronize Custom WebSite with mobileMe</a>
</li>
</ul></div><div id="nanoc" class="list"><h4>nanoc <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">2</span>
<span class="month">Sep</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/">Use git to calculate trusted mtimes</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">15</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-15-Get-my-blog-engine/">Get my blog engine</a>
</li>
</ul></div><div id="programming" class="list"><h4>programming <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">7</span>
<span class="month">Jul</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-07-CSS-rendering-problems-by-navigator/">Do not use CSS gradient with Chrome</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">5</span>
<span class="month">Jul</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-05-Cappuccino-and-Web-applications/">Cappuccino vs jQuery</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Feb</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-02-23-When-regexp-is-not-the-best-solution/">When regexp is not the best solution</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">13</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-untaught-git-usage/">Untaught Git usage</a>
</li>
</ul></div><div id="protection" class="list"><h4>protection <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Mar</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-03-23-Encapsulate-git/">Encapsulate git</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">15</span>
<span class="month">Aug</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/04_drm/">DRM are EVIL</a>
</li>
</ul></div><div id="regexp" class="list"><h4>regexp <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">24</span>
<span class="month">May</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-05-24-Trees--Pragmatism-and-Formalism/">Trees; Pragmatism and Formalism</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Feb</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-02-23-When-regexp-is-not-the-best-solution/">When regexp is not the best solution</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">16</span>
<span class="month">Feb</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-02-16-All-but-something-regexp--2-/">Pragmatic Regular Expression Exclude (2)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">15</span>
<span class="month">Feb</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-02-15-All-but-something-regexp/">Pragmatic Regular Expression Exclude</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">22</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-replace-all-except-some-part/">replace all except some part</a>
</li>
</ul></div><div id="regular_expression" class="list"><h4>regular expression <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Feb</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-02-23-When-regexp-is-not-the-best-solution/">When regexp is not the best solution</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">16</span>
<span class="month">Feb</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-02-16-All-but-something-regexp--2-/">Pragmatic Regular Expression Exclude (2)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">15</span>
<span class="month">Feb</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-02-15-All-but-something-regexp/">Pragmatic Regular Expression Exclude</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">22</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-replace-all-except-some-part/">replace all except some part</a>
</li>
</ul></div><div id="ruby" class="list"><h4>ruby <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">19</span>
<span class="month">May</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-05-19-How-to-cut-HTML-and-repair-it/">How to repair a cutted XML?</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-jQuery-Tag-Cloud/">jQuery Tag Cloud</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">22</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-replace-all-except-some-part/">replace all except some part</a>
</li>
</ul></div><div id="script" class="list"><h4>script <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">24</span>
<span class="month">May</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-05-24-Trees--Pragmatism-and-Formalism/">Trees; Pragmatism and Formalism</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">19</span>
<span class="month">May</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-05-19-How-to-cut-HTML-and-repair-it/">How to repair a cutted XML?</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">18</span>
<span class="month">Feb</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-02-18-split-a-file-by-keyword/">split a file by keyword</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/">custom website synchronisation with mobileme (2)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-launch-daemon-from-command-line/">launch daemon from command line</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">11</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/">Synchronize Custom WebSite with mobileMe</a>
</li>
</ul></div><div id="shell" class="list"><h4>shell <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">31</span>
<span class="month">Aug</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-08-31-send-mail-from-command-line-with-attached-file/">send mail from command line with attached file</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">18</span>
<span class="month">Feb</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-02-18-split-a-file-by-keyword/">split a file by keyword</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-launch-daemon-from-command-line/">launch daemon from command line</a>
</li>
</ul></div><div id="synchronisation" class="list"><h4>synchronisation <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/">custom website synchronisation with mobileme (2)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">11</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/">Synchronize Custom WebSite with mobileMe</a>
</li>
</ul></div><div id="tip" class="list"><h4>tip <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">22</span>
<span class="month">Mar</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-03-22-Git-Tips/">Git Tips</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-launch-daemon-from-command-line/">launch daemon from command line</a>
</li>
</ul></div><div id="tree" class="list"><h4>tree <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">24</span>
<span class="month">May</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-05-24-Trees--Pragmatism-and-Formalism/">Trees; Pragmatism and Formalism</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">19</span>
<span class="month">May</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-05-19-How-to-cut-HTML-and-repair-it/">How to repair a cutted XML?</a>
</li>
</ul></div><div id="web" class="list"><h4>web <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">2</span>
<span class="month">Sep</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/">Use git to calculate trusted mtimes</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">31</span>
<span class="month">Aug</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-08-31-send-mail-from-command-line-with-attached-file/">send mail from command line with attached file</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">31</span>
<span class="month">Jul</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-31-New-style-after-holidays/">New style after holidays</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">7</span>
<span class="month">Jul</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-07-CSS-rendering-problems-by-navigator/">Do not use CSS gradient with Chrome</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">5</span>
<span class="month">Jul</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-07-05-Cappuccino-and-Web-applications/">Cappuccino vs jQuery</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">19</span>
<span class="month">Jun</span>
<span class="year">2010</span>
</span>
<a href="/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/">jQuery popup the easy way</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">30</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-30-How-to-handle-evil-IE/">How to handle evil IE</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">26</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/">Menu waiting to hide himself</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">22</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-Focus-vs-Minimalism/">Focus &gt; Minimalism</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">3</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-How-to-preload-your-site-with-style/">How to preload your site with style</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/">Disqus versus Intense Debate (Why I switched)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-09-jQuery-Tag-Cloud/">jQuery Tag Cloud</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">17</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/11_Load_Disqus_Asynchronously/">Load Disqus Asynchronously</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">11</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/09_Why_I_didn-t_keep_whosamung-us/">Why I didn't keep whos.amung.us</a>
</li>
</ul></div><div id="WebDav" class="list"><h4>WebDav <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/">custom website synchronisation with mobileme (2)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">11</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/">Synchronize Custom WebSite with mobileMe</a>
</li>
</ul></div><div id="webdesign" class="list"><h4>webdesign <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">30</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-30-How-to-handle-evil-IE/">How to handle evil IE</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">3</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-How-to-preload-your-site-with-style/">How to preload your site with style</a>
</li>
</ul></div><div id="zsh" class="list"><h4>zsh <a href="#tagcloud">&uarr;</a></h4><ul style="list-style-type: none; margin: 0;">
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">28</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/">custom website synchronisation with mobileme (2)</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">23</span>
<span class="month">Oct</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/2009-10-launch-daemon-from-command-line/">launch daemon from command line</a>
</li>
<li style="line-height: 3em; margin: 0;">
<span class="date">
<span class="day">11</span>
<span class="month">Sep</span>
<span class="year">2009</span>
</span>
<a href="/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/">Synchronize Custom WebSite with mobileMe</a>
</li>
</ul></div></div>
</div>
</div>
<div class="corps">
This left bottom button get you on the top of page and open the menu.
<div class="return"><a href="#entete" onclick="fastShowMenu()">&uarr;</a></div>
</div>
<div id="bottom">
<div>
<a rel="license" href="http://creativecommons.org/licenses/by-sa/3.0/">Copyright ©, Yann Esposito</a>
</div>
<div id="lastmod">
Modified: 09/10/2010
</div>
<div>
Entirely done with
<a href="http://www.vim.org">Vim</a>
and
<a href="http://nanoc.stoneship.org">nanoc</a>
</div>
<div>
<a href="/Scratch/en/validation/">Validation</a>
<a href="http://validator.w3.org/check?uri=referer"> [xhtml] </a>
.
<a href="http://jigsaw.w3.org/css-validator/check/referer?profile=css3"> [css] </a>
.
<a href="http://validator.w3.org/feed/check.cgi?url=http%3A//yannesposito.com/Scratch/en/blog/feed/feed.xml">[rss]</a>
</div>
</div>
<div class="clear"></div>
</div>
</body>
</html>