Repository with sources and generator of https://larlet.fr/david/ https://larlet.fr/david/
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048
  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. Étiquette #IA
  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="Publications relatives au tag #IA">
  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. details[open] summary {
  107. display: none;
  108. }
  109. </style>
  110. <body data-instant-intensity="viewport-all">
  111. <article>
  112. <header>
  113. <hgroup>
  114. <h1>#IA</h1>
  115. <p>Publications relatives à cette étiquette</p>
  116. </hgroup>
  117. </header>
  118. <nav>
  119. <p>
  120. <a href="/david/" title="Aller à l’accueil">
  121. Accueil</a>
  122. <a rel="tags"
  123. href="/david/2024/#tags"
  124. title="Liste de toutes les étiquettes">
  125. Étiquettes</a>
  126. <a href="/david/recherche/" title="Aller à la page de recherche" rel="search" data-no-instant>Recherche</a>
  127. <a href="/david/log/" title="Accès au flux RSS">Suivre</a>
  128. </p>
  129. </nav>
  130. <h2>
  131. <a href="/david/2024/09/30/" title="Lien permanent vers cet article">Vain</a> <time datetime="2024-09-30">30 septembre 2024</time>
  132. </h2>
  133. <blockquote lang="en">
  134. <p>wordfreq was built by collecting a whole lot of text in a lot of languages. That used to be a pretty reasonable thing to do, and not the kind of thing someone would be likely to object to. Now, the text-slurping tools are mostly used for training generative AI, and people are quite rightly on the defensive. <mark>If someone is collecting all the text from your books, articles, Web site, or public posts, it’s very likely because they are creating a plagiarism machine</mark> that will claim your words as its&nbsp;own.</p>
  135. <p>So I don’t want to work on anything that could be confused with generative AI, or that could benefit generative&nbsp;AI.</p>
  136. <p><cite><em><a data-link-domain="github.com" href="https://github.com/rspeer/wordfreq/blob/master/SUNSET.md#i-dont-want-to-be-part-of-this-scene-anymore" hreflang="en"
  137. title="Consultation de l’article (anglais)">I don’t want to be part of this scene anymore - Why wordfreq will not be updated</a>
  138. <a href="/david/cache/2024/1cd6127ccec88387f4804f0c3cf1011a/" hreflang="en"
  139. data-tippy data-description="Access a database of word frequencies, in various natural languages. - rspeer/wordfreq"
  140. data-source="https://github.com/rspeer/wordfreq/blob/master/SUNSET.md#i-dont-want-to-be-part-of-this-scene-anymore"
  141. data-date="2024-09-30"
  142. data-favicon="https://github.githubassets.com/favicons/favicon.png"
  143. data-domain="github.com"
  144. ><svg xmlns="http://www.w3.org/2000/svg"
  145. width="24" height="24" viewBox="0 0 24 24" fill="none"
  146. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  147. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  148. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  149. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  150. </svg>
  151. <span class="sr-only">[archive]</span></a></em></cite></p>
  152. </blockquote>
  153. <p>Je me devais de <a href="/david/biologeek/archives/20040930-ouverture-de-rideau/">marquer le coup</a>&nbsp;🎂.</p>
  154. <p>Ces derniers mois, je me pose beaucoup de questions au sujet du partage, du pillage, de ce que ça veut dire de transmettre aujourd’hui et surtout à quelle échelle. Peut-être que les <abbr lang="en" title="Large Language Model">LLM</abbr> sont une <strong>nouvelle forme de transmission</strong> qui passe par une transformation sur laquelle l’instigateur n’a aucun contrôle. Cela laisse reposer une incroyable responsabilité sur les intermédiaires. La communication directe est déjà un exercice tellement difficile… quels effets de bord à moyen terme sur la crédibilité et la confiance de ce qui est&nbsp;partagé&#8239;?</p>
  155. <p>Et comment peut-on refuser&#8239;? Comment conserver une interaction directe, humaine&#8239;? Peut-être que c’est finalement cela qui est en train d’être perdu lorsqu’on écrit sur le Web&nbsp;: douter du nombre d’intermédiaires. Un premier cercle va avoir droit à la pensée «&nbsp;originale&nbsp;» (interprétée), les suivants auront une pensée «&nbsp;transformée&nbsp;» (hybridée) par la machine et ses concepteur·ices pour une diffusion à une échelle qui m’échappe encore, avec une potentielle volonté manipulatrice qui m’échappe encore&nbsp;plus.</p>
  156. <p>Je ne sais pas encore si j’accepterais ici un <em>loginwall</em>, un <em>paywall</em>, un <em>throttling</em> hyper agressif ou une autre solution à inventer. Je sens bien que ma motivation à publier ouvertement est en chute libre dans un tel contexte. Quitte a être inéluctablement aspiré, peut-être qu’il faut que je me concentre sur des projets qui ont du sens et qui produisent / mettent en scène de la donnée qui mérite davantage d’être&nbsp;diffusée.</p>
  157. <p>À vingt ans, il est peut-être temps de laisser cet espace vivre sa vie aussi, le libérer et recommencer ailleurs, plus petit, différent. Toute corrélation avec ma <a href="/david/2024/06/06/" title="Sensibilité">situation professionnelle</a> serait bien évidemment&nbsp;fortuite.</p>
  158. <blockquote lang="en">
  159. <p>There’s something subversive about writing <mark>without concern</mark> for marketability or&nbsp;scale.</p>
  160. <p><cite><em><a data-link-domain="tracydurnell.com" href="https://tracydurnell.com/2024/09/29/the-secret-power-of-a-blog/" hreflang="en"
  161. title="Consultation de l’article (anglais)">The secret power of a blog</a>
  162. <a href="/david/cache/2024/72bb85e63c3eb4caed75fbb77608a638/" hreflang="en"
  163. data-tippy data-description=""
  164. data-source="https://tracydurnell.com/2024/09/29/the-secret-power-of-a-blog/"
  165. data-date="2024-09-30"
  166. data-favicon="https://tracydurnell.com/favicon.ico"
  167. data-domain="tracydurnell.com"
  168. ><svg xmlns="http://www.w3.org/2000/svg"
  169. width="24" height="24" viewBox="0 0 24 24" fill="none"
  170. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  171. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  172. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  173. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  174. </svg>
  175. <span class="sr-only">[archive]</span></a></em></cite></p>
  176. </blockquote>
  177. <p>Une part d’innocence n’est&nbsp;plus.</p>
  178. <a href="#hr-202" title="Lien vers cette section de la page"><hr id="hr-202" /></a>
  179. <blockquote lang="en">
  180. <p>It will no longer be enough to blog in order to merely “put out content”. The key will be what has always been key to great blogging: expressing your unique, inimitable&nbsp;impression.</p>
  181. <p>Blogging is expressing your impression. It’s deriving action from thought. <mark>Regardless of how much the AI sphere may not be giving thought to its actions, continued blogging in the face of that reality is deliberate action with thought</mark> — something only us humans can do. Blog. Blog against the dying of the&nbsp;light.</p>
  182. <p><cite><em><a data-link-domain="blog.jim-nielsen.com" href="https://blog.jim-nielsen.com/2024/impressionist-blogging/" hreflang="en"
  183. title="Consultation de l’article (anglais)">The Impressionist Blogging Movement</a>
  184. <a href="/david/cache/2024/1a30c47a2b293dcfaee45ee5a67efdd1/" hreflang="en"
  185. data-tippy data-description="Writing about the big beautiful mess that is making things for the world wide web."
  186. data-source="https://blog.jim-nielsen.com/2024/impressionist-blogging/"
  187. data-date="2024-09-30"
  188. data-favicon="https://blog.jim-nielsen.com/favicon.ico"
  189. data-domain="blog.jim-nielsen.com"
  190. ><svg xmlns="http://www.w3.org/2000/svg"
  191. width="24" height="24" viewBox="0 0 24 24" fill="none"
  192. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  193. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  194. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  195. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  196. </svg>
  197. <span class="sr-only">[archive]</span></a></em></cite></p>
  198. </blockquote>
  199. <a href="#hr-203" title="Lien vers cette section de la page"><hr id="hr-203" /></a>
  200. <blockquote>
  201. <p>En ce qui concerne la recherche, il me semble qu’il faudrait interdire toutes les applications: si on veut faire de la recherche avec les LLM, il me semble nécessaire de les utiliser en dehors des couches applicatives, en créant des applications ad hoc. Tous les autres usages devraient être bannis, parce que <mark>l’usage de LLM dans des applications existantes rend impossible la compréhension</mark> précise de la&nbsp;méthodologie.</p>
  202. <p><cite><em><a data-link-domain="blog.sens-public.org" href="http://blog.sens-public.org/marcellovitalirosati/chatgpttronconneuse.html" hreflang="en"
  203. title="Consultation de l’article (anglais)">ChatGPT et la tronçonneuse</a>
  204. <a href="/david/cache/2024/62e66665ed5fa02d7beff383c877fdce/" hreflang="en"
  205. data-tippy data-description="Blogue de Marcello Vitali-Rosati"
  206. data-source="http://blog.sens-public.org/marcellovitalirosati/chatgpttronconneuse.html"
  207. data-date="2024-09-30"
  208. data-favicon="http://blog.sens-public.org/marcellovitalirosati/favicon.png"
  209. data-domain="blog.sens-public.org"
  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. <a href="#hr-204" title="Lien vers cette section de la page"><hr id="hr-204" /></a>
  220. <blockquote>
  221. <p>Révolution dans l’identité biologique! Des cellules de votre mère, de votre frère aîné ou même de votre tante pourraient bien se cacher dans votre propre&nbsp;corps.</p>
  222. <p>Ces cellules, qui ne vous appartiennent pas, vous ont été transmises in utero et sont hébergées dans vos organes, votre sang, votre moelle osseuse. Mais quel rôle jouent-elles? Longtemps associées aux maladies auto-immunes, la découverte de leur capacité à régénérer certains tissus change complètement la perception qu’on a de ces cellules étrangères. <mark>L’étude du microchimérisme ouvre une nouvelle voie</mark> thérapeutique en médecine de&nbsp;régénération.</p>
  223. <p><cite><em><a data-link-domain="coeurdessciences.uqam.ca" href="https://coeurdessciences.uqam.ca/component/eventlist/details/1220-microchimerisme-ces-autres-en-nous.html">Ces autres en nous</a></em>, Nathalie&nbsp;Lambert</cite></p>
  224. </blockquote>
  225. <p>Fascinante intervention de Nathalie Lambert sur les cellules qui se transmettent entre générations et fratries. Et même d’enfants qui ne sont pas arrivés à terme. Avec le côté <em>pharmakon</em> de ces cellules (souches) qui peuvent aider dans certaines situations et potentiellement activer des réactions auto-immunes dans&nbsp;d’autres.</p>
  226. <p>Une bonne partie de ce que j’ai appris en biologie il y a 20&nbsp;ans est déjà fausse. C’est extrêmement&nbsp;stimulant.</p>
  227. <p><a href="/david/biologeek/archives/20060119-open-articles-liberez-votre-savoir/">D’autres choses</a> n’ont <a data-link-domain="forbes.com" href="https://www.forbes.com/sites/michaeltnietzel/2024/09/16/scientists-file-antitrust-lawsuit-against-six-journal-publishers/">pas beaucoup</a> <a data-link-domain="affordance.framasoft.org" href="https://affordance.framasoft.org/2024/09/chercheur-auteur-argent-du-beurre-nantes-universite-contre-philippe-forest/">changé</a> par&nbsp;contre…</p>
  228. <a href="#hr-205" title="Lien vers cette section de la page"><hr id="hr-205" /></a>
  229. <blockquote>
  230. <p>J’aime cette façon qu’on a, aussi, en vieillissant, de ne pas vraiment changer, au contraire, de se retrouver un peu, tout en découvrant sur soi des choses qui&nbsp;apaisent.</p>
  231. <p><cite><em><a data-link-domain="sacripanne.net" href="https://sacripanne.net/post/2024/09/20/Le-privil%C3%A8ge-de-l-%C3%A2ge" hreflang="fr"
  232. title="Consultation de l’article">Le privilège de l’âge</a>
  233. <a href="/david/cache/2024/4703553d711667b5d3a10c0592c51508/" hreflang="fr"
  234. data-tippy data-description="L'âge est un sujet de conversation qui passionne les foules. On est toujours trop vieux ou trop jeune pour : quelque chose, les autres, faire bien, faire mal, être à temps, en"
  235. data-source="https://sacripanne.net/post/2024/09/20/Le-privil%C3%A8ge-de-l-%C3%A2ge"
  236. data-date="2024-09-30"
  237. data-favicon=""
  238. data-domain="sacripanne.net"
  239. ><svg xmlns="http://www.w3.org/2000/svg"
  240. width="24" height="24" viewBox="0 0 24 24" fill="none"
  241. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  242. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  243. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  244. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  245. </svg>
  246. <span class="sr-only">[archive]</span></a></em></cite></p>
  247. </blockquote>
  248. <a href="#hr-206" title="Lien vers cette section de la page"><hr id="hr-206" /></a>
  249. <p>Mot du jour&nbsp;: Friluftsliv.</p>
  250. <a href="#hr-207" title="Lien vers cette section de la page"><hr id="hr-207" /></a>
  251. <p>Acronyme du jour&nbsp;: <a data-link-domain="rationalwiki.org" href="https://rationalwiki.org/wiki/WEIRD">W.E.I.R.D.</a></p>
  252. <a href="#hr-208" title="Lien vers cette section de la page"><hr id="hr-208" /></a>
  253. <p>Lecture du jour&nbsp;: <a data-link-domain="segalcentre.org" href="https://www.segalcentre.org/common/sitemedia/201819_Shows/FR_AllyToolkit.pdf">Trousse d’outils pour les alliées aux luttes autochtones</a> (PDF, 4Mo, <a href="/static/david/blog/2024/FR_AllyToolkit.pdf">cache</a>).</p>
  254. <nav>
  255. <p>
  256. <a href="/david/2024/adaptation/"
  257. title="Liste de tous les articles 2024 associés à cette étiquette"
  258. rel="tag">#adaptation</a>
  259. <a href="/david/2024/ecriture/"
  260. title="Liste de tous les articles 2024 associés à cette étiquette"
  261. rel="tag">#écriture</a>
  262. <a href="/david/2024/ia/"
  263. title="Liste de tous les articles 2024 associés à cette étiquette"
  264. rel="tag">#IA</a>
  265. <a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
  266. </p>
  267. </nav>
  268. <h2>
  269. <a href="/david/2024/06/28/" title="Lien permanent vers cet article">CompAIgnon</a> <time datetime="2024-06-28">28 juin 2024</time>
  270. </h2>
  271. <blockquote lang="en">
  272. <p>Tech companies big and small sell AI as something that thinks for us. It <em>does</em> replace thought with statistics—but it is not intelligent. No one knows what the future will bring. <mark>But is a future without thought a better&nbsp;future?</mark></p>
  273. <p>Now, with a tool that might help us think… How about using AI not to think less but <em>more</em>?</p>
  274. <p><cite><em><a data-link-domain="ia.net" href="https://ia.net/topics/turning-the-tables-on-ai" hreflang="en"
  275. title="Consultation de l’article (anglais)">Turning the Tables on AI</a>
  276. <a href="/david/cache/2024/8f9d64c455a9246d5e23810ed10e3fe2/" hreflang="en"
  277. data-tippy data-description="AI is sold to make us think less... How about using AI not to think less but *more*?"
  278. data-source="https://ia.net/topics/turning-the-tables-on-ai"
  279. data-date="2024-06-24"
  280. data-favicon="https://ia.net/wp-content/themes/iA-library/assets/hotlink-ok/favicon-192x192.png"
  281. data-domain="ia.net"
  282. ><svg xmlns="http://www.w3.org/2000/svg"
  283. width="24" height="24" viewBox="0 0 24 24" fill="none"
  284. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  285. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  286. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  287. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  288. </svg>
  289. <span class="sr-only">[archive]</span></a></em></cite></p>
  290. </blockquote>
  291. <p>Un article qui ne considère pas les <abbr lang="en" title="Large Language Model">LLM</abbr> comme des machines à écrire mais comme des aides à penser. Ce n’est <a href="/david/2024/01/13/" title="Wuwei">toujours pas pour moi</a> mais j’apprécie cette tentative d’inverser la&nbsp;relation.</p>
  292. <p>Quelles doutes / confidences serait-on prêt·es à confesser à une IA plus qu’à un humain&#8239;? Qu’est-ce que cela raconterait de nos peurs et&nbsp;insécurités&#8239;?</p>
  293. <blockquote lang="en">
  294. <p>The people who are most confident AI can replace writers are the ones who think writing is&nbsp;typing.</p>
  295. <p><cite>Andrew Ti sur&nbsp;X</cite></p>
  296. </blockquote>
  297. <a href="#hr-189" title="Lien vers cette section de la page"><hr id="hr-189" /></a>
  298. <blockquote lang="en">
  299. <p>Trust is a precious commodity. <mark>It takes a long time to build trust.</mark> It takes a short time to destroy&nbsp;it.</p>
  300. <p>I am honestly astonished that so many companies don’t seem to realise what they’re&nbsp;destroying.</p>
  301. <p><cite><em><a data-link-domain="adactio.com" href="https://adactio.com/journal/21160" hreflang="en"
  302. title="Consultation de l’article (anglais)">Adactio: Journal-Trust</a>
  303. <a href="/david/cache/2024/d4c01d246dc4f43aeb95c427ac5422a5/" hreflang="en"
  304. data-tippy data-description="How to destroy your greatest asset with AI."
  305. data-source="https://adactio.com/journal/21160"
  306. data-date="2024-06-24"
  307. data-favicon="https://adactio.com/icon.png"
  308. data-domain="adactio.com"
  309. ><svg xmlns="http://www.w3.org/2000/svg"
  310. width="24" height="24" viewBox="0 0 24 24" fill="none"
  311. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  312. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  313. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  314. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  315. </svg>
  316. <span class="sr-only">[archive]</span></a></em></cite></p>
  317. </blockquote>
  318. <p>Lorsque la confiance est perdue avant même d’avoir vraiment été gagnée. <a data-link-domain="blog.kagi.com" href="https://blog.kagi.com/what-is-next-for-kagi#9" hreflang="en"
  319. title="Consultation de l’article (anglais)">Coucou Kagi</a>
  320. <a href="/david/cache/2024/463a5fd436bb887f90f9e01b01b7716b/" hreflang="en"
  321. data-tippy data-description="Two years ago, on June 1st, 2022, Kagi introduced ( https://blog.kagi.com/kagi-orion-public-beta ) a search engine that challenged the ad-supported version of the web."
  322. data-source="https://blog.kagi.com/what-is-next-for-kagi#9"
  323. data-date="2024-06-24"
  324. data-favicon="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>%f0%9f%97%9d%ef%b8%8f</text></svg>"
  325. data-domain="blog.kagi.com"
  326. ><svg xmlns="http://www.w3.org/2000/svg"
  327. width="24" height="24" viewBox="0 0 24 24" fill="none"
  328. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  329. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  330. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  331. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  332. </svg>
  333. <span class="sr-only">[archive]</span></a>. Et peut-être que c’est une bonne chose de ne pas se sentir loyal envers une marque / entreprise en fait&#8239;? Profit et confiance font rarement bon&nbsp;ménage.</p>
  334. <blockquote lang="en">
  335. <p>Apple’s been big on touting their environmental record in past presentations but left it out of this one. <mark>Maybe it’s hard to hype fancy autocorrect</mark> when we’re spinning carbon-intensive power plants back up to power&nbsp;it.</p>
  336. <p>Less privacy. More environmental impact. More hype. <em>Cool.</em></p>
  337. <p>More than anything it all goes to show that the one thing you can count on companies to do over the long term is disappoint&nbsp;you.</p>
  338. <p><cite><em><a data-link-domain="coryd.dev" href="https://coryd.dev/posts/2024/did-anyone-ask-for-these-ai-features/" hreflang="en"
  339. title="Consultation de l’article (anglais)">Did anyone ask for these AI features? • Cory Dransfeldt</a>
  340. <a href="/david/cache/2024/486e49501e495e42b2e40320969c373f/" hreflang="en"
  341. data-tippy data-description="I wasn't going to say anything about WWDC. I wasn't going to say anything about WWDC. But, did anyone actually ask for these AI features?"
  342. data-source="https://coryd.dev/posts/2024/did-anyone-ask-for-these-ai-features/"
  343. data-date="2024-06-24"
  344. data-favicon="https://cdn.coryd.dev/assets/icons/favicon.svg?v=19.5.32"
  345. data-domain="coryd.dev"
  346. ><svg xmlns="http://www.w3.org/2000/svg"
  347. width="24" height="24" viewBox="0 0 24 24" fill="none"
  348. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  349. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  350. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  351. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  352. </svg>
  353. <span class="sr-only">[archive]</span></a></em></cite></p>
  354. </blockquote>
  355. <a href="#hr-190" title="Lien vers cette section de la page"><hr id="hr-190" /></a>
  356. <blockquote lang="en">
  357. <p>Recently, however, a number of execs and so-called “thought leaders” in tech seem to have genuinely convinced themselves that generative AI is on the verge of replacing all the work done by junior engineers. I have read so many articles about how junior engineering work is being automated out of existence, or that the need for junior engineers is shriveling up. It has officially driven me&nbsp;bonkers.</p>
  358. <p>All of this bespeaks a deep misunderstanding about what engineers actually do. <mark>By not hiring and training up junior engineers, we are cannibalizing our own future.</mark> We need to <em>stop doing that</em>.</p>
  359. <p><cite><em><a data-link-domain="stackoverflow.blog" href="https://stackoverflow.blog/2024/06/10/generative-ai-is-not-going-to-build-your-engineering-team-for-you/" hreflang="en"
  360. title="Consultation de l’article (anglais)">Generative AI Is Not Going To Build Your Engineering Team For You</a>
  361. <a href="/david/cache/2024/93c287363dbe9cae22f4360c5b107971/" hreflang="en"
  362. data-tippy data-description=""
  363. data-source="https://stackoverflow.blog/2024/06/10/generative-ai-is-not-going-to-build-your-engineering-team-for-you/"
  364. data-date="2024-06-24"
  365. data-favicon="https://stackoverflow.blog/favicon.ico"
  366. data-domain="stackoverflow.blog"
  367. ><svg xmlns="http://www.w3.org/2000/svg"
  368. width="24" height="24" viewBox="0 0 24 24" fill="none"
  369. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  370. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  371. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  372. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  373. </svg>
  374. <span class="sr-only">[archive]</span></a></em></cite></p>
  375. </blockquote>
  376. <p>C’est l’une de mes réflexions actuelles pour une future activité qui inclurait de la transmission / montée en compétence technique. J’ai l’impression de pouvoir apporter des choses dans le domaine et les personnes que l’on appelle «&nbsp;junior&nbsp;» galèrent pour trouver du boulot alors qu’elles sont déjà&nbsp;capables.</p>
  377. <a href="#hr-191" title="Lien vers cette section de la page"><hr id="hr-191" /></a>
  378. <blockquote lang="en">
  379. <p>The modern tech company or capitalistic enterprise is taking cues from fascism and dictators in how they introduce a small piece of controversy, like a testing of the waters. Wait for an “overreaction” by the masses/their audience/core users, wait for that to burnout and normalize, before flooding the zone with too much to fight or argue with all at once. <mark>This is the same way fascism causes burnout</mark> and complacency and feelings of helplessness, like there’s nothing to be done to fight the&nbsp;thing.</p>
  380. <p>This is what is being done with&nbsp;AI.</p>
  381. <p><cite><em><a data-link-domain="micro.anniegreens.lol" href="https://micro.anniegreens.lol/2024/05/06/ive-had-this.html" hreflang="en"
  382. title="Consultation de l’article (anglais)">I’ve had this thought but never put it into words.</a>
  383. <a href="/david/cache/2024/54ee1030f6fef778ec10e59726bc5731/" hreflang="en"
  384. data-tippy data-description="The modern tech company or capitalistic enterprise is taking …"
  385. data-source="https://micro.anniegreens.lol/2024/05/06/ive-had-this.html"
  386. data-date="2024-06-24"
  387. data-favicon="https://micro.blog/anniegreens/favicon.png"
  388. data-domain="micro.anniegreens.lol"
  389. ><svg xmlns="http://www.w3.org/2000/svg"
  390. width="24" height="24" viewBox="0 0 24 24" fill="none"
  391. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  392. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  393. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  394. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  395. </svg>
  396. <span class="sr-only">[archive]</span></a></em></cite></p>
  397. </blockquote>
  398. <p>À relire dans un contexte d’élections&nbsp;#OhWait.</p>
  399. <a href="#hr-192" title="Lien vers cette section de la page"><hr id="hr-192" /></a>
  400. <blockquote>
  401. <p>L’une des grandes peurs entourant le déploiement des systèmes d’intelligence artificielle (IA) concerne ses potentielles «&nbsp;dérives&nbsp;», quand celle-ci pourrait «&nbsp;déraper&nbsp;». Sauf que, rappelle Ollivier Dyens, l’humanité n’a pas eu besoin de l’IA pour commettre des atrocités – camps de concentration, bombe atomique, massacres à la machette et à la baïonnette, etc. <em>Pourquoi devrions-nous avoir davantage peur de&nbsp;l’IA&#8239;?</em></p>
  402. <p>L’intelligence artificielle, en tant que reflet de «&nbsp;nous-mêmes&nbsp;», pourrait en fait nous servir de miroir, à nous faire voir ce qui nous caractérise&#8239; (en tant qu’êtres humains, individuellement et collectivement), <mark>à nous montrer nos propres biais – et en particulier ceux que nous n’arrivons pas à discerner&nbsp;nous-mêmes.</mark></p>
  403. <p><cite><em><a data-link-domain="lobrassard.net" href="https://www.lobrassard.net/carnet/2024-06-14-idees-recues-ecole-ete-humanites-numeriques.html" hreflang="fr"
  404. title="Consultation de l’article">Cinq idées reçues lors de l’école d’été sur les humanités numériques</a>
  405. <a href="/david/cache/2024/92ca1fc6eb390997db6b76afaf742d63/" hreflang="fr"
  406. data-tippy data-description="Carnet de recherche de Louis-Olivier Brassard."
  407. data-source="https://www.lobrassard.net/carnet/2024-06-14-idees-recues-ecole-ete-humanites-numeriques.html"
  408. data-date="2024-06-24"
  409. data-favicon="data:;base64,iVBORw0KGgo="
  410. data-domain="lobrassard.net"
  411. ><svg xmlns="http://www.w3.org/2000/svg"
  412. width="24" height="24" viewBox="0 0 24 24" fill="none"
  413. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  414. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  415. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  416. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  417. </svg>
  418. <span class="sr-only">[archive]</span></a></em></cite></p>
  419. </blockquote>
  420. <p>Compte-tenu de la façon dont sont entraînés ces LLM, la démonstration de ces biais se ferait en les accentuant… ce qui aurait potentiellement pour effet de les encourager au&nbsp;final&#8239;?!</p>
  421. <a href="#hr-193" title="Lien vers cette section de la page"><hr id="hr-193" /></a>
  422. <blockquote>
  423. <p>Selon Louise Champoux-Paillé et Anne-Marie Croteau de l’École de gestion John-Molson, Université Concordia, les femmes sont moins intéressées par l’IA que les hommes, donc sont plus à risque de perdre leur emploi dans l’avenir. En fait, est-ce vraiment un manque d’intérêt ou ne serait-ce pas plutôt <mark>la difficulté de se tailler une place parce que les hommes ont la&nbsp;préférence?</mark></p>
  424. <p><cite><em><a data-link-domain="mimo.blog" href="https://mimo.blog/le-panneau-des-prejuges" hreflang="fr"
  425. title="Consultation de l’article">Le panneau des préjugés</a>
  426. <a href="/david/cache/2024/63a6d75aee63c072c6d3b174c918740e/" hreflang="fr"
  427. data-tippy data-description="Selon Louise Champoux-Paillé et Anne-Marie Croteau de l'École de gestion John-Molson, Université Concordia, les femmes sont moins intéres..."
  428. data-source="https://mimo.blog/le-panneau-des-prejuges"
  429. data-date="2024-06-24"
  430. data-favicon="https://i.snap.as/CoWgXgFY.png"
  431. data-domain="mimo.blog"
  432. ><svg xmlns="http://www.w3.org/2000/svg"
  433. width="24" height="24" viewBox="0 0 24 24" fill="none"
  434. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  435. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  436. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  437. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  438. </svg>
  439. <span class="sr-only">[archive]</span></a></em></cite></p>
  440. </blockquote>
  441. <p>En parlant de&nbsp;biais.</p>
  442. <a href="#hr-194" title="Lien vers cette section de la page"><hr id="hr-194" /></a>
  443. <blockquote>
  444. <p>Dire que ChatGPT «&nbsp;hallucine&nbsp;» est un anthropomorphisme&nbsp;: c’est une métaphore, une représentation calquée sur une réalité que nous vivons en tant qu’humains&#8239;; en l’occurrence, on hallucine quand on perçoit quelque chose qui n’est pas vraiment&nbsp;là.</p>
  445. <p>Or la réalité du fonctionnement de ChatGPT, qui est basé sur un grand modèle de langue (large language model, LLM) est très différente&nbsp;: […]</p>
  446. <p>C’est essentiel à comprendre&nbsp;: en tant que programme, <mark>la fonction de ChatGPT n’est pas de nous informer mais de simuler un interlocuteur humain.</mark> Pour cela, il assemble des éléments de langage de manière&nbsp;probabiliste.</p>
  447. <p><cite><em><a data-link-domain="arthurperret.fr" href="https://www.arthurperret.fr/blog/2024-06-21-chatgpt-et-l-indifference-a-la-verite.html" hreflang="fr"
  448. title="Consultation de l’article">ChatGPT et l’indifférence à la vérité</a>
  449. <a href="/david/cache/2024/8b0a0eb43814f315e2b296aa5bdd5eee/" hreflang="fr"
  450. data-tippy data-description="Site web d’Arthur Perret, enseignant-chercheur en SIC."
  451. data-source="https://www.arthurperret.fr/blog/2024-06-21-chatgpt-et-l-indifference-a-la-verite.html"
  452. data-date="2024-06-24"
  453. data-favicon="https://www.arthurperret.fr/blog/favicon-32x32.png"
  454. data-domain="arthurperret.fr"
  455. ><svg xmlns="http://www.w3.org/2000/svg"
  456. width="24" height="24" viewBox="0 0 24 24" fill="none"
  457. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  458. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  459. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  460. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  461. </svg>
  462. <span class="sr-only">[archive]</span></a></em></cite></p>
  463. </blockquote>
  464. <p>De l’importance du champ lexical qui entoure ces technologies. Ces outils ne manipulent pas que des mots, ils nous font croire à une nouvelle vérité alors qu’ils n’en ont pas la capacité. Et une partie de l’humanité devient croyante. (Le parallèle avec une religion est&nbsp;assumé.)</p>
  465. <a href="#hr-195" title="Lien vers cette section de la page"><hr id="hr-195" /></a>
  466. <blockquote lang="en">
  467. <p>Don’t let the past steal your&nbsp;present.</p>
  468. <p><cite>Cherríe L. Moraga</cite></p>
  469. </blockquote>
  470. <p>Comment les LLM peuvent-ils nous empêcher de tourner en rond pour aller <a href="/david/stream/2018/04/07/">vers la spirale</a>&#8239;? Je me fais du souci <a data-link-domain="arxiv.org" href="https://arxiv.org/abs/2406.07016">pour la science</a>&nbsp;notamment&nbsp;:</p>
  471. <blockquote lang="en">
  472. <p>Recent large language models (LLMs) can generate and revise text with human-level performance, and have been widely commercialized in systems like ChatGPT. These models come with clear limitations: they can produce inaccurate information, reinforce existing biases, and be easily misused. Yet, many scientists have been using them to assist their scholarly writing. How wide-spread is LLM usage in the academic literature currently? To answer this question, we use an unbiased, large-scale approach, free from any assumptions on academic LLM usage. We study vocabulary changes in 14&nbsp;million PubMed abstracts from 2010-2024, and show how the appearance of LLMs led to an abrupt increase in the frequency of certain style words. <mark>Our analysis based on excess words usage suggests that at least 10% of 2024&nbsp;abstracts were processed with LLMs. This lower bound differed across disciplines, countries, and journals, and was as high as 30% for some PubMed sub-corpora. We show that the appearance of LLM-based writing assistants has had an unprecedented impact in the scientific literature, surpassing the effect of major world events such as the Covid&nbsp;pandemic.</mark></p>
  473. </blockquote>
  474. <p>Avec l’éternel questionnement associé, qui ne date pas&nbsp;d’hier&nbsp;:</p>
  475. <blockquote lang="en">
  476. <p>So we enshrine the idea of intelligence into our computing paradigm when we don’t even know what it means for ourselves. <mark>Are we making computers smarter or ourselves&nbsp;dumber?</mark></p>
  477. <blockquote>
  478. <p>You can’t tell if a machine has gotten smarter or if you’ve just lowered your own standards of intelligence to such a degree that the machine seems&nbsp;smart.</p>
  479. </blockquote>
  480. <p>Prescient.</p>
  481. <p><cite><em><a data-link-domain="blog.jim-nielsen.com" href="https://blog.jim-nielsen.com/2024/notes-from-you-are-not-a-gadget/" hreflang="en"
  482. title="Consultation de l’article (anglais)">Notes From “You Are Not A Gadget”</a>
  483. <a href="/david/cache/2024/b39aef611801e2b15f189e8d02586b88/" hreflang="en"
  484. data-tippy data-description="Writing about the big beautiful mess that is making things for the world wide web."
  485. data-source="https://blog.jim-nielsen.com/2024/notes-from-you-are-not-a-gadget/"
  486. data-date="2024-06-24"
  487. data-favicon="https://blog.jim-nielsen.com/favicon.ico"
  488. data-domain="blog.jim-nielsen.com"
  489. ><svg xmlns="http://www.w3.org/2000/svg"
  490. width="24" height="24" viewBox="0 0 24 24" fill="none"
  491. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  492. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  493. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  494. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  495. </svg>
  496. <span class="sr-only">[archive]</span></a></em></cite></p>
  497. </blockquote>
  498. <nav>
  499. <p>
  500. <a href="/david/2024/ecriture/"
  501. title="Liste de tous les articles 2024 associés à cette étiquette"
  502. rel="tag">#écriture</a>
  503. <a href="/david/2024/ia/"
  504. title="Liste de tous les articles 2024 associés à cette étiquette"
  505. rel="tag">#IA</a>
  506. <a href="/david/2024/parvenir/"
  507. title="Liste de tous les articles 2024 associés à cette étiquette"
  508. rel="tag">#parvenir</a>
  509. <a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
  510. </p>
  511. </nav>
  512. <h2>
  513. <a href="/david/2024/02/21/" title="Lien permanent vers cet article">Cinéma</a> <time datetime="2024-02-21">21 février 2024</time>
  514. </h2>
  515. <blockquote lang="en">
  516. <p>Software is a creative industry with more in common with media production industries than&nbsp;housebuilding.</p>
  517. <p><cite><em><a data-link-domain="baldurbjarnason.com" href="https://www.baldurbjarnason.com/2024/software-is-a-medium-of-setbacks/" hreflang="en"
  518. title="Consultation de l’article (anglais)">Software is a medium of setbacks, but a medium’s limitations don’t define the artist</a>
  519. <a href="/david/cache/2024/d133365d1dec62b9ad7ab4c911db863a/" hreflang="en"
  520. data-tippy data-description="Much of the time, progress in software development comes coupled with a matching regression.“We’ve made it better.”(Whispered) “But we’ve also made it worse. The evolution of Apple’s computing devices makes for a decent example."
  521. data-source="https://www.baldurbjarnason.com/2024/software-is-a-medium-of-setbacks/"
  522. data-date="2024-02-21"
  523. data-favicon="https://www.baldurbjarnason.com/dark-bird.svg"
  524. data-domain="baldurbjarnason.com"
  525. ><svg xmlns="http://www.w3.org/2000/svg"
  526. width="24" height="24" viewBox="0 0 24 24" fill="none"
  527. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  528. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  529. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  530. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  531. </svg>
  532. <span class="sr-only">[archive]</span></a></em></cite></p>
  533. </blockquote>
  534. <p>Pour filer la métaphore, je me demande si les assistants à base de <a data-link-domain="vitrinelinguistique.oqlf.gouv.qc.ca" href="https://vitrinelinguistique.oqlf.gouv.qc.ca/fiche-gdt/fiche/26570880/grand-modele-de-langage">grands modèles de langage</a> seraient l’équivalent des environnements verts dans lesquels évoluent les acteur·ices aujourd’hui. Leur métier a changé avec la technologie, leur jeu a dû s’adapter pour transmettre des émotions dans un contexte où iels ne maîtrisent plus du tout la chaîne de représentation de leur travail. J’imagine que même la vérification de leur prise nécessite une bonne dose&nbsp;d’imaginaire.</p>
  535. <p>Quel est leur sentiment à la fin d’une journée de tournage&#8239;? Quel sera le&nbsp;mien&#8239;?</p>
  536. <blockquote lang="en">
  537. <p>Dear Mr. Architect!</p>
  538. <p>Please design and build me a house. I am not quite sure of what I need, so you should use your discretion. My house should have between two and forty-five bedrooms. Just make sure the plans are such that the bedrooms can be easily added or deleted. When you bring the blueprints to me, I will make the final decision of what I want. Also, bring me the cost breakdown for each configuration so that I can arbitrarily pick&nbsp;one.</p>
  539. <p><cite><em><a data-link-domain="gksoft.com" href="http://www.gksoft.com/a/fun/architects.html" hreflang="en"
  540. title="Consultation de l’article (anglais)">If Architects had to work like Programmers</a>
  541. <a href="/david/cache/2024/2ad967b8fc35e160fa8e6c1d2a3b4734/" hreflang="en"
  542. data-tippy data-description="You must be thrilled to be working on an interesting project as this!"
  543. data-source="http://www.gksoft.com/a/fun/architects.html"
  544. data-date="2024-02-21"
  545. data-favicon=""
  546. data-domain="gksoft.com"
  547. ><svg xmlns="http://www.w3.org/2000/svg"
  548. width="24" height="24" viewBox="0 0 24 24" fill="none"
  549. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  550. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  551. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  552. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  553. </svg>
  554. <span class="sr-only">[archive]</span></a></em>, 1995</cite></p>
  555. </blockquote>
  556. <a href="#hr-83" title="Lien vers cette section de la page"><hr id="hr-83" /></a>
  557. <blockquote>
  558. <p>Fracas est un collectif queer et féministe d’aide à la gestion de conflits interpersonnels, de violences et d’agressions au sein de&nbsp;collectifs.</p>
  559. <p><cite><em><a data-link-domain="collectif-fracas.com" href="https://www.collectif-fracas.com/" hreflang="fr"
  560. title="Consultation de l’article">Fracas, collectif queer et féministe d’aide à la gestion de conflits</a>
  561. <a href="/david/cache/2024/f1041ff1c0dfabc719d64a4a5bcb0c10/" hreflang="fr"
  562. data-tippy data-description="Fracas est un collectif queer et féministe d’aide à la gestion de conflits interpersonnels, de violences et d’agressions au sein de collectifs."
  563. data-source="https://www.collectif-fracas.com/"
  564. data-date="2024-02-21"
  565. data-favicon="https://assets-global.website-files.com/60339ece26e0011279a8b071/614c50304051ad041149ae60_favicon.png"
  566. data-domain="collectif-fracas.com"
  567. ><svg xmlns="http://www.w3.org/2000/svg"
  568. width="24" height="24" viewBox="0 0 24 24" fill="none"
  569. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  570. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  571. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  572. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  573. </svg>
  574. <span class="sr-only">[archive]</span></a></em></cite></p>
  575. </blockquote>
  576. <p>Si peu de temps et tellement à&nbsp;explorer.</p>
  577. <p>(<a data-link-domain="cqfd-journal.org" href="https://cqfd-journal.org/Se-reapproprier-nos-conflits" hreflang="fr"
  578. title="Consultation de l’article">Via CQFD</a>
  579. <a href="/david/cache/2024/81e8bd49021e320b84e5d4fbd4c7f587/" hreflang="fr"
  580. data-tippy data-description="En se penchant sur les manières dont sont prises en charge les violences (notamment sexistes et sexuelles) dans les milieux militants, l’ouvrage (...)"
  581. data-source="https://cqfd-journal.org/Se-reapproprier-nos-conflits"
  582. data-date="2024-02-21"
  583. data-favicon="https://cqfd-journal.org/squelettes/favicon.ico"
  584. data-domain="cqfd-journal.org"
  585. ><svg xmlns="http://www.w3.org/2000/svg"
  586. width="24" height="24" viewBox="0 0 24 24" fill="none"
  587. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  588. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  589. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  590. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  591. </svg>
  592. <span class="sr-only">[archive]</span></a> qui arrive à ne faire aucun lien vers le site en question, ça me rend&nbsp;fou…)</p>
  593. <nav>
  594. <p>
  595. <a href="/david/2024/dystopie/"
  596. title="Liste de tous les articles 2024 associés à cette étiquette"
  597. rel="tag">#dystopie</a>
  598. <a href="/david/2024/ia/"
  599. title="Liste de tous les articles 2024 associés à cette étiquette"
  600. rel="tag">#IA</a>
  601. <a href="/david/2024/psychologie/"
  602. title="Liste de tous les articles 2024 associés à cette étiquette"
  603. rel="tag">#psychologie</a>
  604. <a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
  605. </p>
  606. </nav>
  607. <h2>
  608. <a href="/david/2024/01/13/" title="Lien permanent vers cet article">Wuwei</a> <time datetime="2024-01-13">13 janvier 2024</time>
  609. </h2>
  610. <blockquote>
  611. <p>Le <em>wuwei</em>, dans le taoïsme, est d’ailleurs composé de deux idéogrammes&nbsp;: le rien et la volonté. Et on sait à quel point il faut beaucoup de volonté pour revendiquer davantage de rien. Il se traduit généralement par <em>non-agir</em> ou <em>non-intervention</em>, mais cela ne signifie pas pour autant rester les bras croisés en rejetant toute nouveauté, simplement de faire des choix éclairés et de ne pas forcer le cours des choses. Se fixer des limites, distinguer ce qui relève du progrès vers une vie bonne et décente de ce qui nous aliène, savoir <em>ne pas</em> est un art de vivre au quotidien. Et je ne peux m’empêcher de penser que Bartleby devait être&nbsp;chinois.</p>
  612. <p>Décliner l’usage de ce dont on n’a pas besoin, <mark>discerner parmi les technologies celles qui risquent de faire plus de mal que de bien,</mark> voilà qui manque cruellement à notre époque où l’on a oublié que parfois ne pas nuire vaut mieux qu’agir. Il y aurait pourtant un nombre incalculable d’applications pratiques du <em>wuwei</em>, de la géo-ingénierie à l’intelligence artificielle, tant de cas où il serait bon que l’espèce humaine sache se&nbsp;retenir.</p>
  613. <p><cite><em>Alors nous irons trouver la beauté ailleurs</em>, Corinne Morel&nbsp;Darleux</cite></p>
  614. </blockquote>
  615. <p>Cette année encore, ce sera pour moi le <em>non-usage</em> de l’<a data-link-domain="simonwillison.net" href="https://simonwillison.net/2024/Jan/7/call-it-ai/" hreflang="en"
  616. title="Consultation de l’article (anglais)">intelligence artificielle</a>
  617. <a href="/david/cache/2024/3ea27fca4fabb81676fc1b98264f3bd8/" hreflang="en"
  618. data-tippy data-description="Update 9th January 2024: This post was clumsily written and failed to make the point I wanted it to make. I’ve published a follow-up, What I should have said about …"
  619. data-source="https://simonwillison.net/2024/Jan/7/call-it-ai/"
  620. data-date="2024-01-13"
  621. data-favicon="https://simonwillison.net/favicon.ico"
  622. data-domain="simonwillison.net"
  623. ><svg xmlns="http://www.w3.org/2000/svg"
  624. width="24" height="24" viewBox="0 0 24 24" fill="none"
  625. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  626. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  627. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  628. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  629. </svg>
  630. <span class="sr-only">[archive]</span></a> explicite qui sera mon <em>wuwei</em>. Je précise le <q lang="fr">explicite</q> car il y en a déjà plein partout dans mon téléphone et ailleurs. J’ai peut-être une des dernières générations d’appareil photo qui ne va pas adapter l’image à une norme / culture apprise. Je suis curieux d’observer le nivellement (au sens moyenne, pas forcément par le bas) que vont provoquer les <abbr title="Large Language Model">LLM</abbr> dans le domaine, peut-être deviendra-t-il plus imperceptible qu’une <a data-link-domain="theverge.com" href="https://www.theverge.com/2023/3/13/23637401/samsung-fake-moon-photos-ai-galaxy-s21-s23-ultra" hreflang="en"
  631. title="Consultation de l’article (anglais)">lune</a>
  632. <a href="/david/cache/2024/e990536ed88823f047296ea25a6b7933/" hreflang="en"
  633. data-tippy data-description="A Reddit post has revealed just how much post-processing the Galaxy S23’s camera applies when it detects it’s taking a photo of the Moon, inserting extra detail that isn’t present in reality."
  634. data-source="https://www.theverge.com/2023/3/13/23637401/samsung-fake-moon-photos-ai-galaxy-s21-s23-ultra"
  635. data-date="2024-01-13"
  636. data-favicon="https://www.theverge.com/icons/favicon_32x32.png"
  637. data-domain="theverge.com"
  638. ><svg xmlns="http://www.w3.org/2000/svg"
  639. width="24" height="24" viewBox="0 0 24 24" fill="none"
  640. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  641. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  642. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  643. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  644. </svg>
  645. <span class="sr-only">[archive]</span></a> ou une <a data-link-domain="theverge.com" href="https://www.theverge.com/2023/12/2/23985299/iphone-bridal-photo-three-poses-explanation-panorama-photoshop-generative-ai" hreflang="en"
  646. title="Consultation de l’article (anglais)">mariée</a>
  647. <a href="/david/cache/2024/668d0f82ae65b0e94ea76145057759a7/" hreflang="en"
  648. data-tippy data-description="Tessa Coates’ picture of one moment showing her in three different poses isn’t an iPhone Live Photo glitch or Photoshop; it’s multiple pictures stitched in “pano” mode."
  649. data-source="https://www.theverge.com/2023/12/2/23985299/iphone-bridal-photo-three-poses-explanation-panorama-photoshop-generative-ai"
  650. data-date="2024-01-13"
  651. data-favicon="https://www.theverge.com/icons/favicon_32x32.png"
  652. data-domain="theverge.com"
  653. ><svg xmlns="http://www.w3.org/2000/svg"
  654. width="24" height="24" viewBox="0 0 24 24" fill="none"
  655. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  656. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  657. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  658. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  659. </svg>
  660. <span class="sr-only">[archive]</span></a> mais il sera toujours&nbsp;là.</p>
  661. <p>Ce <strong>explicite</strong> correspond principalement pour moi à des <em>prompts</em> qui m’aideraient à coder. Je regarde ce qui se fait dans le domaine et j’en vois l’intérêt mais je vois aussi au détriment de tout ce que cela est rendu possible. Des humains-esclaves qui modèrent ce qui est généré d’un côté, des sources d’apprentissage non consenties —&nbsp;voire privées&nbsp;— et des ressources pharaoniques pour réussir à aligner 3&nbsp;fonctions qu’il faut ensuite comprendre et adapter de toute&nbsp;façon.</p>
  662. <p>Et puis il y a toute cette zone grise, je me sers par exemple de la reconnaissance de caractère intégrée à Photos.app de macOS pour retranscrire les citations depuis des photos de passages de livres. Auparavant, je les recopiais à la main. Est-ce que cela changeait ma manière de les&nbsp;ré-interpréter&#8239;?</p>
  663. <a href="#hr-29" title="Lien vers cette section de la page"><hr id="hr-29" /></a>
  664. <blockquote>
  665. <p>Il nous faut trouver de nouvelles manières littéraires susceptibles de percuter sans chercher à convaincre, et déjouer le didactisme qui veut à tout prix expliquer et instruire. Peut-être faudrait-il aller jusqu’à s’imposer comme contrainte de proscrire l’usage de certains mots afin de renouveler le&nbsp;genre.</p>
  666. <p>Écologie, capitalisme, croissance, nature, social, climat, peuple, vert, environnement, progrès, révolution, biodiversité, démocratie&nbsp;: la plupart d’entre eux ne manquerait à personne tant ils ont été dévoyés et usés jusqu’à la lie. Mais notre meilleure botte est sans doute de miser sur la capacité du sensible à <em>affecter</em>.</p>
  667. <p><mark>En littérature, c’est l’empathie qui amène à la réflexion et non l’inverse.</mark> Vous pouvez développer l’argumentaire le plus serré qui soit dans un livre, je doute fort que cela fasse changer quiconque d’avis. En revanche, donnez-nous un personnage à chérir, faites-nous partager son intimité, ses émois, ses douleurs et ses joies, et il nous sera bien plus aisé de prendre en compte son point de vue, à défaut de le&nbsp;partager.</p>
  668. <p><cite><em>Ibid.</em></cite></p>
  669. </blockquote>
  670. <p>De plus en plus tenté d’explorer cette piste. Je me <a href="/david/stream/2018/11/13/">souviens</a> <a href="/david/stream/2018/11/25/">avec</a> <a href="/david/stream/2018/11/27/">émotion</a> de ma lecture de <em>Professeur cherche élève ayant désir de sauver le monde</em> par Daniel&nbsp;Quinn.</p>
  671. <nav>
  672. <p>
  673. <a href="/david/2024/ecriture/"
  674. title="Liste de tous les articles 2024 associés à cette étiquette"
  675. rel="tag">#écriture</a>
  676. <a href="/david/2024/ia/"
  677. title="Liste de tous les articles 2024 associés à cette étiquette"
  678. rel="tag">#IA</a>
  679. <a href="/david/2024/parvenir/"
  680. title="Liste de tous les articles 2024 associés à cette étiquette"
  681. rel="tag">#parvenir</a>
  682. <a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
  683. </p>
  684. </nav>
  685. <h2>
  686. <a href="/david/2024/01/10/" title="Lien permanent vers cet article">Écriture</a> <time datetime="2024-01-10">10 janvier 2024</time>
  687. </h2>
  688. <blockquote lang="en">
  689. <p>And, I’ll assume we all agree that owning your own website is a <em>good thing</em>, and we all want more people to do&nbsp;it.</p>
  690. <p>But here’s the thing: we need more tools for it. We need simpler tools for it. And we need to make installing and using them <em>trivially simple</em>.</p>
  691. <p>We need more self-hosted platforms for personal publishing that <em>aren’t Wordpress</em>. <mark>And don’t point me to Hugo or Netlify or Eleventy or all those things - all of them are great, but none of them are simple enough.</mark> We need web publishing tools that do not require users to open the Terminal <em>at all</em>. And we need lots of&nbsp;them.</p>
  692. <p>We need a whole <em>galaxy</em> of&nbsp;options.</p>
  693. <p><cite><em><a data-link-domain="gilest.org" href="https://gilest.org/indie-easy.html" hreflang="en"
  694. title="Consultation de l’article (anglais)">Let’s make the indie web easier</a>
  695. <a href="/david/cache/2024/faa1d8cae94da6838ff9351e5df791ca/" hreflang="en"
  696. data-tippy data-description=""
  697. data-source="https://gilest.org/indie-easy.html"
  698. data-date="2024-01-09"
  699. data-favicon="https://gilest.org/favicon.ico"
  700. data-domain="gilest.org"
  701. ><svg xmlns="http://www.w3.org/2000/svg"
  702. width="24" height="24" viewBox="0 0 24 24" fill="none"
  703. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  704. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  705. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  706. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  707. </svg>
  708. <span class="sr-only">[archive]</span></a></em></cite></p>
  709. </blockquote>
  710. <p>Quelques étoiles dans la&nbsp;galaxie&nbsp;:</p>
  711. <ul>
  712. <li><a data-link-domain="atelier.scribouilli.org" href="https://atelier.scribouilli.org/">Scribouilli</a> (<a data-link-domain="github.com" href="https://github.com/Scribouilli/scribouilli">code</a>) par <a data-link-domain="lechappeebelle.team" href="https://lechappeebelle.team/">L’Échappée Belle</a>&#8239;;</li>
  713. <li><a data-link-domain="write.as" href="https://write.as/">Write.as</a> (<a data-link-domain="writefreely.org" href="https://writefreely.org/">open-source</a>) est le plus proche que je pourrais conseiller avec un support commercial de <a data-link-domain="musing.studio" href="https://musing.studio/">Musing Studio</a>&#8239;;</li>
  714. <li><a data-link-domain="masto.host" href="https://masto.host/">mastohost</a> —&nbsp;que <a data-link-domain="fedi.larlet.fr" href="https://fedi.larlet.fr/">j’utilise</a>&nbsp;— permet d’avoir son propre domaine aussi sans vraiment de connaissance technique, le support est&nbsp;réactif&#8239;;</li>
  715. <li><a data-link-domain="carrd.co" href="https://carrd.co/">Carrd</a> est revenu plusieurs fois dans ma bulle ces derniers&nbsp;temps&#8239;;</li>
  716. <li><a data-link-domain="pika.page" href="https://pika.page/">Pika</a> aussi avec une saveur plus&nbsp;humaine.</li>
  717. </ul>
  718. <p>Il y a une bonne liste dans <a data-link-domain="mastodon.social" href="https://mastodon.social/@matthiasott/111557355056827064">cette discussion</a> et une autre <a data-link-domain="robertkingett.com" href="https://robertkingett.com/links/">par ici</a> (section <q lang="en">Managed Static site hosts or Blogging platforms</q>).</p>
  719. <a href="#hr-21" title="Lien vers cette section de la page"><hr id="hr-21" /></a>
  720. <blockquote lang="en">
  721. <p>Among its suggestions: write a longer headline; split a six-sentence paragraph up because it’s “too long”; and replace “too complex” words like “invariably,” “notoriety,” and “modification.” Dozens of sentences were flagged as being confusing (I disagree) — and it really hated em dashes. I rewrote my prose over and over, but it didn’t seem to satisfy my robot grader. I finally chose one thought per sentence, broke up paragraphs, and replaced words with suggested keywords to get rid of the red dots signaling&nbsp;problems.</p>
  722. <p><mark>The result feels like an AI summary of my story</mark> — at any moment, a paragraph could start with “In conclusion…” or “The next thing to consider is…” The nuance, voice, and unexpected twists and turns have been snuffed out. I’m sure some people would prefer this uncomplicated, beat-by-beat version of the story, but it’s gone from being a story written by a real person to a clinical, stiff series of&nbsp;sentences.</p>
  723. <p><cite><em><a data-link-domain="theverge.com" href="https://www.theverge.com/c/23998379/google-search-seo-algorithm-webpage-optimization" hreflang="en"
  724. title="Consultation de l’article (anglais)">The Perfect Web Page</a>
  725. <a href="/david/cache/2024/3debc675a055d691b32c7d6904531eb4/" hreflang="en"
  726. data-tippy data-description="How the internet reshaped itself around Google’s search algorithms — and into a world where websites look the same."
  727. data-source="https://www.theverge.com/c/23998379/google-search-seo-algorithm-webpage-optimization"
  728. data-date="2024-01-09"
  729. data-favicon="https://cdn.vox-cdn.com/uploads/chorus_asset/file/23989695/favicon_32x32.png"
  730. data-domain="theverge.com"
  731. ><svg xmlns="http://www.w3.org/2000/svg"
  732. width="24" height="24" viewBox="0 0 24 24" fill="none"
  733. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  734. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  735. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  736. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  737. </svg>
  738. <span class="sr-only">[archive]</span></a></em></cite></p>
  739. </blockquote>
  740. <p>Un article de TheVerge qui risque de ne pas être très bien référencé. Le moment où l’on s’adapte pour nourrir les robots n’est pas nouveau, on a «&nbsp;juste&nbsp;» mis une nouvelle étiquette dessus en 2023&nbsp;qui permet aux robots / algorithmes de se battre entre eux de manière&nbsp;explicite.</p>
  741. <p>Pas sûr de vouloir <a data-link-domain="darkvisitors.com" href="https://darkvisitors.com/robots-txt-builder">entrer sur le ring</a> sans m’épuiser très&nbsp;vite.</p>
  742. <blockquote lang="en">
  743. <p>I propose <mark>Data Luddism</mark> as a radical response to the productive power of big data and predictive algorithms. My starting point is not the Romantic neo-Luddism of Kirkpatrick Sale but the historical Luddism of 1811-1816, and the Luddites' own rhetoric regarding their resistance to 'obnoxious&nbsp;machines'.</p>
  744. <p><cite><em><a data-link-domain="danmcquillan.org" href="https://www.danmcquillan.org/dataluddism.html" hreflang="en"
  745. title="Consultation de l’article (anglais)">Data Luddism</a>
  746. <a href="/david/cache/2024/b1da1249f2db388d7e84d6ad23c2fc5d/" hreflang="en"
  747. data-tippy data-description=""
  748. data-source="https://www.danmcquillan.org/dataluddism.html"
  749. data-date="2024-01-09"
  750. data-favicon=""
  751. data-domain="danmcquillan.org"
  752. ><svg xmlns="http://www.w3.org/2000/svg"
  753. width="24" height="24" viewBox="0 0 24 24" fill="none"
  754. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  755. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  756. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  757. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  758. </svg>
  759. <span class="sr-only">[archive]</span></a></em></cite></p>
  760. </blockquote>
  761. <a href="#hr-22" title="Lien vers cette section de la page"><hr id="hr-22" /></a>
  762. <blockquote lang="en">
  763. <p>The <code>everything</code> package and its 3,000+ sub-packages have caused a Denial of Service (DOS) for anyone who installs it. We’re talking about storage space running out and system resource&nbsp;exhaustion.</p>
  764. <p>But that’s not all. The creator took their prank to the next level by setting up http://everything.npm.lol, showcasing the chaos they unleashed. They even included a meme from Skyrim, adding some humor (or mockery, depending on your perspective) to the&nbsp;situation.</p>
  765. <p><cite><em><a data-link-domain="socket.dev" href="https://socket.dev/blog/when-everything-becomes-too-much" hreflang="en"
  766. title="Consultation de l’article (anglais)">When “Everything” Becomes Too Much: The npm Package Chaos of 2024</a>
  767. <a href="/david/cache/2024/4a56aa5497e68df0c5bb1d5331203219/" hreflang="en"
  768. data-tippy data-description="An NPM user named PatrickJS launched a troll campaign with a package called everything, which depends on all public npm packages."
  769. data-source="https://socket.dev/blog/when-everything-becomes-too-much"
  770. data-date="2024-01-09"
  771. data-favicon="https://socket.dev/favicon-32x32.png"
  772. data-domain="socket.dev"
  773. ><svg xmlns="http://www.w3.org/2000/svg"
  774. width="24" height="24" viewBox="0 0 24 24" fill="none"
  775. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  776. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  777. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  778. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  779. </svg>
  780. <span class="sr-only">[archive]</span></a></em></cite></p>
  781. </blockquote>
  782. <p><code>npm install lol</code> 🤣</p>
  783. <p>En <a data-link-domain="jop2024.lol" href="https://jop2024.lol/">parlant de lol</a>…</p>
  784. <a href="#hr-23" title="Lien vers cette section de la page"><hr id="hr-23" /></a>
  785. <blockquote>
  786. <p>Si les fictions, celles qu’on s’invente, celles que nous souffle notre inconscient comme celles qu’on lit, ont un rôle majeur à jouer dans la fabrique de notre rapport au monde, alors voilà qui plaide pour redoubler d’ardeur quand il s’agit de nourrir soigneusement nos imaginaires. Quand on voit les déferlements de violence et le virilisme qui caractérisent les héros modernes, on ne peut que s’interroger sur le type de rapport au monde que cela crée. C’est la raison pour laquelle <mark>la bataille culturelle passe aussi par la création de nouvelles utopies,</mark> ni niaises ni naïves, qui puissent donner d’autres matières à rêver qu’un monde dévasté et peuplé de soldats&nbsp;augmentés.</p>
  787. <p>[…] Nous avons besoin d’autres cadres de pensée dans lesquels évoluer. Nous avons besoin d’<em>ailleurs culturels</em> pour sortir de l’ornière et nous&nbsp;dérouter.</p>
  788. <p><cite><em>Alors nous irons trouver la beauté ailleurs</em>, Corinne Morel&nbsp;Darleux</cite></p>
  789. </blockquote>
  790. <p>Nous accueillons une nouvelle personne chez Scopyleft, l’occasion de former une <a href="/david/2021/03/17/">nouvelle équipe</a>. Ces <em>ailleurs culturels</em> doivent pouvoir être partagés et inspirer pour réussir à&nbsp;essaimer.</p>
  791. <p>C’est l’une de mes frustrations à ne plus <a href="/david/2021/01/26/">participer à des regroupements</a>, ne pas partager par ce biais là les expériences menées depuis 11&nbsp;ans en matière d’horizontalité et de travail en&nbsp;commun·s.</p>
  792. <a href="#hr-24" title="Lien vers cette section de la page"><hr id="hr-24" /></a>
  793. <blockquote lang="en">
  794. <p>So when we wonder where all the websites have gone, know it’s the <em>curators</em> we’re nostalgic for because the curators showed us the best the web had to offer once upon a time. And the curators— the tenders, aggregators, collectors, and connectors— can bring us back to something better. Because it’s still out there, we just have to find&nbsp;it.</p>
  795. <p>Here’s the best part. <mark>You can be that curator right now, at this very moment.</mark> You can start to rebuild the interconnectivity that made the web fun to explore. And you don’t need to be a computer scientist to do&nbsp;it.</p>
  796. <p><cite><em><a data-link-domain="fromjason.xyz" href="https://www.fromjason.xyz/p/notebook/where-have-all-the-websites-gone/" hreflang="en"
  797. title="Consultation de l’article (anglais)">Where have all the websites gone?</a>
  798. <a href="/david/cache/2024/c3272392d462da90874d32841e5caac8/" hreflang="en"
  799. data-tippy data-description="It feels like all the cool websites from the late 2000s are gone. But maybe we are looking at this the wrong way. Maybe it is us who vanished."
  800. data-source="https://www.fromjason.xyz/p/notebook/where-have-all-the-websites-gone/"
  801. data-date="2024-01-09"
  802. data-favicon="https://www.fromjason.xyz/img/favicon.png"
  803. data-domain="fromjason.xyz"
  804. ><svg xmlns="http://www.w3.org/2000/svg"
  805. width="24" height="24" viewBox="0 0 24 24" fill="none"
  806. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  807. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  808. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  809. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  810. </svg>
  811. <span class="sr-only">[archive]</span></a></em></cite></p>
  812. </blockquote>
  813. <p>Dixième jour que j’ai l’impression de faire des billets trop longs. Beaucoup d’éparpillement suite à un cumul d’onglets ouverts, parfois depuis bien longtemps. Ça vous laisse un petit exercice de <q lang="en">curation</q> vous&nbsp;aussi&nbsp;:).</p>
  814. <nav>
  815. <p>
  816. <a href="/david/2024/apprentissage/"
  817. title="Liste de tous les articles 2024 associés à cette étiquette"
  818. rel="tag">#apprentissage</a>
  819. <a href="/david/2024/ecriture/"
  820. title="Liste de tous les articles 2024 associés à cette étiquette"
  821. rel="tag">#écriture</a>
  822. <a href="/david/2024/ia/"
  823. title="Liste de tous les articles 2024 associés à cette étiquette"
  824. rel="tag">#IA</a>
  825. <a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
  826. </p>
  827. </nav>
  828. <form action="/david/recherche/" method="get">
  829. <fieldset>
  830. <legend>Recherche</legend>
  831. <label for="input-search">Termes de votre recherche :</label>
  832. <input id="input-search" type="search" name="s" aria-describedby="indexation-infos" required>
  833. <input type="submit" value="Chercher">
  834. <p id="indexation-infos">
  835. <small>
  836. Seuls les contenus de ces 8 dernières années sont indexés.
  837. </small>
  838. </p>
  839. </fieldset>
  840. </form>
  841. <aside>
  842. <theme-toggle></theme-toggle>
  843. </aside>
  844. </article>
  845. <hr>
  846. <footer>
  847. <p>
  848. <a href="/david/" title="Aller à l’accueil">Accueil</a>
  849. <a href="/david/log/" title="Accès au flux RSS">Suivre</a>
  850. <a href="http://larlet.com"
  851. title="Go to my English profile"
  852. data-instant>Pro</a>
  853. <a href="mailto:david%40larlet.fr" title="Envoyer un courriel">Email</a>
  854. <abbr title="Hébergeur : Alwaysdata, 62 rue Tiquetonne 75002 Paris, +33184162340">Légal</abbr>
  855. </p>
  856. <template id="theme-selector">
  857. <form>
  858. <style type="text/css">
  859. fieldset div {
  860. text-align: center;
  861. }
  862. </style>
  863. <fieldset>
  864. <legend>Thème</legend>
  865. <div>
  866. <label>
  867. <input type="radio" value="auto" name="chosen-color-scheme" checked>
  868. Auto
  869. </label>
  870. <label>
  871. <input type="radio" value="dark" name="chosen-color-scheme">
  872. Foncé
  873. </label>
  874. <label>
  875. <input type="radio" value="light" name="chosen-color-scheme">
  876. Clair
  877. </label>
  878. </div>
  879. </fieldset>
  880. </form>
  881. </template>
  882. </footer>
  883. <script src="/static/david/js/instantpage-5.1.0.min.js" type="module"></script>
  884. <script>
  885. class ThemeToggle extends HTMLElement {
  886. constructor() {
  887. super()
  888. const themeSelectorTemplate = document.querySelector('#theme-selector')
  889. const form = themeSelectorTemplate.content.firstElementChild
  890. this.attachShadow({ mode: 'open' })
  891. this.shadowRoot.appendChild(form.cloneNode(true))
  892. }
  893. connectedCallback() {
  894. const form = this.shadowRoot.querySelector('form')
  895. form.addEventListener('change', (e) => {
  896. const chosenColorScheme = e.target.value
  897. localStorage.setItem('theme', chosenColorScheme)
  898. toggleTheme(chosenColorScheme)
  899. })
  900. const selectedTheme = localStorage.getItem('theme')
  901. if (selectedTheme && selectedTheme !== 'undefined') {
  902. form.querySelector(`[value="${selectedTheme}"]`).checked = true
  903. }
  904. }
  905. }
  906. const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
  907. window.addEventListener('load', () => {
  908. let colorsLayer = undefined
  909. let hasDarkRules = false
  910. for (const styleSheet of Array.from(document.styleSheets)) {
  911. let mediaRules = []
  912. for (const layerRule of styleSheet.cssRules) {
  913. if (!(layerRule instanceof CSSLayerBlockRule)) {
  914. continue
  915. }
  916. if (layerRule.name === 'colors') {
  917. colorsLayer = layerRule
  918. }
  919. for (const cssRule of layerRule.cssRules) {
  920. if (cssRule.type !== CSSRule.MEDIA_RULE) {
  921. continue
  922. }
  923. // WARNING: Safari does not have/supports `conditionText`.
  924. if (cssRule.conditionText) {
  925. if (cssRule.conditionText !== prefersColorSchemeDark) {
  926. continue
  927. }
  928. } else {
  929. if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
  930. continue
  931. }
  932. }
  933. mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
  934. }
  935. }
  936. // WARNING: do not try to insert a Rule to a styleSheet you are
  937. // currently iterating on, otherwise the browser will be stuck
  938. // in a infinite loop…
  939. for (const mediaRule of mediaRules) {
  940. // Safari requires the `0` second parameter (even if default).
  941. colorsLayer.insertRule(mediaRule.cssText, 0)
  942. hasDarkRules = true
  943. }
  944. }
  945. if (hasDarkRules) {
  946. if ('customElements' in window && !customElements.get('theme-toggle')) {
  947. customElements.define('theme-toggle', ThemeToggle)
  948. }
  949. }
  950. })
  951. </script>
  952. </body>
  953. </html>