forked from nhoizey/nicolas-hoizey.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrewrites-without-referer.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
3221 lines (3221 loc) · 309 KB
/
rewrites-without-referer.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
26720 'articles/2016/03/people-don-t-change-the-default-16px-font-size-in-their-browser/';'articles/2016/03/02/people-don-t-change-the-default-16px-font-size-in-their-browser/'
24176 '2016/03/people-don-t-change-the-default-16px-font-size-in-their-browser.html';'articles/2016/03/people-don-t-change-the-default-16px-font-size-in-their-browser/'
18220 'favicon.jpg';'/.well-known/favicon.jpg'
14281 'articles/2016/02/un-exemple-d-impact-des-raccourcisseurs-d-url/';'articles/2016/02/19/un-exemple-d-impact-des-raccourcisseurs-d-url/'
13988 'atom.xml';'feeds/articles.xml'
10226 '2016/02/un-exemple-d-impact-des-raccourcisseurs-d-url.html';'articles/2016/02/un-exemple-d-impact-des-raccourcisseurs-d-url/'
5715 'robots.txt';'/.well-known/robots.txt'
3203 'GasteroProd';'atom.xml'
1657 'articles/2015/02/viewport-height-is-taller-than-the-visible-part-of-the-document-in-some-mobile-browsers/';'articles/2015/02/18/viewport-height-is-taller-than-the-visible-part-of-the-document-in-some-mobile-browsers/'
1650 '2015/02/viewport-height-is-taller-than-the-visible-part-of-the-document-in-some-mobile-browsers.html';'articles/2015/02/viewport-height-is-taller-than-the-visible-part-of-the-document-in-some-mobile-browsers/'
1353 'articles/2017/05/automatiser-l-installation-des-applications-sur-un-nouveau-mac/';'articles/2017/05/02/automatiser-l-installation-des-applications-sur-un-nouveau-mac/'
1344 '2017/05/automatiser-l-installation-des-applications-sur-un-nouveau-mac.html';'articles/2017/05/automatiser-l-installation-des-applications-sur-un-nouveau-mac/'
1065 'GasteroProd/Blog';'atom.xml'
1005 '';''
502 'articles/2017/01/how-much-data-should-my-service-worker-put-upfront-in-the-offline-cache/';'articles/2017/01/12/how-much-data-should-my-service-worker-put-upfront-in-the-offline-cache/'
502 '2017/01/how-much-data-should-my-service-worker-put-upfront-in-the-offline-cache.html';'articles/2017/01/how-much-data-should-my-service-worker-put-upfront-in-the-offline-cache/'
390 '2017/11/medium-is-only-an-edge-server-of-your-posse-cdn-your-own-blog-is-the-origin.html';'articles/2017/11/medium-is-only-an-edge-server-of-your-posse-cdn-your-own-blog-is-the-origin/'
371 'articles/2017/11/medium-is-only-an-edge-server-of-your-posse-cdn-your-own-blog-is-the-origin/';'articles/2017/11/09/medium-is-only-an-edge-server-of-your-posse-cdn-your-own-blog-is-the-origin/'
341 'articles/2017/07/so-long-disqus-hello-webmentions/';'articles/2017/07/27/so-long-disqus-hello-webmentions/'
332 '2017/07/so-long-disqus-hello-webmentions.html';'articles/2017/07/so-long-disqus-hello-webmentions/'
252 'robots.txt';'robots.txt'
232 'favicon.ico';'/.well-known/favicon.ico'
229 'wp-login.php';'about/the-website.html'
143 'tags/photo.html';'tags/photo/'
130 'articles/2018/08/01/using-cloudinary-s-fetch-api-to-convert-an-animated-gif-to-a-video/';'articles/2018/08/01/using-cloudinary-s-fetch-api-to-convert-an-animated-gif-to-a-video/'
104 'links/2019/04/generative-art-with-css/';'links/2019/04/02/generative-art-with-css/'
99 'links/2019/04/generative-art-with-css.html';'links/2019/04/generative-art-with-css/'
90 'wp-login.php';'wp-login.php'
88 'articles/2001/01/phpmychat-copieusement-cite-en-exemple-dans-le-magazine-allemand-pc-online/';'articles/2001/01/01/phpmychat-copieusement-cite-en-exemple-dans-le-magazine-allemand-pc-online/'
87 'articles/2015/06/les-cartes-de-visite-moo-sont-parfaites-pour-les-photographes/';'articles/2015/06/17/les-cartes-de-visite-moo-sont-parfaites-pour-les-photographes/'
86 '2001/01/phpmychat-copieusement-cite-en-exemple-dans-le-magazine-allemand-pc-online.html';'articles/2001/01/phpmychat-copieusement-cite-en-exemple-dans-le-magazine-allemand-pc-online/'
83 '2015/06/les-cartes-de-visite-moo-sont-parfaites-pour-les-photographes.html';'articles/2015/06/les-cartes-de-visite-moo-sont-parfaites-pour-les-photographes/'
76 'articles/2015/09/test-du-panasonic-lx100-pour-phototrend/';'articles/2015/09/17/test-du-panasonic-lx100-pour-phototrend/'
74 '2015/09/test-du-panasonic-lx100-pour-phototrend.html';'articles/2015/09/test-du-panasonic-lx100-pour-phototrend/'
68 'tags/fail.html';'tags/fail/'
67 'articles/2015/06/la-recherche-dans-du-statique-facile-avec-algolia/';'articles/2015/06/24/la-recherche-dans-du-statique-facile-avec-algolia/'
65 '2015/06/la-recherche-dans-du-statique-facile-avec-algolia.html';'articles/2015/06/la-recherche-dans-du-statique-facile-avec-algolia/'
60 'apple-touch-icon-precomposed.png';'/.well-known/apple-touch-icon-precomposed.png'
59 'apple-touch-icon.png';'/.well-known/apple-touch-icon.png'
58 '2005/01/ego-trip.html';'articles/2005/01/ego-trip/'
56 'articles/2005/01/ego-trip/';'articles/2005/01/26/ego-trip/'
53 'articles/2013/11/olympus-om-d-e-m1/';'articles/2013/11/16/olympus-om-d-e-m1/'
53 'articles/2008/06/tineye-un-systeme-bluffant-de-reconnaissance-d-images-sur-internet/';'articles/2008/06/03/tineye-un-systeme-bluffant-de-reconnaissance-d-images-sur-internet/'
52 'xmlrpc.php';'xmlrpc.php'
51 'articles/2013/02/mise-a-jour-de-ma-politique-de-sauvegarde/';'articles/2013/02/06/mise-a-jour-de-ma-politique-de-sauvegarde/'
50 '2008/06/tineye-un-systeme-bluffant-de-reconnaissance-d-images-sur-internet.html';'articles/2008/06/tineye-un-systeme-bluffant-de-reconnaissance-d-images-sur-internet/'
48 'articles/2016/07/tout-change-rien-ne-change/';'articles/2016/07/13/tout-change-rien-ne-change/'
44 '2013/02/mise-a-jour-de-ma-politique-de-sauvegarde.html';'articles/2013/02/mise-a-jour-de-ma-politique-de-sauvegarde/'
42 '2013/11/olympus-om-d-e-m1.html';'articles/2013/11/olympus-om-d-e-m1/'
41 'articles/2017/10/chrome-fails-showing-big-emojis/';'articles/2017/10/27/chrome-fails-showing-big-emojis/'
41 '2016/07/tout-change-rien-ne-change.html';'articles/2016/07/tout-change-rien-ne-change/'
39 'articles/2014/12/mes-bookmarks-migrent-de-diigo-vers-pinboard/';'articles/2014/12/23/mes-bookmarks-migrent-de-diigo-vers-pinboard/'
38 'links/2018/12/your-site-any-site-should-be-a-pwa/';'links/2018/12/13/your-site-any-site-should-be-a-pwa/'
37 'articles/2018/06/users-do-change-font-size/';'articles/2018/06/15/users-do-change-font-size/'
36 'articles/2015/06/lachez-moi-avec-le-debat-digital-contre-numerique/';'articles/2015/06/04/lachez-moi-avec-le-debat-digital-contre-numerique/'
36 'articles/2015/01/sony-rx100-iii-mon-excellent-nouveau-compact-expert-toujours-en-poche/';'articles/2015/01/08/sony-rx100-iii-mon-excellent-nouveau-compact-expert-toujours-en-poche/'
36 'articles/2004/08/l-accessibilite-c-est-aussi-pour-les-handicapes/';'articles/2004/08/17/l-accessibilite-c-est-aussi-pour-les-handicapes/'
34 'tags/download.html';'tags/download/'
34 'robots.txt';'atom.xml'
34 'blog/';'http://nicolas-hoizey.com/'
34 'articles/2013/09/gerer-des-commentaires-sur-un-blog-statique/';'articles/2013/09/12/gerer-des-commentaires-sur-un-blog-statique/'
34 'articles/2011/03/quand-mozilla-pose-une-question-a-son-utilisateur-ce-n-est-pas-pour-qu-il-fasse-un-choix/';'articles/2011/03/30/quand-mozilla-pose-une-question-a-son-utilisateur-ce-n-est-pas-pour-qu-il-fasse-un-choix/'
34 '2004/08/l-accessibilite-c-est-aussi-pour-les-handicapes.html';'articles/2004/08/l-accessibilite-c-est-aussi-pour-les-handicapes/'
33 'articles/2013/10/ma-conference-a-paris-web-2013/';'articles/2013/10/24/ma-conference-a-paris-web-2013/'
33 'articles/2008/06/google-s-emmele-les-pinceaux/';'articles/2008/06/09/google-s-emmele-les-pinceaux/'
33 '2017/10/chrome-fails-showing-big-emojis.html';'articles/2017/10/chrome-fails-showing-big-emojis/'
33 '2015/01/sony-rx100-iii-mon-excellent-nouveau-compact-expert-toujours-en-poche.html';'articles/2015/01/sony-rx100-iii-mon-excellent-nouveau-compact-expert-toujours-en-poche/'
33 '2014/12/mes-bookmarks-migrent-de-diigo-vers-pinboard.html';'articles/2014/12/mes-bookmarks-migrent-de-diigo-vers-pinboard/'
32 'articles/2012/07/reconcilier-seo-et-webperf-au-niveau-des-redirections-de-sous-domaines/';'articles/2012/07/06/reconcilier-seo-et-webperf-au-niveau-des-redirections-de-sous-domaines/'
32 'articles/2008/07/faut-il-que-je-revienne-a-un-unique-flux-rss/';'articles/2008/07/10/faut-il-que-je-revienne-a-un-unique-flux-rss/'
32 '2013/10/ma-conference-a-paris-web-2013.html';'articles/2013/10/ma-conference-a-paris-web-2013/'
31 'articles/2018/08/using-cloudinary-s-fetch-api-to-convert-an-animated-gif-to-a-video/';'articles/2018/08/01/using-cloudinary-s-fetch-api-to-convert-an-animated-gif-to-a-video/'
31 'articles/2015/08/time-lapse-nocturne-a-hong-kong/';'articles/2015/08/26/time-lapse-nocturne-a-hong-kong/'
31 'articles/2014/04/l-excellent-sav-de-truffaut-via-twitter/';'articles/2014/04/23/l-excellent-sav-de-truffaut-via-twitter/'
30 '2014/11/suggestions-de-sujets-et-orateurs-pour-paris-web-2015.html';'articles/2014/11/suggestions-de-sujets-et-orateurs-pour-paris-web-2015/'
30 '2013/09/gerer-des-commentaires-sur-un-blog-statique.html';'articles/2013/09/gerer-des-commentaires-sur-un-blog-statique/'
29 'articles/2018/03/optimiser-la-performance-des-images-responsives/';'articles/2018/03/30/optimiser-la-performance-des-images-responsives/'
29 'articles/2008/12/quel-sac-photo-pour-un-reflex-et-ses-accessoires/';'articles/2008/12/16/quel-sac-photo-pour-un-reflex-et-ses-accessoires/'
29 '2015/06/un-moteur-de-recherche-sur-un-site-statique-facile-avec-algolia.html';'2015/06/la-recherche-dans-du-statique-facile-avec-algolia.html'
28 '';'atom.xml'
28 'articles/2018/07/leaving-500px/';'articles/2018/07/02/leaving-500px/'
28 'articles/2018/07/lapeyre-y-en-a-pas-deux-j-espere/';'articles/2018/07/17/lapeyre-y-en-a-pas-deux-j-espere/'
28 'articles/2017/01/lister-des-contenus-similaires-avec-jekyll/';'articles/2017/01/23/lister-des-contenus-similaires-avec-jekyll/'
28 'articles/2008/07/la-sortie-de-l-iphone-3g-repoussee-en-france-pour-raison-d-etat/';'articles/2008/07/08/la-sortie-de-l-iphone-3g-repoussee-en-france-pour-raison-d-etat/'
28 'articles/2003/12/fhm-blah-blah-blah/';'articles/2003/12/31/fhm-blah-blah-blah/'
27 'links/2019/01/on-the-importance-of-testing-with-content-blockers/';'links/2019/01/07/on-the-importance-of-testing-with-content-blockers/'
27 'articles/2019/04/how-the-boeing-737-max-disaster-looks-to-a-software-developer/';'articles/2019/04/19/how-the-boeing-737-max-disaster-looks-to-a-software-developer/'
27 'articles/2015/01/quelle-version-du-dock-thunderbolt-belkin-choisir/';'articles/2015/01/27/quelle-version-du-dock-thunderbolt-belkin-choisir/'
27 'articles/2013/03/lachez-prise/';'articles/2013/03/18/lachez-prise/'
27 'articles/2012/08/le-backup-day-c-est-tous-les-jours/';'articles/2012/08/07/le-backup-day-c-est-tous-les-jours/'
27 'articles/2009/08/bleu/';'articles/2009/08/26/bleu/'
27 'articles/2008/07/meduses-fluorescentes/';'articles/2008/07/03/meduses-fluorescentes/'
27 'articles/2005/06/attrapez-le-soleil/';'articles/2005/06/27/attrapez-le-soleil/'
27 '2018/08/using-cloudinary-s-fetch-api-to-convert-an-animated-gif-to-a-video.html';'articles/2018/08/using-cloudinary-s-fetch-api-to-convert-an-animated-gif-to-a-video/'
27 '2012/07/reconcilier-seo-et-webperf-au-niveau-des-redirections-de-sous-domaines.html';'articles/2012/07/reconcilier-seo-et-webperf-au-niveau-des-redirections-de-sous-domaines/'
27 '2011/03/quand-mozilla-pose-une-question-a-son-utilisateur-ce-n-est-pas-pour-qu-il-fasse-un-choix.html';'articles/2011/03/quand-mozilla-pose-une-question-a-son-utilisateur-ce-n-est-pas-pour-qu-il-fasse-un-choix/'
27 '2008/07/faut-il-que-je-revienne-a-un-unique-flux-rss.html';'articles/2008/07/faut-il-que-je-revienne-a-un-unique-flux-rss/'
27 '2008/06/google-s-emmele-les-pinceaux.html';'articles/2008/06/google-s-emmele-les-pinceaux/'
26 'links/2019/03/death-to-bullshit/';'links/2019/03/21/death-to-bullshit/'
26 'articles/2014/11/suggestions-de-sujets-et-orateurs-pour-paris-web-2015/';'articles/2014/11/21/suggestions-de-sujets-et-orateurs-pour-paris-web-2015/'
26 'articles/2008/12/backup-d-un-mac-sur-un-nas-facile-et-sans-bidouille-c-est-possible/';'articles/2008/12/11/backup-d-un-mac-sur-un-nas-facile-et-sans-bidouille-c-est-possible/'
26 'articles/2008/07/y-a-une-cuil-dans-le-potage/';'articles/2008/07/31/y-a-une-cuil-dans-le-potage/'
26 'articles/2008/01/afficher-les-favicon-dans-la-barre-personnelle-de-firefox-sous-mac-os/';'articles/2008/01/22/afficher-les-favicon-dans-la-barre-personnelle-de-firefox-sous-mac-os/'
26 '2017/01/lister-des-contenus-similaires-avec-jekyll.html';'articles/2017/01/lister-des-contenus-similaires-avec-jekyll/'
25 'tags/macro.html';'tags/macro/'
25 'articles/2015/02/a-bicyclette/';'articles/2015/02/06/a-bicyclette/'
25 'articles/2013/07/connexion-automatique-d-un-mac-a-un-hotspot-freewifi/';'articles/2013/07/09/connexion-automatique-d-un-mac-a-un-hotspot-freewifi/'
25 'articles/2011/01/le-design-de-gastero-prod-est-il-a-jeter-a-la-poubelle/';'articles/2011/01/28/le-design-de-gastero-prod-est-il-a-jeter-a-la-poubelle/'
25 'articles/2009/06/along-the-shore/';'articles/2009/06/25/along-the-shore/'
25 'articles/2006/11/le-blog-de-flickr-met-en-avant-mon-groupe-dedie-aux-photos-prises-avec-l-appareil-place-tout-juste-a-la-surface-de-l-eau/';'articles/2006/11/23/le-blog-de-flickr-met-en-avant-mon-groupe-dedie-aux-photos-prises-avec-l-appareil-place-tout-juste-a-la-surface-de-l-eau/'
25 'articles/2001/05/une-introduction-a-pear/';'articles/2001/05/24/une-introduction-a-pear/'
25 '2015/08/time-lapse-nocturne-a-hong-kong.html';'articles/2015/08/time-lapse-nocturne-a-hong-kong/'
25 '2012/08/le-backup-day-c-est-tous-les-jours.html';'articles/2012/08/le-backup-day-c-est-tous-les-jours/'
25 '2008/07/y-a-une-cuil-dans-le-potage.html';'articles/2008/07/y-a-une-cuil-dans-le-potage/'
25 '2006/06/faut-il-que-j-abandonne-spip-pour-dotclear.html';'articles/2006/06/faut-il-que-j-abandonne-spip-pour-dotclear/'
25 '2004/12/noel-2004-aux-pays-bas.html';'articles/2004/12/noel-2004-aux-pays-bas/'
24 'links/2019/02/timelines-of-the-web/';'links/2019/02/21/timelines-of-the-web/'
24 'articles/2017/02/mettre-a-jour-les-plugins-jekyll-sans-danger/';'articles/2017/02/01/mettre-a-jour-les-plugins-jekyll-sans-danger/'
24 'articles/2015/02/tgif-en-musique/';'articles/2015/02/13/tgif-en-musique/'
24 'articles/2015/01/une-goutte-de-crayon-s/';'articles/2015/01/14/une-goutte-de-crayon-s/'
24 'articles/2011/02/respecter-les-usages-courants/';'articles/2011/02/25/respecter-les-usages-courants/'
24 'articles/2010/09/ils-ont-de-grandes-poches-a-la-fnac/';'articles/2010/09/14/ils-ont-de-grandes-poches-a-la-fnac/'
24 'articles/2006/06/faut-il-que-j-abandonne-spip-pour-dotclear/';'articles/2006/06/26/faut-il-que-j-abandonne-spip-pour-dotclear/'
24 'articles/2005/12/groupe-flickr-a-remplir-halfway-between-air-and-water/';'articles/2005/12/20/groupe-flickr-a-remplir-halfway-between-air-and-water/'
24 'articles/2001/02/pourquoi-faire-simple-quand-on-peut-faire-complique/';'articles/2001/02/26/pourquoi-faire-simple-quand-on-peut-faire-complique/'
24 'a-propos.html';'about/'
24 '2014/04/l-excellent-sav-de-truffaut-via-twitter.html';'articles/2014/04/l-excellent-sav-de-truffaut-via-twitter/'
24 '2008/01/afficher-les-favicon-dans-la-barre-personnelle-de-firefox-sous-mac-os.html';'articles/2008/01/afficher-les-favicon-dans-la-barre-personnelle-de-firefox-sous-mac-os/'
23 'web/viewport-height-is-taller-than-the-visible-part-of-the-document-in-some-mobile-browsers';'http://nicolas-hoizey.com/2015/02/viewport-height-is-taller-than-the-visible-part-of-the-document-in-some-mobile-browsers.html'
23 'links/2019/10/local-first-software/';'links/2019/10/21/local-first-software/'
23 'articles/2015/03/esviji-v2-sera-completement-responsive/';'articles/2015/03/10/esviji-v2-sera-completement-responsive/'
23 'articles/2014/11/le-coup-de-soleil-de-trop/';'articles/2014/11/22/le-coup-de-soleil-de-trop/'
23 'articles/2014/11/laisser-les-champs-mot-de-passe-en-clair/';'articles/2014/11/18/laisser-les-champs-mot-de-passe-en-clair/'
23 'articles/2014/08/mon-test-du-panasonic-lumix-dmc-gm1-un-minuscule-appareil-photo-hybride/';'articles/2014/08/29/mon-test-du-panasonic-lumix-dmc-gm1-un-minuscule-appareil-photo-hybride/'
23 'articles/2012/11/itunes-match-tronque-les-morceaux-de-musique/';'articles/2012/11/21/itunes-match-tronque-les-morceaux-de-musique/'
23 'articles/2010/07/les-inscriptions-a-paris-web-2010-sont-ouvertes/';'articles/2010/07/02/les-inscriptions-a-paris-web-2010-sont-ouvertes/'
23 'articles/2009/12/un-menu-de-navigation-toujours-visible/';'articles/2009/12/22/un-menu-de-navigation-toujours-visible/'
23 'articles/2008/06/surveillez-vos-erreurs-404-elles-peuvent-etre-tres-instructives/';'articles/2008/06/02/surveillez-vos-erreurs-404-elles-peuvent-etre-tres-instructives/'
23 'articles/2001/11/citation-de-la-bruyere/';'articles/2001/11/07/citation-de-la-bruyere/'
23 '2009/08/bleu.html';'articles/2009/08/bleu/'
23 '2005/12/groupe-flickr-a-remplir-halfway-between-air-and-water.html';'articles/2005/12/groupe-flickr-a-remplir-halfway-between-air-and-water/'
23 '2001/12/marc-antoine-mathieu.html';'articles/2001/12/marc-antoine-mathieu/'
22 'tags/crashplan.html';'tags/crashplan/'
22 'links/2019/02/timelines-of-the-web.html';'links/2019/02/timelines-of-the-web/'
22 'links/2018/08/just/';'links/2018/08/01/just/'
22 'articles/2018/05/contextes-opquast/';'articles/2018/05/22/contextes-opquast/'
22 'articles/2016/06/so-long-cloudflare-and-thanks-for-all-the-fissh/';'articles/2016/06/09/so-long-cloudflare-and-thanks-for-all-the-fissh/'
22 'articles/2015/06/javascript-universel-et-architecture-isomorphe/';'articles/2015/06/22/javascript-universel-et-architecture-isomorphe/'
22 'articles/2014/06/les-super-delires-des-clips-d-ok-go/';'articles/2014/06/19/les-super-delires-des-clips-d-ok-go/'
22 'articles/2014/06/a-blind-legend/';'articles/2014/06/26/a-blind-legend/'
22 'articles/2014/02/ameliorer-l-ecoute-aleatoire-de-musique/';'articles/2014/02/05/ameliorer-l-ecoute-aleatoire-de-musique/'
22 'articles/2013/10/responsive-icons-with-svg/';'articles/2013/10/31/responsive-icons-with-svg/'
22 'articles/2011/12/en-travaux/';'articles/2011/12/28/en-travaux/'
22 'articles/2010/02/google-chrome-sur-mac-bilan-mitige/';'articles/2010/02/20/google-chrome-sur-mac-bilan-mitige/'
22 'articles/2009/02/laissons-ie6-mourir-sans-style-et-ses-utilisateurs-entrevoir-la-lumiere/';'articles/2009/02/11/laissons-ie6-mourir-sans-style-et-ses-utilisateurs-entrevoir-la-lumiere/'
22 'articles/2008/02/citation-de-terry-pratchett-et-neil-gaiman/';'articles/2008/02/22/citation-de-terry-pratchett-et-neil-gaiman/'
22 'articles/2007/08/encore-des-nouveautes-chez-apple-avant-le-lancement-de-leopard-en-octobre/';'articles/2007/08/09/encore-des-nouveautes-chez-apple-avant-le-lancement-de-leopard-en-octobre/'
22 'articles/2007/05/les-createurs-de-jpg-magazine-pousses-dehors-par-leurs-recents-partenaires/';'articles/2007/05/16/les-createurs-de-jpg-magazine-pousses-dehors-par-leurs-recents-partenaires/'
22 'articles/2005/11/la-fin-de-l-agenda-gastero-prod/';'articles/2005/11/24/la-fin-de-l-agenda-gastero-prod/'
22 'articles/2005/01/des-gravatars-avec-spip/';'articles/2005/01/05/des-gravatars-avec-spip/'
22 'articles/2001/08/rfc-austeres-les-informaticiens/';'articles/2001/08/28/rfc-austeres-les-informaticiens/'
22 'articles/2001/02/bouuuuh-stez-votre-site-web/';'articles/2001/02/21/bouuuuh-stez-votre-site-web/'
22 'a-propos/du-site.html';'about/'
22 '2018/07/leaving-500px.html';'articles/2018/07/leaving-500px/'
22 '2015/06/lachez-moi-avec-le-debat-digital-contre-numerique.html';'articles/2015/06/lachez-moi-avec-le-debat-digital-contre-numerique/'
22 '2013/03/lachez-prise.html';'articles/2013/03/lachez-prise/'
22 '2008/12/quel-sac-photo-pour-un-reflex-et-ses-accessoires.html';'articles/2008/12/quel-sac-photo-pour-un-reflex-et-ses-accessoires/'
22 '2005/01/des-gravatars-avec-spip.html';'articles/2005/01/des-gravatars-avec-spip/'
21 'tags/gandi.html';'tags/gandi/'
21 'links/2019/01/flutter-the-good-the-bad-and-the-ugly/';'links/2019/01/04/flutter-the-good-the-bad-and-the-ugly/'
21 'links/2019/01/bridgy-stats-update/';'links/2019/01/08/bridgy-stats-update/'
21 'links/2018/12/your-apps-know-where-you-were-last-night-and-they-re-not-keeping-it-secret/';'links/2018/12/10/your-apps-know-where-you-were-last-night-and-they-re-not-keeping-it-secret/'
21 'articles/2018/10/100000-tweets/';'articles/2018/10/24/100000-tweets/'
21 'articles/2015/06/yahoo-va-fermer-pipes-et-je-suis-bien-malheureux/';'articles/2015/06/09/yahoo-va-fermer-pipes-et-je-suis-bien-malheureux/'
21 'articles/2011/04/citation-de-maria-montessori/';'articles/2011/04/15/citation-de-maria-montessori/'
21 'articles/2011/02/utiliser-un-tri-significatif-dans-les-listes/';'articles/2011/02/27/utiliser-un-tri-significatif-dans-les-listes/'
21 'articles/2010/07/faut-il-continuer-a-supporter-internet-explorer-6/';'articles/2010/07/22/faut-il-continuer-a-supporter-internet-explorer-6/'
21 'articles/2009/03/photo-fr-n-est-pas-en-form/';'articles/2009/03/10/photo-fr-n-est-pas-en-form/'
21 'articles/2008/07/le-retour-de-l-agenda-gastero-prod/';'articles/2008/07/11/le-retour-de-l-agenda-gastero-prod/'
21 'articles/2008/06/une-autre-fenetre-de-burano/';'articles/2008/06/02/une-autre-fenetre-de-burano/'
21 'articles/2008/06/piclens-renomme-cooliris-fonctionne-maintenant-sur-gastero-prod/';'articles/2008/06/05/piclens-renomme-cooliris-fonctionne-maintenant-sur-gastero-prod/'
21 'articles/2007/01/citation-d-oscar-wilde/';'articles/2007/01/22/citation-d-oscar-wilde/'
21 'articles/2005/04/un-probleme-d-ergonomie-chez-les-petits-swiss/';'articles/2005/04/18/un-probleme-d-ergonomie-chez-les-petits-swiss/'
21 'articles/2003/10/ze-article-definitif/';'articles/2003/10/07/ze-article-definitif/'
21 'articles/2001/05/jeanine-salla-ambassadrice-virtuelle/';'articles/2001/05/29/jeanine-salla-ambassadrice-virtuelle/'
21 'articles/2001/02/arnaque-organisee-legalement-6-0-est-sorti/';'articles/2001/02/05/arnaque-organisee-legalement-6-0-est-sorti/'
21 '2018/03/optimiser-la-performance-des-images-responsives.html';'articles/2018/03/optimiser-la-performance-des-images-responsives/'
21 '2016/08/soignez-votre-lisibilite-avec-des-textes-de-largeur-matrisee.html';'articles/2016/08/soignez-votre-lisibilite-avec-des-textes-de-largeur-matrisee/'
21 '2015/01/quelle-version-du-dock-thunderbolt-belkin-choisir.html';'articles/2015/01/quelle-version-du-dock-thunderbolt-belkin-choisir/'
21 '2008/12/backup-d-un-mac-sur-un-nas-facile-et-sans-bidouille-c-est-possible.html';'articles/2008/12/backup-d-un-mac-sur-un-nas-facile-et-sans-bidouille-c-est-possible/'
21 '2008/07/meduses-fluorescentes.html';'articles/2008/07/meduses-fluorescentes/'
21 '2008/06/surveillez-vos-erreurs-404-elles-peuvent-etre-tres-instructives.html';'articles/2008/06/surveillez-vos-erreurs-404-elles-peuvent-etre-tres-instructives/'
21 '2005/11/la-fin-de-l-agenda-gastero-prod.html';'articles/2005/11/la-fin-de-l-agenda-gastero-prod/'
21 '2005/06/attrapez-le-soleil.html';'articles/2005/06/attrapez-le-soleil/'
20 'links/2019/06/send-outgoing-webmentions/';'links/2019/06/18/send-outgoing-webmentions/'
20 'links/2019/05/front-end-developer-handbook-2019/';'links/2019/05/24/front-end-developer-handbook-2019/'
20 'links/2019/02/file-web-share-target/';'links/2019/02/19/file-web-share-target/'
20 'atom.xml';'atom.xml'
20 'articles/2014/04/savez-vous-ce-qu-est-un-pim/';'articles/2014/04/22/savez-vous-ce-qu-est-un-pim/'
20 'articles/2012/07/montessori-c-est-fou/';'articles/2012/07/11/montessori-c-est-fou/'
20 'articles/2011/04/la-navigation-ne-se-fige-plus-en-haut-de-l-ecran-lors-du-scroll/';'articles/2011/04/11/la-navigation-ne-se-fige-plus-en-haut-de-l-ecran-lors-du-scroll/'
20 'articles/2009/02/larve-de-tenthredo-marginella/';'articles/2009/02/15/larve-de-tenthredo-marginella/'
20 'articles/2008/07/copie-privee-le-non-droit-qu-on-n-a-pas/';'articles/2008/07/04/copie-privee-le-non-droit-qu-on-n-a-pas/'
20 'articles/2007/07/sony-renforce-le-marketing-de-son-format-dvd-hd-blu-ray/';'articles/2007/07/11/sony-renforce-le-marketing-de-son-format-dvd-hd-blu-ray/'
20 'articles/2006/09/flickr-se-lance-dans-la-geolocalisation-des-photos/';'articles/2006/09/01/flickr-se-lance-dans-la-geolocalisation-des-photos/'
20 'articles/2006/07/la-fievre-du-photographe/';'articles/2006/07/10/la-fievre-du-photographe/'
20 'articles/2006/03/halte-au-vol-de-bande-passante/';'articles/2006/03/27/halte-au-vol-de-bande-passante/'
20 'articles/2006/02/l-avenir-des-pop-up-mis-a-mal-par-la-langue-francaise/';'articles/2006/02/06/l-avenir-des-pop-up-mis-a-mal-par-la-langue-francaise/'
20 'articles/2003/10/hero/';'articles/2003/10/31/hero/'
20 'articles/2001/11/citation-de-terry-pratchett/';'articles/2001/11/07/citation-de-terry-pratchett/'
20 'articles/2001/08/cine-au-clair-de-lune/';'articles/2001/08/14/cine-au-clair-de-lune/'
20 '2019/04/how-the-boeing-737-max-disaster-looks-to-a-software-developer.html';'articles/2019/04/how-the-boeing-737-max-disaster-looks-to-a-software-developer/'
20 '2014/11/laisser-les-champs-mot-de-passe-en-clair.html';'articles/2014/11/laisser-les-champs-mot-de-passe-en-clair/'
20 '2014/08/mon-test-du-panasonic-lumix-dmc-gm1-un-minuscule-appareil-photo-hybride.html';'articles/2014/08/mon-test-du-panasonic-lumix-dmc-gm1-un-minuscule-appareil-photo-hybride/'
20 '2013/10/responsive-icons-with-svg.html';'articles/2013/10/responsive-icons-with-svg/'
20 '2010/09/ils-ont-de-grandes-poches-a-la-fnac.html';'articles/2010/09/ils-ont-de-grandes-poches-a-la-fnac/'
20 '2009/12/un-menu-de-navigation-toujours-visible.html';'articles/2009/12/un-menu-de-navigation-toujours-visible/'
20 '2009/06/along-the-shore.html';'articles/2009/06/along-the-shore/'
20 '2008/07/la-sortie-de-l-iphone-3g-repoussee-en-france-pour-raison-d-etat.html';'articles/2008/07/la-sortie-de-l-iphone-3g-repoussee-en-france-pour-raison-d-etat/'
20 '2001/05/une-introduction-a-pear.html';'articles/2001/05/une-introduction-a-pear/'
20 '2001/02/pourquoi-faire-simple-quand-on-peut-faire-complique.html';'articles/2001/02/pourquoi-faire-simple-quand-on-peut-faire-complique/'
19 'tags/sav.html';'tags/sav/'
19 'tags/safari.html';'tags/safari/'
19 'tags/pear.html';'tags/pear/'
19 'tags/jan-kounen.html';'tags/jan-kounen/'
19 'links/2019/11/trackers-on-your-domain-revenue-risk/';'links/2019/11/14/trackers-on-your-domain-revenue-risk/'
19 'links/2019/03/death-to-bullshit.html';'links/2019/03/death-to-bullshit/'
19 'links/2019/01/the-flexbox-holy-albatross-reincarnated/';'links/2019/01/14/the-flexbox-holy-albatross-reincarnated/'
19 'links/2019/01/passwords-evolved-authentication-guidance-for-the-modern-era/';'links/2019/01/03/passwords-evolved-authentication-guidance-for-the-modern-era/'
19 'links/2018/12/the-average-web-page-is-3mb-how-much-should-we-care/';'links/2018/12/12/the-average-web-page-is-3mb-how-much-should-we-care/'
19 'links/2018/12/making-password-managers-play-ball-with-your-login-form/';'links/2018/12/10/making-password-managers-play-ball-with-your-login-form/'
19 'articles/2018/07/could-a-macbook-pro-replace-a-mac-mini/';'articles/2018/07/11/could-a-macbook-pro-replace-a-mac-mini/'
19 'articles/2014/02/lcl-nous-dit-demandez-plus-a-votre-banque-alors-essayons/';'articles/2014/02/04/lcl-nous-dit-demandez-plus-a-votre-banque-alors-essayons/'
19 'articles/2013/05/matraquage-publicitaire/';'articles/2013/05/20/matraquage-publicitaire/'
19 'articles/2011/03/des-noms-de-fichiers-a-telecharger-denues-de-sens-sur-software-canon-europe-com/';'articles/2011/03/01/des-noms-de-fichiers-a-telecharger-denues-de-sens-sur-software-canon-europe-com/'
19 'articles/2009/08/prendre-des-eclairs-d-orage-en-photo/';'articles/2009/08/25/prendre-des-eclairs-d-orage-en-photo/'
19 'articles/2009/07/don-t-fear-the-light/';'articles/2009/07/10/don-t-fear-the-light/'
19 'articles/2009/07/catch-me-if-you-can/';'articles/2009/07/10/catch-me-if-you-can/'
19 'articles/2009/04/flickr-lance-son-propre-systeme-d-url-courtes/';'articles/2009/04/24/flickr-lance-son-propre-systeme-d-url-courtes/'
19 'articles/2008/08/citation-de-wil-shipley/';'articles/2008/08/07/citation-de-wil-shipley/'
19 'articles/2008/07/citation-de-robert-hoekman-jr/';'articles/2008/07/02/citation-de-robert-hoekman-jr/'
19 'articles/2008/04/bientot-des-listes-de-taches-to-do-list-dans-google-docs/';'articles/2008/04/11/bientot-des-listes-de-taches-to-do-list-dans-google-docs/'
19 'articles/2008/03/checklist-de-reinstallation-complete-de-mozilla-firefox/';'articles/2008/03/18/checklist-de-reinstallation-complete-de-mozilla-firefox/'
19 'articles/2008/02/avis-de-turbulences-dans-les-flux-rss-de-gastero-prod/';'articles/2008/02/27/avis-de-turbulences-dans-les-flux-rss-de-gastero-prod/'
19 'articles/2007/11/veronique-et-davina-peuvent-aller-se-rhabiller/';'articles/2007/11/18/veronique-et-davina-peuvent-aller-se-rhabiller/'
19 'articles/2007/11/au-secours-safari-3-ne-marche-pas-sur-mon-mac/';'articles/2007/11/20/au-secours-safari-3-ne-marche-pas-sur-mon-mac/'
19 'articles/2006/01/css-on-reprend-tout-a-zero/';'articles/2006/01/16/css-on-reprend-tout-a-zero/'
19 'articles/2005/12/oh-joie/';'articles/2005/12/04/oh-joie/'
19 'articles/2005/12/norton-antispam-fait-du-zele-et-s-auto-censure/';'articles/2005/12/29/norton-antispam-fait-du-zele-et-s-auto-censure/'
19 'articles/2005/02/tiscali-auto-explose-ses-quotas-de-mail/';'articles/2005/02/14/tiscali-auto-explose-ses-quotas-de-mail/'
19 'articles/2005/01/nostalgie/';'articles/2005/01/26/nostalgie/'
19 'articles/2003/07/le-cinema-en-plein-air-a-la-villette-c-est-finalement-pas-reparti/';'articles/2003/07/01/le-cinema-en-plein-air-a-la-villette-c-est-finalement-pas-reparti/'
19 'articles/2001/12/marc-antoine-mathieu/';'articles/2001/12/16/marc-antoine-mathieu/'
19 'articles/2001/02/la-verite/';'articles/2001/02/10/la-verite/'
19 'articles/2001/01/vous-connaissez-arnold/';'articles/2001/01/20/vous-connaissez-arnold/'
19 '2015/02/a-bicyclette.html';'articles/2015/02/a-bicyclette/'
19 '2013/07/connexion-automatique-d-un-mac-a-un-hotspot-freewifi.html';'articles/2013/07/connexion-automatique-d-un-mac-a-un-hotspot-freewifi/'
19 '2011/03/des-noms-de-fichiers-a-telecharger-denues-de-sens-sur-software-canon-europe-com.html';'articles/2011/03/des-noms-de-fichiers-a-telecharger-denues-de-sens-sur-software-canon-europe-com/'
19 '2011/01/le-design-de-gastero-prod-est-il-a-jeter-a-la-poubelle.html';'articles/2011/01/le-design-de-gastero-prod-est-il-a-jeter-a-la-poubelle/'
19 '2008/06/une-autre-fenetre-de-burano.html';'articles/2008/06/une-autre-fenetre-de-burano/'
19 '2008/06/diigo-l-ultra-social-permet-de-s-ajouter-comme-son-propre-ami.html';'articles/2008/06/diigo-l-ultra-social-permet-de-s-ajouter-comme-son-propre-ami/'
19 '2006/11/le-blog-de-flickr-met-en-avant-mon-groupe-dedie-aux-photos-prises-avec-l-appareil-place-tout-juste-a-la-surface-de-l-eau.html';'articles/2006/11/le-blog-de-flickr-met-en-avant-mon-groupe-dedie-aux-photos-prises-avec-l-appareil-place-tout-juste-a-la-surface-de-l-eau/'
19 '2003/12/fhm-blah-blah-blah.html';'articles/2003/12/fhm-blah-blah-blah/'
19 '2003/10/hero.html';'articles/2003/10/hero/'
18 'tags/photography.html';'tags/photography/'
18 'tags/mac.html';'tags/mac/'
18 'tags/iphone.html';'tags/iphone/'
18 'tags/hong-kong.html';'tags/hong-kong/'
18 'tags/hd.html';'tags/hd/'
18 'tags/drobo.html';'tags/drobo/'
18 'tags/creation.html';'tags/creation/'
18 'tags/cloudinary.html';'tags/cloudinary/'
18 'tags/apple.html';'tags/apple/'
18 'tags/animal.html';'tags/animal/'
18 'links/2019/06/web-quality-checklist/';'links/2019/06/28/web-quality-checklist/'
18 'links/2019/06/every-layout-relearn-css-layout/';'links/2019/06/20/every-layout-relearn-css-layout/'
18 'links/2019/01/signal-v-noise-exits-medium/';'links/2019/01/16/signal-v-noise-exits-medium/'
18 'links/2019/01/on-the-importance-of-testing-with-content-blockers.html';'links/2019/01/on-the-importance-of-testing-with-content-blockers/'
18 'links/2019/01/if-it-s-interactive-it-needs-a-focus-style/';'links/2019/01/07/if-it-s-interactive-it-needs-a-focus-style/'
18 'links/2018/12/what-if/';'links/2018/12/10/what-if/'
18 'links/2018/12/the-practical-value-of-semantic-html/';'links/2018/12/21/the-practical-value-of-semantic-html/'
18 'links/2018/12/language-icon/';'links/2018/12/09/language-icon/'
18 'links/2018/12/design-with-difficult-data/';'links/2018/12/10/design-with-difficult-data/'
18 'links/2018/12/css-indexes-a-listing-of-every-term-defined-by-css-specs/';'links/2018/12/12/css-indexes-a-listing-of-every-term-defined-by-css-specs/'
18 'links/2018/11/mercure-server-sent-live-updates-protocol-and-reference-implementation/';'links/2018/11/08/mercure-server-sent-live-updates-protocol-and-reference-implementation/'
18 'articles/2016/08/faciliteur-ou-facilitateur/';'articles/2016/08/23/faciliteur-ou-facilitateur/'
18 'articles/2016/08/a-bridge-not-so-far/';'articles/2016/08/12/a-bridge-not-so-far/'
18 'articles/2014/12/des-animations-web-sans-css-ni-javascript-c-est-possible/';'articles/2014/12/19/des-animations-web-sans-css-ni-javascript-c-est-possible/'
18 'articles/2013/12/les-spammeurs-vils-flatteurs/';'articles/2013/12/27/les-spammeurs-vils-flatteurs/'
18 'articles/2013/01/dans-une-vie-anterieure-j-ai-ete-animateur-radio/';'articles/2013/01/12/dans-une-vie-anterieure-j-ai-ete-animateur-radio/'
18 'articles/2012/01/mud-lover/';'articles/2012/01/11/mud-lover/'
18 'articles/2011/03/donner-des-noms-explicites-aux-fichiers-en-telechargement/';'articles/2011/03/02/donner-des-noms-explicites-aux-fichiers-en-telechargement/'
18 'articles/2010/02/un-netbook-comme-videur-de-cartes-ameliore/';'articles/2010/02/25/un-netbook-comme-videur-de-cartes-ameliore/'
18 'articles/2009/01/criocere-du-lis/';'articles/2009/01/20/criocere-du-lis/'
18 'articles/2008/10/les-netbooks-sont-ils-si-populaires-uniquement-grace-a-leur-prix/';'articles/2008/10/23/les-netbooks-sont-ils-si-populaires-uniquement-grace-a-leur-prix/'
18 'articles/2008/06/en-ergonomie-le-choix-des-bons-symboles-est-primordial/';'articles/2008/06/25/en-ergonomie-le-choix-des-bons-symboles-est-primordial/'
18 'articles/2007/11/citation-d-une-citation-de-steve-jobs/';'articles/2007/11/13/citation-d-une-citation-de-steve-jobs/'
18 'articles/2007/06/citation-de-bjork/';'articles/2007/06/14/citation-de-bjork/'
18 'articles/2005/12/blogmarks-integre-a-google/';'articles/2005/12/25/blogmarks-integre-a-google/'
18 'articles/2005/09/la-fin-du-html-pour-les-applications-accessibles-via-le-web-n-est-pas-pour-tout-de-suite/';'articles/2005/09/16/la-fin-du-html-pour-les-applications-accessibles-via-le-web-n-est-pas-pour-tout-de-suite/'
18 'articles/2005/09/faut-il-utiliser-des-tags-composes-de-plusieurs-mots/';'articles/2005/09/13/faut-il-utiliser-des-tags-composes-de-plusieurs-mots/'
18 'articles/2005/02/msn-france-donne-une-nouvelle-definition-au-controle-parental/';'articles/2005/02/22/msn-france-donne-une-nouvelle-definition-au-controle-parental/'
18 'articles/2004/11/mozilla-firefox-1-0-enfin-dans-toutes-les-bonnes-cremeries/';'articles/2004/11/10/mozilla-firefox-1-0-enfin-dans-toutes-les-bonnes-cremeries/'
18 'articles/2003/10/la-verite-sort-de-la-bouche-des/';'articles/2003/10/14/la-verite-sort-de-la-bouche-des/'
18 'articles/2003/04/une-arborescence-dynamique-et-contextuelle/';'articles/2003/04/22/une-arborescence-dynamique-et-contextuelle/'
18 'articles/2002/11/citation-de-peter-gabriel/';'articles/2002/11/22/citation-de-peter-gabriel/'
18 'articles/2001/11/citation-de-raoul-vaneigem/';'articles/2001/11/07/citation-de-raoul-vaneigem/'
18 'articles/2001/04/kelkoo-de-pretentieux/';'articles/2001/04/18/kelkoo-de-pretentieux/'
18 'articles/2001/02/seul-au-monde-cast-away/';'articles/2001/02/25/seul-au-monde-cast-away/'
18 '2015/01/une-goutte-de-crayon-s.html';'articles/2015/01/une-goutte-de-crayon-s/'
18 '2014/06/les-super-delires-des-clips-d-ok-go.html';'articles/2014/06/les-super-delires-des-clips-d-ok-go/'
18 '2014/06/a-blind-legend.html';'articles/2014/06/a-blind-legend/'
18 '2011/02/utiliser-un-tri-significatif-dans-les-listes.html';'articles/2011/02/utiliser-un-tri-significatif-dans-les-listes/'
18 '2010/07/les-inscriptions-a-paris-web-2010-sont-ouvertes.html';'articles/2010/07/les-inscriptions-a-paris-web-2010-sont-ouvertes/'
18 '2005/12/blogmarks-integre-a-google.html';'articles/2005/12/blogmarks-integre-a-google/'
18 '2005/09/23-un-remplacant-potentiel-de-flickr.html';'articles/2005/09/23-un-remplacant-potentiel-de-flickr/'
18 '2005/03/flickr-dans-l-escarcelle-de-yahoo.html';'articles/2005/03/flickr-dans-l-escarcelle-de-yahoo/'
18 '2003/07/le-cinema-en-plein-air-a-la-villette-c-est-finalement-pas-reparti.html';'articles/2003/07/le-cinema-en-plein-air-a-la-villette-c-est-finalement-pas-reparti/'
18 '2001/11/citation-de-la-bruyere.html';'articles/2001/11/citation-de-la-bruyere/'
18 '2001/01/vous-connaissez-arnold.html';'articles/2001/01/vous-connaissez-arnold/'
17 'tags/standards.html';'tags/standards/'
17 'tags/sony.html';'tags/sony/'
17 'tags/offline.html';'tags/offline/'
17 'tags/microsoft.html';'tags/microsoft/'
17 'tags/linux.html';'tags/linux/'
17 'tags/les-nuls.html';'tags/les-nuls/'
17 'tags/google.html';'tags/google/'
17 'tags/bookmarks.html';'tags/bookmarks/'
17 'links/2019/10/the-ultimate-guide-to-not-fucking-up-push-notifications/';'links/2019/10/01/the-ultimate-guide-to-not-fucking-up-push-notifications/'
17 'links/2019/09/paint-the-picture-not-the-frame-how-browsers-provide-everything-users-need/';'links/2019/09/10/paint-the-picture-not-the-frame-how-browsers-provide-everything-users-need/'
17 'links/2019/07/improving-the-speed-and-accuracy-of-the-item-page-with-light-service/';'links/2019/07/26/improving-the-speed-and-accuracy-of-the-item-page-with-light-service/'
17 'links/2019/04/progressive-font-enrichment-reinventing-web-font-performance/';'links/2019/04/26/progressive-font-enrichment-reinventing-web-font-performance/'
17 'links/2019/02/how-browsers-work-behind-the-scenes-of-modern-web-browsers/';'links/2019/02/20/how-browsers-work-behind-the-scenes-of-modern-web-browsers/'
17 'links/2019/02/how-browsers-work-behind-the-scenes-of-modern-web-browsers.html';'links/2019/02/how-browsers-work-behind-the-scenes-of-modern-web-browsers/'
17 'links/2019/02/font-sizing-with-rem-could-be-avoided/';'links/2019/02/20/font-sizing-with-rem-could-be-avoided/'
17 'links/2018/12/metrics-from-1m-sites/';'links/2018/12/06/metrics-from-1m-sites/'
17 'links/2018/12/font-style-matcher/';'links/2018/12/18/font-style-matcher/'
17 'humans.txt';'/.well-known/humans.txt'
17 'blog/wp-includes/wlwmanifest.xml';'http://nicolas-hoizey.com/wp-includes/wlwmanifest.xml'
17 'articles/2018/05/twitter-search/';'articles/2018/05/17/twitter-search/'
17 'articles/2018/05/technical-credit/';'articles/2018/05/15/technical-credit/'
17 'articles/2016/08/cloudinary-fait-la-promotion-de-mon-plugin-jekyll/';'articles/2016/08/31/cloudinary-fait-la-promotion-de-mon-plugin-jekyll/'
17 'articles/2015/06/mettez-a-jour-votre-picturefill/';'articles/2015/06/02/mettez-a-jour-votre-picturefill/'
17 'articles/2012/09/votre-vie-privee-doit-le-rester-ne-vous-exposez-pas-dangereusement/';'articles/2012/09/25/votre-vie-privee-doit-le-rester-ne-vous-exposez-pas-dangereusement/'
17 'articles/2011/12/performance-web-ma-conference-a-web-ux/';'articles/2011/12/08/performance-web-ma-conference-a-web-ux/'
17 'articles/2011/04/retrouvons-nous-a-web-ux-et-sud-web-les-26-et-27-mai/';'articles/2011/04/28/retrouvons-nous-a-web-ux-et-sud-web-les-26-et-27-mai/'
17 'articles/2011/03/des-facettes-de-recherches-inexploitables-sur-01net-com/';'articles/2011/03/03/des-facettes-de-recherches-inexploitables-sur-01net-com/'
17 'articles/2010/02/tumblr-aime-mes-meduses/';'articles/2010/02/25/tumblr-aime-mes-meduses/'
17 'articles/2009/02/commentaires-desactives-temporairement/';'articles/2009/02/06/commentaires-desactives-temporairement/'
17 'articles/2009/01/linus-torvalds-sur-les-traces-de-maite/';'articles/2009/01/26/linus-torvalds-sur-les-traces-de-maite/'
17 'articles/2008/07/spip-2-0-en-approche/';'articles/2008/07/08/spip-2-0-en-approche/'
17 'articles/2008/03/mon-ipod-touch-est-schizophrene/';'articles/2008/03/13/mon-ipod-touch-est-schizophrene/'
17 'articles/2008/02/ne-sous-estimez-pas-l-importance-du-cable-hdmi/';'articles/2008/02/11/ne-sous-estimez-pas-l-importance-du-cable-hdmi/'
17 'articles/2008/02/c-est-la-saison-migratoire/';'articles/2008/02/20/c-est-la-saison-migratoire/'
17 'articles/2008/01/gastero-prod-08-beaucoup-plus-de-changements-que-les-simples-realignements-progressifs-precedents/';'articles/2008/01/25/gastero-prod-08-beaucoup-plus-de-changements-que-les-simples-realignements-progressifs-precedents/'
17 'articles/2007/12/un-exemple-de-jointures-entre-plusieurs-tables-dans-une-boucle-spip/';'articles/2007/12/07/un-exemple-de-jointures-entre-plusieurs-tables-dans-une-boucle-spip/'
17 'articles/2007/06/createurs-de-sites-web-2-0-ne-sous-estimez-pas-la-force-de-votre-communaute/';'articles/2007/06/15/createurs-de-sites-web-2-0-ne-sous-estimez-pas-la-force-de-votre-communaute/'
17 'articles/2006/07/open-xml-translator-clever-age-realise-pour-microsoft-corp-un-plugin-permettant-a-word-2007-d-utiliser-le-format-opendocument-odf-d-openoffice/';'articles/2006/07/06/open-xml-translator-clever-age-realise-pour-microsoft-corp-un-plugin-permettant-a-word-2007-d-utiliser-le-format-opendocument-odf-d-openoffice/'
17 'articles/2006/06/citation-d-un-auteur-malheureusement-inconnu/';'articles/2006/06/30/citation-d-un-auteur-malheureusement-inconnu/'
17 'articles/2006/01/retrievr-un-nouveau-moyen-de-s-amusr-a-trouvr-des-photos-sur-flickr/';'articles/2006/01/05/retrievr-un-nouveau-moyen-de-s-amusr-a-trouvr-des-photos-sur-flickr/'
17 'articles/2005/12/un-wiki-en-ligne-gratuit-en-10-secondes-avec-pbwiki/';'articles/2005/12/19/un-wiki-en-ligne-gratuit-en-10-secondes-avec-pbwiki/'
17 'articles/2005/09/23-un-remplacant-potentiel-de-flickr/';'articles/2005/09/01/23-un-remplacant-potentiel-de-flickr/'
17 'articles/2005/01/pompez/';'articles/2005/01/03/pompez/'
17 'articles/2004/12/citation-de-bob-monkhouse/';'articles/2004/12/13/citation-de-bob-monkhouse/'
17 'articles/2004/11/citroen-c4-alive-with-technology/';'articles/2004/11/30/citroen-c4-alive-with-technology/'
17 'articles/2004/03/citation-de-chateaubriand/';'articles/2004/03/02/citation-de-chateaubriand/'
17 'articles/2001/12/lanfeust-des-etoiles/';'articles/2001/12/18/lanfeust-des-etoiles/'
17 'articles/2001/07/le-dernier-star-wars-en-dvd-en-octobre-2001/';'articles/2001/07/06/le-dernier-star-wars-en-dvd-en-octobre-2001/'
17 '2018/07/lapeyre-y-en-a-pas-deux-j-espere.html';'articles/2018/07/lapeyre-y-en-a-pas-deux-j-espere/'
17 '2017/02/mettre-a-jour-les-plugins-jekyll-sans-danger.html';'articles/2017/02/mettre-a-jour-les-plugins-jekyll-sans-danger/'
17 '2016/06/so-long-cloudflare-and-thanks-for-all-the-fissh.html';'articles/2016/06/so-long-cloudflare-and-thanks-for-all-the-fissh/'
17 '2015/03/esviji-v2-sera-completement-responsive.html';'articles/2015/03/esviji-v2-sera-completement-responsive/'
17 '2014/04/savez-vous-ce-qu-est-un-pim.html';'articles/2014/04/savez-vous-ce-qu-est-un-pim/'
17 '2012/11/itunes-match-tronque-les-morceaux-de-musique.html';'articles/2012/11/itunes-match-tronque-les-morceaux-de-musique/'
17 '2011/04/la-navigation-ne-se-fige-plus-en-haut-de-l-ecran-lors-du-scroll.html';'articles/2011/04/la-navigation-ne-se-fige-plus-en-haut-de-l-ecran-lors-du-scroll/'
17 '2009/02/stairz.html';'articles/2009/02/stairz/'
17 '2009/02/larve-de-tenthredo-marginella.html';'articles/2009/02/larve-de-tenthredo-marginella/'
17 '2008/07/le-retour-de-l-agenda-gastero-prod.html';'articles/2008/07/le-retour-de-l-agenda-gastero-prod/'
17 '2008/07/copie-privee-le-non-droit-qu-on-n-a-pas.html';'articles/2008/07/copie-privee-le-non-droit-qu-on-n-a-pas/'
17 '2008/04/bientot-des-listes-de-taches-to-do-list-dans-google-docs.html';'articles/2008/04/bientot-des-listes-de-taches-to-do-list-dans-google-docs/'
17 '2008/03/checklist-de-reinstallation-complete-de-mozilla-firefox.html';'articles/2008/03/checklist-de-reinstallation-complete-de-mozilla-firefox/'
17 '2007/11/au-secours-safari-3-ne-marche-pas-sur-mon-mac.html';'articles/2007/11/au-secours-safari-3-ne-marche-pas-sur-mon-mac/'
17 '2007/05/les-createurs-de-jpg-magazine-pousses-dehors-par-leurs-recents-partenaires.html';'articles/2007/05/les-createurs-de-jpg-magazine-pousses-dehors-par-leurs-recents-partenaires/'
17 '2006/07/la-fievre-du-photographe.html';'articles/2006/07/la-fievre-du-photographe/'
17 '2001/08/rfc-austeres-les-informaticiens.html';'articles/2001/08/rfc-austeres-les-informaticiens/'
17 '2001/02/un-serveur-web-bien-deprime.html';'articles/2001/02/un-serveur-web-bien-deprime/'
17 '2001/02/seul-au-monde-cast-away.html';'articles/2001/02/seul-au-monde-cast-away/'
16 'tags/spam.html';'tags/spam/'
16 'tags/rss.html';'tags/rss/'
16 'tags/phpmychat.html';'tags/phpmychat/'
16 'tags/montessori.html';'tags/montessori/'
16 'tags/mastodon.html';'tags/mastodon/'
16 'tags/life.html';'tags/life/'
16 'tags/icon.html';'tags/icon/'
16 'tags/history.html';'tags/history/'
16 'tags/geolocation.html';'tags/geolocation/'
16 'tags/extension.html';'tags/extension/'
16 'tags/conference.html';'tags/conference/'
16 'tags/bug.html';'tags/bug/'
16 'tags/blogmarks.html';'tags/blogmarks/'
16 'tags/3d.html';'tags/3d/'
16 'links/2019/07/the-power-of-progressive-enhancement/';'links/2019/07/25/the-power-of-progressive-enhancement/'
16 'links/2019/05/the-secret-energy-impact-of-your-phone/';'links/2019/05/17/the-secret-energy-impact-of-your-phone/'
16 'links/2019/03/sophisticated-partitioning-with-css-grid/';'links/2019/03/21/sophisticated-partitioning-with-css-grid/'
16 'links/2019/01/the-rule-of-least-power/';'links/2019/01/04/the-rule-of-least-power/'
16 'links/2019/01/the-legacy-of-firefox-os/';'links/2019/01/30/the-legacy-of-firefox-os/'
16 'links/2018/12/should-i-use-javascript-to-load-my-web-fonts/';'links/2018/12/03/should-i-use-javascript-to-load-my-web-fonts/'
16 'links/2018/12/jank-free-image-loads/';'links/2018/12/21/jank-free-image-loads/'
16 'articles/2013/08/quels-sont-les-enjeux-pour-les-commercants-traditionnels-face-au-web/';'articles/2013/08/29/quels-sont-les-enjeux-pour-les-commercants-traditionnels-face-au-web/'
16 'articles/2013/05/faut-il-generaliser-le-https/';'articles/2013/05/02/faut-il-generaliser-le-https/'
16 'articles/2013/02/les-bonnes-pratiques-webperf-toujours-sous-la-main/';'articles/2013/02/12/les-bonnes-pratiques-webperf-toujours-sous-la-main/'
16 'articles/2012/09/chtemele-un-jeu-de-cartes-base-sur-html-a-financer/';'articles/2012/09/13/chtemele-un-jeu-de-cartes-base-sur-html-a-financer/'
16 'articles/2012/08/vibro-kore-hommage-musical-au-vibroboy-de-jan-kounen/';'articles/2012/08/01/vibro-kore-hommage-musical-au-vibroboy-de-jan-kounen/'
16 'articles/2010/06/faciliter-la-reprise-de-tweets-les-retweets-a-l-ancienne-sur-twitter/';'articles/2010/06/14/faciliter-la-reprise-de-tweets-les-retweets-a-l-ancienne-sur-twitter/'
16 'articles/2010/01/citation-de-arno-aka-arnaud-martin/';'articles/2010/01/14/citation-de-arno-aka-arnaud-martin/'
16 'articles/2009/07/deux-gars-en-showcase-au-com-antes/';'articles/2009/07/09/deux-gars-en-showcase-au-com-antes/'
16 'articles/2009/06/shameless-self-promotion/';'articles/2009/06/05/shameless-self-promotion/'
16 'articles/2009/05/dtc/';'articles/2009/05/29/dtc/'
16 'articles/2009/02/stairz/';'articles/2009/02/02/stairz/'
16 'articles/2009/02/citation-de-daniel-glazman/';'articles/2009/02/20/citation-de-daniel-glazman/'
16 'articles/2008/10/un-petit-bug-pas-mechant-dans-l-app-store/';'articles/2008/10/07/un-petit-bug-pas-mechant-dans-l-app-store/'
16 'articles/2008/07/mes-conventions-de-codage/';'articles/2008/07/31/mes-conventions-de-codage/'
16 'articles/2008/06/les-dinosaures-du-web-francophone-sont-gateux-et-je-me-fais-virtuellement-vieux/';'articles/2008/06/11/les-dinosaures-du-web-francophone-sont-gateux-et-je-me-fais-virtuellement-vieux/'
16 'articles/2008/06/diigo-l-ultra-social-permet-de-s-ajouter-comme-son-propre-ami/';'articles/2008/06/07/diigo-l-ultra-social-permet-de-s-ajouter-comme-son-propre-ami/'
16 'articles/2008/01/pour-faire-tourner-vista-sur-un-ordinateur-dell-il-en-faut-de-la-ram/';'articles/2008/01/17/pour-faire-tourner-vista-sur-un-ordinateur-dell-il-en-faut-de-la-ram/'
16 'articles/2008/01/3g-m-a-tuer-ou-comment-j-en-suis-venu-a-accuser-safari-par-erreur/';'articles/2008/01/30/3g-m-a-tuer-ou-comment-j-en-suis-venu-a-accuser-safari-par-erreur/'
16 'articles/2007/05/une-sauvegarde-de-fichiers-en-ligne-tres-simple-pour-pas-cher/';'articles/2007/05/07/une-sauvegarde-de-fichiers-en-ligne-tres-simple-pour-pas-cher/'
16 'articles/2006/11/ergonomie-a-revoir-cashstore-fr/';'articles/2006/11/21/ergonomie-a-revoir-cashstore-fr/'
16 'articles/2006/03/une-recette-infaillible-pour-attirer-les-adultes-dans-les-parcs-d-attraction/';'articles/2006/03/29/une-recette-infaillible-pour-attirer-les-adultes-dans-les-parcs-d-attraction/'
16 'articles/2006/03/comment-faire-un-tag-cloud-nuage-de-tags-ou-d-etiquettes-accessible/';'articles/2006/03/19/comment-faire-un-tag-cloud-nuage-de-tags-ou-d-etiquettes-accessible/'
16 'articles/2005/08/le-danger-des-numerotations-automatiques-de-chapitres/';'articles/2005/08/09/le-danger-des-numerotations-automatiques-de-chapitres/'
16 'articles/2005/03/flickr-dans-l-escarcelle-de-yahoo/';'articles/2005/03/21/flickr-dans-l-escarcelle-de-yahoo/'
16 'articles/2004/08/les-transferts-de-gros-fichiers-simplifies/';'articles/2004/08/04/les-transferts-de-gros-fichiers-simplifies/'
16 'articles/2003/12/le-meme-agenda-que-gastero-prod-avec-spip/';'articles/2003/12/09/le-meme-agenda-que-gastero-prod-avec-spip/'
16 'articles/2002/05/la-sobriete-n-empeche-pas-d-etre-ludique/';'articles/2002/05/02/la-sobriete-n-empeche-pas-d-etre-ludique/'
16 'articles/2001/12/ghosts-of-mars/';'articles/2001/12/10/ghosts-of-mars/'
16 'articles/2001/09/la-piste-oussama-ben-laden/';'articles/2001/09/11/la-piste-oussama-ben-laden/'
16 'articles/2001/04/l-affichage-a-les-chevilles-qui-enflent/';'articles/2001/04/22/l-affichage-a-les-chevilles-qui-enflent/'
16 'articles/2001/03/tiens-un-gasteropode/';'articles/2001/03/15/tiens-un-gasteropode/'
16 'articles/2001/02/un-serveur-web-bien-deprime/';'articles/2001/02/25/un-serveur-web-bien-deprime/'
16 'articles/2001/02/le-journal-du-net-presente-phpmychat/';'articles/2001/02/21/le-journal-du-net-presente-phpmychat/'
16 'articles/2001/02/l-autre-portail-des-copains/';'articles/2001/02/27/l-autre-portail-des-copains/'
16 'articles/2001/01/gruik-gruik/';'articles/2001/01/24/gruik-gruik/'
16 'ads.txt';'ads.txt'
16 '2018/10/100000-tweets.html';'articles/2018/10/100000-tweets/'
16 '2015/06/yahoo-va-fermer-pipes-et-je-suis-bien-malheureux.html';'articles/2015/06/yahoo-va-fermer-pipes-et-je-suis-bien-malheureux/'
16 '2015/02/tgif-en-musique.html';'articles/2015/02/tgif-en-musique/'
16 '2014/02/lcl-nous-dit-demandez-plus-a-votre-banque-alors-essayons.html';'articles/2014/02/lcl-nous-dit-demandez-plus-a-votre-banque-alors-essayons/'
16 '2012/10/un-hommage-en-fanfare-aux-jeux-video.html';'articles/2012/10/un-hommage-en-fanfare-aux-jeux-video/'
16 '2011/04/retrouvons-nous-a-web-ux-et-sud-web-les-26-et-27-mai.html';'articles/2011/04/retrouvons-nous-a-web-ux-et-sud-web-les-26-et-27-mai/'
16 '2009/04/flickr-lance-son-propre-systeme-d-url-courtes.html';'articles/2009/04/flickr-lance-son-propre-systeme-d-url-courtes/'
16 '2009/02/laissons-ie6-mourir-sans-style-et-ses-utilisateurs-entrevoir-la-lumiere.html';'articles/2009/02/laissons-ie6-mourir-sans-style-et-ses-utilisateurs-entrevoir-la-lumiere/'
16 '2009/02/citation-de-daniel-glazman.html';'articles/2009/02/citation-de-daniel-glazman/'
16 '2008/09/a-quand-un-macbook-helium-pour-concurrencer-les-netbooks.html';'articles/2008/09/a-quand-un-macbook-helium-pour-concurrencer-les-netbooks/'
16 '2008/06/piclens-renomme-cooliris-fonctionne-maintenant-sur-gastero-prod.html';'articles/2008/06/piclens-renomme-cooliris-fonctionne-maintenant-sur-gastero-prod/'
16 '2008/01/pour-faire-tourner-vista-sur-un-ordinateur-dell-il-en-faut-de-la-ram.html';'articles/2008/01/pour-faire-tourner-vista-sur-un-ordinateur-dell-il-en-faut-de-la-ram/'
16 '2006/09/flickr-se-lance-dans-la-geolocalisation-des-photos.html';'articles/2006/09/flickr-se-lance-dans-la-geolocalisation-des-photos/'
16 '2006/07/open-xml-translator-clever-age-realise-pour-microsoft-corp-un-plugin-permettant-a-word-2007-d-utiliser-le-format-opendocument-odf-d-openoffice.html';'articles/2006/07/open-xml-translator-clever-age-realise-pour-microsoft-corp-un-plugin-permettant-a-word-2007-d-utiliser-le-format-opendocument-odf-d-openoffice/'
16 '2006/01/feedlounge-s-ouvre-enfin-au-public-impatient-et-enterre-directement-ses-concurrents.html';'articles/2006/01/feedlounge-s-ouvre-enfin-au-public-impatient-et-enterre-directement-ses-concurrents/'
16 '2005/04/un-probleme-d-ergonomie-chez-les-petits-swiss.html';'articles/2005/04/un-probleme-d-ergonomie-chez-les-petits-swiss/'
16 '2005/01/pompez.html';'articles/2005/01/pompez/'
16 '2003/12/le-meme-agenda-que-gastero-prod-avec-spip.html';'articles/2003/12/le-meme-agenda-que-gastero-prod-avec-spip/'
16 '2001/11/citation-de-raoul-vaneigem.html';'articles/2001/11/citation-de-raoul-vaneigem/'
16 '2001/05/jeanine-salla-ambassadrice-virtuelle.html';'articles/2001/05/jeanine-salla-ambassadrice-virtuelle/'
15 'tags/twitter.html';'tags/twitter/'
15 'tags/test.html';'tags/test/'
15 'tags/me.html';'tags/me/'
15 'tags/ipod-touch.html';'tags/ipod-touch/'
15 'tags/innovation.html';'tags/innovation/'
15 'tags/humour.html';'tags/humour/'
15 'tags/html5.html';'tags/html5/'
15 'tags/greasemonkey.html';'tags/greasemonkey/'
15 'tags/form.html';'tags/form/'
15 'tags/flickr.html';'tags/flickr/'
15 'tags/file.html';'tags/file/'
15 'tags/canon.html';'tags/canon/'
15 'tags/art.html';'tags/art/'
15 'links/2019/10/why-is-css-so-weird/';'links/2019/10/02/why-is-css-so-weird/'
15 'links/2019/10/aspire-ideals-to-aspire-to-when-building-websites/';'links/2019/10/07/aspire-ideals-to-aspire-to-when-building-websites/'
15 'links/2019/06/the-perils-of-functional-css/';'links/2019/06/19/the-perils-of-functional-css/'
15 'links/2019/01/the-flexbox-holy-albatross-reincarnated.html';'links/2019/01/the-flexbox-holy-albatross-reincarnated/'
15 'links/2018/12/your-site-any-site-should-be-a-pwa.html';'links/2018/12/your-site-any-site-should-be-a-pwa/'
15 'links/2018/12/is-there-a-cold-war-between-android-and-chrome-because-of-pwas/';'links/2018/12/13/is-there-a-cold-war-between-android-and-chrome-because-of-pwas/'
15 'links/2018/08/just.html';'links/2018/08/just/'
15 'blog/les-dinosaures-du-web-francophone-sont-gateux-et-je-me-fais-virtuellement-vieux.html';'http://nicolas-hoizey.com/les-dinosaures-du-web-francophone-sont-gateux-et-je-me-fais-virtuellement-vieux.html'
15 'articles/2018/10/the-treasure-behind-the-castle-walls/';'articles/2018/10/02/the-treasure-behind-the-castle-walls/'
15 'articles/2016/02/je-n-utilise-plus-ma-liseuse-electronique/';'articles/2016/02/03/je-n-utilise-plus-ma-liseuse-electronique/'
15 'articles/2015/10/versions-de-firefox-os-utilisees-sur-esviji/';'articles/2015/10/21/versions-de-firefox-os-utilisees-sur-esviji/'
15 'articles/2014/03/sakura/';'articles/2014/03/05/sakura/'
15 'articles/2013/12/une-ode-a-l-em/';'articles/2013/12/10/une-ode-a-l-em/'
15 'articles/2013/11/virer-le-pac-pour-que-le-proxy-soit-un-peu-moins-palc/';'articles/2013/11/15/virer-le-pac-pour-que-le-proxy-soit-un-peu-moins-palc/'
15 'articles/2013/10/un-petit-pas-pour-l-em-un-grand-pas-pour-le-web/';'articles/2013/10/10/un-petit-pas-pour-l-em-un-grand-pas-pour-le-web/'
15 'articles/2013/02/de-nouvelles-fontes-sur-gastero-prod/';'articles/2013/02/09/de-nouvelles-fontes-sur-gastero-prod/'
15 'articles/2012/10/let-s-enhance/';'articles/2012/10/19/let-s-enhance/'
15 'articles/2012/09/citation-de-will-wright-createur-de-simcity-et-the-sims-a-propos-de-montessori/';'articles/2012/09/19/citation-de-will-wright-createur-de-simcity-et-the-sims-a-propos-de-montessori/'
15 'articles/2012/07/forcer-la-visibilite-du-bouton-de-fermeture-d-onglet-dans-firefox/';'articles/2012/07/25/forcer-la-visibilite-du-bouton-de-fermeture-d-onglet-dans-firefox/'
15 'articles/2012/01/maximum-security/';'articles/2012/01/17/maximum-security/'
15 'articles/2012/01/attention-au-detournement-seo-de-vos-url/';'articles/2012/01/17/attention-au-detournement-seo-de-vos-url/'
15 'articles/2011/06/ils-ont-aussi-de-grandes-poches-a-la-ratp/';'articles/2011/06/14/ils-ont-aussi-de-grandes-poches-a-la-ratp/'
15 'articles/2011/04/where-is-the-fold/';'articles/2011/04/04/where-is-the-fold/'
15 'articles/2011/04/gmail-n-est-pas-tendre-avec-les-e-mailing-marketing-en-images/';'articles/2011/04/02/gmail-n-est-pas-tendre-avec-les-e-mailing-marketing-en-images/'
15 'articles/2010/03/les-spammeurs-s-y-connaissent-en-css/';'articles/2010/03/01/les-spammeurs-s-y-connaissent-en-css/'
15 'articles/2009/12/split-level-photography/';'articles/2009/12/27/split-level-photography/'
15 'articles/2009/07/gastero-prod-passe-au-html-5/';'articles/2009/07/30/gastero-prod-passe-au-html-5/'
15 'articles/2008/06/citation-de-pierre-dac/';'articles/2008/06/11/citation-de-pierre-dac/'
15 'articles/2008/05/si-l-offre-internet-mobile-illimite-ten-by-orange-vous-tente-faites-attention-a-votre-facture/';'articles/2008/05/15/si-l-offre-internet-mobile-illimite-ten-by-orange-vous-tente-faites-attention-a-votre-facture/'
15 'articles/2008/05/citation-de-jean-anouihl/';'articles/2008/05/26/citation-de-jean-anouihl/'
15 'articles/2007/07/citation-de-cassius-marcellus-clay-jr/';'articles/2007/07/30/citation-de-cassius-marcellus-clay-jr/'
15 'articles/2007/05/ergonomie-a-revoir-clio-renault-sport/';'articles/2007/05/31/ergonomie-a-revoir-clio-renault-sport/'
15 'articles/2006/05/flickr-passe-en-version-gamma-avec-une-nouvelle-interface/';'articles/2006/05/16/flickr-passe-en-version-gamma-avec-une-nouvelle-interface/'
15 'articles/2006/03/citation-de-rene-goscinny/';'articles/2006/03/29/citation-de-rene-goscinny/'
15 'articles/2006/01/feedlounge-s-ouvre-enfin-au-public-impatient-et-enterre-directement-ses-concurrents/';'articles/2006/01/18/feedlounge-s-ouvre-enfin-au-public-impatient-et-enterre-directement-ses-concurrents/'
15 'articles/2005/02/citation-de-patrick-le-lay-pdg-de-tf1/';'articles/2005/02/14/citation-de-patrick-le-lay-pdg-de-tf1/'
15 'articles/2004/04/gastero-prod-4-les-standards-et-l-accessibilite/';'articles/2004/04/20/gastero-prod-4-les-standards-et-l-accessibilite/'
15 'articles/2001/11/quel-visage-aura-blueberry/';'articles/2001/11/29/quel-visage-aura-blueberry/'
15 'articles/2001/11/citation-de-julia-bird/';'articles/2001/11/07/citation-de-julia-bird/'
15 'articles/2001/10/noos-y-voila/';'articles/2001/10/22/noos-y-voila/'
15 'articles/2001/04/comme-un-petit-manque-d-air/';'articles/2001/04/27/comme-un-petit-manque-d-air/'
15 'articles/2001/01/telephone-jetable/';'articles/2001/01/25/telephone-jetable/'
15 'articles/2001/01/comme-quoi-on-peut-s-amuser-aussi-sur-un-site-corpo/';'articles/2001/01/31/comme-quoi-on-peut-s-amuser-aussi-sur-un-site-corpo/'
15 '2014/11/le-coup-de-soleil-de-trop.html';'articles/2014/11/le-coup-de-soleil-de-trop/'
15 '2013/05/faut-il-generaliser-le-https.html';'articles/2013/05/faut-il-generaliser-le-https/'
15 '2011/04/citation-de-maria-montessori.html';'articles/2011/04/citation-de-maria-montessori/'
15 '2011/02/respecter-les-usages-courants.html';'articles/2011/02/respecter-les-usages-courants/'
15 '2009/03/photo-fr-n-est-pas-en-form.html';'articles/2009/03/photo-fr-n-est-pas-en-form/'
15 '2008/06/les-3-suisses-mutilent-leurs-mannequins.html';'articles/2008/06/les-3-suisses-mutilent-leurs-mannequins/'
15 '2008/01/gastero-prod-08-beaucoup-plus-de-changements-que-les-simples-realignements-progressifs-precedents.html';'articles/2008/01/gastero-prod-08-beaucoup-plus-de-changements-que-les-simples-realignements-progressifs-precedents/'
15 '2007/08/encore-des-nouveautes-chez-apple-avant-le-lancement-de-leopard-en-octobre.html';'articles/2007/08/encore-des-nouveautes-chez-apple-avant-le-lancement-de-leopard-en-octobre/'
15 '2007/05/une-sauvegarde-de-fichiers-en-ligne-tres-simple-pour-pas-cher.html';'articles/2007/05/une-sauvegarde-de-fichiers-en-ligne-tres-simple-pour-pas-cher/'
15 '2007/05/ergonomie-a-revoir-clio-renault-sport.html';'articles/2007/05/ergonomie-a-revoir-clio-renault-sport/'
15 '2007/01/citation-d-oscar-wilde.html';'articles/2007/01/citation-d-oscar-wilde/'
15 '2006/03/halte-au-vol-de-bande-passante.html';'articles/2006/03/halte-au-vol-de-bande-passante/'
15 '2006/01/retrievr-un-nouveau-moyen-de-s-amusr-a-trouvr-des-photos-sur-flickr.html';'articles/2006/01/retrievr-un-nouveau-moyen-de-s-amusr-a-trouvr-des-photos-sur-flickr/'
15 '2005/09/faut-il-utiliser-des-tags-composes-de-plusieurs-mots.html';'articles/2005/09/faut-il-utiliser-des-tags-composes-de-plusieurs-mots/'
15 '2005/02/tiscali-auto-explose-ses-quotas-de-mail.html';'articles/2005/02/tiscali-auto-explose-ses-quotas-de-mail/'
15 '2002/05/la-sobriete-n-empeche-pas-d-etre-ludique.html';'articles/2002/05/la-sobriete-n-empeche-pas-d-etre-ludique/'
15 '2001/11/citation-de-terry-pratchett.html';'articles/2001/11/citation-de-terry-pratchett/'
15 '2001/03/tiens-un-gasteropode.html';'articles/2001/03/tiens-un-gasteropode/'
14 'tags/wifi.html';'tags/wifi/'
14 'tags/web-services.html';'tags/web-services/'
14 'tags/web.html';'tags/web/'
14 'tags/tag.html';'tags/tag/'
14 'tags/sncf.html';'tags/sncf/'
14 'tags/service-worker.html';'tags/service-worker/'
14 'tags/rwd.html';'tags/rwd/'
14 'tags/portrait.html';'tags/portrait/'
14 'tags/plugin.html';'tags/plugin/'
14 'tags/new-york.html';'tags/new-york/'
14 'tags/movie.html';'tags/movie/'
14 'tags/medium.html';'tags/medium/'
14 'tags/logo.html';'tags/logo/'
14 'tags/jekyll.html';'tags/jekyll/'
14 'tags/javascript.html';'tags/javascript/'
14 'tags/feed.html';'tags/feed/'
14 'tags/esviji.html';'tags/esviji/'
14 'tags/diving.html';'tags/diving/'
14 'tags/community.html';'tags/community/'
14 'tags/commerce.html';'tags/commerce/'
14 'tags/colour.html';'tags/colour/'
14 'tags/cinema.html';'tags/cinema/'
14 'tags/bag.html';'tags/bag/'
14 'tags/api.html';'tags/api/'
14 'tags/android.html';'tags/android/'
14 'tags/advertisement.html';'tags/advertisement/'
14 'links/2018/12/creating-distraction-free-reading-experiences/';'links/2018/12/22/creating-distraction-free-reading-experiences/'
14 'links/2018/11/mercure-server-sent-live-updates-protocol-and-reference-implementation.html';'links/2018/11/mercure-server-sent-live-updates-protocol-and-reference-implementation/'
14 'links/2018/09/software-disenchantment/';'links/2018/09/19/software-disenchantment/'
14 'blog/le-design-de-gastero-prod-est-il-a-jeter-a-la-poubelle.html';'http://nicolas-hoizey.com/le-design-de-gastero-prod-est-il-a-jeter-a-la-poubelle.html'
14 'articles/2016/08/ripe/';'articles/2016/08/09/ripe/'
14 'articles/2015/08/c-est-une-activite-belle-et-absurde-de-parler-a-un-abruti-aussi-absolu-que-l-ordinateur/';'articles/2015/08/28/c-est-une-activite-belle-et-absurde-de-parler-a-un-abruti-aussi-absolu-que-l-ordinateur/'
14 'articles/2015/07/test-du-sac-a-dos-photo-kontrast-pro-de-case-logic-pour-phototrend/';'articles/2015/07/30/test-du-sac-a-dos-photo-kontrast-pro-de-case-logic-pour-phototrend/'
14 'articles/2014/12/un-nouveau-rubriquage-de-nouvelles-url/';'articles/2014/12/03/un-nouveau-rubriquage-de-nouvelles-url/'
14 'articles/2014/03/winter/';'articles/2014/03/01/winter/'
14 'articles/2012/04/my-best-profile/';'articles/2012/04/11/my-best-profile/'
14 'articles/2012/03/utiliser-spip-3-chez-alwaysdata/';'articles/2012/03/08/utiliser-spip-3-chez-alwaysdata/'
14 'articles/2012/03/de-la-dance-hip-hop-lumineuse/';'articles/2012/03/16/de-la-dance-hip-hop-lumineuse/'
14 'articles/2012/02/warm/';'articles/2012/02/06/warm/'
14 'articles/2012/01/plongee-en-contre-plongee/';'articles/2012/01/12/plongee-en-contre-plongee/'
14 'articles/2011/02/citation-d-antoine-de-saint-exupery/';'articles/2011/02/25/citation-d-antoine-de-saint-exupery/'
14 'articles/2009/12/qui-a-gagne-un-million/';'articles/2009/12/28/qui-a-gagne-un-million/'
14 'articles/2009/02/bruxelles/';'articles/2009/02/20/bruxelles/'
14 'articles/2008/09/a-quand-un-macbook-helium-pour-concurrencer-les-netbooks/';'articles/2008/09/24/a-quand-un-macbook-helium-pour-concurrencer-les-netbooks/'
14 'articles/2008/06/wordle-fait-de-jolis-nuages-de-tags/';'articles/2008/06/26/wordle-fait-de-jolis-nuages-de-tags/'
14 'articles/2008/06/les-3-suisses-mutilent-leurs-mannequins/';'articles/2008/06/25/les-3-suisses-mutilent-leurs-mannequins/'
14 'articles/2008/01/amusons-nous-avec-des-boucles-spip-et-les-petits-nouveaux-get-set-et-array/';'articles/2008/01/22/amusons-nous-avec-des-boucles-spip-et-les-petits-nouveaux-get-set-et-array/'
14 'articles/2006/04/citation-de-albert-einstein/';'articles/2006/04/11/citation-de-albert-einstein/'
14 'articles/2004/06/la-galerie-spip-pour-reutiliser-facilement-les-images-et-documents/';'articles/2004/06/08/la-galerie-spip-pour-reutiliser-facilement-les-images-et-documents/'
14 'articles/2003/08/citation-de-groucho-marx/';'articles/2003/08/27/citation-de-groucho-marx/'
14 'articles/2001/11/citation-d-anemone/';'articles/2001/11/07/citation-d-anemone/'
14 'articles/2001/11/citation-d-alfred-de-musset/';'articles/2001/11/07/citation-d-alfred-de-musset/'
14 'articles/2001/05/lovely-day-for-a-guinness/';'articles/2001/05/31/lovely-day-for-a-guinness/'
14 'articles/2001/02/des-bandes-annonces-a-gogo/';'articles/2001/02/02/des-bandes-annonces-a-gogo/'
14 'articles/2001/02/ce-que-veulent-les-femmes-what-women-want/';'articles/2001/02/19/ce-que-veulent-les-femmes-what-women-want/'
14 'articles/2001/01/plus-on-est-de-fous-moins-il-y-a-de-riz/';'articles/2001/01/31/plus-on-est-de-fous-moins-il-y-a-de-riz/'
14 '2018/06/users-do-change-font-size.html';'articles/2018/06/users-do-change-font-size/'
14 '2015/06/javascript-universel-et-architecture-isomorphe.html';'articles/2015/06/javascript-universel-et-architecture-isomorphe/'
14 '2014/02/ameliorer-l-ecoute-aleatoire-de-musique.html';'articles/2014/02/ameliorer-l-ecoute-aleatoire-de-musique/'
14 '2013/05/matraquage-publicitaire.html';'articles/2013/05/matraquage-publicitaire/'
14 '2013/02/de-nouvelles-fontes-sur-gastero-prod.html';'articles/2013/02/de-nouvelles-fontes-sur-gastero-prod/'
14 '2013/01/dans-une-vie-anterieure-j-ai-ete-animateur-radio.html';'articles/2013/01/dans-une-vie-anterieure-j-ai-ete-animateur-radio/'
14 '2012/02/warm.html';'articles/2012/02/warm/'
14 '2012/01/maximum-security.html';'articles/2012/01/maximum-security/'
14 '2011/12/performance-web-ma-conference-a-web-ux.html';'articles/2011/12/performance-web-ma-conference-a-web-ux/'
14 '2010/02/un-netbook-comme-videur-de-cartes-ameliore.html';'articles/2010/02/un-netbook-comme-videur-de-cartes-ameliore/'
14 '2010/02/tumblr-aime-mes-meduses.html';'articles/2010/02/tumblr-aime-mes-meduses/'
14 '2009/12/split-level-photography.html';'articles/2009/12/split-level-photography/'
14 '2009/08/prendre-des-eclairs-d-orage-en-photo.html';'articles/2009/08/prendre-des-eclairs-d-orage-en-photo/'
14 '2009/07/don-t-fear-the-light.html';'articles/2009/07/don-t-fear-the-light/'
14 '2009/07/catch-me-if-you-can.html';'articles/2009/07/catch-me-if-you-can/'
14 '2009/02/commentaires-desactives-temporairement.html';'articles/2009/02/commentaires-desactives-temporairement/'
14 '2009/01/criocere-du-lis.html';'articles/2009/01/criocere-du-lis/'
14 '2008/06/wordle-fait-de-jolis-nuages-de-tags.html';'articles/2008/06/wordle-fait-de-jolis-nuages-de-tags/'
14 '2006/03/comment-faire-un-tag-cloud-nuage-de-tags-ou-d-etiquettes-accessible.html';'articles/2006/03/comment-faire-un-tag-cloud-nuage-de-tags-ou-d-etiquettes-accessible/'
14 '2005/12/un-wiki-en-ligne-gratuit-en-10-secondes-avec-pbwiki.html';'articles/2005/12/un-wiki-en-ligne-gratuit-en-10-secondes-avec-pbwiki/'
14 '2005/12/norton-antispam-fait-du-zele-et-s-auto-censure.html';'articles/2005/12/norton-antispam-fait-du-zele-et-s-auto-censure/'
14 '2005/01/plongee-en-egypte.html';'articles/2005/01/plongee-en-egypte/'
14 '2004/06/la-galerie-spip-pour-reutiliser-facilement-les-images-et-documents.html';'articles/2004/06/la-galerie-spip-pour-reutiliser-facilement-les-images-et-documents/'
14 '2004/04/gastero-prod-4-les-standards-et-l-accessibilite.html';'articles/2004/04/gastero-prod-4-les-standards-et-l-accessibilite/'
14 '2003/10/ze-article-definitif.html';'articles/2003/10/ze-article-definitif/'
14 '2001/11/citation-de-p-legare.html';'articles/2001/11/citation-de-p-legare/'
14 '2001/07/le-maillon-faible-n-est-pas-celui-qu-on-croit.html';'articles/2001/07/le-maillon-faible-n-est-pas-celui-qu-on-croit/'
14 '2001/02/ce-que-veulent-les-femmes-what-women-want.html';'articles/2001/02/ce-que-veulent-les-femmes-what-women-want/'
14 '2001/02/bouuuuh-stez-votre-site-web.html';'articles/2001/02/bouuuuh-stez-votre-site-web/'
13 'wp-admin/admin-ajax.php';'wp-admin/admin-ajax.php'
13 'tags/yahoo.html';'tags/yahoo/'
13 'tags/ux.html';'tags/ux/'
13 'tags/travel.html';'tags/travel/'
13 'tags/tgif.html';'tags/tgif/'
13 'tags/statistics.html';'tags/statistics/'
13 'tags/rewriterule.html';'tags/rewriterule/'
13 'tags/progressive-enhancement.html';'tags/progressive-enhancement/'
13 'tags/privacy.html';'tags/privacy/'
13 'tags/papillon.html';'tags/papillon/'
13 'tags/marketing.html';'tags/marketing/'
13 'tags/kiss.html';'tags/kiss/'
13 'tags/free.html';'tags/free/'
13 'tags/environment.html';'tags/environment/'
13 'tags/em.html';'tags/em/'
13 'tags/concert.html';'tags/concert/'
13 'tags/computer.html';'tags/computer/'
13 'tags/clever-age.html';'tags/clever-age/'
13 'tags/browser.html';'tags/browser/'
13 'tags/blog.html';'tags/blog/'
13 'tags/apache.html';'tags/apache/'
13 'tags/500px.html';'tags/500px/'
13 'links/2019/09/the-real-dark-web/';'links/2019/09/02/the-real-dark-web/'
13 'links/2019/09/paint-the-picture-not-the-frame-how-browsers-provide-everything-users-need.html';'links/2019/09/paint-the-picture-not-the-frame-how-browsers-provide-everything-users-need/'
13 'links/2019/08/save-data-usage/';'links/2019/08/30/save-data-usage/'
13 'links/2019/07/the-importance-of-elegance/';'links/2019/07/02/the-importance-of-elegance/'
13 'links/2019/07/progressive-enhancement/';'links/2019/07/24/progressive-enhancement/'
13 'links/2019/04/fading-out-siblings-on-hover-in-css/';'links/2019/04/18/fading-out-siblings-on-hover-in-css/'
13 'links/2019/01/bridgy-stats-update.html';'links/2019/01/bridgy-stats-update/'
13 'links/2018/12/jank-free-image-loads.html';'links/2018/12/jank-free-image-loads/'
13 'links/2018/12/design-with-difficult-data.html';'links/2018/12/design-with-difficult-data/'
13 'links/2018/11/why-mastodon-is-defying-the-critical-mass/';'links/2018/11/11/why-mastodon-is-defying-the-critical-mass/'
13 'blog/connexion-automatique-d-un-mac-a-un-hotspot-freewifi';'http://nicolas-hoizey.com/connexion-automatique-d-un-mac-a-un-hotspot-freewifi'
13 'articles/2015/06/mon-jeu-esviji-integre-a-framagames/';'articles/2015/06/19/mon-jeu-esviji-integre-a-framagames/'
13 'articles/2012/10/un-hommage-en-fanfare-aux-jeux-video/';'articles/2012/10/12/un-hommage-en-fanfare-aux-jeux-video/'
13 'articles/2012/05/sud-web-c-est-bientot-et-vous-devez-y-etre/';'articles/2012/05/04/sud-web-c-est-bientot-et-vous-devez-y-etre/'
13 'articles/2012/05/la-plaza-de-toros-a-ronda-en-andalousie/';'articles/2012/05/11/la-plaza-de-toros-a-ronda-en-andalousie/'
13 'articles/2012/04/l-atelier-miniature/';'articles/2012/04/13/l-atelier-miniature/'
13 'articles/2012/03/mon-premier-time-lapse/';'articles/2012/03/29/mon-premier-time-lapse/'
13 'articles/2012/01/splitscreen-a-love-story/';'articles/2012/01/19/splitscreen-a-love-story/'
13 'articles/2010/02/le-retour-du-gasteropode-perdu/';'articles/2010/02/03/le-retour-du-gasteropode-perdu/'
13 'articles/2009/02/givre/';'articles/2009/02/11/givre/'
13 'articles/2008/10/textorizer-met-les-mots-en-images-et-inversement/';'articles/2008/10/08/textorizer-met-les-mots-en-images-et-inversement/'
13 'articles/2008/08/tineye-progresse-a-grands-pas/';'articles/2008/08/05/tineye-progresse-a-grands-pas/'
13 'articles/2008/06/citation-de-les-nuls/';'articles/2008/06/12/citation-de-les-nuls/'
13 'articles/2008/04/yeeeh-haaaaah-target-locked/';'articles/2008/04/02/yeeeh-haaaaah-target-locked/'
13 'articles/2008/04/lost-in-white-space-is-hot-on-jpg-magazine/';'articles/2008/04/21/lost-in-white-space-is-hot-on-jpg-magazine/'
13 'articles/2008/02/stop-this/';'articles/2008/02/27/stop-this/'
13 'articles/2007/07/les-commentaires-sur-les-articles-sont-maintenant-disponibles-par-discussion-ou-ordre-chronologique-au-choix/';'articles/2007/07/06/les-commentaires-sur-les-articles-sont-maintenant-disponibles-par-discussion-ou-ordre-chronologique-au-choix/'
13 'articles/2006/09/dots/';'articles/2006/09/29/dots/'
13 'articles/2006/08/les-voies-de-l-interestingness-de-flickr-sont-impenetrables/';'articles/2006/08/21/les-voies-de-l-interestingness-de-flickr-sont-impenetrables/'
13 'articles/2006/04/gastero-prod-est-maintenant-severement-feed-burne/';'articles/2006/04/24/gastero-prod-est-maintenant-severement-feed-burne/'
13 'articles/2006/03/tentative-d-ouverture-des-commentaires/';'articles/2006/03/31/tentative-d-ouverture-des-commentaires/'
13 'articles/2005/12/est-il-utile-de-mettre-a-disposition-des-archives-par-date-de-publication/';'articles/2005/12/05/est-il-utile-de-mettre-a-disposition-des-archives-par-date-de-publication/'
13 'articles/2005/12/blogmarks-encore-mieux-integre-a-google-avec-blogmarksingoogle-0-3/';'articles/2005/12/27/blogmarks-encore-mieux-integre-a-google-avec-blogmarksingoogle-0-3/'
13 'articles/2005/08/gastero-prod-maintenant-sur-spip-1-8-2-pr2-en-attendant-plus/';'articles/2005/08/16/gastero-prod-maintenant-sur-spip-1-8-2-pr2-en-attendant-plus/'
13 'articles/2005/08/gastero-prod-cite-dans-ze-woc/';'articles/2005/08/30/gastero-prod-cite-dans-ze-woc/'
13 'articles/2005/06/google-maps-s-emmele-les-pedales/';'articles/2005/06/27/google-maps-s-emmele-les-pedales/'
13 'articles/2005/03/futur-freenaute-en-quete-de-conseils/';'articles/2005/03/15/futur-freenaute-en-quete-de-conseils/'
13 'articles/2005/01/plongee-en-egypte/';'articles/2005/01/20/plongee-en-egypte/'
13 'articles/2005/01/picasa-2-est-arrive/';'articles/2005/01/22/picasa-2-est-arrive/'
13 'articles/2004/08/gastero-prod-ecarte-de-la-blog-story/';'articles/2004/08/03/gastero-prod-ecarte-de-la-blog-story/'
13 'articles/2003/12/what-is-the-meatrix/';'articles/2003/12/05/what-is-the-meatrix/'
13 'articles/2003/11/citation-d-alphonse-allais/';'articles/2003/11/27/citation-d-alphonse-allais/'
13 'articles/2001/11/citation-d-hipolito/';'articles/2001/11/07/citation-d-hipolito/'
13 'articles/2001/11/citation-de-martin-10-ans/';'articles/2001/11/07/citation-de-martin-10-ans/'
13 'articles/2001/07/le-maillon-faible-n-est-pas-celui-qu-on-croit/';'articles/2001/07/26/le-maillon-faible-n-est-pas-celui-qu-on-croit/'
13 'articles/2001/04/du-bon-usage-du-boycotte/';'articles/2001/04/26/du-bon-usage-du-boycotte/'
13 'articles/2001/02/inspirations/';'articles/2001/02/22/inspirations/'
13 'articles/2001/01/the-wall/';'articles/2001/01/20/the-wall/'
13 '2014/12/des-animations-web-sans-css-ni-javascript-c-est-possible.html';'articles/2014/12/des-animations-web-sans-css-ni-javascript-c-est-possible/'
13 '2012/01/mud-lover.html';'articles/2012/01/mud-lover/'
13 '2011/12/en-travaux.html';'articles/2011/12/en-travaux/'
13 '2011/04/where-is-the-fold.html';'articles/2011/04/where-is-the-fold/'
13 '2010/01/citation-de-arno-aka-arnaud-martin.html';'articles/2010/01/citation-de-arno-aka-arnaud-martin/'
13 '2009/07/deux-gars-en-showcase-au-com-antes.html';'articles/2009/07/deux-gars-en-showcase-au-com-antes/'
13 '2009/01/linus-torvalds-sur-les-traces-de-maite.html';'articles/2009/01/linus-torvalds-sur-les-traces-de-maite/'
13 '2008/10/les-netbooks-sont-ils-si-populaires-uniquement-grace-a-leur-prix.html';'articles/2008/10/les-netbooks-sont-ils-si-populaires-uniquement-grace-a-leur-prix/'
13 '2008/10/citation-de-albert-einstein.html';'articles/2008/10/citation-de-albert-einstein/'
13 '2008/09/la-reconnaissance-faciale-se-democratise-avec-picasa-web.html';'articles/2008/09/la-reconnaissance-faciale-se-democratise-avec-picasa-web/'
13 '2008/08/google-a-t-il-encore-des-concurrents.html';'articles/2008/08/google-a-t-il-encore-des-concurrents/'
13 '2008/08/citation-de-wil-shipley.html';'articles/2008/08/citation-de-wil-shipley/'
13 '2008/07/citation-de-robert-hoekman-jr.html';'articles/2008/07/citation-de-robert-hoekman-jr/'
13 '2008/05/si-l-offre-internet-mobile-illimite-ten-by-orange-vous-tente-faites-attention-a-votre-facture.html';'articles/2008/05/si-l-offre-internet-mobile-illimite-ten-by-orange-vous-tente-faites-attention-a-votre-facture/'
13 '2008/03/mon-ipod-touch-est-schizophrene.html';'articles/2008/03/mon-ipod-touch-est-schizophrene/'
13 '2008/02/citation-de-terry-pratchett-et-neil-gaiman.html';'articles/2008/02/citation-de-terry-pratchett-et-neil-gaiman/'
13 '2008/02/avis-de-turbulences-dans-les-flux-rss-de-gastero-prod.html';'articles/2008/02/avis-de-turbulences-dans-les-flux-rss-de-gastero-prod/'
13 '2007/07/citation-de-cassius-marcellus-clay-jr.html';'articles/2007/07/citation-de-cassius-marcellus-clay-jr/'
13 '2007/05/ergonomie-a-revoir-soa-com.html';'articles/2007/05/ergonomie-a-revoir-soa-com/'
13 '2006/09/dots.html';'articles/2006/09/dots/'
13 '2006/02/l-avenir-des-pop-up-mis-a-mal-par-la-langue-francaise.html';'articles/2006/02/l-avenir-des-pop-up-mis-a-mal-par-la-langue-francaise/'
13 '2005/12/blogmarks-encore-mieux-integre-a-google-avec-blogmarksingoogle-0-3.html';'articles/2005/12/blogmarks-encore-mieux-integre-a-google-avec-blogmarksingoogle-0-3/'
13 '2005/09/la-fin-du-html-pour-les-applications-accessibles-via-le-web-n-est-pas-pour-tout-de-suite.html';'articles/2005/09/la-fin-du-html-pour-les-applications-accessibles-via-le-web-n-est-pas-pour-tout-de-suite/'
13 '2005/02/citation-de-patrick-le-lay-pdg-de-tf1.html';'articles/2005/02/citation-de-patrick-le-lay-pdg-de-tf1/'
13 '2004/11/citroen-c4-alive-with-technology.html';'articles/2004/11/citroen-c4-alive-with-technology/'
13 '2004/08/les-transferts-de-gros-fichiers-simplifies.html';'articles/2004/08/les-transferts-de-gros-fichiers-simplifies/'
13 '2004/08/gastero-prod-ecarte-de-la-blog-story.html';'articles/2004/08/gastero-prod-ecarte-de-la-blog-story/'
13 '2003/10/la-verite-sort-de-la-bouche-des.html';'articles/2003/10/la-verite-sort-de-la-bouche-des/'
13 '2001/12/lanfeust-des-etoiles.html';'articles/2001/12/lanfeust-des-etoiles/'
13 '2001/11/citation-de-pedro-almodovar.html';'articles/2001/11/citation-de-pedro-almodovar/'
13 '2001/10/noos-y-voila.html';'articles/2001/10/noos-y-voila/'
13 '2001/04/kelkoo-de-pretentieux.html';'articles/2001/04/kelkoo-de-pretentieux/'
13 '2001/01/gruik-gruik.html';'articles/2001/01/gruik-gruik/'
12 'tags/webperf.html';'tags/webperf/'
12 'tags/w3c.html';'tags/w3c/'
12 'tags/vocabulary.html';'tags/vocabulary/'
12 'tags/viewport.html';'tags/viewport/'
12 'tags/tv.html';'tags/tv/'
12 'tags/svg.html';'tags/svg/'
12 'tags/semantic.html';'tags/semantic/'
12 'tags/sculpture.html';'tags/sculpture/'
12 'tags/pwa.html';'tags/pwa/'
12 'tags/push.html';'tags/push/'
12 'tags/piclens.html';'tags/piclens/'
12 'tags/moi.html';'tags/moi/'
12 'tags/macos.html';'tags/macos/'
12 'tags/leisure.html';'tags/leisure/'
12 'tags/itunes.html';'tags/itunes/'
12 'tags/ipad.html';'tags/ipad/'
12 'tags/ios.html';'tags/ios/'
12 'tags/internet-explorer.html';'tags/internet-explorer/'
12 'tags/image.html';'tags/image/'
12 'tags/html.html';'tags/html/'
12 'tags/hosting.html';'tags/hosting/'
12 'tags/grid.html';'tags/grid/'
12 'tags/fun.html';'tags/fun/'
12 'tags/font.html';'tags/font/'
12 'tags/flexbox.html';'tags/flexbox/'
12 'tags/firefox.html';'tags/firefox/'
12 'tags/email.html';'tags/email/'
12 'tags/ebook.html';'tags/ebook/'
12 'tags/diigo.html';'tags/diigo/'
12 'tags/crowdfunding.html';'tags/crowdfunding/'
12 'tags/comic.html';'tags/comic/'
12 'tags/chrome.html';'tags/chrome/'
12 'tags/architecture.html';'tags/architecture/'
12 'tags/alwaysdata.html';'tags/alwaysdata/'
12 'tags/algolia.html';'tags/algolia/'
12 'links/2019/06/send-outgoing-webmentions.html';'links/2019/06/send-outgoing-webmentions/'
12 'links/2019/03/sophisticated-partitioning-with-css-grid.html';'links/2019/03/sophisticated-partitioning-with-css-grid/'
12 'links/2019/01/if-it-s-interactive-it-needs-a-focus-style.html';'links/2019/01/if-it-s-interactive-it-needs-a-focus-style/'
12 'links/2019/01/flutter-the-good-the-bad-and-the-ugly.html';'links/2019/01/flutter-the-good-the-bad-and-the-ugly/'
12 'links/2018/12/your-apps-know-where-you-were-last-night-and-they-re-not-keeping-it-secret.html';'links/2018/12/your-apps-know-where-you-were-last-night-and-they-re-not-keeping-it-secret/'
12 'links/2018/12/the-average-web-page-is-3mb-how-much-should-we-care.html';'links/2018/12/the-average-web-page-is-3mb-how-much-should-we-care/'
12 'articles/2015/09/voulez-vous-une-conference-sur-les-images-responsive-a-confoo/';'articles/2015/09/21/voulez-vous-une-conference-sur-les-images-responsive-a-confoo/'
12 'articles/2015/09/j-ai-ete-interviewe-au-sujet-de-firefox-os/';'articles/2015/09/10/j-ai-ete-interviewe-au-sujet-de-firefox-os/'
12 'articles/2014/04/the-expert/';'articles/2014/04/02/the-expert/'
12 'articles/2013/02/le-ver-est-dans-la-pomme/';'articles/2013/02/14/le-ver-est-dans-la-pomme/'
12 'articles/2012/06/d-autres-visions-de-la-tour-eiffel/';'articles/2012/06/07/d-autres-visions-de-la-tour-eiffel/'
12 'articles/2011/02/un-tri-incomprehensible-des-fuseaux-horaires-sur-txtst-com/';'articles/2011/02/28/un-tri-incomprehensible-des-fuseaux-horaires-sur-txtst-com/'
12 'articles/2011/02/des-formulaires-qui-n-en-ont-pas-l-air-sur-moof-com/';'articles/2011/02/26/des-formulaires-qui-n-en-ont-pas-l-air-sur-moof-com/'
12 'articles/2008/12/capteurs-aps-c-vs-full-frame/';'articles/2008/12/18/capteurs-aps-c-vs-full-frame/'
12 'articles/2008/09/la-reconnaissance-faciale-se-democratise-avec-picasa-web/';'articles/2008/09/18/la-reconnaissance-faciale-se-democratise-avec-picasa-web/'
12 'articles/2008/08/le-jailbreak-de-l-iphone-ou-de-l-ipod-touch-est-il-legal/';'articles/2008/08/08/le-jailbreak-de-l-iphone-ou-de-l-ipod-touch-est-il-legal/'
12 'articles/2008/07/citation-de-j-p-morgan/';'articles/2008/07/07/citation-de-j-p-morgan/'
12 'articles/2008/07/catching-the-sun/';'articles/2008/07/25/catching-the-sun/'
12 'articles/2008/06/microsoft-office-mac-2008-a-un-auto-update-capricieux/';'articles/2008/06/23/microsoft-office-mac-2008-a-un-auto-update-capricieux/'
12 'articles/2008/06/des-jeux-de-bastion-sur-la-ps3/';'articles/2008/06/13/des-jeux-de-bastion-sur-la-ps3/'
12 'articles/2008/05/une-fenetre-de-burano/';'articles/2008/05/16/une-fenetre-de-burano/'
12 'articles/2008/02/web-marchands-abuser-de-la-longue-traine-peut-nuire-a-votre-image/';'articles/2008/02/04/web-marchands-abuser-de-la-longue-traine-peut-nuire-a-votre-image/'
12 'articles/2008/01/session_start-et-exec-ne-font-pas-toujours-bon-menage-en-php/';'articles/2008/01/30/session_start-et-exec-ne-font-pas-toujours-bon-menage-en-php/'
12 'articles/2007/11/savez-vous-ce-qu-est-une-promo/';'articles/2007/11/06/savez-vous-ce-qu-est-une-promo/'
12 'articles/2007/07/google-ne-se-contente-plus-de-proposer-des-termes-approchants-a-vos-recherches/';'articles/2007/07/08/google-ne-se-contente-plus-de-proposer-des-termes-approchants-a-vos-recherches/'
12 'articles/2006/09/clever-age-change-de-look-et-profite-largement-des-nouveautes-de-spip/';'articles/2006/09/28/clever-age-change-de-look-et-profite-largement-des-nouveautes-de-spip/'
12 'articles/2006/04/partageons-nos-savoirs-faisons-revivre-phpheaven-et-phpmychat/';'articles/2006/04/11/partageons-nos-savoirs-faisons-revivre-phpheaven-et-phpmychat/'
12 'articles/2006/01/konika-minolta-arrete-la-photographie/';'articles/2006/01/20/konika-minolta-arrete-la-photographie/'
12 'articles/2005/03/happy-st-patrick-s-day/';'articles/2005/03/17/happy-st-patrick-s-day/'
12 'articles/2005/02/flickrgraph-une-nouvelle-exploitation-fantastique-de-l-api-de-flickr/';'articles/2005/02/09/flickrgraph-une-nouvelle-exploitation-fantastique-de-l-api-de-flickr/'
12 'articles/2005/02/blogmarks-net-est-ouvert/';'articles/2005/02/16/blogmarks-net-est-ouvert/'
12 'articles/2004/06/l-ete-a-paris-sera/';'articles/2004/06/14/l-ete-a-paris-sera/'
12 'articles/2004/06/l-accessibilite-effet-de-mode-ou-reelle-comprehension/';'articles/2004/06/07/l-accessibilite-effet-de-mode-ou-reelle-comprehension/'
12 'articles/2003/03/citation-de-sally-struthers/';'articles/2003/03/25/citation-de-sally-struthers/'
12 'articles/2001/11/citation-de-pedro-almodovar/';'articles/2001/11/07/citation-de-pedro-almodovar/'
12 'articles/2001/09/internet-face-aux-attentats/';'articles/2001/09/11/internet-face-aux-attentats/'
12 'articles/2001/02/1-franc-c-est-peu-et-c-est-enorme/';'articles/2001/02/19/1-franc-c-est-peu-et-c-est-enorme/'
12 'articles/2001/01/les-citees-d-or-moins-mysterieuses/';'articles/2001/01/31/les-citees-d-or-moins-mysterieuses/'
12 'articles/2001/01/journal-d-un-pickpocket/';'articles/2001/01/21/journal-d-un-pickpocket/'
12 'a-propos/de-moi.html';'about/'
12 '2018/05/twitter-search.html';'articles/2018/05/twitter-search/'
12 '2018/05/contextes-opquast.html';'articles/2018/05/contextes-opquast/'
12 '2016/08/a-bridge-not-so-far.html';'articles/2016/08/a-bridge-not-so-far/'
12 '2015/08/c-est-une-activite-belle-et-absurde-de-parler-a-un-abruti-aussi-absolu-que-l-ordinateur.html';'articles/2015/08/c-est-une-activite-belle-et-absurde-de-parler-a-un-abruti-aussi-absolu-que-l-ordinateur/'
12 '2014/12/un-nouveau-rubriquage-de-nouvelles-url.html';'articles/2014/12/un-nouveau-rubriquage-de-nouvelles-url/'
12 '2013/12/les-spammeurs-vils-flatteurs.html';'articles/2013/12/les-spammeurs-vils-flatteurs/'
12 '2013/02/les-bonnes-pratiques-webperf-toujours-sous-la-main.html';'articles/2013/02/les-bonnes-pratiques-webperf-toujours-sous-la-main/'
12 '2012/09/votre-vie-privee-doit-le-rester-ne-vous-exposez-pas-dangereusement.html';'articles/2012/09/votre-vie-privee-doit-le-rester-ne-vous-exposez-pas-dangereusement/'
12 '2012/05/la-plaza-de-toros-a-ronda-en-andalousie.html';'articles/2012/05/la-plaza-de-toros-a-ronda-en-andalousie/'
12 '2012/04/my-best-profile.html';'articles/2012/04/my-best-profile/'
12 '2012/03/de-la-dance-hip-hop-lumineuse.html';'articles/2012/03/de-la-dance-hip-hop-lumineuse/'
12 '2012/01/plongee-en-contre-plongee.html';'articles/2012/01/plongee-en-contre-plongee/'
12 '2010/06/faciliter-la-reprise-de-tweets-les-retweets-a-l-ancienne-sur-twitter.html';'articles/2010/06/faciliter-la-reprise-de-tweets-les-retweets-a-l-ancienne-sur-twitter/'
12 '2010/02/google-chrome-sur-mac-bilan-mitige.html';'articles/2010/02/google-chrome-sur-mac-bilan-mitige/'
12 '2009/12/qui-a-gagne-un-million.html';'articles/2009/12/qui-a-gagne-un-million/'
12 '2009/02/bruxelles.html';'articles/2009/02/bruxelles/'
12 '2008/12/rusty.html';'articles/2008/12/rusty/'
12 '2008/09/a-quand-un-macbook-helium-pour-concurrencer-les-asus-eee-pc-msi-wind-et-autres-medion-akoya.html';'articles/2008/09/a-quand-un-macbook-helium-pour-concurrencer-les-asus-eee-pc-msi-wind-et-autres-medion-akoya/'
12 '2008/08/tineye-progresse-a-grands-pas.html';'articles/2008/08/tineye-progresse-a-grands-pas/'
12 '2008/06/microsoft-office-mac-2008-a-un-auto-update-capricieux.html';'articles/2008/06/microsoft-office-mac-2008-a-un-auto-update-capricieux/'
12 '2007/07/les-commentaires-sur-les-articles-sont-maintenant-disponibles-par-discussion-ou-ordre-chronologique-au-choix.html';'articles/2007/07/les-commentaires-sur-les-articles-sont-maintenant-disponibles-par-discussion-ou-ordre-chronologique-au-choix/'
12 '2007/06/createurs-de-sites-web-2-0-ne-sous-estimez-pas-la-force-de-votre-communaute.html';'articles/2007/06/createurs-de-sites-web-2-0-ne-sous-estimez-pas-la-force-de-votre-communaute/'
12 '2006/09/clever-age-change-de-look-et-profite-largement-des-nouveautes-de-spip.html';'articles/2006/09/clever-age-change-de-look-et-profite-largement-des-nouveautes-de-spip/'
12 '2006/05/flickr-passe-en-version-gamma-avec-une-nouvelle-interface.html';'articles/2006/05/flickr-passe-en-version-gamma-avec-une-nouvelle-interface/'
12 '2006/01/konika-minolta-arrete-la-photographie.html';'articles/2006/01/konika-minolta-arrete-la-photographie/'
12 '2005/02/britney-spears-en-duo-avec-daft-punk.html';'articles/2005/02/britney-spears-en-duo-avec-daft-punk/'
12 '2004/11/mozilla-firefox-1-0-enfin-dans-toutes-les-bonnes-cremeries.html';'articles/2004/11/mozilla-firefox-1-0-enfin-dans-toutes-les-bonnes-cremeries/'
12 '2004/06/l-accessibilite-effet-de-mode-ou-reelle-comprehension.html';'articles/2004/06/l-accessibilite-effet-de-mode-ou-reelle-comprehension/'
12 '2004/03/citation-de-chateaubriand.html';'articles/2004/03/citation-de-chateaubriand/'
12 '2003/11/citation-d-alphonse-allais.html';'articles/2003/11/citation-d-alphonse-allais/'
12 '2002/11/citation-de-peter-gabriel.html';'articles/2002/11/citation-de-peter-gabriel/'
12 '2002/02/pika-pi-chuuu-pikachu.html';'articles/2002/02/pika-pi-chuuu-pikachu/'
12 '2001/08/cine-au-clair-de-lune.html';'articles/2001/08/cine-au-clair-de-lune/'
12 '2001/02/la-verite.html';'articles/2001/02/la-verite/'
12 '2001/02/l-autre-portail-des-copains.html';'articles/2001/02/l-autre-portail-des-copains/'
12 '2001/02/arnaque-organisee-legalement-6-0-est-sorti.html';'articles/2001/02/arnaque-organisee-legalement-6-0-est-sorti/'
12 '2001/01/tout-mondino-en-livre-et-en-ligne.html';'articles/2001/01/tout-mondino-en-livre-et-en-ligne/'
11 'tags/windows.html';'tags/windows/'
11 'tags/video.html';'tags/video/'
11 'tags/social-network.html';'tags/social-network/'
11 'tags/phototrend.html';'tags/phototrend/'
11 'tags/phone.html';'tags/phone/'
11 'tags/opquast.html';'tags/opquast/'
11 'tags/netbook.html';'tags/netbook/'
11 'tags/media.html';'tags/media/'
11 'tags/literature.html';'tags/literature/'
11 'tags/jpg-magazine.html';'tags/jpg-magazine/'
11 'tags/https.html';'tags/https/'
11 'tags/development.html';'tags/development/'
11 'tags/design.html';'tags/design/'
11 'tags/bullshit.html';'tags/bullshit/'
11 'tags/backup.html';'tags/backup/'
11 'tags/62-5.html';'tags/62-5/'
11 'tags/404.html';'tags/404/'
11 'search.html';'search/'
11 'links/2019/08/how-https-works-in-a-comic/';'links/2019/08/30/how-https-works-in-a-comic/'
11 'links/2019/07/improving-the-speed-and-accuracy-of-the-item-page-with-light-service.html';'links/2019/07/improving-the-speed-and-accuracy-of-the-item-page-with-light-service/'
11 'links/2019/06/web-quality-checklist.html';'links/2019/06/web-quality-checklist/'
11 'links/2019/05/implementing-a-mockup-css-layout-step-by-step/';'links/2019/05/07/implementing-a-mockup-css-layout-step-by-step/'
11 'links/2019/01/the-legacy-of-firefox-os.html';'links/2019/01/the-legacy-of-firefox-os/'
11 'links/2019/01/signal-v-noise-exits-medium.html';'links/2019/01/signal-v-noise-exits-medium/'
11 'links/2019/01/passwords-evolved-authentication-guidance-for-the-modern-era.html';'links/2019/01/passwords-evolved-authentication-guidance-for-the-modern-era/'
11 'links/2018/12/what-if.html';'links/2018/12/what-if/'
11 'links/2018/12/metrics-from-1m-sites.html';'links/2018/12/metrics-from-1m-sites/'
11 'links/2018/12/font-style-matcher.html';'links/2018/12/font-style-matcher/'
11 'links/2018/09/software-disenchantment.html';'links/2018/09/software-disenchantment/'
11 'divers/surveillez-vos-erreurs-404-elles-peuvent-etre-tres-instructives';'2008/06/surveillez-vos-erreurs-404-elles-peuvent-etre-tres-instructives.html'
11 'divers/quelle-version-du-dock-thunderbolt-belkin-choisir';'http://nicolas-hoizey.com/2015/01/quelle-version-du-dock-thunderbolt-belkin-choisir.html'
11 'blog/surveillez-vos-erreurs-404-elles-peuvent-etre-tres-instructives.html';'http://nicolas-hoizey.com/surveillez-vos-erreurs-404-elles-peuvent-etre-tres-instructives.html'
11 'articles/2016/06/the-dna-journey/';'articles/2016/06/03/the-dna-journey/'
11 'articles/2014/01/mes-tweets-les-plus-marquants-de-2013/';'articles/2014/01/06/mes-tweets-les-plus-marquants-de-2013/'
11 'articles/2013/07/how-google-is-killing-organic-search/';'articles/2013/07/03/how-google-is-killing-organic-search/'
11 'articles/2012/08/homebrew-sur-mountain-lion/';'articles/2012/08/02/homebrew-sur-mountain-lion/'
11 'articles/2012/07/renault-des-voitures-a-vivre-des-sensations-fortes/';'articles/2012/07/04/renault-des-voitures-a-vivre-des-sensations-fortes/'
11 'articles/2010/04/citation-de-douglas-adams/';'articles/2010/04/19/citation-de-douglas-adams/'
11 'articles/2010/01/bambi/';'articles/2010/01/07/bambi/'
11 'articles/2009/07/face-to-face/';'articles/2009/07/29/face-to-face/'
11 'articles/2009/02/splitgames-n-est-il-destine-qu-aux-hardcore-gamers/';'articles/2009/02/04/splitgames-n-est-il-destine-qu-aux-hardcore-gamers/'
11 'articles/2009/01/ziki-aime-les-doublons-et-plus-si-affinite/';'articles/2009/01/30/ziki-aime-les-doublons-et-plus-si-affinite/'
11 'articles/2008/09/nouvelle-tempete-sur-les-flux-rss-reduisons-les-intermediaires/';'articles/2008/09/26/nouvelle-tempete-sur-les-flux-rss-reduisons-les-intermediaires/'
11 'articles/2008/08/microsoft-project-c-est-culte/';'articles/2008/08/08/microsoft-project-c-est-culte/'
11 'articles/2008/07/il-ne-faut-pas-confondre-quantite-et-qualite/';'articles/2008/07/09/il-ne-faut-pas-confondre-quantite-et-qualite/'
11 'articles/2008/02/i-like-the-wind/';'articles/2008/02/12/i-like-the-wind/'
11 'articles/2007/07/si-vous-regrettez-aibo-et-trouvez-nabaztag-trop-statique-voila-pleo/';'articles/2007/07/11/si-vous-regrettez-aibo-et-trouvez-nabaztag-trop-statique-voila-pleo/'
11 'articles/2007/05/ergonomie-a-revoir-inscription-pour-apple-expo-2007/';'articles/2007/05/10/ergonomie-a-revoir-inscription-pour-apple-expo-2007/'
11 'articles/2006/11/ergonomie-a-revoir-rowenta/';'articles/2006/11/27/ergonomie-a-revoir-rowenta/'
11 'articles/2006/06/citation-de-nelson-mandela/';'articles/2006/06/07/citation-de-nelson-mandela/'
11 'articles/2006/04/des-services-web-rest-encore-plus-simples-qu-avec-xml/';'articles/2006/04/13/des-services-web-rest-encore-plus-simples-qu-avec-xml/'
11 'articles/2005/12/quand-le-confort-d-un-internaute-met-en-peril-celui-des-autres/';'articles/2005/12/06/quand-le-confort-d-un-internaute-met-en-peril-celui-des-autres/'
11 'articles/2005/07/microsoft-se-re-lance-a-fond-dans-les-standards-du-web/';'articles/2005/07/22/microsoft-se-re-lance-a-fond-dans-les-standards-du-web/'
11 'articles/2005/05/la-verite-est-ailleurs/';'articles/2005/05/01/la-verite-est-ailleurs/'
11 'articles/2005/02/creative-zen-micro-l-offensive-contre-le-ipod-mini-de-apple-est-lancee/';'articles/2005/02/22/creative-zen-micro-l-offensive-contre-le-ipod-mini-de-apple-est-lancee/'
11 'articles/2005/01/2005-la-fin-des-blogs/';'articles/2005/01/26/2005-la-fin-des-blogs/'
11 'articles/2004/05/l-ombre-d-un-doute/';'articles/2004/05/24/l-ombre-d-un-doute/'
11 'articles/2003/12/les-kids-ecrivent-a-michael-moore/';'articles/2003/12/23/les-kids-ecrivent-a-michael-moore/'
11 'articles/2003/06/citation-de-ciceron/';'articles/2003/06/03/citation-de-ciceron/'
11 'articles/2002/11/citation-de-bill-waterson/';'articles/2002/11/08/citation-de-bill-waterson/'
11 'articles/2002/11/albator-en-chair-et-en-os/';'articles/2002/11/08/albator-en-chair-et-en-os/'
11 'articles/2002/02/pika-pi-chuuu-pikachu/';'articles/2002/02/27/pika-pi-chuuu-pikachu/'
11 'articles/2001/11/citation-de-stephen-king/';'articles/2001/11/07/citation-de-stephen-king/'
11 'articles/2001/11/citation-de-john-burroughs/';'articles/2001/11/07/citation-de-john-burroughs/'
11 'articles/2001/11/citation-de-gerard-lefort/';'articles/2001/11/07/citation-de-gerard-lefort/'
11 'articles/2001/11/citation-de-fatboy-slim/';'articles/2001/11/07/citation-de-fatboy-slim/'
11 'articles/2001/11/citation-d-alan-j-perlis/';'articles/2001/11/07/citation-d-alan-j-perlis/'
11 'articles/2001/09/sieste-musicale-avec-roudoudou/';'articles/2001/09/07/sieste-musicale-avec-roudoudou/'
11 'articles/2001/09/bush-nobel-de-la-paix/';'articles/2001/09/25/bush-nobel-de-la-paix/'
11 'articles/2001/08/attack-of-the-clones/';'articles/2001/08/09/attack-of-the-clones/'
11 'articles/2001/07/l-impact-des-nouveaux-formats-de-pub/';'articles/2001/07/26/l-impact-des-nouveaux-formats-de-pub/'
11 'articles/2001/07/12eme-festival-de-cinema-en-plein-air/';'articles/2001/07/24/12eme-festival-de-cinema-en-plein-air/'
11 'articles/2001/01/tout-mondino-en-livre-et-en-ligne/';'articles/2001/01/21/tout-mondino-en-livre-et-en-ligne/'
11 'articles/2001/01/passez-vos-couleurs-au-mixer/';'articles/2001/01/30/passez-vos-couleurs-au-mixer/'
11 'articles/2001/01/aldeus/';'articles/2001/01/30/aldeus/'
11 'a-propos/';'about/'
11 'about/';'about/'
11 '2016/08/ripe.html';'articles/2016/08/ripe/'
11 '2016/08/faciliteur-ou-facilitateur.html';'articles/2016/08/faciliteur-ou-facilitateur/'
11 '2016/08/cloudinary-fait-la-promotion-de-mon-plugin-jekyll.html';'articles/2016/08/cloudinary-fait-la-promotion-de-mon-plugin-jekyll/'
11 '2015/07/test-du-sac-a-dos-photo-kontrast-pro-de-case-logic-pour-phototrend.html';'articles/2015/07/test-du-sac-a-dos-photo-kontrast-pro-de-case-logic-pour-phototrend/'
11 '2014/04/the-expert.html';'articles/2014/04/the-expert/'
11 '2014/03/sakura.html';'articles/2014/03/sakura/'
11 '2012/04/l-atelier-miniature.html';'articles/2012/04/l-atelier-miniature/'
11 '2012/03/utiliser-spip-3-chez-alwaysdata.html';'articles/2012/03/utiliser-spip-3-chez-alwaysdata/'
11 '2011/06/ils-ont-aussi-de-grandes-poches-a-la-ratp.html';'articles/2011/06/ils-ont-aussi-de-grandes-poches-a-la-ratp/'
11 '2011/03/des-facettes-de-recherches-inexploitables-sur-01net-com.html';'articles/2011/03/des-facettes-de-recherches-inexploitables-sur-01net-com/'
11 '2011/02/des-formulaires-qui-n-en-ont-pas-l-air-sur-moof-com.html';'articles/2011/02/des-formulaires-qui-n-en-ont-pas-l-air-sur-moof-com/'
11 '2010/07/faut-il-continuer-a-supporter-internet-explorer-6.html';'articles/2010/07/faut-il-continuer-a-supporter-internet-explorer-6/'
11 '2009/06/shameless-self-promotion.html';'articles/2009/06/shameless-self-promotion/'
11 '2009/05/dtc.html';'articles/2009/05/dtc/'
11 '2008/07/mes-conventions-de-codage.html';'articles/2008/07/mes-conventions-de-codage/'
11 '2008/04/yeeeh-haaaaah-target-locked.html';'articles/2008/04/yeeeh-haaaaah-target-locked/'
11 '2008/02/c-est-la-saison-migratoire.html';'articles/2008/02/c-est-la-saison-migratoire/'
11 '2008/01/3g-m-a-tuer-ou-comment-j-en-suis-venu-a-accuser-safari-par-erreur.html';'articles/2008/01/3g-m-a-tuer-ou-comment-j-en-suis-venu-a-accuser-safari-par-erreur/'
11 '2007/12/un-exemple-de-jointures-entre-plusieurs-tables-dans-une-boucle-spip.html';'articles/2007/12/un-exemple-de-jointures-entre-plusieurs-tables-dans-une-boucle-spip/'
11 '2007/11/veronique-et-davina-peuvent-aller-se-rhabiller.html';'articles/2007/11/veronique-et-davina-peuvent-aller-se-rhabiller/'
11 '2007/11/savez-vous-ce-qu-est-une-promo.html';'articles/2007/11/savez-vous-ce-qu-est-une-promo/'
11 '2007/03/un-encouragement-vu-du-ciel.html';'articles/2007/03/un-encouragement-vu-du-ciel/'
11 '2006/11/ergonomie-a-revoir-cashstore-fr.html';'articles/2006/11/ergonomie-a-revoir-cashstore-fr/'
11 '2006/06/citation-de-nelson-mandela.html';'articles/2006/06/citation-de-nelson-mandela/'
11 '2006/04/partageons-nos-savoirs-faisons-revivre-phpheaven-et-phpmychat.html';'articles/2006/04/partageons-nos-savoirs-faisons-revivre-phpheaven-et-phpmychat/'
11 '2006/04/des-services-web-rest-encore-plus-simples-qu-avec-xml.html';'articles/2006/04/des-services-web-rest-encore-plus-simples-qu-avec-xml/'
11 '2006/01/css-on-reprend-tout-a-zero.html';'articles/2006/01/css-on-reprend-tout-a-zero/'
11 '2005/12/quand-le-confort-d-un-internaute-met-en-peril-celui-des-autres.html';'articles/2005/12/quand-le-confort-d-un-internaute-met-en-peril-celui-des-autres/'
11 '2005/12/oh-joie.html';'articles/2005/12/oh-joie/'
11 '2005/01/picasa-2-est-arrive.html';'articles/2005/01/picasa-2-est-arrive/'
11 '2005/01/nostalgie.html';'articles/2005/01/nostalgie/'
11 '2004/12/citation-de-bob-monkhouse.html';'articles/2004/12/citation-de-bob-monkhouse/'
11 '2004/06/l-ete-a-paris-sera.html';'articles/2004/06/l-ete-a-paris-sera/'
11 '2003/12/google-est-trop-traduit.html';'articles/2003/12/google-est-trop-traduit/'
11 '2003/04/une-arborescence-dynamique-et-contextuelle.html';'articles/2003/04/une-arborescence-dynamique-et-contextuelle/'
11 '2001/11/citation-d-hipolito.html';'articles/2001/11/citation-d-hipolito/'
11 '2001/11/citation-de-john-burroughs.html';'articles/2001/11/citation-de-john-burroughs/'
11 '2001/01/telephone-jetable.html';'articles/2001/01/telephone-jetable/'
11 '2001/01/passez-vos-couleurs-au-mixer.html';'articles/2001/01/passez-vos-couleurs-au-mixer/'
10 'tags/writing.html';'tags/writing/'
10 'tags/webmention.html';'tags/webmention/'
10 'tags/web-2-0.html';'tags/web-2-0/'
10 'tags/tineye.html';'tags/tineye/'
10 'tags/technology.html';'tags/technology/'
10 'tags/rem.html';'tags/rem/'
10 'tags/phpheaven.html';'tags/phpheaven/'
10 'tags/password.html';'tags/password/'
10 'tags/night.html';'tags/night/'
10 'tags/music.html';'tags/music/'
10 'tags/mozilla.html';'tags/mozilla/'
10 'tags/jquery.html';'tags/jquery/'
10 'tags/gif.html';'tags/gif/'
10 'tags/gear.html';'tags/gear/'
10 'tags/game.html';'tags/game/'
10 'tags/firefox-os.html';'tags/firefox-os/'
10 'tags/feedburner.html';'tags/feedburner/'
10 'tags/empathy.html';'tags/empathy/'
10 'tags/ecommerce.html';'tags/ecommerce/'
10 'tags/dotclear.html';'tags/dotclear/'
10 'tags/daft-punk.html';'tags/daft-punk/'
10 'links/2019/12/good-enough/';'links/2019/12/10/good-enough/'
10 'links/2019/11/trackers-on-your-domain-revenue-risk.html';'links/2019/11/trackers-on-your-domain-revenue-risk/'
10 'links/2019/09/can-i-email.html';'links/2019/09/can-i-email/'
10 'links/2019/09/caching-best-practices-max-age-gotchas/';'links/2019/09/10/caching-best-practices-max-age-gotchas/'
10 'links/2019/07/the-importance-of-elegance.html';'links/2019/07/the-importance-of-elegance/'
10 'links/2019/06/the-perils-of-functional-css.html';'links/2019/06/the-perils-of-functional-css/'
10 'links/2019/04/progressive-font-enrichment-reinventing-web-font-performance.html';'links/2019/04/progressive-font-enrichment-reinventing-web-font-performance/'
10 'links/2019/02/file-web-share-target.html';'links/2019/02/file-web-share-target/'
10 'links/2019/01/the-rule-of-least-power.html';'links/2019/01/the-rule-of-least-power/'
10 'links/2018/12/is-there-a-cold-war-between-android-and-chrome-because-of-pwas.html';'links/2018/12/is-there-a-cold-war-between-android-and-chrome-because-of-pwas/'
10 'links/2018/12/css-indexes-a-listing-of-every-term-defined-by-css-specs.html';'links/2018/12/css-indexes-a-listing-of-every-term-defined-by-css-specs/'
10 'links/2018/12/creating-distraction-free-reading-experiences.html';'links/2018/12/creating-distraction-free-reading-experiences/'
10 'humans.txt';'humans.txt'
10 'blog/the-expert';'http://nicolas-hoizey.com/the-expert'
10 'blog/halte-au-vol-de-bande-passante.html';'http://nicolas-hoizey.com/halte-au-vol-de-bande-passante.html'
10 'blog/futur-freenaute-en-quete-de-conseils.html';'http://nicolas-hoizey.com/futur-freenaute-en-quete-de-conseils.html'
10 'blog/.env';'http://nicolas-hoizey.com/.env'
10 'articles/2015/05/new-york-hors-des-sentiers-battus/';'articles/2015/05/27/new-york-hors-des-sentiers-battus/'
10 'articles/2014/04/layered-symmetry/';'articles/2014/04/04/layered-symmetry/'
10 'articles/2013/01/l-avenir-du-web-se-prepare-aujourd-hui/';'articles/2013/01/25/l-avenir-du-web-se-prepare-aujourd-hui/'
10 'articles/2010/05/la-belle/';'articles/2010/05/21/la-belle/'
10 'articles/2008/12/rusty/';'articles/2008/12/18/rusty/'
10 'articles/2008/12/recolte-sur-une-campanule/';'articles/2008/12/11/recolte-sur-une-campanule/'
10 'articles/2008/10/citation-de-albert-einstein/';'articles/2008/10/09/citation-de-albert-einstein/'
10 'articles/2008/08/google-a-t-il-encore-des-concurrents/';'articles/2008/08/06/google-a-t-il-encore-des-concurrents/'