Repository with sources and generator of https://larlet.fr/david/ https://larlet.fr/david/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.html 31KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589
  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. Tout
  14. — David Larlet</title>
  15. <script>
  16. function toggleTheme(themeName) {
  17. document.documentElement.classList.toggle(
  18. 'forced-dark',
  19. themeName === 'dark'
  20. )
  21. document.documentElement.classList.toggle(
  22. 'forced-light',
  23. themeName === 'light'
  24. )
  25. }
  26. const selectedTheme = localStorage.getItem('theme')
  27. if (selectedTheme !== 'undefined') {
  28. toggleTheme(selectedTheme)
  29. }
  30. </script>
  31. <!-- Documented, feel free to shoot an email. -->
  32. <link rel="stylesheet" href="/static/david/css/style_2024-03-09.css">
  33. <!-- See https://www.zachleat.com/web/comprehensive-webfonts/ for the trade-off. -->
  34. <link rel="preload"
  35. href="/static/david/css/fonts/century_supra_ot_a_regular.woff2"
  36. as="font"
  37. type="font/woff2"
  38. media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  39. crossorigin>
  40. <link rel="preload"
  41. href="/static/david/css/fonts/century_supra_ot_a_bold.woff2"
  42. as="font"
  43. type="font/woff2"
  44. media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  45. crossorigin>
  46. <link rel="preload"
  47. href="/static/david/css/fonts/century_supra_ot_a_italic.woff2"
  48. as="font"
  49. type="font/woff2"
  50. media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  51. crossorigin>
  52. <link rel="preload"
  53. href="/static/david/css/fonts/century_supra_ot_b_regular.woff2"
  54. as="font"
  55. type="font/woff2"
  56. media="(prefers-color-scheme: dark)"
  57. crossorigin>
  58. <link rel="preload"
  59. href="/static/david/css/fonts/century_supra_ot_b_bold.woff2"
  60. as="font"
  61. type="font/woff2"
  62. media="(prefers-color-scheme: dark)"
  63. crossorigin>
  64. <link rel="preload"
  65. href="/static/david/css/fonts/century_supra_ot_b_italic.woff2"
  66. as="font"
  67. type="font/woff2"
  68. media="(prefers-color-scheme: dark)"
  69. crossorigin>
  70. <meta name="description" content="We’re expected to do everything, keep up with everything, adapt to constant changes, and understand multiple conflicting architectural paradigms ranging from immediate mode rendering, to relational databases, to REST API designs, to both imperative and declarative programming, to complex state querying languages like GraphQL, to all of the various intricacies of how CSS handles rendering.">
  71. <!-- That good ol' feed, subscribe :). -->
  72. <link rel="alternate"
  73. type="application/atom+xml"
  74. title="Feed"
  75. href="/david/log/">
  76. <!-- Generated from https://realfavicongenerator.net/ such a mess. -->
  77. <link rel="apple-touch-icon"
  78. sizes="180x180"
  79. href="/static/david/icons2/apple-touch-icon.png">
  80. <link rel="icon"
  81. type="image/png"
  82. sizes="32x32"
  83. href="/static/david/icons2/favicon-32x32.png">
  84. <link rel="icon"
  85. type="image/png"
  86. sizes="16x16"
  87. href="/static/david/icons2/favicon-16x16.png">
  88. <link rel="manifest" href="/static/david/icons2/site.webmanifest">
  89. <link rel="mask-icon"
  90. href="/static/david/icons2/safari-pinned-tab.svg"
  91. color="#07486c">
  92. <link rel="shortcut icon" href="/static/david/icons2/favicon.ico">
  93. <meta name="msapplication-TileColor" content="#f7f7f7">
  94. <meta name="msapplication-config"
  95. content="/static/david/icons2/browserconfig.xml">
  96. <meta name="theme-color"
  97. content="#f7f7f7"
  98. media="(prefers-color-scheme: light)">
  99. <meta name="theme-color"
  100. content="#272727"
  101. media="(prefers-color-scheme: dark)">
  102. <!-- Is that even respected? Retrospectively? What a shAItshow…
  103. https://neil-clarke.com/block-the-bots-that-feed-ai-models-by-scraping-your-website/ -->
  104. <meta name="robots" content="noai, noimageai">
  105. <style type="text/css">
  106. .tippy-content {
  107. min-width: 280px;
  108. padding: .5rem;
  109. font-size: calc(var(--fluid-0) * 0.8);
  110. font-family: var(--labor-font);
  111. letter-spacing: initial;
  112. text-align: left;
  113. }
  114. .tippy-content h3 {
  115. margin-top: 0;
  116. }
  117. .tippy-content h3 img {
  118. max-width: 2rem;
  119. max-height: 2rem;
  120. display: inline-block;
  121. }
  122. .tippy-content .tippy-links {
  123. display: flex;
  124. justify-content: space-around;
  125. }
  126. .tippy-content a {
  127. padding: .4rem;
  128. color: #F06048;
  129. }
  130. </style>
  131. <body data-instant-intensity="viewport-all">
  132. <article>
  133. <header>
  134. <hgroup>
  135. <h1>Tout</h1>
  136. <p>Le <time datetime="2024-05-24">24 mai 2024</time></p>
  137. </hgroup>
  138. </header>
  139. <nav>
  140. <p>
  141. <a rel="prev"
  142. href="/david/2024/05/20/"
  143. title="Publication précédente : Stimulations">← Précédent</a> •
  144. <a href="/david/" title="Aller à l’accueil" rel="up">Accueil</a>
  145. <a href="/david/recherche/"
  146. title="Aller à la page de recherche"
  147. rel="search" data-no-instant>Recherche</a>
  148. • <a rel="next"
  149. href="/david/2024/05/31/"
  150. title="Publication suivante : Technocritique">Suivant →</a>
  151. </p>
  152. </nav>
  153. <blockquote lang="en">
  154. <p>We’re expected to do everything, keep up with everything, adapt to constant changes, and understand multiple conflicting architectural paradigms ranging from immediate mode rendering, to relational databases, to REST API designs, to both imperative and declarative programming, to complex state querying languages like GraphQL, to all of the various intricacies of how CSS handles&nbsp;rendering.</p>
  155. <p>We’re made <mark>to do all this while watching</mark> our peers lose their jobs, our employers savage society through pervasive surveillance and collaboration with authoritarian companies, and our data centres suck up the entire water supply for entire&nbsp;municipalities.</p>
  156. <p>No wonder we’re all fucked up emotionally and&nbsp;mentally.</p>
  157. <p><cite><em><a data-link-domain="baldurbjarnason.com" href="https://www.baldurbjarnason.com/2024/the-deskilling-of-web-dev-is-harming-us-all/" hreflang="en"
  158. title="Consultation de l’article (anglais)">The deskilling of web dev is harming the product but, more importantly, it’s damaging our health</a>
  159. <a href="/david/cache/2024/8672047b982b09475a59605ed0f9a011/" hreflang="en"
  160. data-tippy data-description="Even before the web developer job market became as dire as it is today, I was regularly seeing developers burn out and leave the industry. Some left for good; some only temporarily."
  161. data-source="https://www.baldurbjarnason.com/2024/the-deskilling-of-web-dev-is-harming-us-all/"
  162. data-date="2024-05-21"
  163. data-favicon="https://www.baldurbjarnason.com/dark-bird.svg"
  164. data-domain="baldurbjarnason.com"
  165. ><svg xmlns="http://www.w3.org/2000/svg"
  166. width="24" height="24" viewBox="0 0 24 24" fill="none"
  167. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  168. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  169. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  170. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  171. </svg>
  172. <span class="sr-only">[archive]</span></a></em></cite></p>
  173. </blockquote>
  174. <p>J’aimerais bien papoter avec Baldur Bjarnason un jour. Et je sais que mon niveau d’anglais actuel ne me permettrait pas d’aborder ces sujets avec la subtilité qui le&nbsp;nécessite.</p>
  175. <a href="#hr-169" title="Lien vers cette section de la page"><hr id="hr-169" /></a>
  176. <blockquote lang="en">
  177. <p>My web experience was thus enlightenment and disempowerment. Opportunity and anxiety. Tears and&nbsp;joy.</p>
  178. <p>[…]</p>
  179. <p>My vision for the web over the next ten years is that <mark>we can turn that feeling of malaise,</mark> which I think is rooted in disempowerment, into a feeling that things can be&nbsp;different.</p>
  180. <p>No one person set off a light bulb in my mind that made me think I could have a personal website where I blog about all the things I find fun and interesting. Rather, it was seeing role models from all different backgrounds that made me think I could take more control of the web, and use the web as a platform not for consumption or creation for capital, but as a place of&nbsp;expression.</p>
  181. <p><cite><em><a data-link-domain="jamesg.blog" href="https://jamesg.blog/2024/05/19/next-web-decade/" hreflang="en"
  182. title="Consultation de l’article (anglais)">The next decade of the web</a>
  183. <a href="/david/cache/2024/50fb34a41d67e9468fce639e97fd62a3/" hreflang="en"
  184. data-tippy data-description="My experience on the web has been one of dualities."
  185. data-source="https://jamesg.blog/2024/05/19/next-web-decade/"
  186. data-date="2024-05-21"
  187. data-favicon="https://jamesg.blog/favicon.ico"
  188. data-domain="jamesg.blog"
  189. ><svg xmlns="http://www.w3.org/2000/svg"
  190. width="24" height="24" viewBox="0 0 24 24" fill="none"
  191. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  192. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  193. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  194. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  195. </svg>
  196. <span class="sr-only">[archive]</span></a></em></cite></p>
  197. </blockquote>
  198. <p>Un peu d’optimisme ne fait pas de&nbsp;mal.</p>
  199. <a href="#hr-170" title="Lien vers cette section de la page"><hr id="hr-170" /></a>
  200. <blockquote>
  201. <p>The best way to think of SLS is as a balding guy with a mullet: there are fireworks down below that are meant to distract you from a sad situation up&nbsp;top.</p>
  202. <p><cite><em><a data-link-domain="idlewords.com" href="https://idlewords.com/2024/5/the_lunacy_of_artemis.htm" hreflang=""
  203. title="Consultation de l’article">The Lunacy of Artemis (Idle Words)</a>
  204. <a href="/david/cache/2024/b1099381931e530393ab2740d48ae1ef/" hreflang=""
  205. data-tippy data-description="For the first time since the 1960's, it looks doubtful whether the US space agency is even capable of getting us to the Moon."
  206. data-source="https://idlewords.com/2024/5/the_lunacy_of_artemis.htm"
  207. data-date="2024-05-21"
  208. data-favicon=""
  209. data-domain="idlewords.com"
  210. ><svg xmlns="http://www.w3.org/2000/svg"
  211. width="24" height="24" viewBox="0 0 24 24" fill="none"
  212. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  213. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  214. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  215. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  216. </svg>
  217. <span class="sr-only">[archive]</span></a></em></cite></p>
  218. </blockquote>
  219. <p>Maciej Cegłowski, in style&nbsp;😂.</p>
  220. <p>Voir aussi&nbsp;: <a data-link-domain="idlewords.com" href="https://idlewords.com/2023/1/why_not_mars.htm" hreflang="en"
  221. title="Consultation de l’article (anglais)">Why Not Mars</a>
  222. <a href="/david/cache/2024/9dee199dbf71b1176eaac521e828693b/" hreflang="en"
  223. data-tippy data-description="It's slow, expensive, the engineering is mostly port-a-potty chemistry, and the best-case outcome is that thirty years from now we’ll get to watch someone remotely operate a soil scoop from Mars instead of Pasadena"
  224. data-source="https://idlewords.com/2023/1/why_not_mars.htm"
  225. data-date="2024-05-21"
  226. data-favicon=""
  227. data-domain="idlewords.com"
  228. ><svg xmlns="http://www.w3.org/2000/svg"
  229. width="24" height="24" viewBox="0 0 24 24" fill="none"
  230. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  231. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  232. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  233. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  234. </svg>
  235. <span class="sr-only">[archive]</span></a>.</p>
  236. <a href="#hr-171" title="Lien vers cette section de la page"><hr id="hr-171" /></a>
  237. <blockquote lang="en">
  238. <p>Rye said Apple’s response addressed the most depressing aspect of their research: That there was previously no way for anyone to opt out of this data&nbsp;collection.</p>
  239. <p>“You may not have Apple products, but if you have an access point and someone near you owns an Apple device, your BSSID will be in [Apple’s] database,” he said. “What’s important to note here is that <mark>every access point is being tracked, without opting in, whether they run an Apple device or not.</mark> Only after we disclosed this to Apple have they added the ability for people to opt&nbsp;out.”</p>
  240. <p><cite><em><a data-link-domain="krebsonsecurity.com" href="https://krebsonsecurity.com/2024/05/why-your-wi-fi-router-doubles-as-an-apple-airtag/" hreflang="en"
  241. title="Consultation de l’article (anglais)">Why Your Wi-Fi Router Doubles as an Apple AirTag</a>
  242. <a href="/david/cache/2024/34b4deffee5820ed20c6e57d6c0ee000/" hreflang="en"
  243. data-tippy data-description="Apple and the satellite-based broadband service Starlink each recently took steps to address new research into the potential security and privacy implications of how their services geo-locate devices. Researchers from the University of Maryland say they relied on publicly available…"
  244. data-source="https://krebsonsecurity.com/2024/05/why-your-wi-fi-router-doubles-as-an-apple-airtag/"
  245. data-date="2024-05-22"
  246. data-favicon="https://krebsonsecurity.com/favicon.ico"
  247. data-domain="krebsonsecurity.com"
  248. ><svg xmlns="http://www.w3.org/2000/svg"
  249. width="24" height="24" viewBox="0 0 24 24" fill="none"
  250. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  251. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  252. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  253. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  254. </svg>
  255. <span class="sr-only">[archive]</span></a></em></cite></p>
  256. </blockquote>
  257. <p>Le ver est dans la pomme depuis un peu trop longtemps à mon&nbsp;goût…</p>
  258. <p>Un <a data-link-domain="infosec.exchange" href="https://infosec.exchange/@briankrebs/112480004285401846">résumé sur masto</a>.</p>
  259. <a href="#hr-172" title="Lien vers cette section de la page"><hr id="hr-172" /></a>
  260. <blockquote lang="en">
  261. <p>Recall works by <mark>taking a screenshot of your active window every few seconds</mark>, recording everything you do in Windows for up to three months by&nbsp;default.</p>
  262. <p>These snapshots will be analyzed by the on-device Neural Processing Unit (NPU) and an AI model to extract data from the screenshot. The data will be saved in a semantic index, allowing Windows users to browse through the snapshot history or search using human language&nbsp;queries.</p>
  263. <p><cite><em><a data-link-domain="bleepingcomputer.com" href="https://www.bleepingcomputer.com/news/microsoft/microsofts-new-windows-11-recall-is-a-privacy-nightmare/" hreflang="en"
  264. title="Consultation de l’article (anglais)">Microsoft’s new Windows 11&nbsp;Recall is a privacy nightmare</a>
  265. <a href="/david/cache/2024/e1f6125fe416ecd26f2804cdab5cc571/" hreflang="en"
  266. data-tippy data-description="Microsoft&#039;s announcement of the new AI-powered Windows 11 Recall feature has sparked a lot of concern, with many thinking that it has created massive privacy risks and a new attack vector that threat actors can exploit to steal data."
  267. data-source="https://www.bleepingcomputer.com/news/microsoft/microsofts-new-windows-11-recall-is-a-privacy-nightmare/"
  268. data-date="2024-05-24"
  269. data-favicon="https://www.bleepstatic.com/favicon/bleeping.ico"
  270. data-domain="bleepingcomputer.com"
  271. ><svg xmlns="http://www.w3.org/2000/svg"
  272. width="24" height="24" viewBox="0 0 24 24" fill="none"
  273. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  274. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  275. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  276. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  277. </svg>
  278. <span class="sr-only">[archive]</span></a></em></cite></p>
  279. </blockquote>
  280. <p>C’est la porte ouverte à toute les fenêtres, Windows Unlimited eut été un meilleur nom. 🤡</p>
  281. <a href="#hr-173" title="Lien vers cette section de la page"><hr id="hr-173" /></a>
  282. <blockquote lang="en">
  283. <p>Russian troops in Ukraine are using thousands of Starlink satellite communications terminals made by Elon Musk’s SpaceX, the Ukrainian military intelligence chief told the Wall Street Journal in an interview published on&nbsp;Thursday.</p>
  284. <p>Lieutenant General Kyrylo Budanov said that <mark>Russian troops have been communicating over the Starlink system “for quite a long time”</mark> and acquired the terminals from private Russian firms that purchased them from&nbsp;intermediaries.</p>
  285. <p><cite><em><a data-link-domain="reuters.com" href="https://www.reuters.com/world/europe/russia-using-thousands-spacex-starlink-terminals-ukraine-wsj-says-2024-02-15/" hreflang="en"
  286. title="Consultation de l’article (anglais)">Russia using thousands of SpaceX Starlink terminals in Ukraine, WSJ says</a>
  287. <a href="/david/cache/2024/664e0f4028089315e2fa0be1c8c70300/" hreflang="en"
  288. data-tippy data-description="The Russian Embassy and SpaceX did not respond immediately to requests for comment."
  289. data-source="https://www.reuters.com/world/europe/russia-using-thousands-spacex-starlink-terminals-ukraine-wsj-says-2024-02-15/"
  290. data-date="2024-05-22"
  291. data-favicon="https://www.reuters.com/favicon.ico"
  292. data-domain="reuters.com"
  293. ><svg xmlns="http://www.w3.org/2000/svg"
  294. width="24" height="24" viewBox="0 0 24 24" fill="none"
  295. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  296. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  297. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  298. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  299. </svg>
  300. <span class="sr-only">[archive]</span></a></em></cite></p>
  301. </blockquote>
  302. <p>Neutralité du net vs. héroïsation des fournisseurs d’accès à&nbsp;internet.</p>
  303. <a href="#hr-174" title="Lien vers cette section de la page"><hr id="hr-174" /></a>
  304. <blockquote lang="en">
  305. <p>This leads us straight back to the original conversation about “Man or Bear,” which has nothing to do with bears. (Sorry, bears!) <mark>“Would you rather be stuck in a forest with a man or a bear?” is just another way of asking, “Are you afraid of men?”</mark> It’s the same question I’ve been fielding for the entirety of my life as a solo female traveler. It’s the same question that hovers over women all the time as we move through the&nbsp;world.</p>
  306. <p>And it’s a question that’s always been difficult for me to answer. I’m not afraid of all men. But I am afraid of some men. The real problem is the gray area in between and what it takes to manage the murkiness of that&nbsp;unknown.</p>
  307. <p><cite><em><a data-link-domain="bikepacking.com" href="https://bikepacking.com/plog/man-or-bear-debate/" hreflang="en"
  308. title="Consultation de l’article (anglais)">A Woman Who Left Society to Live With Bears Weighs in on “Man or Bear”</a>
  309. <a href="/david/cache/2024/cba1417ac2338abde14bb06d0a1f505d/" hreflang="en"
  310. data-tippy data-description="In this piece, long-term bicycle traveler Laura Killingbeck reflects on the Man or Bear debate and adds her unique perspective..."
  311. data-source="https://bikepacking.com/plog/man-or-bear-debate/"
  312. data-date="2024-05-24"
  313. data-favicon="https://bikepacking.com/icon.svg?v=2"
  314. data-domain="bikepacking.com"
  315. ><svg xmlns="http://www.w3.org/2000/svg"
  316. width="24" height="24" viewBox="0 0 24 24" fill="none"
  317. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  318. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  319. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  320. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  321. </svg>
  322. <span class="sr-only">[archive]</span></a></em></cite></p>
  323. </blockquote>
  324. <p>En tant qu’homme qui peut croiser des hommes et des ours dans la forêt, j’ai déjà plus peur de croiser un homme. Je n’imagine même pas en tant que&nbsp;femme.</p>
  325. <p>À mon niveau, lorsque je croise une femme seule dans la forêt (très rare, mais ça arrive), j’essaye de rester à bonne distance en ayant l’attitude que j’aurais vis-à-vis… d’un&nbsp;ours.</p>
  326. <blockquote lang="en">
  327. <p>As I listened to his laughter, a visceral understanding rose from my stomach and landed in my brain. In that moment I knew something that I could no longer prevent myself from knowing. That the person I loved got bigger when I got smaller. That he could not stop bringing me down, because bringing me down was what brought him&nbsp;up.</p>
  328. <p><cite><em><a data-link-domain="bicycling.com" href="https://www.bicycling.com/rides/a34466128/search-for-the-wild-reindeer/" hreflang="en"
  329. title="Consultation de l’article (anglais)">In Search of the Wild Reindeer</a>
  330. <a href="/david/cache/2024/49b61c702d03a23ba3e0801bdaa3cb07/" hreflang="en"
  331. data-tippy data-description="When her life fell apart, Laura Killingbeck went on an epic bike journey to find wild reindeer in Labrador."
  332. data-source="https://www.bicycling.com/rides/a34466128/search-for-the-wild-reindeer/"
  333. data-date="2024-05-24"
  334. data-favicon="https://www.bicycling.com/_assets/design-tokens/bicycling/static/images/favicon.94f0fb3.ico"
  335. data-domain="bicycling.com"
  336. ><svg xmlns="http://www.w3.org/2000/svg"
  337. width="24" height="24" viewBox="0 0 24 24" fill="none"
  338. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  339. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  340. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  341. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  342. </svg>
  343. <span class="sr-only">[archive]</span></a></em></cite></p>
  344. </blockquote>
  345. <p>😭</p>
  346. <nav>
  347. <p>
  348. <a href="/david/2024/evolution/"
  349. title="Liste de tous les articles 2024 associés à cette étiquette"
  350. rel="tag">#évolution</a>
  351. <a href="/david/2024/liens/"
  352. title="Liste de tous les articles 2024 associés à cette étiquette"
  353. rel="tag">#liens</a>
  354. <a href="/david/2024/web/"
  355. title="Liste de tous les articles 2024 associés à cette étiquette"
  356. rel="tag">#web</a>
  357. <a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
  358. </p>
  359. </nav>
  360. <nav>
  361. <p>
  362. <a rel="prev"
  363. href="/david/2024/05/20/"
  364. title="Publication précédente : Stimulations">← Précédent</a> •
  365. <a href="/david/2024/" title="Liste des publications récentes">↑ En 2024</a>
  366. • <a rel="next"
  367. href="/david/2024/05/31/"
  368. title="Publication suivante : Technocritique">Suivant →</a>
  369. </p>
  370. </nav>
  371. <form action="/david/recherche/" method="get">
  372. <fieldset>
  373. <legend>Recherche</legend>
  374. <label for="input-search">Termes de votre recherche :</label>
  375. <input id="input-search" type="search" name="s" aria-describedby="indexation-infos" required>
  376. <input type="submit" value="Chercher">
  377. <p id="indexation-infos">
  378. <small>
  379. Seuls les contenus de ces 8 dernières années sont indexés.
  380. </small>
  381. </p>
  382. </fieldset>
  383. </form>
  384. <aside>
  385. <theme-toggle></theme-toggle>
  386. </aside>
  387. </article>
  388. <hr>
  389. <footer>
  390. <p>
  391. <a href="/david/" title="Aller à l’accueil">Accueil</a>
  392. <a href="/david/log/" title="Accès au flux RSS">Suivre</a>
  393. <a href="http://larlet.com"
  394. title="Go to my English profile"
  395. data-instant>Pro</a>
  396. <a href="mailto:david%40larlet.fr" title="Envoyer un courriel">Email</a>
  397. <abbr title="Hébergeur : Alwaysdata, 62 rue Tiquetonne 75002 Paris, +33184162340">Légal</abbr>
  398. </p>
  399. <template id="theme-selector">
  400. <form>
  401. <style type="text/css">
  402. fieldset div {
  403. text-align: center;
  404. }
  405. </style>
  406. <fieldset>
  407. <legend>Thème</legend>
  408. <div>
  409. <label>
  410. <input type="radio" value="auto" name="chosen-color-scheme" checked>
  411. Auto
  412. </label>
  413. <label>
  414. <input type="radio" value="dark" name="chosen-color-scheme">
  415. Foncé
  416. </label>
  417. <label>
  418. <input type="radio" value="light" name="chosen-color-scheme">
  419. Clair
  420. </label>
  421. </div>
  422. </fieldset>
  423. </form>
  424. </template>
  425. </footer>
  426. <script src="/static/david/js/instantpage-5.1.0.min.js" type="module"></script>
  427. <script>
  428. class ThemeToggle extends HTMLElement {
  429. constructor() {
  430. super()
  431. const themeSelectorTemplate = document.querySelector('#theme-selector')
  432. const form = themeSelectorTemplate.content.firstElementChild
  433. this.attachShadow({ mode: 'open' })
  434. this.shadowRoot.appendChild(form.cloneNode(true))
  435. }
  436. connectedCallback() {
  437. const form = this.shadowRoot.querySelector('form')
  438. form.addEventListener('change', (e) => {
  439. const chosenColorScheme = e.target.value
  440. localStorage.setItem('theme', chosenColorScheme)
  441. toggleTheme(chosenColorScheme)
  442. })
  443. const selectedTheme = localStorage.getItem('theme')
  444. if (selectedTheme && selectedTheme !== 'undefined') {
  445. form.querySelector(`[value="${selectedTheme}"]`).checked = true
  446. }
  447. }
  448. }
  449. const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
  450. window.addEventListener('load', () => {
  451. let colorsLayer = undefined
  452. let hasDarkRules = false
  453. for (const styleSheet of Array.from(document.styleSheets)) {
  454. let mediaRules = []
  455. for (const layerRule of styleSheet.cssRules) {
  456. if (!(layerRule instanceof CSSLayerBlockRule)) {
  457. continue
  458. }
  459. if (layerRule.name === 'colors') {
  460. colorsLayer = layerRule
  461. }
  462. for (const cssRule of layerRule.cssRules) {
  463. if (cssRule.type !== CSSRule.MEDIA_RULE) {
  464. continue
  465. }
  466. // WARNING: Safari does not have/supports `conditionText`.
  467. if (cssRule.conditionText) {
  468. if (cssRule.conditionText !== prefersColorSchemeDark) {
  469. continue
  470. }
  471. } else {
  472. if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
  473. continue
  474. }
  475. }
  476. mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
  477. }
  478. }
  479. // WARNING: do not try to insert a Rule to a styleSheet you are
  480. // currently iterating on, otherwise the browser will be stuck
  481. // in a infinite loop…
  482. for (const mediaRule of mediaRules) {
  483. // Safari requires the `0` second parameter (even if default).
  484. colorsLayer.insertRule(mediaRule.cssText, 0)
  485. hasDarkRules = true
  486. }
  487. }
  488. if (hasDarkRules) {
  489. if ('customElements' in window && !customElements.get('theme-toggle')) {
  490. customElements.define('theme-toggle', ThemeToggle)
  491. }
  492. }
  493. })
  494. </script>
  495. <script src="/static/david/js/popper-2.11.8.min.js"></script>
  496. <script src="/static/david/js/tippy-bundle-6.3.7.umd.min.js"></script>
  497. <script>
  498. tippy('[data-tippy]', {
  499. content(reference) {
  500. reference.addEventListener('click', (e) => e.preventDefault())
  501. return `
  502. <h3 lang="fr">
  503. <img src="${reference.dataset.favicon}" loading="lazy">
  504. <a href="${reference.dataset.source}"
  505. >Article sur ${reference.dataset.domain}</a></h3>
  506. <p lang="${reference.hreflang}"><em>${reference.dataset.description}</em></p>
  507. <div class="tippy-links" lang="fr">
  508. <a href="${reference.href}">Archive au ${reference.dataset.date}</a>
  509. </div>
  510. `
  511. },
  512. allowHTML: true,
  513. interactive: true,
  514. delay: [150, 700],
  515. hideOnClick: false
  516. })
  517. </script>
  518. <script type="module">
  519. import { annotate } from '/static/david/js/rough-notation-0.5.1.esm.min.js'
  520. const markObserver = new IntersectionObserver((entries, observer) => {
  521. const computedStyle = getComputedStyle(document.documentElement)
  522. const markBackground = computedStyle.getPropertyValue('--mark-background')
  523. for (const entry of entries) {
  524. if (entry.intersectionRatio === 0) continue
  525. const markElement = entry.target
  526. markElement.style.backgroundColor = 'inherit'
  527. const annotation = annotate(
  528. markElement, {
  529. type: 'highlight',
  530. multiline: true,
  531. color: markBackground,
  532. // animate: !window.matchMedia('(prefers-reduced-motion: reduce)').matches
  533. animate: false
  534. }
  535. )
  536. annotation.show()
  537. observer.unobserve(markElement)
  538. }
  539. }, {threshold: 1.0})
  540. for (const markElement of document.querySelectorAll('mark')) {
  541. markObserver.observe(markElement)
  542. }
  543. </script>
  544. </body>
  545. </html>