diff --git a/content/css/main2.sass b/content/css/main2.sass index 9f0fa0c29..af6889f7d 100644 --- a/content/css/main2.sass +++ b/content/css/main2.sass @@ -86,6 +86,10 @@ a:hover tr &:nth-child(odd) background-color: $altbackground + th + border: solid medium $altfront + padding: 0.25*$unit + margin: 0 td border: solid 1px $altfront padding: 0.25*$unit @@ -366,8 +370,11 @@ pre .list border-color: $altfront h1,h2,h3,h4,h5,h6 color: $lighter - ul li - margin: .5em 1.5em + ul + margin: $unit 0 + padding: 0 + li + margin: 0.5*$unit 1.5*$unit img display: block max-width: 80% @@ -376,10 +383,11 @@ pre .list background-color: $altbackground border: solid 1px $altfront img.right, img.left, figure.right, figure.left - max-width: 30% + max-width: 26% margin: .5*$unit figcaption padding: 0 + text-align: center figure max-width: 80% margin: 0 auto diff --git a/content/html/en/blog/Category-Theory-Presentation.erb b/content/html/en/blog/Category-Theory-Presentation.erb index 83043cb8f..0c9d51dd1 100644 --- a/content/html/en/blog/Category-Theory-Presentation.erb +++ b/content/html/en/blog/Category-Theory-Presentation.erb @@ -45,11 +45,11 @@ just continue to read as a standard web page. \(\newcommand{\fmap}{\mathtt{fmap}}\) -
+

Category Theory & Programming

for Rivieria Scala Clojure (Note this presentation uses Haskell)
by Yann Esposito -
+
@yogsototh, @@ -57,10 +57,6 @@ just continue to read as a standard web page. +yogsototh
-
-
ENTER FULLSCREEN
- HTML presentation: use arrows, space, swipe to navigate. -

Plan

