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 20KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373
  1. <!DOCTYPE html><!-- This is a valid HTML5 document. -->
  2. <!-- Screen readers, SEO, extensions and so on. -->
  3. <html lang="fr">
  4. <!-- Has to be within the first 1024 bytes, hence before the `title` element
  5. See: https://www.w3.org/TR/2012/CR-html5-20121217/document-metadata.html#charset -->
  6. <meta charset="utf-8">
  7. <!-- Why no `X-UA-Compatible` meta: https://stackoverflow.com/a/6771584 -->
  8. <!-- The viewport meta is quite crowded and we are responsible for that.
  9. See: https://codepen.io/tigt/post/meta-viewport-for-2015 -->
  10. <meta name="viewport" content="width=device-width,initial-scale=1">
  11. <!-- Required to make a valid HTML5 document. -->
  12. <title>
  13. Tag #gafam
  14. — David Larlet</title>
  15. <meta name="description" content="Publications relatives au tag #gafam">
  16. <!-- That good ol' feed, subscribe :). -->
  17. <link rel="alternate"
  18. type="application/atom+xml"
  19. title="Feed"
  20. href="/david/log/">
  21. <!-- Generated from https://realfavicongenerator.net/ such a mess. -->
  22. <link rel="apple-touch-icon"
  23. sizes="180x180"
  24. href="/static/david/icons2/apple-touch-icon.png">
  25. <link rel="icon"
  26. type="image/png"
  27. sizes="32x32"
  28. href="/static/david/icons2/favicon-32x32.png">
  29. <link rel="icon"
  30. type="image/png"
  31. sizes="16x16"
  32. href="/static/david/icons2/favicon-16x16.png">
  33. <link rel="manifest" href="/static/david/icons2/site.webmanifest">
  34. <link rel="mask-icon"
  35. href="/static/david/icons2/safari-pinned-tab.svg"
  36. color="#07486c">
  37. <link rel="shortcut icon" href="/static/david/icons2/favicon.ico">
  38. <meta name="msapplication-TileColor" content="#f7f7f7">
  39. <meta name="msapplication-config"
  40. content="/static/david/icons2/browserconfig.xml">
  41. <meta name="theme-color"
  42. content="#f7f7f7"
  43. media="(prefers-color-scheme: light)">
  44. <meta name="theme-color"
  45. content="#272727"
  46. media="(prefers-color-scheme: dark)">
  47. <!-- Is that even respected? Retrospectively? What a shAItshow…
  48. https://neil-clarke.com/block-the-bots-that-feed-ai-models-by-scraping-your-website/ -->
  49. <meta name="robots" content="noai, noimageai">
  50. <!-- Documented, feel free to shoot an email. -->
  51. <link rel="stylesheet" href="/static/david/css/style_2021-01-20.css">
  52. <!-- See https://www.zachleat.com/web/comprehensive-webfonts/ for the trade-off. -->
  53. <link rel="preload"
  54. href="/static/david/css/fonts/triplicate_t4_poly_regular.woff2"
  55. as="font"
  56. type="font/woff2"
  57. media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  58. crossorigin>
  59. <link rel="preload"
  60. href="/static/david/css/fonts/triplicate_t4_poly_bold.woff2"
  61. as="font"
  62. type="font/woff2"
  63. media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  64. crossorigin>
  65. <link rel="preload"
  66. href="/static/david/css/fonts/triplicate_t4_poly_italic.woff2"
  67. as="font"
  68. type="font/woff2"
  69. media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
  70. crossorigin>
  71. <link rel="preload"
  72. href="/static/david/css/fonts/triplicate_t3_regular.woff2"
  73. as="font"
  74. type="font/woff2"
  75. media="(prefers-color-scheme: dark)"
  76. crossorigin>
  77. <link rel="preload"
  78. href="/static/david/css/fonts/triplicate_t3_bold.woff2"
  79. as="font"
  80. type="font/woff2"
  81. media="(prefers-color-scheme: dark)"
  82. crossorigin>
  83. <link rel="preload"
  84. href="/static/david/css/fonts/triplicate_t3_italic.woff2"
  85. as="font"
  86. type="font/woff2"
  87. media="(prefers-color-scheme: dark)"
  88. crossorigin>
  89. <script>
  90. function toggleTheme(themeName) {
  91. document.documentElement.classList.toggle(
  92. 'forced-dark',
  93. themeName === 'dark'
  94. )
  95. document.documentElement.classList.toggle(
  96. 'forced-light',
  97. themeName === 'light'
  98. )
  99. }
  100. const selectedTheme = localStorage.getItem('theme')
  101. if (selectedTheme !== 'undefined') {
  102. toggleTheme(selectedTheme)
  103. }
  104. </script>
  105. <style type="text/css">
  106. details[open] summary {
  107. display: none;
  108. }
  109. </style>
  110. <body class="remarkdown h1-underline h2-underline h3-underline em-underscore hr-center ul-star pre-tick"
  111. data-instant-intensity="viewport-all">
  112. <header>
  113. <h1>Publications relatives au tag #gafam</h1>
  114. </header>
  115. <nav>
  116. <p class="center">
  117. <a href="/david/" title="Aller à l’accueil">
  118. <svg class="icon icon-home">
  119. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-home"></use>
  120. </svg>
  121. Accueil</a>
  122. • <a rel="tags"
  123. href="/david/#tags-2023"
  124. title="Liste de toutes les étiquettes">
  125. <svg class="icon icon-tags">
  126. <use xlink:href="/static/david/icons2/symbol-defs-2021-12.svg#icon-tags"></use>
  127. </svg>
  128. Étiquettes</a>
  129. </p>
  130. </nav>
  131. <hr>
  132. <main>
  133. <p>Les plus récentes en premier, les 3 premières sont dépliées et ensuite c’est à la demande, bonne exploration !</p>
  134. <h2>
  135. <a href="/david/2023/12/12/" title="Lien permanent vers cet article">Abonnement</a> (2023-12-12)
  136. </h2>
  137. <blockquote lang="en">
  138. <p>20&nbsp;years ago, Chris Anderson told me that it was unrealistic to expect tech companies to refuse demands for DRM from the entertainment companies whose media they hoped to play. My argument – then and now – was that any tech company that sells you a gadget that can have its features revoked is defrauding you. You’re paying for x, y and z – and if they are contractually required to remove x and y on demand, <mark>they are selling you something that you can’t rely on</mark>, without making that clear to&nbsp;you.</p>
  139. <p><cite><em><a href="https://pluralistic.net/2023/12/08/playstationed/#tyler-james-hill">Pluralistic: “If buying isn’t owning, piracy isn’t stealing” (08&nbsp;Dec 2023)</a></em>&nbsp;(<a href="/david/cache/2023/c5baffcec6831c2b1fe5f3b27ebaeef4/">cache</a>)</cite></p>
  140. </blockquote>
  141. <p><a href="/david/2020/02/07/#mood">Rappel</a> <a href="/david/2021/12/05/">quasi</a>-<a href="/david/2023/02/01/" title="Ombres">annuel</a>&nbsp;: de Netflix à Spotify, la volatilité des catalogues est telle qu’on ne peux compter sur aucune <em>playlist</em> qui tiendrait dans la durée. Considérant le prix des disques durs externes SSD, il est devenu plus que rentable et pérenne d’entretenir ses propres&nbsp;bibliothèques&#8239;!</p>
  142. <p>Ne pensez pas priver plus que ça les artistes de revenus avec ces pratiques, au mieux il leur manquera <a href="https://www.rollingstone.com/music/music-news/weird-al-yankovic-spotify-wrapped-video-criticism-1234905887/">un sandwich… par an</a>&nbsp;(<a href="/david/cache/2023/1ac69ff7b6913bfc4298d9ec0365ca5b/">cache</a>).</p>
  143. <p>PS&nbsp;: j’ai écouté 🇨🇦 <a href="https://fr.wikipedia.org/wiki/Pax_Massilia">Pax Massilia</a> et ça m’a fait l’effet d’un <em>space cake</em> de&nbsp;Proust.</p>
  144. <hr />
  145. <blockquote lang="en">
  146. <p>🙃 when people say “enshittification”, it’s as if their core complaint about capitalism is the customer service, rather than the systematic exploitation of other people. people don’t talk about union busting as “enshittification”, or wage theft as “enshittification”, let alone deeper systematic&nbsp;issues.</p>
  147. <p>people talk about enshittification to mean <mark>“i can't watch my favourite tv show any&nbsp;more”</mark></p>
  148. <p><cite><em><a href="https://cohost.org/tef/post/3175066-enshittification-is">enshittification is what happens when a disney adult learns about captialism</a></em>&nbsp;(<a href="/david/cache/2023/37d6792aae27bda5e258f7a1b052045a/">cache</a>)</cite></p>
  149. </blockquote>
  150. <h2>
  151. <a href="/david/2023/09/08/" title="Lien permanent vers cet article">Char&nbsp;2</a> (2023-09-08)
  152. </h2>
  153. <blockquote>
  154. <p>Je voulais le <a href="/david/2020/02/07/#cars">moins d’électronique</a> possible et plutôt prendre un vieux véhicule robuste qui me permette de sortir d’un banc de neige et peut-être à terme de la&nbsp;ville.</p>
  155. <p><cite><em><a href="/david/2021/07/16/">Char</a></em></cite></p>
  156. </blockquote>
  157. <p>Suite des mes aventures avec une <a href="http://tmp.larlet.fr/ccmc/">comptabilité à jour</a> depuis bientôt 3&nbsp;ans. Divulgâcheur&nbsp;: ça coûte très&nbsp;cher.</p>
  158. <p>Le résultat n’est pas joli-joli avec environ vingt mille kilomètres au compteur sur la période. Je n’ai pas non plus réussi à descendre en-dessous des 12L/100km avec ce véhicule qui n’a pas été pensé pour être économe et qui alimente les 4&nbsp;roues en permanence… MAIS je crois que si c’était à refaire, je choisirais un <em>véhicule stupide</em> à&nbsp;nouveau.</p>
  159. <blockquote lang="en">
  160. <p>Car companies are on the forefront of postcapitalism, and <mark>they understand that digital is the key to rent-extraction.</mark> Remember when BMW announced that it was going to rent you the seatwarmer in your own fucking&nbsp;car?</p>
  161. <p>[…]</p>
  162. <p>This is the urinary tract infection business model: without digitization, all your car’s value flowed in a healthy stream. But once the car-makers add semiconductors, each one of those features comes out in a painful, burning dribble, with every button on that farkakta touchscreen wired directly into your&nbsp;credit-card.</p>
  163. <p><cite><em><a href="https://pluralistic.net/2023/07/24/rent-to-pwn/">Pluralistic: Autoenshittification (24&nbsp;July 2023)</a></em>&nbsp;(<a href="/david/cache/2023/8be5d8a651e8f8e211cfe10fd49bb3f0/">cache</a>)</cite></p>
  164. </blockquote>
  165. <p>Je pourrais citer tellement de passages de cet article de Cory Doctorow qui confirment ce choix que ça en est édifiant. Et si vous pensez que certaines marques ne font quand même pas n’importe quoi avec vos données, Mozilla se charge — chiffres à l’appui&nbsp;— de démentir cette&nbsp;idée&nbsp;:</p>
  166. <blockquote lang="en">
  167. <p>The gist is: they can collect super intimate information about you -- from your medical information, your genetic information, to your “sex life” (seriously), to how fast you drive, where you drive, and what songs you play in your car -- in huge quantities. They then use it to invent more data about you through “inferences” about things like your intelligence, abilities, and&nbsp;interests.</p>
  168. <p>[…]</p>
  169. <p>It’s bad enough for the behemoth corporations that own the car brands to have all that personal information in their possession, to use for their own research, marketing, or the ultra-vague “business purposes.” But then, most (84%) of the car brands we researched say they can share your personal data -- with service providers, data brokers, and other businesses we know little or nothing about. Worse, <mark>nineteen (76%) say they can sell your personal&nbsp;data.</mark></p>
  170. <p>A surprising number (56%) also say they can share your information with the government or law enforcement in response to a “request.” Not a high bar court order, but something as easy as an “informal request.” Yikes -- that’s a very low&nbsp;bar!</p>
  171. <p><cite><em><a href="https://foundation.mozilla.org/en/privacynotincluded/articles/its-official-cars-are-the-worst-product-category-we-have-ever-reviewed-for-privacy/">It’s Official: Cars Are the Worst Product Category We Have Ever Reviewed for Privacy</a></em>&nbsp;(<a href="/david/cache/2023/81eb35bbd276cb28230820176152af87/">cache</a>)</cite></p>
  172. </blockquote>
  173. <p>Progressivement, j’en apprends un peu plus sur la mécanique d’une vieille voiture thermique et je crois que c’est ma seule option. Elle n’est peut-être pas payante mais elle me garantit une certaine <em>confidensanité</em>.</p>
  174. <blockquote lang="en">
  175. <p>Welcome to the future. <mark>Sabotage&nbsp;it.</mark></p>
  176. <p><cite><a href="https://thenib.com/im-a-luddite/">I’m a Luddite (and So Can&nbsp;You!)</a></cite></p>
  177. </blockquote>
  178. <hr />
  179. <blockquote lang="en">
  180. <p>😶 You can’t talk about all the friends and family you’ve lost. You can’t talk about how tired you are. You can’t talk about politics. You can’t talk about climate change. You can’t talk about the wildfires or that town that burned down. You can’t talk about living through the hottest days in human history. You can’t talk about masks or air purifiers. You can’t talk about student loans. You can’t talk about the wars we’re fighting or getting ready to&nbsp;fight.</p>
  181. <p><mark>You can’t talk about anything that&nbsp;matters.</mark></p>
  182. <p>You can only talk about the latest shitty superhero movie. You can talk about Barbie. You can talk about celebrity gossip. You can talk about the vacation you pretended to enjoy. You can talk about&nbsp;yoga.</p>
  183. <p>You can talk about your morning&nbsp;routine.</p>
  184. <p>You can talk about&nbsp;sports.</p>
  185. <p><cite><em><a href="https://www.okdoomer.io/watching-the-world-burn-on-our-phones/">Watching The World Burn on Our Phones</a></em>&nbsp;(<a href="/david/cache/2023/977dc3c51f364f41db786f881d2c3fd2/">cache</a>)</cite></p>
  186. </blockquote>
  187. <blockquote lang="en">
  188. <p>😁 I’m not young enough to know&nbsp;everything.</p>
  189. <p><cite><em><a href="https://blog.jim-nielsen.com/2023/family-tree-wisdom/">Family Tree Wisdom</a></em>&nbsp;(<a href="/david/cache/2023/d40295a6495f934934436470ad425cac/">cache</a>)</cite></p>
  190. </blockquote>
  191. <h2>
  192. <a href="/david/2023/01/04/" title="Lien permanent vers cet article">Rétrospectives</a> (2023-01-04)
  193. </h2>
  194. <blockquote>
  195. <p>J’ai mauvaise conscience. Aujourd’hui, j’ai gagné de l’argent en récompense d’une activité inutile. J’ai monopolisé l’attention et l’admiration d’enfants et d’adultes pour n’avoir fait rien d’autre que mettre un pied devant l’autre un peu plus vite qu’ils ne le&nbsp;font.</p>
  196. <p>Individuellement, je suis en accord avec moi-même sur le fait que courir m’a tout donné. En revanche, si j’y réfléchis en me replaçant dans le tissu de la société, je reconnais la stérilité de cette&nbsp;occupation.</p>
  197. <p><cite><em>Au-delà des sommets</em>, Kilian&nbsp;Jornet</cite></p>
  198. </blockquote>
  199. <p>À chaque fois que je lis des rétrospectives sportives sur l’année, je me rends compte que ça serait quand même flippant que tant de personnes aient accès à mes moindres ballades, mes sautes de cœur, mes humeurs du jour, mes parcours préférés, etc.</p>
  200. <p>Sociologiquement, qu’est ce que ça signifie d’avoir besoin de consigner chacun de ses pas&#8239;? Les rares fois où j’ai fait usage d’un outil de suivi lors de mes activités, cela a modifié ma façon d’évoluer et donc d’être. Peut-être que j’ai davantage besoin d’intimité que d’accompagnement dans ces moments là&#8239;? Est-ce que l’aventure c’est réussir à sortir de la <em>heatmap</em>&nbsp;locale&#8239;?!</p>
  201. <p>Mon cyclomètre est non connecté, j’ai essayé de trouver l’outil le plus stupide qui soit pour consigner tout de même une distance totale. Pareil pour <a href="/david/2021/07/16/">mon char</a>. Jusqu’à ce que la déconnexion devienne trop louche socialement pour pouvoir continuer à me sentir&nbsp;libre.</p>
  202. <p>Ces données portent tellement bien leur nom. Et surtout la&nbsp;santé&#8239;!</p>
  203. <hr />
  204. <blockquote lang="en">
  205. <p>😬 This is the crux of the Yard-sale model. In a free market, one person ends up with all of the wealth – <mark>completely by&nbsp;chance.</mark></p>
  206. <p>This is completely&nbsp;counterintuitive.</p>
  207. <p><cite><em><a href="https://pudding.cool/2022/12/yard-sale/">Why the super rich are inevitable</a></em>&nbsp;(<a href="/david/cache/2023/669f9d9d8f0c6cfb8131887c17eecfa9/">cache</a>)</cite></p>
  208. </blockquote>
  209. <blockquote lang="en">
  210. <p>👀 For more than 20&nbsp;years, we’ve known that teams spending time watching users, can see improvements. Yet we still see many teams with regular user research programs that produce complicated, unusable products. We couldn’t understand why, until&nbsp;now.</p>
  211. <p><mark>Each team member has to be exposed directly to the users&nbsp;themselves.</mark></p>
  212. <p><cite><em><a href="https://articles.uie.com/user_exposure_hours/">Fast Path to a Great UX - Increased Exposure Hours</a></em>&nbsp;(<a href="/david/cache/2023/4c5b3193ced812222ef1a6d53e3470aa/">cache</a>)</cite></p>
  213. </blockquote>
  214. </main>
  215. <hr>
  216. <footer>
  217. <p>
  218. <nobr>
  219. <a href="/david/" title="Aller à l’accueil">
  220. <svg class="icon icon-home">
  221. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-home"></use>
  222. </svg>
  223. Accueil</a>
  224. </nobr>
  225. <nobr>
  226. <a href="/david/log/" title="Accès au flux RSS">
  227. <svg class="icon icon-rss2">
  228. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-rss2"></use>
  229. </svg>
  230. Suivre</a>
  231. </nobr>
  232. <nobr>
  233. <a href="http://larlet.com"
  234. title="Go to my English profile"
  235. data-instant>
  236. <svg class="icon icon-user-tie">
  237. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-user-tie"></use>
  238. </svg>
  239. Pro</a>
  240. </nobr>
  241. <nobr>
  242. <a href="mailto:david%40larlet.fr" title="Envoyer un courriel">
  243. <svg class="icon icon-mail">
  244. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-mail"></use>
  245. </svg>
  246. Email</a>
  247. </nobr>
  248. <nobr>
  249. <abbr class="nowrap"
  250. title="Hébergeur : Alwaysdata, 62 rue Tiquetonne 75002 Paris, +33184162340">
  251. <svg class="icon icon-hammer2">
  252. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-hammer2"></use>
  253. </svg>
  254. Légal</abbr>
  255. </nobr>
  256. </p>
  257. <template id="theme-selector">
  258. <form>
  259. <fieldset>
  260. <legend>
  261. <svg class="icon icon-brightness-contrast">
  262. <use xlink:href="/static/david/icons2/symbol-defs-2022-03.svg#icon-brightness-contrast"></use>
  263. </svg>
  264. Thème
  265. </legend>
  266. <label>
  267. <input type="radio" value="auto" name="chosen-color-scheme" checked>
  268. Auto
  269. </label>
  270. <label>
  271. <input type="radio" value="dark" name="chosen-color-scheme">
  272. Foncé
  273. </label>
  274. <label>
  275. <input type="radio" value="light" name="chosen-color-scheme">
  276. Clair
  277. </label>
  278. </fieldset>
  279. </form>
  280. </template>
  281. </footer>
  282. <script src="/static/david/js/instantpage-5.1.0.min.js" type="module"></script>
  283. <script>
  284. function loadThemeForm(templateName) {
  285. const themeSelectorTemplate = document.querySelector(templateName)
  286. const form = themeSelectorTemplate.content.firstElementChild
  287. themeSelectorTemplate.replaceWith(form)
  288. form.addEventListener('change', (e) => {
  289. const chosenColorScheme = e.target.value
  290. localStorage.setItem('theme', chosenColorScheme)
  291. toggleTheme(chosenColorScheme)
  292. })
  293. const selectedTheme = localStorage.getItem('theme')
  294. if (selectedTheme && selectedTheme !== 'undefined') {
  295. form.querySelector(`[value="${selectedTheme}"]`).checked = true
  296. }
  297. }
  298. const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
  299. window.addEventListener('load', () => {
  300. let hasDarkRules = false
  301. for (const styleSheet of Array.from(document.styleSheets)) {
  302. let mediaRules = []
  303. for (const cssRule of styleSheet.cssRules) {
  304. if (cssRule.type !== CSSRule.MEDIA_RULE) {
  305. continue
  306. }
  307. // WARNING: Safari does not have/supports `conditionText`.
  308. if (cssRule.conditionText) {
  309. if (cssRule.conditionText !== prefersColorSchemeDark) {
  310. continue
  311. }
  312. } else {
  313. if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
  314. continue
  315. }
  316. }
  317. mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
  318. }
  319. // WARNING: do not try to insert a Rule to a styleSheet you are
  320. // currently iterating on, otherwise the browser will be stuck
  321. // in a infinite loop…
  322. for (const mediaRule of mediaRules) {
  323. styleSheet.insertRule(mediaRule.cssText)
  324. hasDarkRules = true
  325. }
  326. }
  327. if (hasDarkRules) {
  328. loadThemeForm('#theme-selector')
  329. }
  330. })
  331. </script>
  332. </body>
  333. </html>