From 1d3af46c382c8618110c7833684af2e8971a9e30 Mon Sep 17 00:00:00 2001 From: "Yann Esposito (Yogsototh)" Date: Thu, 29 Sep 2011 12:34:44 +0200 Subject: [PATCH] Fixed a simple error --- .../en/blog/Higher-order-function-in-zsh.md | 7 +- .../fr/blog/Higher-order-function-in-zsh.md | 5 +- multi/blog/Higher-order-function-in-zsh.md | 10 +- .../Higher-order-function-in-zsh/index.html | 9 +- output/Scratch/en/index.html | 2 +- .../Higher-order-function-in-zsh/index.html | 8 +- output/Scratch/fr/index.html | 2 +- output/Scratch/sitemap.xml | 360 +++++++++--------- output/index.html | 2 +- 9 files changed, 211 insertions(+), 194 deletions(-) diff --git a/content/html/en/blog/Higher-order-function-in-zsh.md b/content/html/en/blog/Higher-order-function-in-zsh.md index 1ad147d77..d1ae6e1c2 100644 --- a/content/html/en/blog/Higher-order-function-in-zsh.md +++ b/content/html/en/blog/Higher-order-function-in-zsh.md @@ -39,8 +39,9 @@ for toProject in /path/to/projects/*(/N); do done -The `(/N)` means to select only directory and not to crash if there isn't any. -The `(.N)` means to select only files and not to crash if there isn't any. +- The `(/N)` means to select only directory and not to crash if there isn't any. +- The `(.N)` means to select only files and not to crash if there isn't any. +- The `:t` means tail; if `toto=/path/to/file.ext` then `${toto:t}=file.ext`. After ⇒ @@ -88,7 +89,7 @@ function verify_file_name { map "print -- X" $(filter contains_project_name $1/*(.N)) } -map show_project_matchin_file $( filter contain_no_s Projects/* ) +map verify_file_name $( filter contain_no_s Projects/* ) Also, the first verstion is a bit easier to read. diff --git a/content/html/fr/blog/Higher-order-function-in-zsh.md b/content/html/fr/blog/Higher-order-function-in-zsh.md index acf9da69e..19db40f5f 100644 --- a/content/html/fr/blog/Higher-order-function-in-zsh.md +++ b/content/html/fr/blog/Higher-order-function-in-zsh.md @@ -40,6 +40,9 @@ for toProject in /path/to/projects/*(/N); do done +- Le `(/N)` permet de sélectionner seulement les répertoires sans casser la boucle s'il n'y a pas de "match". +- Le `(.N)` permet de sélection seulement les fichiers, aussi sans tout arréter s'il ne trouve rien. +- Le `:t` signfie "tail" ; si `toto=/path/to/file.ext` alors `${toto:t}=file.ext`. Après @@ -88,7 +91,7 @@ function verify_file_name { map "print -- X" $(filter contains_project_name $1/*(.N)) } -map show_project_matchin_file $( filter contain_no_s Projects/* ) +map verify_file_name $( filter contain_no_s Projects/* ) La première version peu paraître plus facile à lire. diff --git a/multi/blog/Higher-order-function-in-zsh.md b/multi/blog/Higher-order-function-in-zsh.md index a05163b8a..cd8a8d5c8 100644 --- a/multi/blog/Higher-order-function-in-zsh.md +++ b/multi/blog/Higher-order-function-in-zsh.md @@ -48,8 +48,12 @@ for toProject in /path/to/projects/*(/N); do done -en: The `(/N)` means to select only directory and not to crash if there isn't any. -en: The `(.N)` means to select only files and not to crash if there isn't any. +en: - The `(/N)` means to select only directory and not to crash if there isn't any. +en: - The `(.N)` means to select only files and not to crash if there isn't any. +en: - The `:t` means tail; if `toto=/path/to/file.ext` then `${toto:t}=file.ext`. +fr: - Le `(/N)` permet de sélectionner seulement les répertoires sans casser la boucle s'il n'y a pas de "match". +fr: - Le `(.N)` permet de sélection seulement les fichiers, aussi sans tout arréter s'il ne trouve rien. +fr: - Le `:t` signfie "tail" ; si `toto=/path/to/file.ext` alors `${toto:t}=file.ext`. en: After ⇒ fr: Après @@ -104,7 +108,7 @@ function verify_file_name { map "print -- X" $(filter contains_project_name $1/*(.N)) } -map show_project_matchin_file $( filter contain_no_s Projects/* ) +map verify_file_name $( filter contain_no_s Projects/* ) en: Also, the first verstion is a bit easier to read. diff --git a/output/Scratch/en/blog/Higher-order-function-in-zsh/index.html b/output/Scratch/en/blog/Higher-order-function-in-zsh/index.html index 299bc91fb..4f9ba0540 100644 --- a/output/Scratch/en/blog/Higher-order-function-in-zsh/index.html +++ b/output/Scratch/en/blog/Higher-order-function-in-zsh/index.html @@ -91,8 +91,11 @@ First a program which convert all gif to png in many different directories of di done -

The (/N) means to select only directory and not to crash if there isn’t any. -The (.N) means to select only files and not to crash if there isn’t any.

+

After ⇒

@@ -140,7 +143,7 @@ function verify_file_name { map "print -- X" $(filter contains_project_name $1/*(.N)) } -map show_project_matchin_file $( filter contain_no_s Projects/* ) +map verify_file_name $( filter contain_no_s Projects/* )

Also, the first verstion is a bit easier to read. diff --git a/output/Scratch/en/index.html b/output/Scratch/en/index.html index 27efb4324..7c7ee4fb0 100644 --- a/output/Scratch/en/index.html +++ b/output/Scratch/en/index.html @@ -103,7 +103,7 @@ Copyright ©, Yann Esposito

- Modified: 09/28/2011 + Modified: 09/29/2011
Entirely done with diff --git a/output/Scratch/fr/blog/Higher-order-function-in-zsh/index.html b/output/Scratch/fr/blog/Higher-order-function-in-zsh/index.html index 05c148445..9b3a2a411 100644 --- a/output/Scratch/fr/blog/Higher-order-function-in-zsh/index.html +++ b/output/Scratch/fr/blog/Higher-order-function-in-zsh/index.html @@ -92,6 +92,12 @@ Avant :

done + +

Après

@@ -139,7 +145,7 @@ function verify_file_name {
     map "print -- X" $(filter contains_project_name $1/*(.N))
 }
 
-map show_project_matchin_file $( filter contain_no_s Projects/* )
+map verify_file_name $( filter contain_no_s Projects/* )
 

La première version peu paraître plus facile à lire. diff --git a/output/Scratch/fr/index.html b/output/Scratch/fr/index.html index 8526e6081..202bd2d63 100644 --- a/output/Scratch/fr/index.html +++ b/output/Scratch/fr/index.html @@ -148,7 +148,7 @@ Droits de reproduction ©, Yann Esposito

- modifié le : 28/09/2011 + modifié le : 29/09/2011
Site entièrement réalisé avec diff --git a/output/Scratch/sitemap.xml b/output/Scratch/sitemap.xml index 8b915bceb..e953f0c1e 100644 --- a/output/Scratch/sitemap.xml +++ b/output/Scratch/sitemap.xml @@ -2,299 +2,299 @@ http://yannesposito.com/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/about/contact/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-06-17-track-events-with-google-analytics/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-01-04-Change-default-shell-on-Mac-OS-X/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-06-19-jQuery-popup-the-easy-way/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/softwares/ypassword/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2011-01-03-Why-I-sadly-won-t-use-coffeescript/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-09-jQuery-Tag-Cloud/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/Password-Management/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-05-19-How-to-cut-HTML-and-repair-it/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/Higher-order-function-in-zsh/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-05-24-Trees--Pragmatism-and-Formalism/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-01-12-antialias-font-in-Firefox-under-Ubuntu/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/about/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-10-26-LaTeX-like-macro-and-markdown/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-10-06-New-Blog-Design-Constraints/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-09-02-base64-and-sha1-on-iPhone/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/softwares/ypassword/iphoneweb/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-02-18-split-a-file-by-keyword/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-06-17-hide-yourself-to-analytics/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/commandes-avancees/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2009-09-replace-all-except-some-part/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_1/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/mvc/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-02-18-split-a-file-by-keyword/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/09_Why_I_didn-t_keep_whosamung-us/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_2/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/softwares/yaquabubbles/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/commandes-avancees/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-10-Focus-vs-Minimalism/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_3/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-10-10-Secure-eMail-on-Mac-in-few-steps/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-03-22-Git-Tips/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-07-09-Indecidabilities/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_4/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-07-05-Cappuccino-and-Web-applications/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2009-12-06-iphone-call-filter/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/01_nanoc/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-02-15-All-but-something-regexp/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_1/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/11_Load_Disqus_Asynchronously/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-07-05-Cappuccino-and-Web-applications/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/softwares/ypassword/web/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/05_git_create_remote_branch/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-10-untaught-git-usage/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/11_Load_Disqus_Asynchronously/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-10-26-LaTeX-like-macro-and-markdown/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_2/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-07-07-CSS-rendering-problems-by-navigator/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/about/cv/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-06-15-Get-my-blog-engine/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/Haskell-Mandelbrot/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/about/technical_details/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/mvc/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/programming-language-experience/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/validation/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_3/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/Higher-order-function-in-zsh/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-10-untaught-git-usage/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/08_Configure_ssh_to_listen_the_port_443_on_Snow_Leopard/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/softwares/yclock/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2009-10-How-to-preload-your-site-with-style/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2011-01-03-Happy-New-Year/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_4/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-05-17-at-least-this-blog-revive/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/02_ackgrep/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/03_losthighway/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/about/old/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-08-31-send-mail-from-command-line-with-attached-file/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/programming-language-experience/ @@ -302,43 +302,43 @@ http://yannesposito.com/Scratch/fr/blog/2010-07-07-CSS-rendering-problems-by-navigator/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-12-06-iphone-call-filter/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2009-10-How-to-preload-your-site-with-style/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2009-10-Focus-vs-Minimalism/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/07_Screensaver_compilation_option_for_Snow_Leopard/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/about/contact/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-07-31-New-style-after-holidays/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-02-23-When-regexp-is-not-the-best-solution/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-10-30-How-to-handle-evil-IE/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-09-02-base64-and-sha1-on-iPhone/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/softwares/ @@ -346,51 +346,51 @@ http://yannesposito.com/Scratch/fr/blog/2010-10-14-Fun-with-wav/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/02_ackgrep/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/08_Configure_ssh_to_listen_the_port_443_on_Snow_Leopard/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/07_Screensaver_compilation_option_for_Snow_Leopard/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-02-15-All-but-something-regexp/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-09-replace-all-except-some-part/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/10_Synchronize_Custom_WebSite_with_mobileMe/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/about/old/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/06_How_I_use_git/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/about/cv/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2011-04-20-Now-hosted-on-github/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/softwares/ypassword/ @@ -402,59 +402,59 @@ http://yannesposito.com/Scratch/en/blog/A-more-convenient-diff/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/09_Why_I_didn-t_keep_whosamung-us/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/feed/feed.xml - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/validation/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-08-23-Now-heberged-on-heroku/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-06-14-multi-language-choices/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-10-14-Fun-with-wav/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/A-more-convenient-diff/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2011-01-03-Happy-New-Year/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-08-31-send-mail-from-command-line-with-attached-file/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/Git-pour-quoi-faire/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-02-16-All-but-something-regexp--2-/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/softwares/yaquabubbles/ @@ -462,87 +462,87 @@ http://yannesposito.com/Scratch/fr/blog/2010-07-31-New-style-after-holidays/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-12-14-Git-vs--Bzr/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/06_How_I_use_git/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/comprendre/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/03_losthighway/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/rss/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-09-jQuery-Tag-Cloud/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/conf-et-install/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-10-launch-daemon-from-command-line/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-06-15-Get-my-blog-engine/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-03-22-Git-Tips/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-03-23-Encapsulate-git/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/Haskell-Mandelbrot/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-05-24-Trees--Pragmatism-and-Formalism/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-02-16-All-but-something-regexp--2-/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/Git-pour-quoi-faire/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-02-23-When-regexp-is-not-the-best-solution/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-10-06-New-Blog-Design-Constraints/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-05-17-at-least-this-blog-revive/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2010-08-23-Now-heberged-on-heroku/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/softwares/ypassword/web/ @@ -550,23 +550,23 @@ http://yannesposito.com/Scratch/fr/blog/Learn-Vim-Progressively/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-03-23-Encapsulate-git/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/conf-et-install/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2009-10-launch-daemon-from-command-line/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2010-06-17-track-events-with-google-analytics/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/assets/css/main.css @@ -574,71 +574,71 @@ http://yannesposito.com/Scratch/fr/rss/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2011-04-20-Now-hosted-on-github/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2011-01-03-Why-I-sadly-won-t-use-coffeescript/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/about/technical_details/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/04_drm/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-06-17-hide-yourself-to-analytics/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/en/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/blog/2010-10-10-Secure-eMail-on-Mac-in-few-steps/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2009-10-30-How-to-handle-evil-IE/ - 2011-09-26 - - - http://yannesposito.com/Scratch/fr/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/ - 2011-09-26 - - - http://yannesposito.com/Scratch/en/blog/2010-07-09-Indecidabilities/ 2011-09-28 + + http://yannesposito.com/Scratch/fr/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/ + 2011-09-28 + + + http://yannesposito.com/Scratch/en/blog/2010-07-09-Indecidabilities/ + 2011-09-29 + http://yannesposito.com/Scratch/en/blog/01_nanoc/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/about/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/softwares/ypassword/iphoneweb/ @@ -650,47 +650,47 @@ http://yannesposito.com/Scratch/fr/blog/2010-05-19-How-to-cut-HTML-and-repair-it/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-01-04-Change-default-shell-on-Mac-OS-X/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/softwares/ - 2011-09-28 + 2011-09-29 http://yannesposito.com/Scratch/fr/blog/2010-01-12-antialias-font-in-Firefox-under-Ubuntu/ - 2011-09-26 - - - http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/comprendre/ - 2011-09-26 - - - http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/c-est-parti-pour-l-aventure/ - 2011-09-26 - - - http://yannesposito.com/Scratch/en/blog/2010-06-14-multi-language-choices/ 2011-09-28 + + http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/comprendre/ + 2011-09-28 + + + http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/c-est-parti-pour-l-aventure/ + 2011-09-28 + + + http://yannesposito.com/Scratch/en/blog/2010-06-14-multi-language-choices/ + 2011-09-29 + http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/05_git_create_remote_branch/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/feed/feed.xml - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/sitemap.xml - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/fr/softwares/yclock/ @@ -698,14 +698,14 @@ http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/c-est-parti-pour-l-aventure/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/04_drm/ - 2011-09-26 + 2011-09-28 http://yannesposito.com/Scratch/en/blog/2009-12-14-Git-vs--Bzr/ - 2011-09-26 + 2011-09-28 diff --git a/output/index.html b/output/index.html index 264356805..cf7073f4e 100644 --- a/output/index.html +++ b/output/index.html @@ -188,7 +188,7 @@ Copyright ©, Yann Esposito
- Modified: 09/28/2011 + Modified: 09/29/2011
Entirely done with