Repository with sources and generator of https://larlet.fr/david/ https://larlet.fr/david/
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.html 30KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  1. <!DOCTYPE html><!-- This is a valid HTML5 document. -->
  2. <!-- Screen readers, SEO, extensions and so on. -->
  3. <html lang="fr">
  4. <!-- Has to be within the first 1024 bytes, hence before the `title` element
  5. See: https://www.w3.org/TR/2012/CR-html5-20121217/document-metadata.html#charset -->
  6. <meta charset="utf-8">
  7. <!-- Why no `X-UA-Compatible` meta: https://stackoverflow.com/a/6771584 -->
  8. <!-- The viewport meta is quite crowded and we are responsible for that.
  9. See: https://codepen.io/tigt/post/meta-viewport-for-2015 -->
  10. <meta name="viewport" content="width=device-width,initial-scale=1">
  11. <!-- Required to make a valid HTML5 document. -->
  12. <title>
  13. Tag #écriture
  14. — David Larlet</title>
  15. <meta name="description" content="Publications relatives au tag #écriture">
  16. <!-- That good ol' feed, subscribe :). -->
  17. <link rel="alternate"
  18. type="application/atom+xml"
  19. title="Feed"
  20. href="/david/log/">
  21. <!-- Generated from https://realfavicongenerator.net/ such a mess. -->
  22. <link rel="apple-touch-icon"
  23. sizes="180x180"
  24. href="/static/david/icons2/apple-touch-icon.png">
  25. <link rel="icon"
  26. type="image/png"
  27. sizes="32x32"
  28. href="/static/david/icons2/favicon-32x32.png">
  29. <link rel="icon"
  30. type="image/png"
  31. sizes="16x16"
  32. href="/static/david/icons2/favicon-16x16.png">
  33. <link rel="manifest" href="/static/david/icons2/site.webmanifest">
  34. <link rel="mask-icon"
  35. href="/static/david/icons2/safari-pinned-tab.svg"
  36. color="#07486c">
  37. <link rel="shortcut icon" href="/static/david/icons2/favicon.ico">
  38. <meta name="msapplication-TileColor" content="#f7f7f7">
  39. <meta name="msapplication-config"
  40. content="/static/david/icons2/browserconfig.xml">
  41. <meta name="theme-color"
  42. content="#f7f7f7"
  43. media="(prefers-color-scheme: light)">
  44. <meta name="theme-color"
  45. content="#272727"
  46. media="(prefers-color-scheme: dark)">
  47. <!-- Documented, feel free to shoot an email. -->
  48. <link rel="stylesheet" href="/static/david/css/style_2021-01-20.css">
  49. <!-- See https://www.zachleat.com/web/comprehensive-webfonts/ for the trade-off. -->
  50. <link rel="preload"
  51. href="/static/david/css/fonts/triplicate_t4_poly_regular.woff2"
  52. as="font"
  53. type="font/woff2"
  54. media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  55. crossorigin>
  56. <link rel="preload"
  57. href="/static/david/css/fonts/triplicate_t4_poly_bold.woff2"
  58. as="font"
  59. type="font/woff2"
  60. media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  61. crossorigin>
  62. <link rel="preload"
  63. href="/static/david/css/fonts/triplicate_t4_poly_italic.woff2"
  64. as="font"
  65. type="font/woff2"
  66. media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  67. crossorigin>
  68. <link rel="preload"
  69. href="/static/david/css/fonts/triplicate_t3_regular.woff2"
  70. as="font"
  71. type="font/woff2"
  72. media="(prefers-color-scheme: dark)"
  73. crossorigin>
  74. <link rel="preload"
  75. href="/static/david/css/fonts/triplicate_t3_bold.woff2"
  76. as="font"
  77. type="font/woff2"
  78. media="(prefers-color-scheme: dark)"
  79. crossorigin>
  80. <link rel="preload"
  81. href="/static/david/css/fonts/triplicate_t3_italic.woff2"
  82. as="font"
  83. type="font/woff2"
  84. media="(prefers-color-scheme: dark)"
  85. crossorigin>
  86. <script>
  87. function toggleTheme(themeName) {
  88. document.documentElement.classList.toggle(
  89. 'forced-dark',
  90. themeName === 'dark'
  91. )
  92. document.documentElement.classList.toggle(
  93. 'forced-light',
  94. themeName === 'light'
  95. )
  96. }
  97. const selectedTheme = localStorage.getItem('theme')
  98. if (selectedTheme !== 'undefined') {
  99. toggleTheme(selectedTheme)
  100. }
  101. </script>
  102. <style type="text/css">
  103. details[open] summary {
  104. display: none;
  105. }
  106. </style>
  107. <body class="remarkdown h1-underline h2-underline h3-underline em-underscore hr-center ul-star pre-tick"
  108. data-instant-intensity="viewport-all">
  109. <header>
  110. <h1>Publications relatives au tag #écriture</h1>
  111. </header>
  112. <nav>
  113. <p class="center">
  114. <a href="/david/" title="Aller à l’accueil">
  115. <svg class="icon icon-home">
  116. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  117. </svg>
  118. Accueil</a>
  119. • <a rel="tags"
  120. href="/david/#tags-2023"
  121. title="Liste de toutes les étiquettes">
  122. <svg class="icon icon-tags">
  123. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-tags"></use>
  124. </svg>
  125. Étiquettes</a>
  126. </p>
  127. </nav>
  128. <hr>
  129. <main>
  130. <p>Les plus récentes en premier, les 3 premières sont dépliées et ensuite c’est à la demande, bonne exploration !</p>
  131. <h2>
  132. <a href="/david/2023/09/13/" title="Lien permanent vers cet article">Documentation</a> (2023-09-13)
  133. </h2>
  134. <blockquote lang="en">
  135. <p>The deeper I dig into my research, the more case studies and examples I find. Institutional memory is frequently overlooked and undervalued - until the moment when someone needs access to memory right now, and of course by then it’s too late. Good remembering means turning tacit knowledge into explicit knowledge; <mark>if all your tacit knowledge has left the building inside the heads of former colleagues, it’s lost to you&nbsp;forever.</mark></p>
  136. <p>So I think there’s a case for allowing and encouraging documentation for teams, just as much as documentation for software. Writing that documentation is a task, It needs to be part of someone’s job. Every organisation needs a little bit of storytelling capability, to help make that job&nbsp;easier.</p>
  137. <p><cite><em><a href="https://gilest.org/htr.html">How teams remember</a></em>&nbsp;(<a href="/david/cache/2023/5a9fa7db62f151b8a863b949ed4e9e5f/">cache</a>)</cite></p>
  138. </blockquote>
  139. <p>J’ai développé un outil pour Scopyleft l’année dernière qui s’intitule «&nbsp;Le Voilier&nbsp;». Il s’agit d’un lieux où l’on consigne nos discussions, propositions et résolutions. C’était important car il y avait pas mal de perte/dilution d’information orale, ce qui est classique en équipes distribuées qui grandissent. Depuis un an et demi, il y a 381&nbsp;sujets qui ont été consignés dans ce <a href="/david/2022/12/19/">journal</a> de bord collectif, c’est un outil vivant. Des fonctionnalités bourgeonnent ou passent au compost au gré des besoins, c’est assez plaisant d’avoir la flexibilité de connaître le générateur du site (350&nbsp;lignes de Python à ce jour) et de pouvoir sortir du cadre sans que ce soit trop&nbsp;douloureux.</p>
  140. <p>Cela a commencé avec un site totalement statique qui était (re)construit par l’intégration continue à chaque ajout de fichier <em>markdown</em> avec les bonnes méta-données dans un dossier dédié. Classique. C’était facile pour les personnes familières de git(lab) mais moins pratique pour celles qui ne le sont pas, notamment lorsqu’il faut prendre des notes en séance. L’expérience utilisateur·ice des forges logicielles n’est pas vraiment adaptée à un tel usage, surtout dans un contexte de charge cognitive&nbsp;élevée.</p>
  141. <p>J’ai donc transformé cela en site <em>semynamique</em> 🌱&nbsp;: on reste sur la même infrastructure mais je rajoute un formulaire (toujours statique) qui va soumettre les données vers une seule fonction Python/wsgi qui consiste à créer le fichier <em>markdown</em> conforme aux attentes de l’outil et à le pousser sur le dépôt. Cela a rendu l’outil plus accessible et avenant. Depuis, j’ai décliné ce principe pour d’autres <em>scenarii</em> avec de bons&nbsp;retours.</p>
  142. <p>Avec l’expérience et un petit script de déploiement, cela me prend moins d’une heure à mettre en place sur AlwaysData avec un strict minimum de maintenance. J’ai une relative tranquillité d’esprit aussi car seule une petite partie du site serait inutilisable si le service tombait et il reste la possibilité d’ajouter des fichiers dans git à la main s’il y avait une&nbsp;urgence.</p>
  143. <p>Je ne sais pas trop quoi faire à partir de là, je me dis que ça pourrait en inspirer d’autres. Entre les sites purement statiques et les usines à gaz en JS, il y a tout un dégradé de couleurs enthousiasmantes, certaines restant à&nbsp;découvrir&#8239;!</p>
  144. <p><em>Peut-être qu’à un moment, on pourrait aussi proposer un catalogue d’outils utiles aux coopératives — à l’instar de <a href="https://paheko.cloud/">Paheko</a> pour les&nbsp;associations…</em></p>
  145. <hr />
  146. <blockquote>
  147. <p>🏡 Une grande partie de mon entourage est déjà propriétaire. Ça en dit long sur la sphère dans laquelle j’évolue. J’ai l’impression que le fait d’acheter une maison fait partie de la liste non-négociable d’une vie réussie dans notre monde capitaliste. Jusqu’à très récemment, je n’avais jamais interrogé ce&nbsp;postulat.</p>
  148. <p><cite><em><a href="https://ynote.hk/mots/argent/propriete.html">Propriété par Fanny Cheung</a></em>&nbsp;(<a href="/david/cache/2023/37b0c9d01d6f788bee398b64377cb6c1/">cache</a>)</cite></p>
  149. </blockquote>
  150. <blockquote lang="en">
  151. <p>🔨 Yes, it’s fair to point out that AI in its many different software manifestations can be considered a tool. But that is not the point of the statement. The word to watch out for is “just”. If someone were to say ”it’s a tool”, that makes sense. But the word “just” is there to shed&nbsp;accountability.</p>
  152. <p>Hence my concern is that the statement itself removes accountability and consideration for the bigger picture effects. <mark>Saying something is just a tool creates the faulty mental model</mark> of all tools having interchangeable qualities from an ethical perspective, which simply isn’t&nbsp;true.</p>
  153. <p><cite><em><a href="https://axbom.com/hammer-ai/">If a hammer was like AI…</a></em>&nbsp;(<a href="/david/cache/2023/aac3c4716f9ff73e7409ecbc9550491b/">cache</a>)</cite></p>
  154. </blockquote>
  155. <blockquote lang="en">
  156. <p>💯 When it comes to front-end development, I’m worried that we’ve reached a state where the more complex over-engineered approach is viewed as the&nbsp;default.</p>
  157. <p>I may be committing a fundamental attribution error here, but I think that we’ve reached this point not because of any consideration for users, but rather <mark>because of how it makes us developers feel.</mark> Perhaps building an old-fashioned website that uses HTML for navigations feels too easy, like it’s beneath us. But building an “app” that requires JavaScript just to render text on a screen feels like <em>real</em>&nbsp;programming.</p>
  158. <p><cite><em><a href="https://adactio.com/journal/20442">Multi-page web apps</a></em>&nbsp;(<a href="/david/cache/2023/efc348f6559d55129657c7ba9d740b76/">cache</a>)</cite></p>
  159. </blockquote>
  160. <h2>
  161. <a href="/david/2023/09/06/" title="Lien permanent vers cet article">Retour</a> (2023-09-06)
  162. </h2>
  163. <blockquote lang="en">
  164. <p>The app will eventually become obsolete. It’s the plain text files I create that are designed to last. Who knows if anyone will want to read them besides me, but <em>future me</em> is enough of an audience to make it&nbsp;worthwhile.</p>
  165. <p><cite><em><a href="https://stephango.com/file-over-app">File over app - Steph Ango</a></em>&nbsp;(<a href="/david/cache/2023/20d288eb47779c4f1b3f36fb86aa7108/">cache</a>)</cite></p>
  166. </blockquote>
  167. <p>Je vais revenir délicatement publier par ici. Ces derniers mois ont été… mmh, agités… mais je commence à retrouver un certain équilibre. Beaucoup de phases qui ne s’articulaient pas comme je l’espérais, d’attention trop superficielle mal compensée, au milieu d’une grosse <a href="/david/2023/01/23/" title="Déception">déception</a> qui a laissé des traces profondes. J’aurais au moins appris la différence entre l’inspiration et la manipulation. <em>The Hard Way™</em>. Je suis très reconnaissant envers toutes les personnes qui ont fait que je ne me suis pas senti trop isolé ou vulnérable pendant cette&nbsp;période.</p>
  168. <p>Grâce à un départ, <a href="http://scopyleft.fr/">Scopyleft</a> prend une <a href="/david/2021/03/17/">autre dimension</a> et redéfinit ses aspirations collectivement à travers des échanges plus sains et apaisés. Un arbre tombe et de nombreuses autres espèces arrivent enfin à capter la lumière pour proposer un autre paysage, envisager un nouvel écosystème&nbsp;🌻🐝.</p>
  169. <hr />
  170. <p>Et puis, j’ai des dizaines d’onglets à partager à mon <em>futur moi</em>.</p>
  171. <blockquote lang="en">
  172. <p>💭 If you’re more a guess-culture person, asking people for help without knowing their circumstances can feel rude or intrusive. Broadcasting publicly your need for help can feel awkward and&nbsp;vulnerable.</p>
  173. <p>If you’re more of an ask-culture person, the guess-culture example of juggling everyone’s specific scenarios and the historical context of favors <mark>probably seems exhausting.</mark> Dropping hints in the hopes that you won’t even have to make your request can feel extra passive and&nbsp;manipulative.</p>
  174. <p><cite><em><a href="https://jeanhsu.substack.com/p/ask-vs-guess-culture">Ask vs guess culture</a></em>&nbsp;(<a href="/david/cache/2023/ba42826808418339bdc0364586bea5bf/">cache</a>)</cite></p>
  175. </blockquote>
  176. <blockquote lang="en">
  177. <p>😔 But really the baseline of web design is so low because there’s a lack of tenderness, care, and empathy. <mark>It’s because we don’t see the making of a website as a worthy profession.</mark> It’s because we hope to squeeze the last bit of juice from the orange by mulching people in between modals and pop ups and cookie&nbsp;banners.</p>
  178. <p>So how do we do better? How do we take better care of our&nbsp;websites?</p>
  179. <p><cite><em><a href="https://robinrendle.com/notes/why-are-websites-embarrassing/">Why are websites embarrassing?</a></em>&nbsp;(<a href="/david/cache/2023/7458294e070577c610294f8ec927c30d/">cache</a>)</cite></p>
  180. </blockquote>
  181. <blockquote lang="en">
  182. <p>🍏 It would also inject the potential for a slippery slope of unintended consequences. Scanning for one type of content, for instance, <mark>opens the door for bulk surveillance</mark> and could create a desire to search other encrypted messaging systems across content types (such as images, videos, text, or audio) and content categories. How can users be assured that a tool for one type of surveillance has not been reconfigured to surveil for other content such as political activity or religious persecution? Tools of mass surveillance have widespread negative implications for freedom of speech and, by extension, democracy as a whole. Also, designing this technology for one government could require applications for other countries across new data&nbsp;types.</p>
  183. <p><cite><a href="/static/david/2023/apple-letter-to-heat-initiative.pdf">Apple letter to Heat initiative</a> (PDF, 121Ko)</cite></p>
  184. </blockquote>
  185. <h2>
  186. <a href="/david/2023/07/02/" title="Lien permanent vers cet article">Perles</a> (2023-07-02)
  187. </h2>
  188. <blockquote>
  189. <p>Mon travail de scientifique m’a appris comment les gens construisent des théories pour avoir le sentiment de contrôler leur&nbsp;environnement.</p>
  190. <p>Ils se comportent ensuite de manière à renforcer ces théories. Les personnes autistes partagent ce désir «&nbsp;normal&nbsp;» de contrôler leur environnement. Ce qui diffère pour elles, c’est l’intensité avec laquelle cet environnement les déborde. Des connexions neuronales atypiques dans le cerveau des personnes autistes peuvent conduire à une perception anormale, augmentant l’importance des événements individuels mais affaiblissant la capacité à relier ces morceaux de vie en des représentations plus intégrées et&nbsp;abstraites.</p>
  191. <p>Les comportements rigides et répétitifs des personnes autistes commencent à avoir un sens lorsque nous les considérons comme la réaction normale d’un être humain à un environnement sensoriel très anormal, plutôt que comme des symptômes d’une maladie. Les symptômes autistiques sont ce qu’une personne fait pour forcer un monde chaotique à suivre un scénario prévisible. Nous essayons tous d’imposer un ordre narratif à ce qui peut sembler un monde fondamentalement chaotique. La différence dans l’autisme est qu’il y a plus de chaos à&nbsp;contrôler.</p>
  192. <p><mark>À cet égard, l’étude de l’autisme peut nous en apprendre beaucoup sur l’humanité en général</mark> et sur la façon dont la détresse psychologique peut être expliquée comme une réaction rationnelle, bien qu’extrême, à un monde qui ne tourne pas&nbsp;rond.</p>
  193. <p><cite><em>L’imperméable jaune</em>, Matthew&nbsp;Belmonte</cite></p>
  194. </blockquote>
  195. <p>Une citation extraite de <em>Des gènes, des synapses, des autismes</em> de Thomas Bourgeron qui est assez technique et que je recommande. Cela me donne envie de séquencer mon génome pour jouer avec mais comment réduire les intermédiaires&nbsp;profiteurs&#8239;?</p>
  196. <blockquote>
  197. <p>La génétique n’est pas la science des gènes mais la science de la diversité génétique qui contribue à notre&nbsp;individualité.</p>
  198. <p><cite><em>Ibid.</em></cite></p>
  199. </blockquote>
  200. <hr />
  201. <p>Avec son&nbsp;consentement&nbsp;:</p>
  202. <figure>
  203. <a href="/static/david/2023/2023-07-02-explique-ton-hypothese.jpg"
  204. title="Cliquer pour une version haute résolution">
  205. <img
  206. src="/static/david/2023/2023-07-02-explique-ton-hypothese.jpg"
  207. width="3022" height="675"
  208. srcset="/static/david/2023/2023-07-02-explique-ton-hypothese.jpg 3022w, /static/david/2023/2023-07-02-explique-ton-hypothese_660x440.jpg 660w, /static/david/2023/2023-07-02-explique-ton-hypothese_990x660.jpg 990w, /static/david/2023/2023-07-02-explique-ton-hypothese_1320x880.jpg 1320w"
  209. sizes="min(100vw, calc(100vh * 3022 / 675))"
  210. loading="lazy"
  211. decoding="async"
  212. alt="Explique ton hypothèse&nbsp;: Ça. (← Ceci n’est pas une hypothèse.)">
  213. </a>
  214. <figcaption>Ni une&nbsp;pipe.</figcaption>
  215. </figure>
  216. <figure>
  217. <a href="/static/david/2023/2023-07-02-que-remarques-tu.jpg"
  218. title="Cliquer pour une version haute résolution">
  219. <img
  220. src="/static/david/2023/2023-07-02-que-remarques-tu.jpg"
  221. width="3022" height="675"
  222. srcset="/static/david/2023/2023-07-02-que-remarques-tu.jpg 3022w, /static/david/2023/2023-07-02-que-remarques-tu_660x440.jpg 660w, /static/david/2023/2023-07-02-que-remarques-tu_990x660.jpg 990w, /static/david/2023/2023-07-02-que-remarques-tu_1320x880.jpg 1320w"
  223. sizes="min(100vw, calc(100vh * 3022 / 675))"
  224. loading="lazy"
  225. decoding="async"
  226. alt="Que remarques-tu&#8239;? J’ai remarqué que j’ai raison.">
  227. </a>
  228. <figcaption>Devenu un&nbsp;mème.</figcaption>
  229. </figure>
  230. <figure>
  231. <a href="/static/david/2023/2023-07-02-pourquoi.jpg"
  232. title="Cliquer pour une version haute résolution">
  233. <img
  234. src="/static/david/2023/2023-07-02-pourquoi.jpg"
  235. width="3022" height="819"
  236. srcset="/static/david/2023/2023-07-02-pourquoi.jpg 3022w, /static/david/2023/2023-07-02-pourquoi_660x440.jpg 660w, /static/david/2023/2023-07-02-pourquoi_990x660.jpg 990w, /static/david/2023/2023-07-02-pourquoi_1320x880.jpg 1320w"
  237. sizes="min(100vw, calc(100vh * 3022 / 819))"
  238. loading="lazy"
  239. decoding="async"
  240. alt="Pourquoi&#8239;? On le dit tout le temps.">
  241. </a>
  242. <figcaption>La&nbsp;facilité.</figcaption>
  243. </figure>
  244. <figure>
  245. <a href="/static/david/2023/2023-07-02-enonce-une-hypothese.jpg"
  246. title="Cliquer pour une version haute résolution">
  247. <img
  248. src="/static/david/2023/2023-07-02-enonce-une-hypothese.jpg"
  249. width="3022" height="1185"
  250. srcset="/static/david/2023/2023-07-02-enonce-une-hypothese.jpg 3022w, /static/david/2023/2023-07-02-enonce-une-hypothese_660x440.jpg 660w, /static/david/2023/2023-07-02-enonce-une-hypothese_990x660.jpg 990w, /static/david/2023/2023-07-02-enonce-une-hypothese_1320x880.jpg 1320w"
  251. sizes="min(100vw, calc(100vh * 3022 / 1185))"
  252. loading="lazy"
  253. decoding="async"
  254. alt="Je le pense parce que&nbsp;: car dur + dur + dur = méga-dur">
  255. </a>
  256. <figcaption>La&nbsp;science.</figcaption>
  257. </figure>
  258. <figure>
  259. <a href="/static/david/2023/2023-07-02-vie-de-groupe.jpg"
  260. title="Cliquer pour une version haute résolution">
  261. <img
  262. src="/static/david/2023/2023-07-02-vie-de-groupe.jpg"
  263. width="2932" height="2190"
  264. srcset="/static/david/2023/2023-07-02-vie-de-groupe.jpg 2932w, /static/david/2023/2023-07-02-vie-de-groupe_660x440.jpg 660w, /static/david/2023/2023-07-02-vie-de-groupe_990x660.jpg 990w, /static/david/2023/2023-07-02-vie-de-groupe_1320x880.jpg 1320w"
  265. sizes="min(100vw, calc(100vh * 2932 / 2190))"
  266. loading="lazy"
  267. decoding="async"
  268. alt="Pourquoi doit-on apprendre à vivre en groupe&#8239;? Pour s’amuser. (Car nous vivons en société.) Est-il facile selon toi de vivre en groupe&#8239;? Explique pourquoi. NON. J’arrive pas à attendre qu’elle ai terminer&#8239;! (Ce n’est pas que du travail à deux)">
  269. </a>
  270. <figcaption>Une histoire de chats et de&nbsp;chiens.</figcaption>
  271. </figure>
  272. <h2>
  273. <a href="/david/2023/02/02/" title="Lien permanent vers cet article">Moment</a> (2023-02-02)
  274. </h2>
  275. <details>
  276. <summary>Déplier pour lire le contenu de la publication</summary>
  277. <blockquote lang="en">
  278. <p>Three weeks pass and that lonely draft sits around gathering dust, and by the time I remember it, the moment has passed. The conversation has moved on, and so the post is abandoned and eventually&nbsp;deleted.</p>
  279. <p>The internet moves pretty fast and there’s always a “hot topic of the day”, but that doesn’t mean that nobody is interested in anything else. <mark>A beautiful thing about blogs is that they’re&nbsp;asynchronous.</mark></p>
  280. <p><cite><em><a href="https://mxb.dev/blog/seven-reasons-why-i-dont-write/">7&nbsp;Reasons why I don’t write</a></em>&nbsp;(<a href="/david/cache/2023/d7f9460e62402a298210736cdf64b88c/">cache</a>)</cite></p>
  281. </blockquote>
  282. <p>J’admire et j’envie un peu <a href="https://www.la-grange.net/">Karl</a> qui arrive à publier des notes qui ont plusieurs mois. Pour ma part, si je relis un peu trop ou avec trop de recul temporel, je finis par ne plus publier du tout car cela devient vain/suffisant/déjà&nbsp;dit/etc.</p>
  283. <p>J’écris cette entrée avec 2&nbsp;jours d’avance et déjà je sais que ça va être du réchauffé pour ma tête lors de la publication. La pensée s’est consumée avant même d’avoir pu être partagée, je publie des cendres froides. Lorsque l’idée est encore brûlante, il faut que ça sorte. Tout de&nbsp;suite.</p>
  284. <p>C’est la raison pour laquelle je n’aurai jamais la patience d’attendre la publication d’un&nbsp;livre.</p>
  285. <hr />
  286. <blockquote>
  287. <p>💚 Les personnes qui perdurent dans ma vie,<br />
  288. c’est en partie à travers/grâce à leurs écrits,<br />
  289. à leurs carnets,<br />
  290. à leur manière de (se) raconter,<br />
  291. de documenter (en public) leurs&nbsp;pensées.</p>
  292. <p>Quand je te lis,<br />
  293. je grandis.<br />
  294. Quand on se (re)voit,<br />
  295. c’était comme si c’était hier — quelque chose comme&nbsp;ça.</p>
  296. <p><cite><em><a href="https://thom4.net/2023/02/01/carnets/">☕️ Journal&nbsp;: Carnets</a></em>&nbsp;(<a href="/david/cache/2023/09c0739036ea4a8b6c985e127fe7e3c8/">cache</a>)</cite></p>
  297. </blockquote>
  298. </details>
  299. <h2>
  300. <a href="/david/2023/01/20/" title="Lien permanent vers cet article">Lettres</a> (2023-01-20)
  301. </h2>
  302. <details>
  303. <summary>Déplier pour lire le contenu de la publication</summary>
  304. <blockquote lang="en">
  305. <p>This is how it all&nbsp;started:</p>
  306. <p>We asked our friends to write a letter to their great great great grandchildren because we found the way to preserve their letters for a thousand&nbsp;years.</p>
  307. <p><cite><em><a href="https://www.letters-to-the-future.com/">Letters to the&nbsp;future</a></em></cite></p>
  308. </blockquote>
  309. <p>Cette initiative m’émeut. L’idée, l’exécution, le résultat, toutes les étapes comportent leur lot d’espoir <em>et</em> de nostalgie. Une boule de <a href="/david/stream/2018/05/16/">solastalgie</a> qui fait mal à <a href="/david/stream/2019/07/02/">mon anxiété</a>.</p>
  310. <p>Comme une lettre à&nbsp;l’amer.</p>
  311. <blockquote lang="en">
  312. <p>This book brings together the polar opposites of negative and&nbsp;positive.</p>
  313. <p>On one hand, it shows optimism, hope and compassion for the future of the planet. On the other hand, it shows the ever lasting detriment of our actions when it comes to single-use&nbsp;plastic.</p>
  314. <p><cite><em>Ibid.</em></cite></p>
  315. </blockquote>
  316. <hr />
  317. <blockquote>
  318. <p>ETERNESIA est un projet humaniste dont l’objectif est d’inclure chaque existence au sein du patrimoine immatériel de l’humanité, en permettant à tous ceux qui le désirent de laisser un ensemble de traces numériques de leur vie qui seront conservées sans limite de&nbsp;durée.</p>
  319. <p>ETERNESIA est porteur d’<mark>un nouveau droit de l’homme, celui du droit à la mémoire et à la postérité numérique,</mark> dont le droit à l’oubli fait aussi partie intégrante. ETERNESIA est un projet à but non lucratif, indépendant de toute tradition religieuse et de toute idéologie politique. ETERNESIA est par nature philanthropique, éthique et universel, ouvert à tous, sans discrimination d’aucune&nbsp;sorte.</p>
  320. <p><cite><em><a href="http://eternesia.org/">ETERNESIA — Traces&nbsp;d’Eternité</a></em></cite></p>
  321. </blockquote>
  322. </details>
  323. </main>
  324. <hr>
  325. <footer>
  326. <p>
  327. <nobr>
  328. <a href="/david/" title="Aller à l’accueil">
  329. <svg class="icon icon-home">
  330. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-home"></use>
  331. </svg>
  332. Accueil</a>
  333. </nobr>
  334. <nobr>
  335. <a href="/david/log/" title="Accès au flux RSS">
  336. <svg class="icon icon-rss2">
  337. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-rss2"></use>
  338. </svg>
  339. Suivre</a>
  340. </nobr>
  341. <nobr>
  342. <a href="http://larlet.com"
  343. title="Go to my English profile"
  344. data-instant>
  345. <svg class="icon icon-user-tie">
  346. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-user-tie"></use>
  347. </svg>
  348. Pro</a>
  349. </nobr>
  350. <nobr>
  351. <a href="mailto:david%40larlet.fr" title="Envoyer un courriel">
  352. <svg class="icon icon-mail">
  353. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-mail"></use>
  354. </svg>
  355. Email</a>
  356. </nobr>
  357. <nobr>
  358. <abbr class="nowrap"
  359. title="Hébergeur : Alwaysdata, 62 rue Tiquetonne 75002 Paris, +33184162340">
  360. <svg class="icon icon-hammer2">
  361. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-hammer2"></use>
  362. </svg>
  363. Légal</abbr>
  364. </nobr>
  365. </p>
  366. <template id="theme-selector">
  367. <form>
  368. <fieldset>
  369. <legend>
  370. <svg class="icon icon-brightness-contrast">
  371. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-brightness-contrast"></use>
  372. </svg>
  373. Thème
  374. </legend>
  375. <label>
  376. <input type="radio" value="auto" name="chosen-color-scheme" checked>
  377. Auto
  378. </label>
  379. <label>
  380. <input type="radio" value="dark" name="chosen-color-scheme">
  381. Foncé
  382. </label>
  383. <label>
  384. <input type="radio" value="light" name="chosen-color-scheme">
  385. Clair
  386. </label>
  387. </fieldset>
  388. </form>
  389. </template>
  390. </footer>
  391. <script src="/static/david/js/instantpage-5.1.0.min.js" type="module"></script>
  392. <script>
  393. function loadThemeForm(templateName) {
  394. const themeSelectorTemplate = document.querySelector(templateName)
  395. const form = themeSelectorTemplate.content.firstElementChild
  396. themeSelectorTemplate.replaceWith(form)
  397. form.addEventListener('change', (e) => {
  398. const chosenColorScheme = e.target.value
  399. localStorage.setItem('theme', chosenColorScheme)
  400. toggleTheme(chosenColorScheme)
  401. })
  402. const selectedTheme = localStorage.getItem('theme')
  403. if (selectedTheme && selectedTheme !== 'undefined') {
  404. form.querySelector(`[value="${selectedTheme}"]`).checked = true
  405. }
  406. }
  407. const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
  408. window.addEventListener('load', () => {
  409. let hasDarkRules = false
  410. for (const styleSheet of Array.from(document.styleSheets)) {
  411. let mediaRules = []
  412. for (const cssRule of styleSheet.cssRules) {
  413. if (cssRule.type !== CSSRule.MEDIA_RULE) {
  414. continue
  415. }
  416. // WARNING: Safari does not have/supports `conditionText`.
  417. if (cssRule.conditionText) {
  418. if (cssRule.conditionText !== prefersColorSchemeDark) {
  419. continue
  420. }
  421. } else {
  422. if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
  423. continue
  424. }
  425. }
  426. mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
  427. }
  428. // WARNING: do not try to insert a Rule to a styleSheet you are
  429. // currently iterating on, otherwise the browser will be stuck
  430. // in a infinite loop…
  431. for (const mediaRule of mediaRules) {
  432. styleSheet.insertRule(mediaRule.cssText)
  433. hasDarkRules = true
  434. }
  435. }
  436. if (hasDarkRules) {
  437. loadThemeForm('#theme-selector')
  438. }
  439. })
  440. </script>
  441. </body>
  442. </html>