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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480
  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. Impact
  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="If front web developers work closer to the users’ needs and problems, if they feel more implicated in the user experience, they will understand the impact of what they are building and will naturally adopt the strengths of the front web. […]">
  71. <!-- That good ol' feed, subscribe :). -->
  72. <link rel="alternate"
  73. type="application/atom+xml"
  74. title="Feed"
  75. href="/david/log/">
  76. <!-- Generated from https://realfavicongenerator.net/ such a mess. -->
  77. <link rel="apple-touch-icon"
  78. sizes="180x180"
  79. href="/static/david/icons2/apple-touch-icon.png">
  80. <link rel="icon"
  81. type="image/png"
  82. sizes="32x32"
  83. href="/static/david/icons2/favicon-32x32.png">
  84. <link rel="icon"
  85. type="image/png"
  86. sizes="16x16"
  87. href="/static/david/icons2/favicon-16x16.png">
  88. <link rel="manifest" href="/static/david/icons2/site.webmanifest">
  89. <link rel="mask-icon"
  90. href="/static/david/icons2/safari-pinned-tab.svg"
  91. color="#07486c">
  92. <link rel="shortcut icon" href="/static/david/icons2/favicon.ico">
  93. <meta name="msapplication-TileColor" content="#f7f7f7">
  94. <meta name="msapplication-config"
  95. content="/static/david/icons2/browserconfig.xml">
  96. <meta name="theme-color"
  97. content="#f7f7f7"
  98. media="(prefers-color-scheme: light)">
  99. <meta name="theme-color"
  100. content="#272727"
  101. media="(prefers-color-scheme: dark)">
  102. <!-- Is that even respected? Retrospectively? What a shAItshow…
  103. https://neil-clarke.com/block-the-bots-that-feed-ai-models-by-scraping-your-website/ -->
  104. <meta name="robots" content="noai, noimageai">
  105. <style type="text/css">
  106. .tippy-content {
  107. min-width: 280px;
  108. padding: .5rem;
  109. font-size: calc(var(--fluid-0) * 0.8);
  110. font-family: var(--labor-font);
  111. letter-spacing: initial;
  112. text-align: left;
  113. }
  114. .tippy-content h3 {
  115. margin-top: 0;
  116. }
  117. .tippy-content h3 img {
  118. max-width: 2rem;
  119. max-height: 2rem;
  120. display: inline-block;
  121. }
  122. .tippy-content .tippy-links {
  123. display: flex;
  124. justify-content: space-around;
  125. }
  126. .tippy-content a {
  127. padding: .4rem;
  128. color: #F06048;
  129. }
  130. </style>
  131. <body data-instant-intensity="viewport-all">
  132. <article>
  133. <header>
  134. <hgroup>
  135. <h1>Impact</h1>
  136. <p>Le <time datetime="2024-01-11">11 janvier 2024</time></p>
  137. </hgroup>
  138. </header>
  139. <nav>
  140. <p>
  141. <a rel="prev"
  142. href="/david/2024/01/10/"
  143. title="Publication précédente : Écriture">← Précédent</a> •
  144. <a href="/david/" title="Aller à l’accueil" rel="up">Accueil</a>
  145. <a href="/david/recherche/"
  146. title="Aller à la page de recherche"
  147. rel="search" data-no-instant>Recherche</a>
  148. • <a rel="next"
  149. href="/david/2024/01/12/"
  150. title="Publication suivante : Personnel">Suivant →</a>
  151. </p>
  152. </nav>
  153. <blockquote lang="en">
  154. <p>If front web developers work closer to the users’ needs and problems, <mark>if they feel more implicated in the user experience,</mark> they will understand the impact of what they are building and will naturally adopt the strengths of the front web. […]</p>
  155. <p>Maybe, in order to fix the front web, we have to fix human nature: make things less about money and self-satisfaction, and more about improving people’s lives and understanding the impact of what we are&nbsp;creating.</p>
  156. <p><cite><em><a data-link-domain="gericci.me" href="https://gericci.me/we-need-to-talk-about-the-front-web-5.html" hreflang="en"
  157. title="Consultation de l’article (anglais)">Part 5: Clues to Fix the Front Web</a>
  158. <a href="/david/cache/2024/40aada3cc8d6897fda5a277c4299c1fd/" hreflang="en"
  159. data-tippy data-description="Clues to Fix the Front Web"
  160. data-source="https://gericci.me/we-need-to-talk-about-the-front-web-5.html"
  161. data-date="2024-01-09"
  162. data-favicon="https://gericci.me/img/favicon.png"
  163. data-domain="gericci.me"
  164. ><svg xmlns="http://www.w3.org/2000/svg"
  165. width="24" height="24" viewBox="0 0 24 24" fill="none"
  166. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  167. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  168. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  169. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  170. </svg>
  171. <span class="sr-only">[archive]</span></a></em></cite></p>
  172. </blockquote>
  173. <p>Même si je m’émeus encore de l’esthétique d’un <em>Web Component</em> ou d’une nouvelle technique CSS, j’essaye d’être plus attentif au fil des ans à l’impact potentiel des bouts de code que j’assemble. C’est là où <a data-link-domain="daverupert.com" href="https://daverupert.com/2022/06/demo-to-demo-loop/" hreflang="en"
  174. title="Consultation de l’article (anglais)">les démo</a>
  175. <a href="/david/cache/2024/9f8c0e75066c1882a3b4ce084e3223ed/" hreflang="en"
  176. data-tippy data-description="The personal blog of Dave Rupert, web developer and podcaster from Austin, TX."
  177. data-source="https://daverupert.com/2022/06/demo-to-demo-loop/"
  178. data-date="2024-01-09"
  179. data-favicon="https://daverupert.com/favicon.ico"
  180. data-domain="daverupert.com"
  181. ><svg xmlns="http://www.w3.org/2000/svg"
  182. width="24" height="24" viewBox="0 0 24 24" fill="none"
  183. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  184. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  185. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  186. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  187. </svg>
  188. <span class="sr-only">[archive]</span></a> prennent tout leur sens pour vérifier la pertinence de ce qui a été produit. Se libérer de l’égoïsme technique pour aller vers le soin porté aux utilisateur·ices, essayer de comprendre leurs besoins, synthétiser, proposer, se tromper, recommencer. Dans une spirale d’essais-erreurs, on se rapproche d’un centre enviable où les contraintes techniques sont minimisées et les besoins proches d’être comblés. Chaque partie ayant un petit peu appris sur l’autre au cours de ce bout de chemin&nbsp;commun.</p>
  189. <p><strong>Une carrière est la cartographie de ces expériences.</strong> Savoir identifier les <em>optima</em> locaux qui ont pu procurer de la joie ainsi que les lieux de convergence où l’on aime bien aller car il y a le bon dosage effort / récompense. Apprendre à reconnaître les sentiers hasardeux où l’on a déjà laissé des plumes et reconnaître aussi qu’un contexte et des personnes peuvent&nbsp;changer.</p>
  190. <p>Admettre que l’on a soi-même changé tout au long de ce&nbsp;cheminement.</p>
  191. <blockquote lang="en">
  192. <p>At most software startups, customers typically don’t care if your product runs on Heroku, Kubernetes, or a really brittle singly-homed machine in Joe’s closet. No purchasing decisions hinge on your commitment to write servers in Rust or use Nix for hermetic everything. And although they might exist, I have sadly never had a customer write a testimonial for the elegant collection of internal services involved in responding to that single HTTP&nbsp;request.</p>
  193. <p>No; customers are not paying for, nor give a shit about, these things. Sorry. It’s still cool stuff. It’s just not what you’re&nbsp;selling.</p>
  194. <p><mark>Customers want software that delivers problem-solving <em>impact</em>.</mark> And at the early stage, which is all the way until you’ve reached product-market fit, they’re almost certainly not getting enough, fast enough. You should be spending as much time as you can at this level of the stack, The Product: thinking, building, learning.</p>
  195. <p><cite><em><a data-link-domain="hoho.com" href="https://hoho.com/posts/your-stack-is-not-the-product/" hreflang="en"
  196. title="Consultation de l’article (anglais)">Your tech stack is not the product</a>
  197. <a href="/david/cache/2024/877b1e29328f6ad1b6fef26d7407ec5f/" hreflang="en"
  198. data-tippy data-description="Early stage technology decisions must be, uncomfortably, a means to an end."
  199. data-source="https://hoho.com/posts/your-stack-is-not-the-product/"
  200. data-date="2024-01-09"
  201. data-favicon="https://hoho.com/favicon-16x16.png"
  202. data-domain="hoho.com"
  203. ><svg xmlns="http://www.w3.org/2000/svg"
  204. width="24" height="24" viewBox="0 0 24 24" fill="none"
  205. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  206. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  207. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  208. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  209. </svg>
  210. <span class="sr-only">[archive]</span></a></em></cite></p>
  211. </blockquote>
  212. <a href="#hr-25" title="Lien vers cette section de la page"><hr id="hr-25" /></a>
  213. <blockquote lang="en">
  214. <p>You can’t make an article on a UX topic without showcasing a practical example. Let’s explore examples that I spotted on the web and how to fix&nbsp;them.</p>
  215. <p><cite><em><a data-link-domain="ishadeed.com" href="https://ishadeed.com/article/target-size" hreflang="en"
  216. title="Consultation de l’article (anglais)">Designing better target sizes</a>
  217. <a href="/david/cache/2024/c98206d38897264005bcd5b453d032b1/" hreflang="en"
  218. data-tippy data-description="An interactive guide on designing better target sizes on the web."
  219. data-source="https://ishadeed.com/article/target-size"
  220. data-date="2024-01-10"
  221. data-favicon="https://ishadeed.com/assets/favicon-32x32.png"
  222. data-domain="ishadeed.com"
  223. ><svg xmlns="http://www.w3.org/2000/svg"
  224. width="24" height="24" viewBox="0 0 24 24" fill="none"
  225. stroke="currentColor" stroke-width="2" stroke-linecap="square"
  226. stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
  227. <path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
  228. <line x1="12" y1="17" x2="12.01" y2="17"></line>
  229. </svg>
  230. <span class="sr-only">[archive]</span></a></em></cite></p>
  231. </blockquote>
  232. <p>Superbe article de Ahmad Shadeed. En résumé, il faut soigner ses <em>paddings</em> mais il y a pas mal d’astuces CSS pour y arriver dans certaines conditions. Je retiens notamment l’usage d’un <code>:after</code> pour ça <a data-link-domain="ishadeed.com" href="https://ishadeed.com/article/target-size#mobile-menu">lorsqu’il s’agit d’icônes</a>&nbsp;notamment&nbsp;:</p>
  233. <pre><code>.search__filter:after {
  234. content: &quot;&quot;;
  235. position: absolute;
  236. inset: 0;
  237. z-index: -1;
  238. transform: scale(2);
  239. }
  240. </code></pre>
  241. <p>Je découvre au passage qu’il y a pas mal d’options d’accessibilité dans <a data-link-domain="polypane.app" href="https://polypane.app/">Polypane</a> que j’utilise depuis peu et que je n’ai pas pleinement&nbsp;exploré.</p>
  242. <nav>
  243. <p>
  244. <a href="/david/2024/evolution/"
  245. title="Liste de tous les articles 2024 associés à cette étiquette"
  246. rel="tag">#évolution</a>
  247. <a href="/david/2024/technique/"
  248. title="Liste de tous les articles 2024 associés à cette étiquette"
  249. rel="tag">#technique</a>
  250. <a href="/david/2024/web/"
  251. title="Liste de tous les articles 2024 associés à cette étiquette"
  252. rel="tag">#web</a>
  253. <a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
  254. </p>
  255. </nav>
  256. <nav>
  257. <p>
  258. <a rel="prev"
  259. href="/david/2024/01/10/"
  260. title="Publication précédente : Écriture">← Précédent</a> •
  261. <a href="/david/2024/" title="Liste des publications récentes">↑ En 2024</a>
  262. • <a rel="next"
  263. href="/david/2024/01/12/"
  264. title="Publication suivante : Personnel">Suivant →</a>
  265. </p>
  266. </nav>
  267. <form action="/david/recherche/" method="get">
  268. <fieldset>
  269. <legend>Recherche</legend>
  270. <label for="input-search">Termes de votre recherche :</label>
  271. <input id="input-search" type="search" name="s" aria-describedby="indexation-infos" required>
  272. <input type="submit" value="Chercher">
  273. <p id="indexation-infos">
  274. <small>
  275. Seuls les contenus de ces 8 dernières années sont indexés.
  276. </small>
  277. </p>
  278. </fieldset>
  279. </form>
  280. <aside>
  281. <theme-toggle></theme-toggle>
  282. </aside>
  283. </article>
  284. <hr>
  285. <footer>
  286. <p>
  287. <a href="/david/" title="Aller à l’accueil">Accueil</a>
  288. <a href="/david/log/" title="Accès au flux RSS">Suivre</a>
  289. <a href="http://larlet.com"
  290. title="Go to my English profile"
  291. data-instant>Pro</a>
  292. <a href="mailto:david%40larlet.fr" title="Envoyer un courriel">Email</a>
  293. <abbr title="Hébergeur : Alwaysdata, 62 rue Tiquetonne 75002 Paris, +33184162340">Légal</abbr>
  294. </p>
  295. <template id="theme-selector">
  296. <form>
  297. <style type="text/css">
  298. fieldset div {
  299. text-align: center;
  300. }
  301. </style>
  302. <fieldset>
  303. <legend>Thème</legend>
  304. <div>
  305. <label>
  306. <input type="radio" value="auto" name="chosen-color-scheme" checked>
  307. Auto
  308. </label>
  309. <label>
  310. <input type="radio" value="dark" name="chosen-color-scheme">
  311. Foncé
  312. </label>
  313. <label>
  314. <input type="radio" value="light" name="chosen-color-scheme">
  315. Clair
  316. </label>
  317. </div>
  318. </fieldset>
  319. </form>
  320. </template>
  321. </footer>
  322. <script src="/static/david/js/instantpage-5.1.0.min.js" type="module"></script>
  323. <script>
  324. class ThemeToggle extends HTMLElement {
  325. constructor() {
  326. super()
  327. const themeSelectorTemplate = document.querySelector('#theme-selector')
  328. const form = themeSelectorTemplate.content.firstElementChild
  329. this.attachShadow({ mode: 'open' })
  330. this.shadowRoot.appendChild(form.cloneNode(true))
  331. }
  332. connectedCallback() {
  333. const form = this.shadowRoot.querySelector('form')
  334. form.addEventListener('change', (e) => {
  335. const chosenColorScheme = e.target.value
  336. localStorage.setItem('theme', chosenColorScheme)
  337. toggleTheme(chosenColorScheme)
  338. })
  339. const selectedTheme = localStorage.getItem('theme')
  340. if (selectedTheme && selectedTheme !== 'undefined') {
  341. form.querySelector(`[value="${selectedTheme}"]`).checked = true
  342. }
  343. }
  344. }
  345. const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
  346. window.addEventListener('load', () => {
  347. let colorsLayer = undefined
  348. let hasDarkRules = false
  349. for (const styleSheet of Array.from(document.styleSheets)) {
  350. let mediaRules = []
  351. for (const layerRule of styleSheet.cssRules) {
  352. if (!(layerRule instanceof CSSLayerBlockRule)) {
  353. continue
  354. }
  355. if (layerRule.name === 'colors') {
  356. colorsLayer = layerRule
  357. }
  358. for (const cssRule of layerRule.cssRules) {
  359. if (cssRule.type !== CSSRule.MEDIA_RULE) {
  360. continue
  361. }
  362. // WARNING: Safari does not have/supports `conditionText`.
  363. if (cssRule.conditionText) {
  364. if (cssRule.conditionText !== prefersColorSchemeDark) {
  365. continue
  366. }
  367. } else {
  368. if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
  369. continue
  370. }
  371. }
  372. mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
  373. }
  374. }
  375. // WARNING: do not try to insert a Rule to a styleSheet you are
  376. // currently iterating on, otherwise the browser will be stuck
  377. // in a infinite loop…
  378. for (const mediaRule of mediaRules) {
  379. // Safari requires the `0` second parameter (even if default).
  380. colorsLayer.insertRule(mediaRule.cssText, 0)
  381. hasDarkRules = true
  382. }
  383. }
  384. if (hasDarkRules) {
  385. if ('customElements' in window && !customElements.get('theme-toggle')) {
  386. customElements.define('theme-toggle', ThemeToggle)
  387. }
  388. }
  389. })
  390. </script>
  391. <script src="/static/david/js/popper-2.11.8.min.js"></script>
  392. <script src="/static/david/js/tippy-bundle-6.3.7.umd.min.js"></script>
  393. <script>
  394. tippy('[data-tippy]', {
  395. content(reference) {
  396. reference.addEventListener('click', (e) => e.preventDefault())
  397. return `
  398. <h3 lang="fr">
  399. <img src="${reference.dataset.favicon}" loading="lazy">
  400. <a href="${reference.dataset.source}"
  401. >Article sur ${reference.dataset.domain}</a></h3>
  402. <p lang="${reference.hreflang}"><em>${reference.dataset.description}</em></p>
  403. <div class="tippy-links" lang="fr">
  404. <a href="${reference.href}">Archive au ${reference.dataset.date}</a>
  405. </div>
  406. `
  407. },
  408. allowHTML: true,
  409. interactive: true,
  410. delay: [150, 700],
  411. hideOnClick: false
  412. })
  413. </script>
  414. <script type="module">
  415. import { annotate } from '/static/david/js/rough-notation-0.5.1.esm.min.js'
  416. const markObserver = new IntersectionObserver((entries, observer) => {
  417. const computedStyle = getComputedStyle(document.documentElement)
  418. const markBackground = computedStyle.getPropertyValue('--mark-background')
  419. for (const entry of entries) {
  420. if (entry.intersectionRatio === 0) continue
  421. const markElement = entry.target
  422. markElement.style.backgroundColor = 'inherit'
  423. const annotation = annotate(
  424. markElement, {
  425. type: 'highlight',
  426. multiline: true,
  427. color: markBackground,
  428. // animate: !window.matchMedia('(prefers-reduced-motion: reduce)').matches
  429. animate: false
  430. }
  431. )
  432. annotation.show()
  433. observer.unobserve(markElement)
  434. }
  435. }, {threshold: 1.0})
  436. for (const markElement of document.querySelectorAll('mark')) {
  437. markObserver.observe(markElement)
  438. }
  439. </script>
  440. </body>
  441. </html>