@@ -91,7 +87,7 @@ just continue to read as a standard web page.
  • New math foundation
    formalism abstraction, package entire theory
  • Bridge between disciplines
    Physics, Quantum Physics, Topology, Logic, Computer Science
  • -

    +

    ★: When is one thing equal to some other thing?, Barry Mazur, 2007
    ☆: Physics, Topology, Logic and Computation: A Rosetta Stone, John C. Baez, Mike Stay, 2009

    @@ -119,14 +115,14 @@ just continue to read as a standard web page.

    Vocabulary

    mind blown

    Math vocabulary used in this presentation:

    -
    +

    Category, Morphism, Associativity, Preorder, Functor, Endofunctor, Categorial property, Commutative diagram, Isomorph, Initial, Dual, Monoid, Natural transformation, Monad, Klesli arrows, κατα-morphism, ...

    Programmer Translation

    lolcat - +
    Mathematician @@ -234,7 +230,7 @@ such that for each \(f:A→B\):

    Commutative diagrams

    Two path with the same source and destination are equal.

    -
    +
    Commutative Diagram (Associativity) @@ -293,7 +289,7 @@ such that for each \(f:A→B\):


    NO
    -
    +
    Category example 5
    \((h∘g)∘f=\id_B∘f=f\)
    @@ -664,7 +660,7 @@ Haskell types look like a fractal:

    Category of \(\Hask\) Endofunctors

    -Category of Hask endofunctors +Category of Hask endofunctors

    Category of Functors

    @@ -687,11 +683,10 @@ Haskell types look like a fractal:

    data List a = Nil | Cons a (List a)
     toList :: [a] -> List a
     toList [] = Nil
    -toList (x:xs) = Cons x (toList xs)
    - +toList (x:xs) = Cons x (toList xs)

    toList is a natural transformation. It is also a morphism from [] to List in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    natural transformation commutative diagram
    @@ -702,11 +697,10 @@ toList (x:xs) = Cons x (toList xs)
    data List a = Nil | Cons a (List a)
     toHList :: List a -> [a]
     toHList Nil = []
    -toHList (Cons x xs) = x:toHList xs
    - +toHList (Cons x xs) = x:toHList xs

    toHList is a natural transformation. It is also a morphism from List to [] in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    natural transformation commutative diagram
    toList . toHList = id & toHList . toList = id &
    therefore [] & List are isomorph.
    @@ -716,11 +710,10 @@ toHList (Cons x xs) = x:toHList xs

    Natural Transformation Examples (3/4)

    toMaybe :: [a] -> Maybe a
     toMaybe [] = Nothing
    -toMaybe (x:xs) = Just x
    - +toMaybe (x:xs) = Just x

    toMaybe is a natural transformation. It is also a morphism from [] to Maybe in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    natural transformation commutative diagram
    @@ -730,11 +723,10 @@ toMaybe (x:xs) = Just x

    Natural Transformation Examples (4/4)

    mToList :: Maybe a -> [a]
     mToList Nothing = []
    -mToList Just x  = [x]
    - +mToList Just x = [x]

    toMaybe is a natural transformation. It is also a morphism from [] to Maybe in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    relation between [] and Maybe
    There is no isomorphism.
    Hint: Bool lists longer than 1.
    @@ -879,7 +871,7 @@ drawImage screen = do drawPoint point screen = ... drawCircle circle screen = ... drawRectangle rectangle screen = ... -
    main = do
    +
    main = do
         put (Screen 1024 768)
         drawImage
     
    @@ -889,7 +881,8 @@ drawImage = do
         drawCircle c
         drawRectangle r
     
    -drawPoint :: Point -> State Screen DrawScene
    +drawPoint :: Point ->
    +               State Screen DrawScene
     drawPoint p = do
         Screen width height <- get
         ...
    @@ -990,7 +983,7 @@ depth = cata phi where phi :: Algebra TreeF Int -- TreeF Int -> Int phi (Node x sons) = 1 + foldr max 0 sons
    -
    +

    Conclusion

    Category Theory oriented Programming:

      diff --git a/content/html/fr/blog/Category-Theory-Presentation.erb b/content/html/fr/blog/Category-Theory-Presentation.erb index 83043cb8f..0c9d51dd1 100644 --- a/content/html/fr/blog/Category-Theory-Presentation.erb +++ b/content/html/fr/blog/Category-Theory-Presentation.erb @@ -45,11 +45,11 @@ just continue to read as a standard web page. \(\newcommand{\fmap}{\mathtt{fmap}}\) -
      +

      Category Theory & Programming

      for Rivieria Scala Clojure (Note this presentation uses Haskell)
      by Yann Esposito -
      +
      @yogsototh, @@ -57,10 +57,6 @@ just continue to read as a standard web page. +yogsototh
      -
      -
      ENTER FULLSCREEN
      - HTML presentation: use arrows, space, swipe to navigate. -

      Plan

      @@ -91,7 +87,7 @@ just continue to read as a standard web page.
    • New math foundation
      formalism abstraction, package entire theory
    • Bridge between disciplines
      Physics, Quantum Physics, Topology, Logic, Computer Science
    -

    +

    ★: When is one thing equal to some other thing?, Barry Mazur, 2007
    ☆: Physics, Topology, Logic and Computation: A Rosetta Stone, John C. Baez, Mike Stay, 2009

    @@ -119,14 +115,14 @@ just continue to read as a standard web page.

    Vocabulary

    mind blown

    Math vocabulary used in this presentation:

    -
    +

    Category, Morphism, Associativity, Preorder, Functor, Endofunctor, Categorial property, Commutative diagram, Isomorph, Initial, Dual, Monoid, Natural transformation, Monad, Klesli arrows, κατα-morphism, ...

    Programmer Translation

    lolcat - +
    Mathematician @@ -234,7 +230,7 @@ such that for each \(f:A→B\):

    Commutative diagrams

    Two path with the same source and destination are equal.

    -
    +
    Commutative Diagram (Associativity) @@ -293,7 +289,7 @@ such that for each \(f:A→B\):


    NO
    -
    +
    Category example 5
    \((h∘g)∘f=\id_B∘f=f\)
    @@ -664,7 +660,7 @@ Haskell types look like a fractal:

    Category of \(\Hask\) Endofunctors

    -Category of Hask endofunctors +Category of Hask endofunctors

    Category of Functors

    @@ -687,11 +683,10 @@ Haskell types look like a fractal:

    data List a = Nil | Cons a (List a)
     toList :: [a] -> List a
     toList [] = Nil
    -toList (x:xs) = Cons x (toList xs)
    - +toList (x:xs) = Cons x (toList xs)

    toList is a natural transformation. It is also a morphism from [] to List in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    natural transformation commutative diagram
    @@ -702,11 +697,10 @@ toList (x:xs) = Cons x (toList xs)
    data List a = Nil | Cons a (List a)
     toHList :: List a -> [a]
     toHList Nil = []
    -toHList (Cons x xs) = x:toHList xs
    - +toHList (Cons x xs) = x:toHList xs

    toHList is a natural transformation. It is also a morphism from List to [] in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    natural transformation commutative diagram
    toList . toHList = id & toHList . toList = id &
    therefore [] & List are isomorph.
    @@ -716,11 +710,10 @@ toHList (Cons x xs) = x:toHList xs

    Natural Transformation Examples (3/4)

    toMaybe :: [a] -> Maybe a
     toMaybe [] = Nothing
    -toMaybe (x:xs) = Just x
    - +toMaybe (x:xs) = Just x

    toMaybe is a natural transformation. It is also a morphism from [] to Maybe in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    natural transformation commutative diagram
    @@ -730,11 +723,10 @@ toMaybe (x:xs) = Just x

    Natural Transformation Examples (4/4)

    mToList :: Maybe a -> [a]
     mToList Nothing = []
    -mToList Just x  = [x]
    - +mToList Just x = [x]

    toMaybe is a natural transformation. It is also a morphism from [] to Maybe in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    relation between [] and Maybe
    There is no isomorphism.
    Hint: Bool lists longer than 1.
    @@ -879,7 +871,7 @@ drawImage screen = do drawPoint point screen = ... drawCircle circle screen = ... drawRectangle rectangle screen = ... -
    main = do
    +
    main = do
         put (Screen 1024 768)
         drawImage
     
    @@ -889,7 +881,8 @@ drawImage = do
         drawCircle c
         drawRectangle r
     
    -drawPoint :: Point -> State Screen DrawScene
    +drawPoint :: Point ->
    +               State Screen DrawScene
     drawPoint p = do
         Screen width height <- get
         ...
    @@ -990,7 +983,7 @@ depth = cata phi where phi :: Algebra TreeF Int -- TreeF Int -> Int phi (Node x sons) = 1 + foldr max 0 sons
    -
    +

    Conclusion

    Category Theory oriented Programming:

      diff --git a/multi/blog/Category-Theory-Presentation.erb b/multi/blog/Category-Theory-Presentation.erb index a3793874c..cc69a0f69 100644 --- a/multi/blog/Category-Theory-Presentation.erb +++ b/multi/blog/Category-Theory-Presentation.erb @@ -46,11 +46,11 @@ just continue to read as a standard web page. \(\newcommand{\fmap}{\mathtt{fmap}}\) -
      +

      Category Theory & Programming

      for Rivieria Scala Clojure (Note this presentation uses Haskell)
      by Yann Esposito -
      +
      @yogsototh, @@ -58,10 +58,6 @@ just continue to read as a standard web page. +yogsototh
      -
      -
      ENTER FULLSCREEN
      - HTML presentation: use arrows, space, swipe to navigate. -

      Plan

      @@ -92,7 +88,7 @@ just continue to read as a standard web page.
    • New math foundation
      formalism abstraction, package entire theory
    • Bridge between disciplines
      Physics, Quantum Physics, Topology, Logic, Computer Science
    -

    +

    ★: When is one thing equal to some other thing?, Barry Mazur, 2007
    ☆: Physics, Topology, Logic and Computation: A Rosetta Stone, John C. Baez, Mike Stay, 2009

    @@ -120,14 +116,14 @@ just continue to read as a standard web page.

    Vocabulary

    mind blown

    Math vocabulary used in this presentation:

    -
    +

    Category, Morphism, Associativity, Preorder, Functor, Endofunctor, Categorial property, Commutative diagram, Isomorph, Initial, Dual, Monoid, Natural transformation, Monad, Klesli arrows, κατα-morphism, ...

    Programmer Translation

    lolcat - +
    Mathematician @@ -235,7 +231,7 @@ such that for each \(f:A→B\):

    Commutative diagrams

    Two path with the same source and destination are equal.

    -
    +
    Commutative Diagram (Associativity) @@ -294,7 +290,7 @@ such that for each \(f:A→B\):


    NO
    -
    +
    Category example 5
    \((h∘g)∘f=\id_B∘f=f\)
    @@ -665,7 +661,7 @@ Haskell types look like a fractal:

    Category of \(\Hask\) Endofunctors

    -Category of Hask endofunctors +Category of Hask endofunctors

    Category of Functors

    @@ -688,11 +684,10 @@ Haskell types look like a fractal:

    data List a = Nil | Cons a (List a)
     toList :: [a] -> List a
     toList [] = Nil
    -toList (x:xs) = Cons x (toList xs)
    - +toList (x:xs) = Cons x (toList xs)

    toList is a natural transformation. It is also a morphism from [] to List in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    natural transformation commutative diagram
    @@ -703,11 +698,10 @@ toList (x:xs) = Cons x (toList xs)
    data List a = Nil | Cons a (List a)
     toHList :: List a -> [a]
     toHList Nil = []
    -toHList (Cons x xs) = x:toHList xs
    - +toHList (Cons x xs) = x:toHList xs

    toHList is a natural transformation. It is also a morphism from List to [] in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    natural transformation commutative diagram
    toList . toHList = id & toHList . toList = id &
    therefore [] & List are isomorph.
    @@ -717,11 +711,10 @@ toHList (Cons x xs) = x:toHList xs

    Natural Transformation Examples (3/4)

    toMaybe :: [a] -> Maybe a
     toMaybe [] = Nothing
    -toMaybe (x:xs) = Just x
    - +toMaybe (x:xs) = Just x

    toMaybe is a natural transformation. It is also a morphism from [] to Maybe in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    natural transformation commutative diagram
    @@ -731,11 +724,10 @@ toMaybe (x:xs) = Just x

    Natural Transformation Examples (4/4)

    mToList :: Maybe a -> [a]
     mToList Nothing = []
    -mToList Just x  = [x]
    - +mToList Just x = [x]

    toMaybe is a natural transformation. It is also a morphism from [] to Maybe in the Category of \(\Hask\) endofunctors.

    -natural transformation commutative diagram -
    +natural transformation commutative diagram +
    relation between [] and Maybe
    There is no isomorphism.
    Hint: Bool lists longer than 1.
    @@ -880,7 +872,7 @@ drawImage screen = do drawPoint point screen = ... drawCircle circle screen = ... drawRectangle rectangle screen = ... -
    main = do
    +
    main = do
         put (Screen 1024 768)
         drawImage
     
    @@ -890,7 +882,8 @@ drawImage = do
         drawCircle c
         drawRectangle r
     
    -drawPoint :: Point -> State Screen DrawScene
    +drawPoint :: Point ->
    +               State Screen DrawScene
     drawPoint p = do
         Screen width height <- get
         ...
    diff --git a/output/Scratch/en/blog/Haskell-OpenGL-Mandelbrot/index.html b/output/Scratch/en/blog/Haskell-OpenGL-Mandelbrot/index.html index ce3a019a1..a6321da2e 100644 --- a/output/Scratch/en/blog/Haskell-OpenGL-Mandelbrot/index.html +++ b/output/Scratch/en/blog/Haskell-OpenGL-Mandelbrot/index.html @@ -72,7 +72,7 @@ Imperative language could also benefit from this functional organization.

    • Introduction
    • First version
    • @@ -157,7 +157,7 @@ We start cleaning the code at the 5th section.

      The first being mostly some boilerplate2. And the second part more focused on OpenGL and content.

      -

      Let’s play the song of our people

      +

      Let’s play the song of our people

      @@ -393,7 +393,7 @@ It is a bit long before the first image appears, but if you resize the window, i This property is a direct consequence of purity. If you look closely, you see that allPoints is a pure list. Therefore, calling allPoints will always render the same result and Haskell is clever enough to use this property. -While Haskell doesn’t garbage collect allPoints the result is reused for free. +While Haskell doesn’t garbage collect allPoints the result is reused for free. We did not specified this value should be saved for later use. It is saved for us.

      @@ -631,7 +631,7 @@ instead of using a 3D projection of quaternions. I am pretty sure this construction is not useful for numbers. But it will be enough for us to create something that look nice.

      -

      This section is quite long, but don’t be afraid, +

      This section is quite long, but don’t be afraid, most of the code is some OpenGL boilerplate. If you just want to skim this section, here is a high level representation:

      @@ -647,7 +647,7 @@ here is a high level representation:

      Drawing:

        -
      • set doubleBuffer, handle depth, window size…
      • +
      • set doubleBuffer, handle depth, window size…
      • Use state to apply some transformations
      @@ -903,7 +903,7 @@ Mainly there are two parts: apply some transformations, draw the object.

      The 3D Mandelbrot

      -

      We have finished with the OpenGL section, let’s talk about how we +

      We have finished with the OpenGL section, let’s talk about how we generate the 3D points and colors. First, we will set the number of details to 200 pixels in the three dimensions.

      @@ -1017,7 +1017,7 @@ depthPoints = do

      If you prefer the first version, then just imagine how hard it will be to change the enumeration of the point from (x,y) to (x,z) for example.

      -

      Also, we didn’t searched for negative values. +

      Also, we didn’t searched for negative values. This modified Mandelbrot is no more symmetric relatively to the plan y=0. But it is symmetric relatively to the plan z=0. Then I mirror these values.

      @@ -1242,7 +1242,7 @@ ymandel x y z = mandel (2*x/width) (2*y/height) (2*z/deep) 64
      -

      This code is cleaner but many things doesn’t feel right. +

      This code is cleaner but many things doesn’t feel right. First, all the user interaction code is outside our main file. I feel it is okay to hide the detail for the rendering. But I would have preferred to control the user actions.

      @@ -1276,12 +1276,12 @@ We will have two choices:

    • Our main problem come from user interaction. -If you ask “the Internet”, +If you ask “the Internet”, about how to deal with user interaction with a functional paradigm, the main answer is to use functional reactive programming (FRP). -I won’t use FRP in this article. -Instead, I’ll use a simpler while less effective way to deal with user interaction. -But The method I’ll use will be as pure and functional as possible.

      +I won’t use FRP in this article. +Instead, I’ll use a simpler while less effective way to deal with user interaction. +But The method I’ll use will be as pure and functional as possible.

    • @@ -1303,7 +1303,7 @@ First, what the main loop should look like if we could make our own:

    • a function taking two parameters: time and world state and render a new world without user interaction.
    -

    Here is a real working code, I’ve hidden most display functions. +

    Here is a real working code, I’ve hidden most display functions. The YGL, is a kind of framework to display 3D functions. But it can easily be extended to many kind of representation.

    @@ -1523,7 +1523,7 @@ idleAction tnew world = world {

    Now the function which will generate points in 3D. The first parameter (res) is the resolution of the vertex generation. More precisely, res is distance between two points on one direction. -We need it to “close” our shape.

    +We need it to “close” our shape.

    The type Function3D is Point -> Point -> Maybe Point. Because we consider partial functions @@ -1592,7 +1592,7 @@ ymandel x y z = fromIntegral (mandel x y z 64) / 64 -

    I won’t explain how the magic occurs here. +

    I won’t explain how the magic occurs here. If you are interested, just read the file YGL.hs. It is commented a lot.

    @@ -1612,8 +1612,8 @@ It is commented a lot.

    Our code architecture feel very clean. All the meaningful code is in our main file and all display details are externalized. -If you read the code of YGL.hs, you’ll see I didn’t made everything perfect. -For example, I didn’t finished the code of the lights. +If you read the code of YGL.hs, you’ll see I didn’t made everything perfect. +For example, I didn’t finished the code of the lights. But I believe it is a good first step and it will be easy to go further. Unfortunately the program of the preceding session is extremely slow. We compute the Mandelbulb for each frame now.

    @@ -1897,20 +1897,20 @@ ymandel x y z = fromIntegral (mandel x y z 64) / 64

    As we can use imperative style in a functional language, know you can use functional style in imperative languages. This article exposed a way to organize some code in a functional way. -I’d like to stress the usage of Haskell made it very simple to achieve this.

    +I’d like to stress the usage of Haskell made it very simple to achieve this.

    Once you are used to pure functional style, it is hard not to see all advantages it offers.

    The code in the two last sections is completely pure and functional. -Furthermore I don’t use GLfloat, Color3 or any other OpenGL type. +Furthermore I don’t use GLfloat, Color3 or any other OpenGL type. If I want to use another library in the future, I would be able to keep all the pure code and simply update the YGL module.

    -

    The YGL module can be seen as a “wrapper” around 3D display and user interaction. +

    The YGL module can be seen as a “wrapper” around 3D display and user interaction. It is a clean separator between the imperative paradigm and functional paradigm.

    -

    If you want to go further, it shouldn’t be hard to add parallelism. +

    If you want to go further, it shouldn’t be hard to add parallelism. This should be easy mainly because most of the visible code is pure. Such an optimization would have been harder by using directly the OpenGL library.

    @@ -1920,7 +1920,7 @@ O(n².log(n)) to O(n³).


    1. -

      Unfortunately, I couldn’t make this program to work on my Mac. More precisely, I couldn’t make the DevIL library work on Mac to output the image. Yes I have done a brew install libdevil. But even a minimal program who simply write some jpg didn’t worked. I tried both with Haskell and C.

      +

      Unfortunately, I couldn’t make this program to work on my Mac. More precisely, I couldn’t make the DevIL library work on Mac to output the image. Yes I have done a brew install libdevil. But even a minimal program who simply write some jpg didn’t worked. I tried both with Haskell and C.

    2. Generally in Haskell you need to declare a lot of import lines. diff --git a/output/Scratch/en/blog/feed/feed.xml b/output/Scratch/en/blog/feed/feed.xml index deb2e5d38..2a418cd7b 100644 --- a/output/Scratch/en/blog/feed/feed.xml +++ b/output/Scratch/en/blog/feed/feed.xml @@ -104,7 +104,7 @@ Imperative language could also benefit from this functional organization.</p& <div class="intro"> -<p><span class="sc"><abbr title="Too long; didn't read">tl;dr</abbr>: </span> Web typography sucks and we&rsquo;ll have to wait forever before it will be fixed.</p> +<p><span class="sc"><abbr title="Too long; didn't read">tl;dr</abbr>: </span> Web typography sucks and we&#8217;ll have to wait forever before it will be fixed.</p> </div> @@ -141,7 +141,7 @@ We can all create better web typography ourselves, today.»</p> <p><span class="sc"><abbr title="Too long; didn't read">tl;dr</abbr>: </span> A simple yesod tutorial. Yesod is a Haskell web framework. -You shouldn&rsquo;t need to know Haskell. </p> +You shouldn&#8217;t need to know Haskell. </p> <blockquote> <center><span class="sc"><b>Table of content</b></span></center> @@ -204,7 +204,7 @@ Then some believed it would be a good idea to invent many <span class="sc"> <p><span class="sc"><abbr title="Too long; didn't read">tl;dr</abbr>: </span></p> <p><a href="http://www.yesodweb.com">Yesod</a> is a web framework which recently reached the maturity for which you should consider to use it. -Before telling you why you should learn Haskell and use yesod, I will talk about ideas yesod introduced and I didn&rsquo;t saw in other frameworks before.</p> +Before telling you why you should learn Haskell and use yesod, I will talk about ideas yesod introduced and I didn&#8217;t saw in other frameworks before.</p> </div> @@ -212,7 +212,7 @@ Before telling you why you should learn Haskell and use yesod, I will talk about <h2 id="type-safety">Type safety</h2> -<p>Let&rsquo;s start by an obligatory link from <a href="http://xkcd.com">xkcd</a>:</p> +<p>Let&#8217;s start by an obligatory link from <a href="http://xkcd.com">xkcd</a>:</p> <img src="http://imgs.xkcd.com/comics/exploits_of_a_mom.png" alt="SQL injection by a mom" /> @@ -327,7 +327,7 @@ It is not even good to learn programming...</p></img></img> @@ -413,9 +413,9 @@ I use a different password on all website.</p> <p>Disclamer, this is an unashamed attempt to make you download my iPhone app&nbsp;;-). -You&rsquo;re always here? -Even if you won&rsquo;t download my app, you should read more. -My method doesn&rsquo;t necessitate my app. +You&#8217;re always here? +Even if you won&#8217;t download my app, you should read more. +My method doesn&#8217;t necessitate my app. It is both safe and easy to use everyday.</p> <p>If you just want to <em>use</em> the tools without searching to understand why it is safe, just jump at the </p></p></div></img> @@ -453,7 +453,7 @@ It is both safe and easy to use everyday.</p> <p><em>Update</em>: I might change my mind now. Why? I just discovered a <a href="https://github.com/rstacruz/js2coffee">js2coffee converter</a>. Furthermore Denis Knauf told me about a <code>CoffeeScript.eval</code> function. -And as Denis said: &ldquo;it is time to use Coffeescript as a javascript with Ruby-like syntax not a Ruby-like programming language&rdquo;.</p> +And as Denis said: &#8220;it is time to use Coffeescript as a javascript with Ruby-like syntax not a Ruby-like programming language&#8221;.</p> </div> @@ -532,7 +532,7 @@ When we are used to <span style="text-transform: uppercase">L<sup style <p><span class="sc"><abbr title="Too long; didn't read">tl;dr</abbr>: </span> Played to process a <code>wav</code> file. <code>C</code> was easier and cleaner than Ruby.</p> -<p>edit: I wanted this program to work only on one specific machine (a x86 on a 32 bit Ubuntu). Therefore I didn&rsquo;t had any portability consideration. This is only a <em>hack</em>.</p> +<p>edit: I wanted this program to work only on one specific machine (a x86 on a 32 bit Ubuntu). Therefore I didn&#8217;t had any portability consideration. This is only a <em>hack</em>.</p> </div> @@ -541,7 +541,7 @@ When we are used to <span style="text-transform: uppercase">L<sup style <p>I had to compute the sum of the absolute values of data of a <code>.wav</code> file. For efficiency (and fun) reasons, I had chosen <code>C</code> language.</p> -<p>I didn&rsquo;t programmed in <code>C</code> for a long time. +<p>I didn&#8217;t programmed in <code>C</code> for a long time. From my memory it was a pain to read and write to files. But in the end I was really impressed by the code I get. It was really clean. @@ -578,10 +578,10 @@ This is even more impressive know...</p> </div> -<p>I&rsquo;ve (re)discovered how to become S/MIME compliant. +<p>I&#8217;ve (re)discovered how to become S/MIME compliant. I am now suprised how easy it was. Some years ago it was far more difficult. -Now I&rsquo;m able to sign and encrypt my emails.</p> +Now I&#8217;m able to sign and encrypt my emails.</p> <h2 id="why-is-it-important">Why ...</h2></img> @@ -605,7 +605,7 @@ But the major problem came from, <code>font-shadow</code> and gradie Then my new design obey to the following rules:</p> <ul> - <li>no CSS element begining by &lsquo;-moz&rsquo; or &lsquo;-webkit&rsquo;, etc&hellip;,</li> + <li>no CSS element begining by &#8216;-moz&#8217; or &#8216;-webkit&#8217;, etc&#8230;,</li> <li>no text shadow,</li> <li>clean (I mean delete) most javascript.</li> </ul> @@ -626,7 +626,7 @@ Then my new design obey to the following rules:</p> <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> +Therefore the date wasn&#8217;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. @@ -678,8 +678,8 @@ NSString *hex_hash = [self hex_sha1:@"some NSString to be sha1'ed"]; <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. +I was surprised it isn&#8217;t straightforward at all. +I didn&#8217;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> @@ -689,7 +689,7 @@ Just <code>mail</code> and <code>mailx</code>.</p> <p>I tried it. And it works almost each times. -But for my file, it didn&rsquo;t worked. +But for my file, it didn&#8217;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> @@ -769,7 +769,7 @@ I was inspired by Readability and iBooks<small>&copy;</small> (t <p>Some <a href="http://reddit.com">Reddit</a> users reported my website was really long to load and to scroll. -They thinks it was because of the &lsquo;1px shadow&rsquo; I apply on all the text. +They thinks it was because of the &#8216;1px shadow&#8217; I apply on all the text. I was a bit surprised, because I make some test into a really <em>slow</em> virtual machine. And all have always worked fine. In fact, what slow down so much are by order of importance:</p> <ol> @@ -803,7 +803,7 @@ I was a bit surprised, because I make some test into a really <em>slow< <li>Tried to make <a href="http://yannesposito.com/Softwares/YPassword.html">YPassword</a> in jQuery and with Cappuccino.</li> <li>Cappuccino nice in desktop browser but 1.4MB, not compatible with iPhone.</li> <li>jQuery not as nice as the Cappuccino version but 106KB. iPhone compatible.</li> - <li>I&rsquo;ll give a try to Dashcode 3.</li> + <li>I&#8217;ll give a try to Dashcode 3.</li> </ul> @@ -929,7 +929,7 @@ You can get it on <a href="http://github.com/yogsototh/nanoc3_blog">github <li><a href="http://intensedebate.org">intenseDebate</a> comments integration (asynchronous)&nbsp;;</li> <li>Portable with and without javascript, XHTML Strict 1.0 / CSS3,</li> <li>Write in markdown format (no HTML editing needed),</li> - <li>Typographic ameliorations (no &lsquo;:&rsquo; ...</li></ul> + <li>Typographic ameliorations (no &#8216;:&#8217; ...</li></ul> tag:yannesposito.com,2010-06-14:/Scratch/en/blog/2010-06-14-multi-language-choices/ @@ -960,12 +960,12 @@ here is an example of english text. <p>This way of handling translations force you to write completely an article in one language, copy it, and translate it.</p> -<p>However, most of time, there are common parts like images, source code, etc&hellip; +<p>However, most of time, there are common parts like images, source code, etc&#8230; When I want to correct some mistake on these parts, I have to make twice the work. With sometimes adding another mistake in only one language.</p> <p>This is why I preferred to handle it differently. I use <em>tags</em> on a single file. -Finally my files...</p> +Finally my files ...</p> tag:yannesposito.com,2010-05-24:/Scratch/en/blog/2010-05-24-Trees--Pragmatism-and-Formalism/ @@ -990,7 +990,7 @@ Finally my files...</p> <li>Used a pen and a sheet of paper</li> <li>Made some math.</li> <li>Crushed the problem in 10 minutes</li> - <li>Conclusion: The pragmatism shouldn&rsquo;t mean &ldquo;never use theory&rdquo;.</li> + <li>Conclusion: The pragmatism shouldn&#8217;t mean &#8220;never use theory&#8221;.</li> </ul> @@ -1052,14 +1052,14 @@ I entered in the...</p> <p>The more you wait to do something, the more difficult it is to start doing it.</p> </blockquote> -<p>I had to write another post for this blog. I had added many article idea in my todolist. But, I made many other things, and I&rsquo;ve always said (until now), I&rsquo;ll do this later. What changed my mind is the haunt of this simple remark about how to be productive in programming. +<p>I had to write another post for this blog. I had added many article idea in my todolist. But, I made many other things, and I&#8217;ve always said (until now), I&#8217;ll do this later. What changed my mind is the haunt of this simple remark about how to be productive in programming. &gt; Stop write <code>TODO</code> in your code and make it now!<br /> -&gt; You&rsquo;ll be surprised by the results.</p> +&gt; You&#8217;ll be surprised by the results.</p> <p>In short: &gt; <strong>Just do it!</strong> ou <strong>Juste fait le</strong> comme auraient dit les nuls.</p> -<p>Finally I&rsquo;ll certainly write blog post more often for a ...</p></p> +<p>Finally I&#8217;ll certainly write blog post more often for a ...</p></p> tag:yannesposito.com,2010-03-23:/Scratch/en/blog/2010-03-23-Encapsulate-git/ @@ -1125,7 +1125,7 @@ clientB: project adapted for client B</p> <p><code>git clone</code> can only fetch the master branch.</p> -<p>If you don&rsquo;t have much branches, you can simply use clone your project and then use the following command:</p> +<p>If you don&#8217;t have much branches, you can simply use clone your project and then use the following command:</p> <div> @@ -1183,7 +1183,7 @@ ext=File.extname(str) yannesposito.com - <p>Strangely enough, I didn&rsquo;t find any built-in tool to split a file by keyword. I made one myself in <code>awk</code>. I put it here mostly for myself. But it could also helps someone else. + <p>Strangely enough, I didn&#8217;t find any built-in tool to split a file by keyword. I made one myself in <code>awk</code>. I put it here mostly for myself. But it could also helps someone else. The following code split a file for each line containing the word <code>UTC</code>.</p> <div> diff --git a/output/Scratch/fr/blog/Haskell-OpenGL-Mandelbrot/index.html b/output/Scratch/fr/blog/Haskell-OpenGL-Mandelbrot/index.html index 10bb46824..249003718 100644 --- a/output/Scratch/fr/blog/Haskell-OpenGL-Mandelbrot/index.html +++ b/output/Scratch/fr/blog/Haskell-OpenGL-Mandelbrot/index.html @@ -59,7 +59,7 @@

      -

      tlàl : Un exemple progressif d’utilisation d’Haskell. +

      tlàl : Un exemple progressif d’utilisation d’Haskell. Vous pourrez voir un ensemble de Mandelbrot étendu à la troisième dimension. De plus le code sera très propre. Les détails de rendu sont séparés dans un module externe. @@ -72,7 +72,7 @@ Vous pouvez vous inspirer de ce code utilisant le paradigme fonctional dans tous

      • Introduction
      • First version
      • @@ -157,7 +157,7 @@ We start cleaning the code at the 5th section.

        The first being mostly some boilerplate2. And the second part more focused on OpenGL and content.

        -

        Let’s play the song of our people

        +

        Let’s play the song of our people

        @@ -393,7 +393,7 @@ It is a bit long before the first image appears, but if you resize the window, i This property is a direct consequence of purity. If you look closely, you see that allPoints is a pure list. Therefore, calling allPoints will always render the same result and Haskell is clever enough to use this property. -While Haskell doesn’t garbage collect allPoints the result is reused for free. +While Haskell doesn’t garbage collect allPoints the result is reused for free. We did not specified this value should be saved for later use. It is saved for us.

        @@ -631,7 +631,7 @@ instead of using a 3D projection of quaternions. I am pretty sure this construction is not useful for numbers. But it will be enough for us to create something that look nice.

        -

        This section is quite long, but don’t be afraid, +

        This section is quite long, but don’t be afraid, most of the code is some OpenGL boilerplate. If you just want to skim this section, here is a high level representation:

        @@ -647,7 +647,7 @@ here is a high level representation:

        Drawing:

          -
        • set doubleBuffer, handle depth, window size…
        • +
        • set doubleBuffer, handle depth, window size…
        • Use state to apply some transformations
        @@ -903,7 +903,7 @@ Mainly there are two parts: apply some transformations, draw the object.

        The 3D Mandelbrot

        -

        We have finished with the OpenGL section, let’s talk about how we +

        We have finished with the OpenGL section, let’s talk about how we generate the 3D points and colors. First, we will set the number of details to 200 pixels in the three dimensions.

        @@ -1017,7 +1017,7 @@ depthPoints = do

        If you prefer the first version, then just imagine how hard it will be to change the enumeration of the point from (x,y) to (x,z) for example.

        -

        Also, we didn’t searched for negative values. +

        Also, we didn’t searched for negative values. This modified Mandelbrot is no more symmetric relatively to the plan y=0. But it is symmetric relatively to the plan z=0. Then I mirror these values.

        @@ -1242,7 +1242,7 @@ ymandel x y z = mandel (2*x/width) (2*y/height) (2*z/deep) 64
        -

        This code is cleaner but many things doesn’t feel right. +

        This code is cleaner but many things doesn’t feel right. First, all the user interaction code is outside our main file. I feel it is okay to hide the detail for the rendering. But I would have preferred to control the user actions.

        @@ -1276,12 +1276,12 @@ We will have two choices:

      • Our main problem come from user interaction. -If you ask “the Internet”, +If you ask “the Internet”, about how to deal with user interaction with a functional paradigm, the main answer is to use functional reactive programming (FRP). -I won’t use FRP in this article. -Instead, I’ll use a simpler while less effective way to deal with user interaction. -But The method I’ll use will be as pure and functional as possible.

        +I won’t use FRP in this article. +Instead, I’ll use a simpler while less effective way to deal with user interaction. +But The method I’ll use will be as pure and functional as possible.

    @@ -1303,7 +1303,7 @@ First, what the main loop should look like if we could make our own:

  • a function taking two parameters: time and world state and render a new world without user interaction.
  • -

    Here is a real working code, I’ve hidden most display functions. +

    Here is a real working code, I’ve hidden most display functions. The YGL, is a kind of framework to display 3D functions. But it can easily be extended to many kind of representation.

    @@ -1523,7 +1523,7 @@ idleAction tnew world = world {

    Now the function which will generate points in 3D. The first parameter (res) is the resolution of the vertex generation. More precisely, res is distance between two points on one direction. -We need it to “close” our shape.

    +We need it to “close” our shape.

    The type Function3D is Point -> Point -> Maybe Point. Because we consider partial functions @@ -1592,7 +1592,7 @@ ymandel x y z = fromIntegral (mandel x y z 64) / 64

    -

    I won’t explain how the magic occurs here. +

    I won’t explain how the magic occurs here. If you are interested, just read the file YGL.hs. It is commented a lot.

    @@ -1612,8 +1612,8 @@ It is commented a lot.

    Our code architecture feel very clean. All the meaningful code is in our main file and all display details are externalized. -If you read the code of YGL.hs, you’ll see I didn’t made everything perfect. -For example, I didn’t finished the code of the lights. +If you read the code of YGL.hs, you’ll see I didn’t made everything perfect. +For example, I didn’t finished the code of the lights. But I believe it is a good first step and it will be easy to go further. Unfortunately the program of the preceding session is extremely slow. We compute the Mandelbulb for each frame now.

    @@ -1897,20 +1897,20 @@ ymandel x y z = fromIntegral (mandel x y z 64) / 64

    As we can use imperative style in a functional language, know you can use functional style in imperative languages. This article exposed a way to organize some code in a functional way. -I’d like to stress the usage of Haskell made it very simple to achieve this.

    +I’d like to stress the usage of Haskell made it very simple to achieve this.

    Once you are used to pure functional style, it is hard not to see all advantages it offers.

    The code in the two last sections is completely pure and functional. -Furthermore I don’t use GLfloat, Color3 or any other OpenGL type. +Furthermore I don’t use GLfloat, Color3 or any other OpenGL type. If I want to use another library in the future, I would be able to keep all the pure code and simply update the YGL module.

    -

    The YGL module can be seen as a “wrapper” around 3D display and user interaction. +

    The YGL module can be seen as a “wrapper” around 3D display and user interaction. It is a clean separator between the imperative paradigm and functional paradigm.

    -

    If you want to go further, it shouldn’t be hard to add parallelism. +

    If you want to go further, it shouldn’t be hard to add parallelism. This should be easy mainly because most of the visible code is pure. Such an optimization would have been harder by using directly the OpenGL library.

    @@ -1920,7 +1920,7 @@ O(n².log(n)) to O(n³).


    1. -

      Unfortunately, I couldn’t make this program to work on my Mac. More precisely, I couldn’t make the DevIL library work on Mac to output the image. Yes I have done a brew install libdevil. But even a minimal program who simply write some jpg didn’t worked. I tried both with Haskell and C.

      +

      Unfortunately, I couldn’t make this program to work on my Mac. More precisely, I couldn’t make the DevIL library work on Mac to output the image. Yes I have done a brew install libdevil. But even a minimal program who simply write some jpg didn’t worked. I tried both with Haskell and C.

    2. Generally in Haskell you need to declare a lot of import lines. diff --git a/output/Scratch/fr/blog/feed/feed.xml b/output/Scratch/fr/blog/feed/feed.xml index a5181c6c2..92178b15b 100644 --- a/output/Scratch/fr/blog/feed/feed.xml +++ b/output/Scratch/fr/blog/feed/feed.xml @@ -52,7 +52,7 @@ just continue to read as a standard web page. <div class="intro"> -<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> Un exemple progressif d&rsquo;utilisation d&rsquo;Haskell. +<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> Un exemple progressif d&#8217;utilisation d&#8217;Haskell. Vous pourrez voir un ensemble de Mandelbrot étendu à la troisième dimension. De plus le code sera très propre. Les détails de rendu sont séparés dans un module externe. @@ -117,7 +117,7 @@ We can all create better web typography ourselves, today.»</p> <p>ou en français&nbsp;:</p> <blockquote> - <p>«Nous ne somme pas obligé d&rsquo;attendre le développement des navigateurs. + <p>«Nous ne somme pas obligé d&#8217;attendre le développement des navigateurs. Nous pouvons crÃ...</p></blockquote></img> @@ -141,7 +141,7 @@ Nous pouvons crÃ...</p></blockquote></img> <p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> Un tutoriel pour yesod, un framework web Haskell. Vous ne devriez pas avoir besoin de savoir programmer en Haskell. Par contre je suis désolé pour les francophones, -mais je n&rsquo;ai pas eu le courage de traduire cet article en Français.</p> +mais je n&#8217;ai pas eu le courage de traduire cet article en Français.</p> <blockquote> <center><span class="sc"><b>Table of content</b></span></center> @@ -167,13 +167,13 @@ mais je n&rsquo;ai pas eu le courage de traduire cet article en Françai <div class="intro"> -<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> Utiliser m4 pour accroître le pouvoir d&rsquo;<span class="sc">xslt</span> et d&rsquo;<span class="sc">svg</span>. Example cool, les fractales.</p> +<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> Utiliser m4 pour accroître le pouvoir d&#8217;<span class="sc">xslt</span> et d&#8217;<span class="sc">svg</span>. Example cool, les fractales.</p> </div> -<p>Lorsqu&rsquo;<span class="sc">xml</span> fût inventé beaucoup pensaient que c&rsquo;était l&rsquo;avenir. +<p>Lorsqu&#8217;<span class="sc">xml</span> fût inventé beaucoup pensaient que c&#8217;était l&#8217;avenir. Passer de fichiers plat à des fichiers structurés standardisés fût un grand progrès dans beaucoup de domaines. Cerain se mirent à voir du <span class="sc">xml</span> de partout. À tel point que les les format compatibles <span class="sc">xml</span> naquirent de toute part. @@ -198,8 +198,8 @@ Non seulement comme format de fichier, mais...</p></img> <p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span></p> <p>Cela fait un moment que je suis la progression du <a href="http://www.yesodweb.com">framework yesod</a>. -À mon humble avis on peut commencer à l&rsquo;utiliser pour des applications sérieuses (comprendre en prod). -Avant de vous dire pourquoi vous devriez aussi le considérer, je préfère vous parler de bonnes idées (parmi d&rsquo;autres) introduites par yesod que je n&rsquo;avais jamais vu ailleurs.</p> +À mon humble avis on peut commencer à l&#8217;utiliser pour des applications sérieuses (comprendre en prod). +Avant de vous dire pourquoi vous devriez aussi le considérer, je préfère vous parler de bonnes idées (parmi d&#8217;autres) introduites par yesod que je n&#8217;avais jamais vu ailleurs.</p> </div> @@ -207,7 +207,7 @@ Avant de vous dire pourquoi vous devriez aussi le considérer, je préf& <h2 id="types-saufs">Types saufs</h2> -<p>Commençons par une BD d&rsquo;<a href="http://xkcd.com">xkcd</a>&nbsp;:</p> +<p>Commençons par une BD d&#8217;<a href="http://xkcd.com">xkcd</a>&nbsp;:</p> </img> @@ -269,7 +269,7 @@ $ mapa '$1*2' {1..3...</code></pre></div></img> @@ -309,7 +309,7 @@ C&rsquo;est à peu prêt le seul intérêt de ce langage.< </div> -<p><a href="http://www.vim.org">Vim</a> ou l&rsquo;éditeur qui vallait 3 milliards&nbsp;:</p> +<p><a href="http://www.vim.org">Vim</a> ou l&#8217;éditeur qui vallait 3 milliards&nbsp;:</p> <blockquote> <p>Meilleur, plus fort, plus rapide.</p> @@ -329,11 +329,11 @@ Sa prise en mais est difficile, mais payante....</p></img> yannesposito.com - <p><code>diff</code> est un utilitaire très pratique, mais il n&rsquo;est pas facile à lire pour nous, les Hommes.</p> + <p><code>diff</code> est un utilitaire très pratique, mais il n&#8217;est pas facile à lire pour nous, les Hommes.</p> -<p>C&rsquo;est pourquoi, lorsque vous utilisez <code>git</code>, il vous montre un formatage plus agréable avec des couleurs.</p> +<p>C&#8217;est pourquoi, lorsque vous utilisez <code>git</code>, il vous montre un formatage plus agréable avec des couleurs.</p> -<p>Voici le script que j&rsquo;utilise lorsque je veux avoir un <code>diff</code> à la git.</p> +<p>Voici le script que j&#8217;utilise lorsque je veux avoir un <code>diff</code> à la git.</p> <div class="codefile"><a href="/Scratch/fr/blog/A-more-convenient-diff/code/ydiff">&#x27A5; ydiff</a></div> @@ -361,7 +361,7 @@ function colorize_diff { yannesposito.com - <p>Voici le code &ldquo;obfusqué&rdquo;&nbsp;:</p> + <p>Voici le code &#8220;obfusqué&#8221;&nbsp;:</p> <div class="codefile"><a href="/Scratch/fr/blog/Haskell-Mandelbrot/code/animandel.hs">&#x27A5; animandel.hs</a></div> @@ -390,19 +390,19 @@ main ...</code></pre> <div class="intro"> -<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> Une méthode de gestion des mots de passes que j&rsquo;utilise avec succès depuis quelques années.<br /> +<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> Une méthode de gestion des mots de passes que j&#8217;utilise avec succès depuis quelques années.<br /> <strong><code>sha1( mot_de_passe + nom_de_domaine )</code></strong><br /> -Je ne mémorise qu&rsquo;un seul mot de passe de très bonne qualité. -J&rsquo;utilise des mots de passe différents sur tous les sites.</p> +Je ne mémorise qu&#8217;un seul mot de passe de très bonne qualité. +J&#8217;utilise des mots de passe différents sur tous les sites.</p> </div> -<p>Avant de commencer, je tiens à préciser qu&rsquo;il s&rsquo;agit d&rsquo;une tentative de vous vendre mon appli iPhone&nbsp;;-).</p> +<p>Avant de commencer, je tiens à préciser qu&#8217;il s&#8217;agit d&#8217;une tentative de vous vendre mon appli iPhone&nbsp;;-).</p> <p>Vous êtes toujours là&nbsp;? -Bon, d&rsquo;accord, même si vous ne téléchargez pas mon application vous pouvez quand même utiliser ma ...</p></p></div></img> +Bon, d&#8217;accord, même si vous ne téléchargez pas mon application vous pouvez quand même utiliser ma ...</p></p></div></img> tag:yannesposito.com,2011-04-20:/Scratch/fr/blog/2011-04-20-Now-hosted-on-github/ @@ -416,7 +416,7 @@ Bon, d&rsquo;accord, même si vous ne téléchargez pas mon appl <img alt="Title image" src="/Scratch/img/blog/2011-04-20-Now-hosted-on-github/main.png" /> -<p>J&rsquo;héberge mon site sur github à partir d&rsquo;aujourd&rsquo;hui.</p> +<p>J&#8217;héberge mon site sur github à partir d&#8217;aujourd&#8217;hui.</p> </img> @@ -435,9 +435,9 @@ Bon, d&rsquo;accord, même si vous ne téléchargez pas mon appl <div class="encadre"> -<p><em>Mise à jour&nbsp;:</em> Je pense que je vais finallement changer d&rsquo;avis. +<p><em>Mise à jour&nbsp;:</em> Je pense que je vais finallement changer d&#8217;avis. Pourquoi&nbsp;? -Tout d&rsquo;abord, je viens de découvrir un convertisseur javascript vers coffeescript, ensuite Denis Knauf m&rsquo;a laissé un commentaire et m&rsquo;a appris l&rsquo;existence d&rsquo;une fonction <code>CoffeeScript.eval</code>. De plus, il faut voir CoffeeScript comme javascript avec une syntaxe similaire à Ruby et pas comme un langage similaire à Ruby.</p> +Tout d&#8217;abord, je viens de découvrir un convertisseur javascript vers coffeescript, ensuite Denis Knauf m&#8217;a laissé un commentaire et m&#8217;a appris l&#8217;existence d&#8217;une fonction <code>CoffeeScript.eval</code>. De plus, il faut voir CoffeeScript comme javascript avec une syntaxe similaire à Ruby et pas comme un langage similaire à Ruby.</p> </div> @@ -447,7 +447,7 @@ Tout d&rsquo;abord, je viens de découvrir un convertisseur javascript v <div class="intro"> -<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> Qu&rsquo;est-ce qui n&rsquo;allait pas avec Coffeescript? La meta-programmation, ...</p></div></img> +<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> Qu&#8217;est-ce qui n&#8217;allait pas avec Coffeescript? La meta-programmation, ...</p></div></img> tag:yannesposito.com,2011-01-01:/Scratch/fr/blog/2011-01-03-Happy-New-Year/ @@ -461,15 +461,15 @@ Tout d&rsquo;abord, je viens de découvrir un convertisseur javascript v <p>Bonne et heureuse année&nbsp;!</p> -<p>J&rsquo;étais très occupé ces derniers mois. +<p>J&#8217;étais très occupé ces derniers mois. Maintenant il me semble que je vais pouvoir faire revivre ce blog.</p> -<p>J&rsquo;ai fait un outil qui permet d&rsquo;écrire des livre en utilisant une syntaxe proche de markdown. -C&rsquo;est un markdown avec des macros (essentiel pour les textes longs). +<p>J&#8217;ai fait un outil qui permet d&#8217;écrire des livre en utilisant une syntaxe proche de markdown. +C&#8217;est un markdown avec des macros (essentiel pour les textes longs). De plus le système gère la génération de pages HTML ainsi que du PDF engendré avec du XeLaTeX. -Je n&rsquo;en ai pas encore terminé avec ça. Mais si je tarde trop, je communiquerai lorsque j&rsquo;aurai fini le minimum.</p> +Je n&#8217;en ai pas encore terminé avec ça. Mais si je tarde trop, je communiquerai lorsque j&#8217;aurai fini le minimum.</p> -<p>J&rsquo;ai écrit un framework MVC pour application javascript simple mais néanmoins très rapide.</p> +<p>J&#8217;ai écrit un framework MVC pour application javascript simple mais néanmoins très rapide.</p> <p>Meilleurs vœux à tous&nbsp;!</p> @@ -488,14 +488,14 @@ Je n&rsquo;en ai pas encore terminé avec ça. Mais si je tarde trop <div class="intro"> -<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> J&rsquo;ai fait un système simple de macros pour mon blog. Par exemple, il me suffit d&rsquo;écrire %<span></span>latex et ça affiche <span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T<sub style="vertical-align: -0.5ex; margin-left: -0.1667em; margin-right: -0.125em; font-size: 1em">e</sub>X</span>.</p> +<p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span> J&#8217;ai fait un système simple de macros pour mon blog. Par exemple, il me suffit d&#8217;écrire %<span></span>latex et ça affiche <span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T<sub style="vertical-align: -0.5ex; margin-left: -0.1667em; margin-right: -0.125em; font-size: 1em">e</sub>X</span>.</p> </div> -<p>J&rsquo;ai ajouter un système de macro pour mon système de blog. -Lorsqu&rsquo;on est habitué à <span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T</span></p> +<p>J&#8217;ai ajouter un système de macro pour mon système de blog. +Lorsqu&#8217;on est habitué à <span style="text-transform: uppercase">L<sup style="vertical-align: 0.15em; margin-left: -0.36em; margin-right: -0.15em; font-size: .85em">a</sup>T</span></p> tag:yannesposito.com,2010-10-14:/Scratch/fr/blog/2010-10-14-Fun-with-wav/ @@ -519,10 +519,10 @@ Lorsqu&rsquo;on est habitué à <span style="text-transform: uppe </div> -<p>J&rsquo;ai eu besoin de calculer la somme des valeurs absolue des données d&rsquo;un fichier <code>wav</code>. -Pour des raison d&rsquo;efficacité (et aussi de fun), j&rsquo;ai fait le programme en <code>C</code>.</p> +<p>J&#8217;ai eu besoin de calculer la somme des valeurs absolue des données d&#8217;un fichier <code>wav</code>. +Pour des raison d&#8217;efficacité (et aussi de fun), j&#8217;ai fait le programme en <code>C</code>.</p> -<p>Celà faisait longtemps que je n&rsquo;avais pas programmé en <code>C</code>. +<p>Celà faisait longtemps que je n&#8217;avais pas programmé en <code>C</code>. De mémoire il était peu aisé de manipuler des ...</p> @@ -547,16 +547,16 @@ De mémoire il était peu aisé de manipuler des ...</p> +<p>J&#8217;ai (re)découvert comment adoptez la norme S/MIME. +J&#8217;ai été surpris de voir à quel point ce fut aisé. +Il y a seulement quelques années c&#8217;é...</p></img> tag:yannesposito.com,2010-10-06:/Scratch/fr/blog/2010-10-06-New-Blog-Design-Constraints/ @@ -568,15 +568,15 @@ Il y a seulement quelques années c&rsquo;é...</p></img> yannesposito.com - <p>Vous avez pu constater que j&rsquo;ai modifié le design de mon blog. -Maintenant il doit être beaucoup plus léger qu&rsquo;avant. -Je n&rsquo;utilise plus de CSS3 et beaucoup moins de javascript. + <p>Vous avez pu constater que j&#8217;ai modifié le design de mon blog. +Maintenant il doit être beaucoup plus léger qu&#8217;avant. +Je n&#8217;utilise plus de CSS3 et beaucoup moins de javascript. Bien entendu, même avant, mes pages étaient parfaitement lisibles sans javascript. -Mais, je me suis aperçu que les systèmes de CSS3 sont loin d&rsquo;être au point. -J&rsquo;utilisait des gradient en CSS3, ainsi que des ombres sous le texte. Ça avait un rendu très sympa. Sauf&hellip; -Ce n&rsquo;était pas compatible ie6, sous Chrome le rendu était d&rsquo;une lenteur incroyable. -J&rsquo;ai donc décidé de faire un site à minima. -Je voulais qu&rsquo;il soit joli <em>et</em> le plus simple possible pour assurer sa compatibilité. +Mais, je me suis aperçu que les systèmes de CSS3 sont loin d&#8217;être au point. +J&#8217;utilisait des gradient en CSS3, ainsi que des ombres sous le texte. Ça avait un rendu très sympa. Sauf&#8230; +Ce n&#8217;était pas compatible ie6, sous Chrome le rendu était d&#8217;une lenteur incroyable. +J&#8217;ai donc décidé de faire un site à minima. +Je voulais qu&#8217;il soit joli <em>et</em> le plus simple possible pour assurer sa compatibilité. Les règles que je me suis fixées sont donc:</p> @@ -591,14 +591,14 @@ Les règles que je me suis fixées sont donc:</p> yannesposito.com - <p>Vous pouvez remarquer qu&rsquo;à la fin de chaque page je donne une date de dernière modification. + <p>Vous pouvez remarquer qu&#8217;à la fin de chaque page je donne une date de dernière modification. Précédemment cette date était calculée en utilisant la date du fichier. -Mais il arrive fréquemment que je fasse un <code>touch</code> d&rsquo;un fichier pour engendrer tout le site de nouveau. -Donc la date n&rsquo;est pas nécessairement la <em>vraie</em> de modification du contenue.</p> +Mais il arrive fréquemment que je fasse un <code>touch</code> d&#8217;un fichier pour engendrer tout le site de nouveau. +Donc la date n&#8217;est pas nécessairement la <em>vraie</em> de modification du contenue.</p> -<p>J&rsquo;utilise <a href="http://git-scm.org">git</a> pour <em>versionner</em> mon site web. -Et cet outil me permet de récupérer la dernière date de <em>vraie</em> modification d&rsquo;un fichier. -Voici comment je m&rsquo;y prend avec <a href="http://nanoc.stoneship.org">nanoc</a>&nbsp;:</p> +<p>J&#8217;utilise <a href="http://git-scm.org">git</a> pour <em>versionner</em> mon site web. +Et cet outil me permet de récupérer la dernière date de <em>vraie</em> modification d&#8217;un fichier. +Voici comment je m&#8217;y prend avec <a href="http://nanoc.stoneship.org">nanoc</a>&nbsp;:</p> <div class="codefile"></div> @@ -612,10 +612,10 @@ Voici comment je m&rsquo;y prend avec <a href="http://nanoc.stoneship.org yannesposito.com - <p>Allons directement à l&rsquo;essentiel&nbsp;: -voici deux fonctions à intégrer à votre application iPhone pour afficher l&rsquo;encodage en base64 ou en hexadecimal du hash sha1 d&rsquo;un string en Objective-C pour iPhone.</p> + <p>Allons directement à l&#8217;essentiel&nbsp;: +voici deux fonctions à intégrer à votre application iPhone pour afficher l&#8217;encodage en base64 ou en hexadecimal du hash sha1 d&#8217;un string en Objective-C pour iPhone.</p> -<p>Pour l&rsquo;usage c&rsquo;est très simple, copiez le code dans la classe de votre choix. +<p>Pour l&#8217;usage c&#8217;est très simple, copiez le code dans la classe de votre choix. Puis&nbsp;:</p> <pre><code class="objective-c">#import &lt;CommonCrypto/CommonDigest.h&gt; @@ -625,8 +625,8 @@ NSString *b64_hash = [self b64_sha1:@"some NSString to be sha1'ed"]; NSString *hex_hash = [self hex_sha1:@"some NSString to be sha1'ed"]; </code></pre> -<p>L&rsquo;algorithme pour l&rsquo;encodage en <code>base64</code> doit être programmé sur iPhone. -Il n&rsquo;y a pas de librairie officielle qui s&rsquo;occupe de ça.</p> +<p>L&#8217;algorithme pour l&#8217;encodage en <code>base64</code> doit être programmé sur iPhone. +Il n&#8217;y a pas de librairie officielle qui s&#8217;occupe de ça.</p> <div class="codefile"></div> @@ -640,19 +640,19 @@ Il n&rsquo;y a pas de librairie officielle qui s&rsquo;occupe de ça yannesposito.com - <p>J&rsquo;ai dû envoyer un mail en ligne de commande récemment. -Quelle ne fût pas ma surprise lorsque je constatais que ce n&rsquo;était vraiment pas évident. -Je n&rsquo;avais ni <code>pine</code> ni <code>mutt</code>. Seulement <code>mail</code> et <code>mailx</code>.</p> + <p>J&#8217;ai dû envoyer un mail en ligne de commande récemment. +Quelle ne fût pas ma surprise lorsque je constatais que ce n&#8217;était vraiment pas évident. +Je n&#8217;avais ni <code>pine</code> ni <code>mutt</code>. Seulement <code>mail</code> et <code>mailx</code>.</p> -<p>Ce qu&rsquo;on trouve sur internet pour envoyer un mail avec fichier attaché c&rsquo;est ça&nbsp;:</p> +<p>Ce qu&#8217;on trouve sur internet pour envoyer un mail avec fichier attaché c&#8217;est ça&nbsp;:</p> <pre><code class="zsh">uuencode fic.jpg fic.jpg | mail -s 'Subject' </code></pre> -<p>Bon, alors, bête et discipliné j&rsquo;ai essayé. +<p>Bon, alors, bête et discipliné j&#8217;ai essayé. Et bien, ça marche <em>presque</em> tout le temps. -Pour mon fichier ça n&rsquo;a pas marché du tout. -Je l&rsquo;ai compressé au format <code>.gz</code>, <code>.bz2</code> et <code>.zip</code>. +Pour mon fichier ça n&#8217;a pas marché du tout. +Je l&#8217;ai compressé au format <code>.gz</code>, <code>.bz2</code> et <code>.zip</code>. Avec le format <code>.bz2</code> le mail reçu avait bien un fichie...</p> @@ -667,14 +667,14 @@ Avec le format <code>.bz2</code> le mail reçu avait bien un fic <h1 class="first" id="maintenant-sur-herokuhttpherokucom">Maintenant sur <a href="http://heroku.com">Heroku</a></h1> -<p>J&rsquo;ai changé mon hébergeur. Mobileme n&rsquo;est absolument pas adapté à la diffusion de mon blog. C&rsquo;est pourquoi je suis passé à <a href="http://heroku.com">Heroku</a>.</p> +<p>J&#8217;ai changé mon hébergeur. Mobileme n&#8217;est absolument pas adapté à la diffusion de mon blog. C&#8217;est pourquoi je suis passé à <a href="http://heroku.com">Heroku</a>.</p> <p>Mais comme vous devez le savoir mon blog est un site complètement statique. -J&rsquo;utilise <a href="http://nanoc.stoneship.org/">nanoc</a> pour l&rsquo;engendrer. -Avoir un site statique amène beaucoup d&rsquo;avantages par rapport à un site dynamique. Surtout en terme de sécurité. +J&#8217;utilise <a href="http://nanoc.stoneship.org/">nanoc</a> pour l&#8217;engendrer. +Avoir un site statique amène beaucoup d&#8217;avantages par rapport à un site dynamique. Surtout en terme de sécurité. Voici comment configurer un site statique sur heroku.</p> -<p>La racine de mes fichiers est &lsquo;/output&rsquo;. Vous devez simplement créer deux fichiers. Un fichier <code>config.ru</code></p> +<p>La racine de mes fichiers est &#8216;/output&#8217;. Vous devez simplement créer deux fichiers. Un fichier <code>config.ru</code></p> tag:yannesposito.com,2010-08-11:/Scratch/fr/blog/2010-07-09-Indecidabilities/ @@ -699,11 +699,11 @@ Voici comment configurer un site statique sur heroku.</p> yannesposito.com - <p>Avant les vacances beaucoup d&rsquo;utilisateurs se sont plaints de la lenteur de rendu de mon site. -Il s&rsquo;agit notamment de problèmes avec Chrome en particulier. + <p>Avant les vacances beaucoup d&#8217;utilisateurs se sont plaints de la lenteur de rendu de mon site. +Il s&#8217;agit notamment de problèmes avec Chrome en particulier. Mais pour éviter tout problème. -J&rsquo;ai complètement modifié le style de mon site web. -Il est inspiré du style de l&rsquo;application iBooks<small>&copy;</small> sur iPhone<small>&copy;</small>.</p> +J&#8217;ai complètement modifié le style de mon site web. +Il est inspiré du style de l&#8217;application iBooks<small>&copy;</small> sur iPhone<small>&copy;</small>.</p> <p>Dites moi ce que vous pensez de ce nouveau design.</p> @@ -718,10 +718,10 @@ Il est inspiré du style de l&rsquo;application iBooks<small>& yannesposito.com - <p>Beaucoup d&rsquo;utilisateurs de <a href="http://reddit.com">Reddit</a> m&rsquo;ont rapporté que mon site était très long à charger et à <em>scroller</em>. -Ils pensaient qu&rsquo;il s&rsquo;agissait d&rsquo;un problème dû aux ombres que j&rsquo;applique sur le texte. -J&rsquo;étais un peu surpris puisque je fais mes tests sur une machine vraiment très lente et je n&rsquo;avais jamais détecté ces problèmes. -En réalité, ce qui ralenti le rendu de ce site est par ordre d&rsquo;importance&nbsp;:</p> + <p>Beaucoup d&#8217;utilisateurs de <a href="http://reddit.com">Reddit</a> m&#8217;ont rapporté que mon site était très long à charger et à <em>scroller</em>. +Ils pensaient qu&#8217;il s&#8217;agissait d&#8217;un problème dû aux ombres que j&#8217;applique sur le texte. +J&#8217;étais un peu surpris puisque je fais mes tests sur une machine vraiment très lente et je n&#8217;avais jamais détecté ces problèmes. +En réalité, ce qui ralenti le rendu de ce site est par ordre d&#8217;importance&nbsp;:</p> <ol> <li>Les dégradés sur Chrome (pas dans Safari sur Mac)</li> @@ -730,7 +730,7 @@ En réalité, ce qui ralenti le rendu de ce site est par ordre d&rsq <h2 id="les-dgrads">les dégradés</h2> -<p>Sur Safari il n&rsquo;y a absolument aucun problème avec les dégradés. Par contre sur Chrome sous Linux le si...</p> +<p>Sur Safari il n&#8217;y a absolument aucun problème avec les dégradés. Par contre sur Chrome sous Linux le si...</p> tag:yannesposito.com,2010-07-05:/Scratch/fr/blog/2010-07-05-Cappuccino-and-Web-applications/ @@ -749,10 +749,10 @@ En réalité, ce qui ralenti le rendu de ce site est par ordre d&rsq <p><abbr title="Trop long à lire">tlàl</abbr>:</p> <ul> - <li>J&rsquo;ai essayé de faire une version de <a href="http://yannesposito.com/Softwares/YPassword.html">YPassword</a> en jQuery et avec Cappuccino.</li> - <li>Cappuccino est très bien sur les navigateurs non mobile mais l&rsquo;application pèse 1.4Mo et n&rsquo;est pas compatible avec l&rsquo;iPhone.</li> - <li>la version jQuery n&rsquo;est pas aussi jolie que la version réalisée avec Cappuccino mais elle pèse seulement 106Ko et est compatible avec l&rsquo;iPhone.</li> - <li>J&rsquo;essayerai Dashcode 3</li> + <li>J&#8217;ai essayé de faire une version de <a href="http://yannesposito.com/Softwares/YPassword.html">YPassword</a> en jQuery et avec Cappuccino.</li> + <li>Cappuccino est très bien sur les navigateurs non mobile mais l&#8217;application pèse 1.4Mo et n&#8217;est pas compatible avec l&#8217;iPhone.</li> + <li>la version jQuery n&#8217;est pas aussi jolie que la version réalisée avec Cappuccino mais elle pèse seulement 106Ko et est compatible avec l&#8217;iPhone.</li> + <li>J&#8217;essayerai Dashcode 3</li> </ul> @@ -810,12 +810,12 @@ function initCode() { <p>Voici un moyen très simple de ne plus être comptabilisé dans les visites de son propre site. -Tout d&rsquo;abord, vous devriez jeter un coup d&rsquo;œil sur comment <a href="/Scratch/fr/blog/2010-06-17-track-events-with-google-analytics">je gère les systèmes de récupération de statistiques</a>. +Tout d&#8217;abord, vous devriez jeter un coup d&#8217;œil sur comment <a href="/Scratch/fr/blog/2010-06-17-track-events-with-google-analytics">je gère les systèmes de récupération de statistiques</a>. Je centralise tout dans un seul fichier javascript ce qui facilite le travail.</p> -<p>Cette méthode nécessite l&rsquo;utilisation de <code>jquery-cookie</code>.</p> +<p>Cette méthode nécessite l&#8217;utilisation de <code>jquery-cookie</code>.</p> -<p>Avant de comptabiliser les visites, je vérifie que la clé <code>admin</code> n&rsquo;est pas utilisée dans mes cookies.</p> +<p>Avant de comptabiliser les visites, je vérifie que la clé <code>admin</code> n&#8217;est pas utilisée dans mes cookies.</p> <pre><code class="javascript"> var admin = $.cookie('admin'); if (! admin) { @@ -835,7 +835,7 @@ Je centralise tout dans un seul fichier javascript ce qui facilite le travail.&l <p>Voici comment analyser tous les clics que font vos utilisateurs sur votre blog en incluant google analytics de façon asynchrone.</p> -<p>Dans le html, il faut utiliser <a href="http://jquery.com">jQuery</a> et un fichier que j&rsquo;ai appelé <code>yga.js</code>&nbsp;:</p> +<p>Dans le html, il faut utiliser <a href="http://jquery.com">jQuery</a> et un fichier que j&#8217;ai appelé <code>yga.js</code>&nbsp;:</p> <pre><code class="html"> &lt;script type="text/javascript" src="jquery.js"&gt;&lt;/script&gt; &lt;script type="text/javascript" src="yga.js"&gt;&lt;/script&gt; @@ -859,7 +859,7 @@ Je centralise tout dans un seul fichier javascript ce qui facilite le travail.&l yannesposito.com - <p>J&rsquo;ai publié une version <em>light</em> de mon système de blog hier soir. Par <em>light</em> il faut comprendre avec un CSS plus épuré et plus portable (sans les bords ronds). + <p>J&#8217;ai publié une version <em>light</em> de mon système de blog hier soir. Par <em>light</em> il faut comprendre avec un CSS plus épuré et plus portable (sans les bords ronds). Vous pouvez le récupérer sur <a href="http://github.com/yogsototh/nanoc3_blog">github.com</a>.</p> <p>Que pouvez-vous attendre de ce système de blog&nbsp;?</p> @@ -881,8 +881,8 @@ Vous pouvez le récupérer sur <a href="http://github.com/yogsototh/n yannesposito.com - <p>Je traduis la plupart de mes articles pour qu&rsquo;ils soient disponibles en français et en anglais. -La façon que l&rsquo;on m&rsquo;a conseillé était d&rsquo;avoir un fichier par langue. En général ça donne ça.</p> + <p>Je traduis la plupart de mes articles pour qu&#8217;ils soient disponibles en français et en anglais. +La façon que l&#8217;on m&#8217;a conseillé était d&#8217;avoir un fichier par langue. En général ça donne ça.</p> <pre class="twilight"> Bonjour, @@ -899,11 +899,11 @@ here is an example of english text. </pre> <p>Cette façon de traduire vous impose une certaine façon de traduire. -D&rsquo;abord écrire entièrement le texte dans une langue, +D&#8217;abord écrire entièrement le texte dans une langue, puis copier le fichier et enfin retraduire dans une nouvelle langue.</p> -<p>Le problème, c&rsquo;est que très souvent, les articles ont des parties communes non négligeables. Par exemple, les images, les codes sources, etc&hellip; -Lorsque je m&...</p> +<p>Le problème, c&#8217;est que très souvent, les articles ont des parties communes non négligeables. Par exemple, les images, les codes sources, etc&#8230; +Lorsque je m&#...</p> tag:yannesposito.com,2010-05-24:/Scratch/fr/blog/2010-05-24-Trees--Pragmatism-and-Formalism/ @@ -922,13 +922,13 @@ Lorsque je m&...</p> <p><span class="sc"><abbr title="Trop long à lire">tlàl</abbr>&nbsp;: </span>&nbsp;:</p> <ul> - <li>J&rsquo;ai essayé de programmer un simple filtre&nbsp;;</li> - <li>J&rsquo;ai été bloqué pendant deux jours&nbsp;;</li> - <li>J&rsquo;ai arrêté de penser comme un robot&nbsp;;</li> - <li>J&rsquo;ai utilisé un papier et un stylo&nbsp;;</li> - <li>J&rsquo;ai fait un peu de maths&nbsp;;</li> - <li>J&rsquo;ai résolu le problème en 10 minutes&nbsp;;</li> - <li>Conclusion: Pragmatisme n&rsquo;est pas&nbsp;: &laquo;n&rsquo;utilisez jamais la théorie&raquo;. + <li>J&#8217;ai essayé de programmer un simple filtre&nbsp;;</li> + <li>J&#8217;ai été bloqué pendant deux jours&nbsp;;</li> + <li>J&#8217;ai arrêté de penser comme un robot&nbsp;;</li> + <li>J&#8217;ai utilisé un papier et un stylo&nbsp;;</li> + <li>J&#8217;ai fait un peu de maths&nbsp;;</li> + <li>J&#8217;ai résolu le problème en 10 minutes&nbsp;;</li> + <li>Conclusion: Pragmatisme n&#8217;est pas&nbsp;: &laquo;n&#8217;utilisez jamais la théorie&raquo;. </div> @@ -946,7 +946,7 @@ Lorsque je m&...</p> yannesposito.com - <p>Sur ma page d&rsquo;accueil vous pouvez voir la liste des mes derniers articles avec le début de ceux-ci. Pour arriver à faire ça, j&rsquo;ai besoin de couper le code XHTML de mes pages en plein milieu. Il m&rsquo;a donc fallu trouver un moyen de les réparer.</p> + <p>Sur ma page d&#8217;accueil vous pouvez voir la liste des mes derniers articles avec le début de ceux-ci. Pour arriver à faire ça, j&#8217;ai besoin de couper le code XHTML de mes pages en plein milieu. Il m&#8217;a donc fallu trouver un moyen de les réparer.</p> <p>Prenons un exemple&nbsp;:</p> @@ -960,7 +960,7 @@ Lorsque je m&...</p> &lt;/div&gt; </code></pre> -<p>Après avoir coupé, j&rsquo;obtiens&nbsp;:</p> +<p>Après avoir coupé, j&#8217;obtiens&nbsp;:</p> <pre><code class="html">&lt;div class="corps"&gt; &lt;div class="intro"&gt; @@ -980,12 +980,12 @@ Lorsque je m&...</p> <p>Bonjour à tous&nbsp;!</p> <blockquote cite="http://www.madore.org/~david/weblog/2010-05.html#d.2010-05-12.1752"> - <p>&hellip;plus on retarde quelque chose, plus il devient difficile de s&rsquo;y mettre&hellip;</p> + <p>&#8230;plus on retarde quelque chose, plus il devient difficile de s&#8217;y mettre&#8230;</p> </blockquote> -<p>Je devais écrire d&rsquo;autres articles pour ce blog. J&rsquo;ai noté plein d&rsquo;idées dans mes <em>todolist</em>. Mais j&rsquo;avais pas mal d&rsquo;autres choses à faire. Et jusqu&rsquo;ici, j&rsquo;ai toujours dit &laquo;je le ferai plus tard&raquo;. Ce qui m&rsquo;a fait agir, c&rsquo;est la petite réflexion que j&rsquo;avais lu une fois. -&gt; Arrétez d&rsquo;écrire des <code>TODO</code> dans votre code est faites le maintenant&nbsp;!<br /> -&gt; Vous serez surpris de l&rsquo;efficacité de cette mesure.</p> +<p>Je devais écrire d&#8217;autres articles pour ce blog. J&#8217;ai noté plein d&#8217;idées dans mes <em>todolist</em>. Mais j&#8217;avais pas mal d&#8217;autres choses à faire. Et jusqu&#8217;ici, j&#8217;ai toujours dit &laquo;je le ferai plus tard&raquo;. Ce qui m&#8217;a fait agir, c&#8217;est la petite réflexion que j&#8217;avais lu une fois. +&gt; Arrétez d&#8217;écrire des <code>TODO</code> dans votre code est faites le maintenant&nbsp;!<br /> +&gt; Vous serez surpris de l&#8217;efficacité de cette mesure.</p> <p>En résumé&nbsp;: &gt; </p></p> @@ -1002,16 +1002,16 @@ Lorsque je m&...</p> <p><span class="intro"> Voici une solution pour conserver des branches divergentes avec <code>git</code>. -Parce qu&rsquo;il est facile de <em>merger</em> par erreur, je propose un script qui encapsule le comportement de <code>git</code> pour interdire certains <em>merges</em> dangereux. Mais qui permet aussi de faire des merges en cascades de la racines vers les autres branches. +Parce qu&#8217;il est facile de <em>merger</em> par erreur, je propose un script qui encapsule le comportement de <code>git</code> pour interdire certains <em>merges</em> dangereux. Mais qui permet aussi de faire des merges en cascades de la racines vers les autres branches. </span></p> <h2 id="se-prmunir-contre-les-erreurs">Se prémunir contre les erreurs</h2> -<p>Je travaille sur un projet dans lequel certaines de mes branches <code>git</code> doivent rester divergentes. Et les divergences devraient aller en s&rsquo;accentuant.</p> +<p>Je travaille sur un projet dans lequel certaines de mes branches <code>git</code> doivent rester divergentes. Et les divergences devraient aller en s&#8217;accentuant.</p> -<p>J&rsquo;utilise aussi certaines branches qui contiennent la partie commune de ces projets.</p> +<p>J&#8217;utilise aussi certaines branches qui contiennent la partie commune de ces projets.</p> -<p>Disons que j&rsquo;ai les branches&nbsp;:</p> +<p>Disons que j&#8217;ai les branches&nbsp;:</p> ... @@ -1049,7 +1049,7 @@ Parce qu&rsquo;il est facile de <em>merger</em> par erreur, je p <p><code>git clone</code> peut seulement récuper la branche <code>master</code>.</p> -<p>Si vous n&rsquo;avez pas beaucoup de branches, vous pouvez simplement les clone le project et ensuite pour chacune d&rsquo;entre elle lancer la commande suivante&nbsp;:</p> +<p>Si vous n&#8217;avez pas beaucoup de branches, vous pouvez simplement les clone le project et ensuite pour chacune d&#8217;entre elle lancer la commande suivante&nbsp;:</p> <div> @@ -1065,10 +1065,10 @@ Parce qu&rsquo;il est facile de <em>merger</em> par erreur, je p yannesposito.com - <p>Les expressions régulières sont très utiles. Cependant, elles ne sont pas toujours la meilleure manière d&rsquo;aborder certain problème autour des chaines de caractères. + <p>Les expressions régulières sont très utiles. Cependant, elles ne sont pas toujours la meilleure manière d&#8217;aborder certain problème autour des chaines de caractères. Et surtout quand les transformations que vous voulez accomplir sont simples.</p> -<p>Je voulais savoir comment récupérer le plus vite possible l&rsquo;extension d&rsquo;un nom de fichier. Il y a trois manière naturelle d&rsquo;accomplir celà&nbsp;:</p> +<p>Je voulais savoir comment récupérer le plus vite possible l&#8217;extension d&#8217;un nom de fichier. Il y a trois manière naturelle d&#8217;accomplir celà&nbsp;:</p> <div> @@ -1085,7 +1085,7 @@ ext=File.extname(str) </div> -<p>A première vue, je pensais que l&rsquo;expression régulière serait plus rapide que le <code>split</code> parce qu&rsquo;il pouvait y avoir plusieurs de <code>.</code> dans un nom de fichie...</p> +<p>A première vue, je pensais que l&#8217;expression régulière serait plus rapide que le <code>split</code> parce qu&#8217;il pouvait y avoir plusieurs de <code>.</code> dans un nom de fichie...</p> tag:yannesposito.com,2010-02-18:/Scratch/fr/blog/2010-02-18-split-a-file-by-keyword/ @@ -1097,8 +1097,8 @@ ext=File.extname(str) yannesposito.com - <p>Assez bizarrement, je n&rsquo;ai trouvé aucun outil UNIX pour découper un fichier par mot clé. -Alors j&rsquo;en ai fait un en <code>awk</code>. Je le met ici principalement pour moi, mais ça peut toujours servir à quelqu&rsquo;un d&rsquo;autre. + <p>Assez bizarrement, je n&#8217;ai trouvé aucun outil UNIX pour découper un fichier par mot clé. +Alors j&#8217;en ai fait un en <code>awk</code>. Je le met ici principalement pour moi, mais ça peut toujours servir à quelqu&#8217;un d&#8217;autre. Le code suivant découpe un fichier pour chacune de ses ligne contenant le mot <code>UTC</code>.</p> <div> @@ -1114,13 +1114,13 @@ BEGIN{i=0;} </div> -<p>En réalité, j&rsquo;avais besoin de cet outils pour avoir un fichier par jour. Chaque ligne contenant UTC ayant le format suivant&nbsp;:</p> +<p>En réalité, j&#8217;avais besoin de cet outils pour avoir un fichier par jour. Chaque ligne contenant UTC ayant le format suivant&nbsp;:</p> <pre class="twilight"> Mon Dec 7 10:32:30 UTC 2009 </pre> -<p>J&rsquo;en suis finallement arrivé au code suivant&nbsp;:</p> +<p>J&#8217;en suis finallement arrivé au code suivant&nbsp;:</p> <div> ...</div> diff --git a/output/Scratch/sitemap.xml b/output/Scratch/sitemap.xml index e0babff5d..8dbbacff1 100644 --- a/output/Scratch/sitemap.xml +++ b/output/Scratch/sitemap.xml @@ -1,783 +1,783 @@ - http://yannesposito.com/Scratch/fr/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/Typography-and-the-Web/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/programming-language-experience/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2011-04-20-Now-hosted-on-github/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2011-04-20-Now-hosted-on-github/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/07_Screensaver_compilation_option_for_Snow_Leopard/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-10-26-LaTeX-like-macro-and-markdown/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-08-23-Now-heberged-on-heroku/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2011-01-03-Happy-New-Year/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-12-14-Git-vs--Bzr/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/07_Screensaver_compilation_option_for_Snow_Leopard/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-10-30-How-to-handle-evil-IE/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/conf-et-install/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/Learn-Vim-Progressively/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/09_Why_I_didn-t_keep_whosamung-us/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/programming-language-experience/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-01-04-Change-default-shell-on-Mac-OS-X/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/Haskell-Mandelbrot/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/01_nanoc/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/softwares/yaquabubbles/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/rss/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/Yesod-tutorial-for-newbies/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-03-22-Git-Tips/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-07-05-Cappuccino-and-Web-applications/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-03-22-Git-Tips/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/softwares/ypassword/web/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/04_drm/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/09_Why_I_didn-t_keep_whosamung-us/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-12-14-Git-vs--Bzr/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/02_ackgrep/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/latest/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/about/technical_details/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-05-19-How-to-cut-HTML-and-repair-it/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-08-23-Now-heberged-on-heroku/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-10-Focus-vs-Minimalism/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/softwares/ypassword/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_3/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Yesod-tutorial-for-newbies/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-07-31-New-style-after-holidays/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-07-07-CSS-rendering-problems-by-navigator/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-03-23-Encapsulate-git/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Yesod-excellent-ideas/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/about/contact/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-10-launch-daemon-from-command-line/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/validation/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2011-01-03-Why-I-sadly-won-t-use-coffeescript/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-10-14-Fun-with-wav/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-10-10-Secure-eMail-on-Mac-in-few-steps/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-02-15-All-but-something-regexp/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_3/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-06-15-Get-my-blog-engine/ - 2013-01-22 - - - http://yannesposito.com/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-07-05-Cappuccino-and-Web-applications/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/06_How_I_use_git/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-06-17-hide-yourself-to-analytics/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2011-01-03-Happy-New-Year/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-12-06-iphone-call-filter/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/08_Configure_ssh_to_listen_the_port_443_on_Snow_Leopard/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-05-24-Trees--Pragmatism-and-Formalism/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/04_drm/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/01_nanoc/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/rss/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/SVG-and-m4-fractals/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/02_ackgrep/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/softwares/yaquabubbles/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-03-23-Encapsulate-git/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/softwares/ypassword/web/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/Haskell-OpenGL-Mandelbrot/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/A-more-convenient-diff/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Typography-and-the-Web/ - 2013-01-22 - - - http://yannesposito.com/Scratch/assets/css/dynamic.css - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-10-untaught-git-usage/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-07-07-CSS-rendering-problems-by-navigator/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-10-06-New-Blog-Design-Constraints/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-05-19-How-to-cut-HTML-and-repair-it/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-08-31-send-mail-from-command-line-with-attached-file/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/softwares/ypassword/iphoneweb/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/mvc/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-10-30-How-to-handle-evil-IE/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-09-02-base64-and-sha1-on-iPhone/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/about/technical_details/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-02-23-When-regexp-is-not-the-best-solution/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/commandes-avancees/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/about/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Password-Management/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-01-12-antialias-font-in-Firefox-under-Ubuntu/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-09-jQuery-Tag-Cloud/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/latest/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/Higher-order-function-in-zsh/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Category-Theory-Presentation/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/softwares/yclock/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-06-14-multi-language-choices/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/03_losthighway/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/A-more-convenient-diff/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-10-How-to-preload-your-site-with-style/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_4/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-10-untaught-git-usage/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-09-replace-all-except-some-part/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/05_git_create_remote_branch/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2011-01-03-Why-I-sadly-won-t-use-coffeescript/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-10-06-New-Blog-Design-Constraints/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/softwares/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_1/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/softwares/yclock/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-08-31-send-mail-from-command-line-with-attached-file/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-01-04-Change-default-shell-on-Mac-OS-X/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-10-How-to-preload-your-site-with-style/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_4/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-05-17-at-least-this-blog-revive/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/about/old/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/about/old/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_1/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/softwares/ypassword/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/Git-pour-quoi-faire/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/05_git_create_remote_branch/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-06-17-hide-yourself-to-analytics/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-06-15-Get-my-blog-engine/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Higher-order-function-in-zsh/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/feed/feed.xml - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-06-17-track-events-with-google-analytics/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/06_How_I_use_git/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-06-17-track-events-with-google-analytics/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Haskell-OpenGL-Mandelbrot/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/c-est-parti-pour-l-aventure/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-12-06-iphone-call-filter/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-06-19-jQuery-popup-the-easy-way/ - 2013-01-22 - - - http://yannesposito.com/Scratch/assets/css/main.css - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/SVG-and-m4-fractals/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-10-26-LaTeX-like-macro-and-markdown/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/08_Configure_ssh_to_listen_the_port_443_on_Snow_Leopard/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Haskell-the-Hard-Way/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/validation/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/Haskell-the-Hard-Way/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/conf-et-install/ - 2013-01-22 + http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_2/ + 2013-01-04 http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/c-est-parti-pour-l-aventure/ - 2013-01-22 + 2013-01-04 - http://yannesposito.com/Scratch/fr/blog/2009-10-launch-daemon-from-command-line/ - 2013-01-22 + http://yannesposito.com/Scratch/fr/blog/09_Why_I_didn-t_keep_whosamung-us/ + 2013-01-04 - http://yannesposito.com/Scratch/fr/blog/2009-09-jQuery-Tag-Cloud/ - 2013-01-22 + http://yannesposito.com/Scratch/en/blog/Haskell-OpenGL-Mandelbrot/ + 2013-01-09 - http://yannesposito.com/Scratch/en/blog/03_losthighway/ - 2013-01-22 + http://yannesposito.com/Scratch/fr/blog/2010-06-17-track-events-with-google-analytics/ + 2013-01-09 - http://yannesposito.com/Scratch/assets/css/main2.css - 2013-01-22 + http://yannesposito.com/Scratch/en/validation/ + 2013-01-04 - http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/commandes-avancees/ - 2013-01-22 + http://yannesposito.com/Scratch/fr/blog/2010-10-26-LaTeX-like-macro-and-markdown/ + 2013-01-09 - http://yannesposito.com/Scratch/en/blog/2010-10-10-Secure-eMail-on-Mac-in-few-steps/ - 2013-01-22 + http://yannesposito.com/Scratch/en/blog/08_Configure_ssh_to_listen_the_port_443_on_Snow_Leopard/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-10-10-Secure-eMail-on-Mac-in-few-steps/ + 2013-01-09 http://yannesposito.com/Scratch/fr/blog/Category-Theory-Presentation/ 2013-01-22 - http://yannesposito.com/Scratch/en/ - 2013-01-22 + http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_3/ + 2013-01-04 - http://yannesposito.com/Scratch/en/blog/2010-10-14-Fun-with-wav/ - 2013-01-22 + http://yannesposito.com/Scratch/en/blog/2010-06-15-Get-my-blog-engine/ + 2013-01-09 - http://yannesposito.com/Scratch/en/blog/2009-09-replace-all-except-some-part/ - 2013-01-22 + http://yannesposito.com/Scratch/en/blog/09_Why_I_didn-t_keep_whosamung-us/ + 2013-01-04 - http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/comprendre/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/10_Synchronize_Custom_WebSite_with_mobileMe/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-06-14-multi-language-choices/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/about/contact/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/about/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/Yesod-excellent-ideas/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/Password-Management/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/mvc/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-02-23-When-regexp-is-not-the-best-solution/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2009-10-Focus-vs-Minimalism/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/Git-pour-quoi-faire/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Haskell-Mandelbrot/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/ - 2013-01-22 + http://yannesposito.com/Scratch/fr/blog/Haskell-the-Hard-Way/ + 2013-01-09 http://yannesposito.com/Scratch/fr/blog/2010-02-18-split-a-file-by-keyword/ - 2013-01-22 + 2013-01-04 - http://yannesposito.com/Scratch/fr/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/ - 2013-01-22 + http://yannesposito.com/Scratch/fr/blog/2010-06-14-multi-language-choices/ + 2013-01-09 - http://yannesposito.com/Scratch/assets/css/cmufontface.css - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_2/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-02-16-All-but-something-regexp--2-/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-07-31-New-style-after-holidays/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/feed/feed.xml - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/softwares/ypassword/iphoneweb/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-07-09-Indecidabilities/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-02-16-All-but-something-regexp--2-/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-01-12-antialias-font-in-Firefox-under-Ubuntu/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-07-09-Indecidabilities/ - 2013-01-22 - - - http://yannesposito.com/Scratch/assets/css/cmu.css - 2013-01-22 - - - http://yannesposito.com/Scratch/sitemap.xml - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-09-02-base64-and-sha1-on-iPhone/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-05-24-Trees--Pragmatism-and-Formalism/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/2010-02-15-All-but-something-regexp/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/11_Load_Disqus_Asynchronously/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2010-05-17-at-least-this-blog-revive/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/comprendre/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_2/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/11_Load_Disqus_Asynchronously/ - 2013-01-22 - - - http://yannesposito.com/Scratch/fr/softwares/ - 2013-01-22 - - - http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/ - 2013-01-22 + http://yannesposito.com/Scratch/en/rss/ + 2013-01-04 http://yannesposito.com/Scratch/en/blog/2010-02-18-split-a-file-by-keyword/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-09-jQuery-Tag-Cloud/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-09-replace-all-except-some-part/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-01-04-Change-default-shell-on-Mac-OS-X/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/04_drm/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2010-08-23-Now-heberged-on-heroku/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/softwares/ypassword/ + 2013-01-09 + + + http://yannesposito.com/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/Higher-order-function-in-zsh/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-06-17-track-events-with-google-analytics/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-09-02-base64-and-sha1-on-iPhone/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-06-14-multi-language-choices/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/programming-language-experience/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-10-06-New-Blog-Design-Constraints/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2011-01-03-Happy-New-Year/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/softwares/yclock/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/validation/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/softwares/ypassword/web/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2009-10-Focus-vs-Minimalism/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/about/old/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2009-10-untaught-git-usage/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/about/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-06-19-jQuery-popup-the-easy-way/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/Haskell-the-Hard-Way/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/about/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/conf-et-install/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2009-10-launch-daemon-from-command-line/ + 2013-01-04 + + + http://yannesposito.com/Scratch/assets/css/dynamic.css + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-10-How-to-preload-your-site-with-style/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_3/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/05_git_create_remote_branch/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/07_Screensaver_compilation_option_for_Snow_Leopard/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/06_How_I_use_git/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/feed/feed.xml + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2010-10-06-New-Blog-Design-Constraints/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/Typography-and-the-Web/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-06-19-jQuery-popup-the-easy-way/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-08-23-Now-heberged-on-heroku/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2009-10-How-to-preload-your-site-with-style/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2009-10-Wait-to-hide-a-menu-in-jQuery/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-03-23-Encapsulate-git/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-09-02-base64-and-sha1-on-iPhone/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-02-15-All-but-something-regexp/ + 2013-01-04 + + + http://yannesposito.com/Scratch/assets/css/main2.css 2013-01-22 + + http://yannesposito.com/Scratch/en/blog/SVG-and-m4-fractals/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-01-04-Change-default-shell-on-Mac-OS-X/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/Higher-order-function-in-zsh/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-02-23-When-regexp-is-not-the-best-solution/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/A-more-convenient-diff/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_4/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/Learn-Vim-Progressively/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-10-26-LaTeX-like-macro-and-markdown/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/Git-pour-quoi-faire/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/SVG-and-m4-fractals/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/A-more-convenient-diff/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_1/ + 2013-01-04 + + + http://yannesposito.com/Scratch/assets/css/cmu.css + 2013-01-04 + + + http://yannesposito.com/Scratch/en/softwares/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2010-10-14-Fun-with-wav/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-03-22-Git-Tips/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2009-12-06-iphone-call-filter/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/04_drm/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-07-31-New-style-after-holidays/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-05-17-at-least-this-blog-revive/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-02-16-All-but-something-regexp--2-/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-02-15-All-but-something-regexp/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/softwares/ypassword/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2009-12-06-iphone-call-filter/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/10_Synchronize_Custom_WebSite_with_mobileMe/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-06-17-hide-yourself-to-analytics/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2009-12-14-Git-vs--Bzr/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/Git-pour-quoi-faire/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/about/old/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/11_Load_Disqus_Asynchronously/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/03_losthighway/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2009-10-Focus-vs-Minimalism/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/03_losthighway/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-10-launch-daemon-from-command-line/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-10-untaught-git-usage/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2010-08-31-send-mail-from-command-line-with-attached-file/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-03-22-Git-Tips/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/Yesod-tutorial-for-newbies/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/about/technical_details/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-06-15-Get-my-blog-engine/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-07-07-CSS-rendering-problems-by-navigator/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/softwares/ypassword/web/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-07-07-CSS-rendering-problems-by-navigator/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/05_git_create_remote_branch/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2010-09-02-Use-git-to-calculate-trusted-mtimes/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/07_Screensaver_compilation_option_for_Snow_Leopard/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2009-10-28-custom-website-synchronisation-with-mobileme--2-/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/Typography-and-the-Web/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2009-10-30-How-to-handle-evil-IE/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/c-est-parti-pour-l-aventure/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2010-05-17-at-least-this-blog-revive/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/06_How_I_use_git/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/softwares/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/latest/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/about/technical_details/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2011-04-20-Now-hosted-on-github/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/latest/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/Haskell-Mandelbrot/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/Learn-Vim-Progressively/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2011-01-03-Why-I-sadly-won-t-use-coffeescript/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/10_Synchronize_Custom_WebSite_with_mobileMe/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-07-05-Cappuccino-and-Web-applications/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-05-19-How-to-cut-HTML-and-repair-it/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/softwares/yaquabubbles/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/feed/feed.xml + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/02_ackgrep/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/commandes-avancees/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/softwares/yclock/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-05-24-Trees--Pragmatism-and-Formalism/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/Category-Theory-Presentation/ + 2013-01-22 + + + http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_4/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/about/contact/ + 2013-01-09 + + + http://yannesposito.com/Scratch/sitemap.xml + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2010-07-31-New-style-after-holidays/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-07-09-Indecidabilities/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/mvc/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/03_losthighway/03_losthighway_1/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2010-10-10-Secure-eMail-on-Mac-in-few-steps/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2011-04-20-Now-hosted-on-github/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-02-16-All-but-something-regexp--2-/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/01_nanoc/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2010-01-12-antialias-font-in-Firefox-under-Ubuntu/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/03_losthighway/03_losthighway_2/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/Haskell-OpenGL-Mandelbrot/ + 2013-01-09 + + + http://yannesposito.com/Scratch/assets/css/cmufontface.css + 2013-01-04 + + + http://yannesposito.com/Scratch/en/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2009-12-14-Git-vs--Bzr/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/programming-language-experience/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/mvc/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/Haskell-Mandelbrot/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2009-10-30-How-to-handle-evil-IE/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/Yesod-excellent-ideas/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-10-14-Fun-with-wav/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/08_Configure_ssh_to_listen_the_port_443_on_Snow_Leopard/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2009-09-replace-all-except-some-part/ + 2013-01-04 + + + http://yannesposito.com/Scratch/assets/css/main.css + 2013-01-22 + + + http://yannesposito.com/Scratch/en/blog/01_nanoc/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-01-12-antialias-font-in-Firefox-under-Ubuntu/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/about/contact/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/Password-Management/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-06-17-hide-yourself-to-analytics/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-03-23-Encapsulate-git/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/Yesod-excellent-ideas/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2011-01-03-Happy-New-Year/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-02-23-When-regexp-is-not-the-best-solution/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/Yesod-tutorial-for-newbies/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-07-09-Indecidabilities/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2010-08-31-send-mail-from-command-line-with-attached-file/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2009-11-12-Git-for-n00b/comprendre/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2010-05-24-Trees--Pragmatism-and-Formalism/ + 2013-01-09 + + + http://yannesposito.com/Scratch/fr/blog/2009-09-Disqus-versus-Intense-Debate--Why-I-switched-/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/commandes-avancees/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/softwares/yaquabubbles/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-05-19-How-to-cut-HTML-and-repair-it/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/Password-Management/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2011-01-03-Why-I-sadly-won-t-use-coffeescript/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/02_ackgrep/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/conf-et-install/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/blog/2009-09-jQuery-Tag-Cloud/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/blog/2009-11-12-Git-for-n00b/comprendre/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/rss/ + 2013-01-04 + + + http://yannesposito.com/Scratch/en/softwares/ypassword/iphoneweb/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/2010-07-05-Cappuccino-and-Web-applications/ + 2013-01-09 + + + http://yannesposito.com/Scratch/en/blog/11_Load_Disqus_Asynchronously/ + 2013-01-04 + + + http://yannesposito.com/Scratch/fr/softwares/ypassword/iphoneweb/ + 2013-01-09 +