Browse Source

Article

master
David Larlet 1 month ago
parent
commit
732155bee9
Signed by: David Larlet <david@larlet.fr> GPG Key ID: 3E2953A359E7E7BD

+ 8
- 0
david/2024/03/16/index.html View File

@@ -152,6 +152,10 @@
title="Aller à la page de recherche"
rel="search" data-no-instant>Recherche</a>
• <a rel="next"
href="/david/2024/03/18/"
title="Publication suivante : Casquettes">Suivant →</a>
</p>
</nav>
@@ -211,6 +215,10 @@
<a href="/david/2024/" title="Liste des publications récentes">↑ En 2024</a>
• <a rel="next"
href="/david/2024/03/18/"
title="Publication suivante : Casquettes">Suivant →</a>
</p>
</nav>


+ 425
- 0
david/2024/03/18/index.html View File

@@ -0,0 +1,425 @@
<!DOCTYPE html><!-- This is a valid HTML5 document. -->
<!-- Screen readers, SEO, extensions and so on. -->
<html lang="fr">
<!-- Has to be within the first 1024 bytes, hence before the `title` element
See: https://www.w3.org/TR/2012/CR-html5-20121217/document-metadata.html#charset -->
<meta charset="utf-8">
<!-- Why no `X-UA-Compatible` meta: https://stackoverflow.com/a/6771584 -->
<!-- The viewport meta is quite crowded and we are responsible for that.
See: https://codepen.io/tigt/post/meta-viewport-for-2015 -->
<meta name="viewport" content="width=device-width,initial-scale=1">
<!-- Required to make a valid HTML5 document. -->
<title>
Casquettes
— David Larlet</title>
<script>
function toggleTheme(themeName) {
document.documentElement.classList.toggle(
'forced-dark',
themeName === 'dark'
)
document.documentElement.classList.toggle(
'forced-light',
themeName === 'light'
)
}
const selectedTheme = localStorage.getItem('theme')
if (selectedTheme !== 'undefined') {
toggleTheme(selectedTheme)
}
</script>
<!-- Documented, feel free to shoot an email. -->
<link rel="stylesheet" href="/static/david/css/style_2024-03-09.css">
<!-- See https://www.zachleat.com/web/comprehensive-webfonts/ for the trade-off. -->
<link rel="preload"
href="/static/david/css/fonts/century_supra_ot_a_regular.woff2"
as="font"
type="font/woff2"
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
crossorigin>
<link rel="preload"
href="/static/david/css/fonts/century_supra_ot_a_bold.woff2"
as="font"
type="font/woff2"
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
crossorigin>
<link rel="preload"
href="/static/david/css/fonts/century_supra_ot_a_italic.woff2"
as="font"
type="font/woff2"
media="(prefers-color-scheme: light), (prefers-color-scheme: no-preference)"
crossorigin>
<link rel="preload"
href="/static/david/css/fonts/century_supra_ot_b_regular.woff2"
as="font"
type="font/woff2"
media="(prefers-color-scheme: dark)"
crossorigin>
<link rel="preload"
href="/static/david/css/fonts/century_supra_ot_b_bold.woff2"
as="font"
type="font/woff2"
media="(prefers-color-scheme: dark)"
crossorigin>
<link rel="preload"
href="/static/david/css/fonts/century_supra_ot_b_italic.woff2"
as="font"
type="font/woff2"
media="(prefers-color-scheme: dark)"
crossorigin>
<meta name="description" content="L’impression de porter beaucoup de casquettes dans la même journée en ce moment. Genre ces dernières années en fait. Je ne sais pas encore si ça mène à l’épuisement ou si c’est ce qui me permet de ne pas m’ennuyer.">
<!-- That good ol' feed, subscribe :). -->
<link rel="alternate"
type="application/atom+xml"
title="Feed"
href="/david/log/">
<!-- Generated from https://realfavicongenerator.net/ such a mess. -->
<link rel="apple-touch-icon"
sizes="180x180"
href="/static/david/icons2/apple-touch-icon.png">
<link rel="icon"
type="image/png"
sizes="32x32"
href="/static/david/icons2/favicon-32x32.png">
<link rel="icon"
type="image/png"
sizes="16x16"
href="/static/david/icons2/favicon-16x16.png">
<link rel="manifest" href="/static/david/icons2/site.webmanifest">
<link rel="mask-icon"
href="/static/david/icons2/safari-pinned-tab.svg"
color="#07486c">
<link rel="shortcut icon" href="/static/david/icons2/favicon.ico">
<meta name="msapplication-TileColor" content="#f7f7f7">
<meta name="msapplication-config"
content="/static/david/icons2/browserconfig.xml">
<meta name="theme-color"
content="#f7f7f7"
media="(prefers-color-scheme: light)">
<meta name="theme-color"
content="#272727"
media="(prefers-color-scheme: dark)">
<!-- Is that even respected? Retrospectively? What a shAItshow…
https://neil-clarke.com/block-the-bots-that-feed-ai-models-by-scraping-your-website/ -->
<meta name="robots" content="noai, noimageai">
<style type="text/css">
.tippy-content {
min-width: 280px;
padding: .5rem;
font-size: calc(var(--fluid-0) * 0.8);
font-family: var(--labor-font);
letter-spacing: initial;
text-align: left;
}
.tippy-content h3 {
margin-top: 0;
}
.tippy-content h3 img {
max-width: 2rem;
max-height: 2rem;
display: inline-block;
}
.tippy-content .tippy-links {
display: flex;
justify-content: space-around;
}
.tippy-content a {
padding: .4rem;
color: #F06048;
}
</style>

<body data-instant-intensity="viewport-all">
<article>
<header>
<hgroup>
<h1>Casquettes</h1>
<p>Le <time datetime="2024-03-18">18 mars 2024</time></p>
</hgroup>
</header>
<nav>
<p>
<a rel="prev"
href="/david/2024/03/16/"
title="Publication précédente : Descriptions">← Précédent</a> •
<a href="/david/" title="Aller à l’accueil" rel="up">Accueil</a>
<a href="/david/recherche/"
title="Aller à la page de recherche"
rel="search" data-no-instant>Recherche</a>
</p>
</nav>
<p>L’impression de porter beaucoup de casquettes dans la même journée en ce moment. Genre ces dernières années en fait. Je ne sais pas encore si ça mène à l’épuisement ou si c’est ce qui me permet de ne pas&nbsp;m’ennuyer.</p>
<p>Je vais bientôt pouvoir ajouter «&nbsp;nocoder&nbsp;» à mon CV. Petite joie technique&nbsp;(?) de la journée, on a réussi à connecter une feuille AiTable à la banque. On place une date dans une cellule et ça programme un virement de l’autre côté. C’était marrant de le faire en&nbsp;binôme.</p>
<a href="#hr-121" title="Lien vers cette section de la page"><hr id="hr-121" /></a>

<blockquote lang="en">
<p>When you’re designing a piece of software, the single most important thing to design for is understandability. Security, performance, and correctness are all important, but <mark>they come after&nbsp;understandability.</mark></p>
<p><cite><em><a data-link-domain="ntietz.com" href="https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/" hreflang="en"
title="Consultation de l’article (anglais)">The most important goal in designing software is understandability</a>
<a href="/david/cache/2024/f154db1b6eccf69f498b4a31980367bd/" hreflang="en"
data-tippy data-description="When you're designing a piece of software, the single most important thing to design for is understandability."
data-source="https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/"
data-date="2024-03-18"
data-favicon="https://ntietz.com/favicon-32x32.png"
data-domain="ntietz.com"
><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="square"
stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
<span class="sr-only">[archive]</span></a></em></cite></p>
</blockquote>
<a href="#hr-122" title="Lien vers cette section de la page"><hr id="hr-122" /></a>

<blockquote lang="en">
<p>Open Source is rewarding- but it can also be&nbsp;exhausting.</p>
<p>The linking project’s code is provided as-is, and is not actively&nbsp;maintained.</p>
<p><cite><em><a data-link-domain="unmaintained.tech" href="https://unmaintained.tech/" hreflang="en"
title="Consultation de l’article (anglais)">No Maintenance Intended</a>
<a href="/david/cache/2024/590887213b24404c8d1e8355127ce2e2/" hreflang="en"
data-tippy data-description="The linking project’s code is provided as-is, and is not actively maintained."
data-source="https://unmaintained.tech/"
data-date="2024-03-18"
data-favicon=""
data-domain="unmaintained.tech"
><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="square"
stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
<span class="sr-only">[archive]</span></a></em></cite></p>
</blockquote>

<nav>
<p>
<a href="/david/2024/adaptation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#adaptation</a>
<a href="/david/2024/addiction/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#addiction</a>
<a href="/david/2024/evolution/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#évolution</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<nav>
<p>
<a rel="prev"
href="/david/2024/03/16/"
title="Publication précédente : Descriptions">← Précédent</a> •
<a href="/david/2024/" title="Liste des publications récentes">↑ En 2024</a>
</p>
</nav>

<form action="/david/recherche/" method="get">
<fieldset>
<legend>Recherche</legend>
<label for="input-search">Termes de votre recherche :</label>
<input id="input-search" type="search" name="s" aria-describedby="indexation-infos" required>
<input type="submit" value="Chercher">
<p id="indexation-infos">
<small>
Seuls les contenus de ces 8 dernières années sont indexés.
</small>
</p>
</fieldset>
</form>
<aside>
<theme-toggle></theme-toggle>
</aside>
</article>
<hr>
<footer>
<p>
<a href="/david/" title="Aller à l’accueil">Accueil</a>
<a href="/david/log/" title="Accès au flux RSS">Suivre</a>
<a href="http://larlet.com"
title="Go to my English profile"
data-instant>Pro</a>
<a href="mailto:david%40larlet.fr" title="Envoyer un courriel">Email</a>
<abbr title="Hébergeur : Alwaysdata, 62 rue Tiquetonne 75002 Paris, +33184162340">Légal</abbr>
</p>
<template id="theme-selector">
<form>
<style type="text/css">
fieldset div {
text-align: center;
}
</style>
<fieldset>
<legend>Thème</legend>
<div>
<label>
<input type="radio" value="auto" name="chosen-color-scheme" checked>
Auto
</label>
<label>
<input type="radio" value="dark" name="chosen-color-scheme">
Foncé
</label>
<label>
<input type="radio" value="light" name="chosen-color-scheme">
Clair
</label>
</div>
</fieldset>
</form>
</template>
</footer>
<script src="/static/david/js/instantpage-5.1.0.min.js" type="module"></script>
<script>
class ThemeToggle extends HTMLElement {
constructor() {
super()
const themeSelectorTemplate = document.querySelector('#theme-selector')
const form = themeSelectorTemplate.content.firstElementChild
this.attachShadow({ mode: 'open' })
this.shadowRoot.appendChild(form.cloneNode(true))
}

connectedCallback() {
const form = this.shadowRoot.querySelector('form')
form.addEventListener('change', (e) => {
const chosenColorScheme = e.target.value
localStorage.setItem('theme', chosenColorScheme)
toggleTheme(chosenColorScheme)
})

const selectedTheme = localStorage.getItem('theme')
if (selectedTheme && selectedTheme !== 'undefined') {
form.querySelector(`[value="${selectedTheme}"]`).checked = true
}
}
}

const prefersColorSchemeDark = '(prefers-color-scheme: dark)'
window.addEventListener('load', () => {
let colorsLayer = undefined
let hasDarkRules = false
for (const styleSheet of Array.from(document.styleSheets)) {
let mediaRules = []
for (const layerRule of styleSheet.cssRules) {
if (!(layerRule instanceof CSSLayerBlockRule)) {
continue
}
if (layerRule.name === 'colors') {
colorsLayer = layerRule
}
for (const cssRule of layerRule.cssRules) {
if (cssRule.type !== CSSRule.MEDIA_RULE) {
continue
}
// WARNING: Safari does not have/supports `conditionText`.
if (cssRule.conditionText) {
if (cssRule.conditionText !== prefersColorSchemeDark) {
continue
}
} else {
if (cssRule.cssText.startsWith(prefersColorSchemeDark)) {
continue
}
}
mediaRules = mediaRules.concat(Array.from(cssRule.cssRules))
}
}

// WARNING: do not try to insert a Rule to a styleSheet you are
// currently iterating on, otherwise the browser will be stuck
// in a infinite loop…
for (const mediaRule of mediaRules) {
// Safari requires the `0` second parameter (even if default).
colorsLayer.insertRule(mediaRule.cssText, 0)
hasDarkRules = true
}
}

if (hasDarkRules) {
if ('customElements' in window && !customElements.get('theme-toggle')) {
customElements.define('theme-toggle', ThemeToggle)
}
}
})
</script>
<script src="/static/david/js/popper-2.11.8.min.js"></script>
<script src="/static/david/js/tippy-bundle-6.3.7.umd.min.js"></script>
<script>
tippy('[data-tippy]', {
content(reference) {
reference.addEventListener('click', (e) => e.preventDefault())
return `
<h3 lang="fr">
<img src="${reference.dataset.favicon}" loading="lazy">
<a href="${reference.dataset.source}"
>Article sur ${reference.dataset.domain}</a></h3>
<p lang="${reference.hreflang}"><em>${reference.dataset.description}</em></p>
<div class="tippy-links" lang="fr">
<a href="${reference.href}">Archive au ${reference.dataset.date}</a>
</div>
`
},
allowHTML: true,
interactive: true,
delay: [150, 700],
hideOnClick: false
})
</script>
<script type="module">
import { annotate } from '/static/david/js/rough-notation-0.5.1.esm.min.js'

const markObserver = new IntersectionObserver((entries, observer) => {
const computedStyle = getComputedStyle(document.documentElement)
const markBackground = computedStyle.getPropertyValue('--mark-background')
for (const entry of entries) {
if (entry.intersectionRatio === 0) continue
const markElement = entry.target
markElement.style.backgroundColor = 'inherit'
const annotation = annotate(
markElement, {
type: 'highlight',
multiline: true,
color: markBackground,
// animate: !window.matchMedia('(prefers-reduced-motion: reduce)').matches
animate: false
}
)
annotation.show()
observer.unobserve(markElement)
}
}, {threshold: 1.0})

for (const markElement of document.querySelectorAll('mark')) {
markObserver.observe(markElement)
}
</script>

</body>
</html>

+ 21
- 0
david/2024/_sources/2024-03-18 - Casquettes.md View File

@@ -0,0 +1,21 @@
# Casquettes

L’impression de porter beaucoup de casquettes dans la même journée en ce moment. Genre ces dernières années en fait. Je ne sais pas encore si ça mène à l’épuisement ou si c’est ce qui me permet de ne pas m’ennuyer.

Je vais bientôt pouvoir ajouter « nocoder » à mon CV. Petite joie technique (?) de la journée, on a réussi à connecter une feuille AiTable à la banque. On place une date dans une cellule et ça programme un virement de l’autre côté. C’était marrant de le faire en binôme.

---

> [en] When you’re designing a piece of software, the single most important thing to design for is understandability. Security, performance, and correctness are all important, but ==they come after understandability.==
>
> <cite>*[The most important goal in designing software is understandability](https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/)*</cite>

---

> [en] Open Source is rewarding- but it can also be exhausting.
>
> The linking project’s code is provided as-is, and is not actively maintained.
>
> <cite>*[No Maintenance Intended](https://unmaintained.tech/)*</cite>

#adaptation #addiction #évolution

+ 71
- 0
david/2024/adaptation/index.html View File

@@ -134,6 +134,77 @@
</p>
</nav>
<h2>
<a href="/david/2024/03/18/" title="Lien permanent vers cet article">Casquettes</a> <time datetime="2024-03-18">18 mars 2024</time>
</h2>
<p>L’impression de porter beaucoup de casquettes dans la même journée en ce moment. Genre ces dernières années en fait. Je ne sais pas encore si ça mène à l’épuisement ou si c’est ce qui me permet de ne pas&nbsp;m’ennuyer.</p>
<p>Je vais bientôt pouvoir ajouter «&nbsp;nocoder&nbsp;» à mon CV. Petite joie technique&nbsp;(?) de la journée, on a réussi à connecter une feuille AiTable à la banque. On place une date dans une cellule et ça programme un virement de l’autre côté. C’était marrant de le faire en&nbsp;binôme.</p>
<a href="#hr-121" title="Lien vers cette section de la page"><hr id="hr-121" /></a>

<blockquote lang="en">
<p>When you’re designing a piece of software, the single most important thing to design for is understandability. Security, performance, and correctness are all important, but <mark>they come after&nbsp;understandability.</mark></p>
<p><cite><em><a data-link-domain="ntietz.com" href="https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/" hreflang="en"
title="Consultation de l’article (anglais)">The most important goal in designing software is understandability</a>
<a href="/david/cache/2024/f154db1b6eccf69f498b4a31980367bd/" hreflang="en"
data-tippy data-description="When you're designing a piece of software, the single most important thing to design for is understandability."
data-source="https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/"
data-date="2024-03-18"
data-favicon="https://ntietz.com/favicon-32x32.png"
data-domain="ntietz.com"
><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="square"
stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
<span class="sr-only">[archive]</span></a></em></cite></p>
</blockquote>
<a href="#hr-122" title="Lien vers cette section de la page"><hr id="hr-122" /></a>

<blockquote lang="en">
<p>Open Source is rewarding- but it can also be&nbsp;exhausting.</p>
<p>The linking project’s code is provided as-is, and is not actively&nbsp;maintained.</p>
<p><cite><em><a data-link-domain="unmaintained.tech" href="https://unmaintained.tech/" hreflang="en"
title="Consultation de l’article (anglais)">No Maintenance Intended</a>
<a href="/david/cache/2024/590887213b24404c8d1e8355127ce2e2/" hreflang="en"
data-tippy data-description="The linking project’s code is provided as-is, and is not actively maintained."
data-source="https://unmaintained.tech/"
data-date="2024-03-18"
data-favicon=""
data-domain="unmaintained.tech"
><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="square"
stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
<span class="sr-only">[archive]</span></a></em></cite></p>
</blockquote>

<nav>
<p>
<a href="/david/2024/adaptation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#adaptation</a>
<a href="/david/2024/addiction/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#addiction</a>
<a href="/david/2024/evolution/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#évolution</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<h2>
<a href="/david/2024/03/10/" title="Lien permanent vers cet article">Dune</a> <time datetime="2024-03-10">10 mars 2024</time>
</h2>

+ 71
- 0
david/2024/addiction/index.html View File

@@ -134,6 +134,77 @@
</p>
</nav>
<h2>
<a href="/david/2024/03/18/" title="Lien permanent vers cet article">Casquettes</a> <time datetime="2024-03-18">18 mars 2024</time>
</h2>
<p>L’impression de porter beaucoup de casquettes dans la même journée en ce moment. Genre ces dernières années en fait. Je ne sais pas encore si ça mène à l’épuisement ou si c’est ce qui me permet de ne pas&nbsp;m’ennuyer.</p>
<p>Je vais bientôt pouvoir ajouter «&nbsp;nocoder&nbsp;» à mon CV. Petite joie technique&nbsp;(?) de la journée, on a réussi à connecter une feuille AiTable à la banque. On place une date dans une cellule et ça programme un virement de l’autre côté. C’était marrant de le faire en&nbsp;binôme.</p>
<a href="#hr-121" title="Lien vers cette section de la page"><hr id="hr-121" /></a>

<blockquote lang="en">
<p>When you’re designing a piece of software, the single most important thing to design for is understandability. Security, performance, and correctness are all important, but <mark>they come after&nbsp;understandability.</mark></p>
<p><cite><em><a data-link-domain="ntietz.com" href="https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/" hreflang="en"
title="Consultation de l’article (anglais)">The most important goal in designing software is understandability</a>
<a href="/david/cache/2024/f154db1b6eccf69f498b4a31980367bd/" hreflang="en"
data-tippy data-description="When you're designing a piece of software, the single most important thing to design for is understandability."
data-source="https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/"
data-date="2024-03-18"
data-favicon="https://ntietz.com/favicon-32x32.png"
data-domain="ntietz.com"
><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="square"
stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
<span class="sr-only">[archive]</span></a></em></cite></p>
</blockquote>
<a href="#hr-122" title="Lien vers cette section de la page"><hr id="hr-122" /></a>

<blockquote lang="en">
<p>Open Source is rewarding- but it can also be&nbsp;exhausting.</p>
<p>The linking project’s code is provided as-is, and is not actively&nbsp;maintained.</p>
<p><cite><em><a data-link-domain="unmaintained.tech" href="https://unmaintained.tech/" hreflang="en"
title="Consultation de l’article (anglais)">No Maintenance Intended</a>
<a href="/david/cache/2024/590887213b24404c8d1e8355127ce2e2/" hreflang="en"
data-tippy data-description="The linking project’s code is provided as-is, and is not actively maintained."
data-source="https://unmaintained.tech/"
data-date="2024-03-18"
data-favicon=""
data-domain="unmaintained.tech"
><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="square"
stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
<span class="sr-only">[archive]</span></a></em></cite></p>
</blockquote>

<nav>
<p>
<a href="/david/2024/adaptation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#adaptation</a>
<a href="/david/2024/addiction/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#addiction</a>
<a href="/david/2024/evolution/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#évolution</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<h2>
<a href="/david/2024/01/16/" title="Lien permanent vers cet article">Endorphines</a> <time datetime="2024-01-16">16 janvier 2024</time>
</h2>

+ 71
- 0
david/2024/evolution/index.html View File

@@ -134,6 +134,77 @@
</p>
</nav>
<h2>
<a href="/david/2024/03/18/" title="Lien permanent vers cet article">Casquettes</a> <time datetime="2024-03-18">18 mars 2024</time>
</h2>
<p>L’impression de porter beaucoup de casquettes dans la même journée en ce moment. Genre ces dernières années en fait. Je ne sais pas encore si ça mène à l’épuisement ou si c’est ce qui me permet de ne pas&nbsp;m’ennuyer.</p>
<p>Je vais bientôt pouvoir ajouter «&nbsp;nocoder&nbsp;» à mon CV. Petite joie technique&nbsp;(?) de la journée, on a réussi à connecter une feuille AiTable à la banque. On place une date dans une cellule et ça programme un virement de l’autre côté. C’était marrant de le faire en&nbsp;binôme.</p>
<a href="#hr-121" title="Lien vers cette section de la page"><hr id="hr-121" /></a>

<blockquote lang="en">
<p>When you’re designing a piece of software, the single most important thing to design for is understandability. Security, performance, and correctness are all important, but <mark>they come after&nbsp;understandability.</mark></p>
<p><cite><em><a data-link-domain="ntietz.com" href="https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/" hreflang="en"
title="Consultation de l’article (anglais)">The most important goal in designing software is understandability</a>
<a href="/david/cache/2024/f154db1b6eccf69f498b4a31980367bd/" hreflang="en"
data-tippy data-description="When you're designing a piece of software, the single most important thing to design for is understandability."
data-source="https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/"
data-date="2024-03-18"
data-favicon="https://ntietz.com/favicon-32x32.png"
data-domain="ntietz.com"
><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="square"
stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
<span class="sr-only">[archive]</span></a></em></cite></p>
</blockquote>
<a href="#hr-122" title="Lien vers cette section de la page"><hr id="hr-122" /></a>

<blockquote lang="en">
<p>Open Source is rewarding- but it can also be&nbsp;exhausting.</p>
<p>The linking project’s code is provided as-is, and is not actively&nbsp;maintained.</p>
<p><cite><em><a data-link-domain="unmaintained.tech" href="https://unmaintained.tech/" hreflang="en"
title="Consultation de l’article (anglais)">No Maintenance Intended</a>
<a href="/david/cache/2024/590887213b24404c8d1e8355127ce2e2/" hreflang="en"
data-tippy data-description="The linking project’s code is provided as-is, and is not actively maintained."
data-source="https://unmaintained.tech/"
data-date="2024-03-18"
data-favicon=""
data-domain="unmaintained.tech"
><svg xmlns="http://www.w3.org/2000/svg"
width="24" height="24" viewBox="0 0 24 24" fill="none"
stroke="currentColor" stroke-width="2" stroke-linecap="square"
stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle>
<path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"></path>
<line x1="12" y1="17" x2="12.01" y2="17"></line>
</svg>
<span class="sr-only">[archive]</span></a></em></cite></p>
</blockquote>

<nav>
<p>
<a href="/david/2024/adaptation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#adaptation</a>
<a href="/david/2024/addiction/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#addiction</a>
<a href="/david/2024/evolution/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#évolution</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<h2>
<a href="/david/2024/03/09/" title="Lien permanent vers cet article">Marque</a> <time datetime="2024-03-09">9 mars 2024</time>
</h2>

+ 5
- 4
david/2024/index.html View File

@@ -213,7 +213,8 @@
<a href="/david/2024/03/12/">Surligner</a>,
<a href="/david/2024/03/13/">Sérendipité</a>,
<a href="/david/2024/03/14/">Montre 2</a>,
<a href="/david/2024/03/16/">Descriptions</a>.
<a href="/david/2024/03/16/">Descriptions</a>,
<a href="/david/2024/03/18/">Casquettes</a>.
</p>
@@ -222,8 +223,8 @@
<p>
<a href="/david/2024/accessibilite/" rel="tag">#accessibilité (3)</a>,
<a href="/david/2024/accompagnement/" rel="tag">#accompagnement (2)</a>,
<a href="/david/2024/adaptation/" rel="tag">#adaptation (2)</a>,
<a href="/david/2024/addiction/" rel="tag">#addiction (4)</a>,
<a href="/david/2024/adaptation/" rel="tag">#adaptation (3)</a>,
<a href="/david/2024/addiction/" rel="tag">#addiction (5)</a>,
<a href="/david/2024/apprentissage/" rel="tag">#apprentissage (14)</a>,
<a href="/david/2024/aventure/" rel="tag">#aventure (4)</a>,
<a href="/david/2024/cinema/" rel="tag">#cinéma (1)</a>,
@@ -239,7 +240,7 @@
<a href="/david/2024/ecriture/" rel="tag">#écriture (8)</a>,
<a href="/david/2024/enthousiasme/" rel="tag">#enthousiasme (1)</a>,
<a href="/david/2024/equipe/" rel="tag">#équipe (7)</a>,
<a href="/david/2024/evolution/" rel="tag">#évolution (8)</a>,
<a href="/david/2024/evolution/" rel="tag">#évolution (9)</a>,
<a href="/david/2024/experience/" rel="tag">#expérience (12)</a>,
<a href="/david/2024/fediverse/" rel="tag">#fédiverse (1)</a>,
<a href="/david/2024/foret/" rel="tag">#forêt (7)</a>,

+ 20
- 20
david/blogroll/index.html View File

@@ -176,32 +176,42 @@
<h2>Leurs dernières publications</h2>
<dl>
<dt>
<a href="https://winnielim.org/notes/car-free-day-2024/">car-free day 2024</a>,
17-03-2024
<a href="https://www.arthurperret.fr/veille/2024-03-18-incurie-bibliographique.html">[Veille] Incurie bibliographique</a>,
18-03-2024
</dt>
<dd>
a couple of days ago we chanced upon a poster for car-free sunday – we'd never experienced a car-free day in singapore so this was quite an experience. this is our first proper photo walk together.
https://golb.statium.link/post/20240317biblio-enseignants-aidez/ Dans son dernier billet, on sent Christophe Masutti légèrement agacé par l’incurie bibliographique dans l’enseignement supérieur, et comment ne pas l’être : les exigences envers les étudiants sont élevées mais la pédagogie ne suit pas du tout. Je pense que beaucoup d’enseignants n’ont malheureusement pas les savoir-faire…
— <a href="https://www.arthurperret.fr/">Arthur Perret</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://winnielim.org/journal/my-first-hate-comment/">my first hate comment</a>,
18-03-2024
</dt>
<dd>
This morning I woke up to my first ever hate comment in response to my latest post in the history of this blog. I am sharing a screenshot because I don’t wish...
— <a href="https://winnielim.org/">Winnie Lim (en)</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://thom4.net/2024/03/16/miso-anniversaire/">☕️ Journal : Miso anniversaire</a>,
16-03-2024
<a href="https://winnielim.org/notes/car-free-day-2024/">car-free day 2024</a>,
17-03-2024
</dt>
<dd>
Parmi les pots en verre qui s’accumulaient dans le bac de tri, je retrouvais souvent un petit contenant de miso. Toutes les semaines ou d
— <a href="https://thom4.net/">Thomas Parisot</a>
a couple of days ago we chanced upon a poster for car-free sunday – we'd never experienced a car-free day in singapore so this was quite an experience. this is our first proper photo walk together.
— <a href="https://winnielim.org/">Winnie Lim (en)</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://winnielim.org/journal/pretension/">pretension</a>,
<a href="https://thom4.net/2024/03/16/miso-anniversaire/">☕️ Journal : Miso anniversaire</a>,
16-03-2024
</dt>
<dd>
Lately I am trying to have more compassion for myself, but it has been a struggle. I tell myself just like I wouldn’t expect someone without a leg to run a marathon,...
— <a href="https://winnielim.org/">Winnie Lim (en)</a>
Parmi les pots en verre qui s’accumulaient dans le bac de tri, je retrouvais souvent un petit contenant de miso. Toutes les semaines ou d
— <a href="https://thom4.net/">Thomas Parisot</a>
</dd>
</dl>
<dl>
@@ -224,16 +234,6 @@
— <a href="https://www.arthurperret.fr/">Arthur Perret</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://www.arthurperret.fr/blog/2024-03-12-inacheve-d-imprimer-robert-alessi-ekdosis.html">[Blog] Inachevé d’imprimer – Robert Alessi, Ekdosis</a>,
12-03-2024
</dt>
<dd>
Robert Alessi est maître de conférences, membre de l’Unité Mixte de Recherche « Orient & Méditerranée » (CNRS UMR 8167, Paris). Il développe et maintient Ekdosis, un paquet LuaLaTeX pour l’édition critique de textes anciens. Ekdosis est conçu pour faciliter le balisage et la composition des éditions critiques, et pour obtenir un format paginé PDF ainsi qu’un format numérique XML-TEI. Ekdosis…
— <a href="https://www.arthurperret.fr/">Arthur Perret</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://www.la-grange.net/2024/03/11/cafe">café du matin</a>,

+ 4
- 3
david/index.html View File

@@ -461,6 +461,7 @@
</style>
<p>Liste des publications récentes en ordre anté-chronologique :</p>
<p>
<a href="/david/2024/03/18/" data-adaptation data-addiction data-evolution title="Étiquettes : adaptation, addiction, évolution.">Casquettes</a>,
<a href="/david/2024/03/16/" data-aventure data-ecriture data-lecture title="Étiquettes : aventure, écriture, lecture.">Descriptions</a>,
<a href="/david/2024/03/14/" data-deception data-enthousiasme data-sport title="Étiquettes : déception, enthousiasme, sport.">Montre 2</a>,
<a href="/david/2024/03/13/" data-liens data-partage data-web title="Étiquettes : liens, partage, web.">Sérendipité</a>,
@@ -543,8 +544,8 @@
<p>
<a href="/david/2024/accessibilite/" data-tag="accessibilite" rel="tag">#accessibilité (3)</a>,
<a href="/david/2024/accompagnement/" data-tag="accompagnement" rel="tag">#accompagnement (2)</a>,
<a href="/david/2024/adaptation/" data-tag="adaptation" rel="tag">#adaptation (2)</a>,
<a href="/david/2024/addiction/" data-tag="addiction" rel="tag">#addiction (4)</a>,
<a href="/david/2024/adaptation/" data-tag="adaptation" rel="tag">#adaptation (3)</a>,
<a href="/david/2024/addiction/" data-tag="addiction" rel="tag">#addiction (5)</a>,
<a href="/david/2024/apprentissage/" data-tag="apprentissage" rel="tag">#apprentissage (14)</a>,
<a href="/david/2024/aventure/" data-tag="aventure" rel="tag">#aventure (4)</a>,
<a href="/david/2024/cinema/" data-tag="cinema" rel="tag">#cinéma (1)</a>,
@@ -560,7 +561,7 @@
<a href="/david/2024/ecriture/" data-tag="ecriture" rel="tag">#écriture (8)</a>,
<a href="/david/2024/enthousiasme/" data-tag="enthousiasme" rel="tag">#enthousiasme (1)</a>,
<a href="/david/2024/equipe/" data-tag="equipe" rel="tag">#équipe (7)</a>,
<a href="/david/2024/evolution/" data-tag="evolution" rel="tag">#évolution (8)</a>,
<a href="/david/2024/evolution/" data-tag="evolution" rel="tag">#évolution (9)</a>,
<a href="/david/2024/experience/" data-tag="experience" rel="tag">#expérience (12)</a>,
<a href="/david/2024/fediverse/" data-tag="fediverse" rel="tag">#fédiverse (1)</a>,
<a href="/david/2024/foret/" data-tag="foret" rel="tag">#forêt (7)</a>,

+ 25
- 29
david/log/index.xml View File

@@ -6,13 +6,37 @@
<link href="https://larlet.fr/david/" rel="alternate" type="text/html" />
<link href="https://larlet.fr/david/log/" rel="self" />
<id>https://larlet.fr/david/</id>
<updated>2024-03-17T12:00:00+01:00</updated>
<updated>2024-03-19T12:00:00+01:00</updated>
<author>
<name>David Larlet</name>
<uri>https://larlet.fr/david/</uri>
</author>
<rights>Copyright (c) 2004-2024, David Larlet</rights>
<entry xml:lang="fr">
<title type="html">Casquettes</title>
<link href="https://larlet.fr/david/2024/03/18/" rel="alternate" type="text/html" />
<updated>2024-03-18T12:00:00+01:00</updated>
<id>https://larlet.fr/david/2024/03/18/</id>
<summary type="html">
&lt;p&gt;L’impression de porter beaucoup de casquettes dans la même journée en ce moment. Genre ces dernières années en fait. Je ne sais pas encore si ça mène à l’épuisement ou si c’est ce qui me permet de ne pas&amp;nbsp;m’ennuyer.&lt;/p&gt;
&lt;p&gt;Je vais bientôt pouvoir ajouter «&amp;nbsp;nocoder&amp;nbsp;» à mon CV. Petite joie technique&amp;nbsp;(?) de la journée, on a réussi à connecter une feuille AiTable à la banque. On place une date dans une cellule et ça programme un virement de l’autre côté. C’était marrant de le faire en&amp;nbsp;binôme.&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;When you’re designing a piece of software, the single most important thing to design for is understandability. Security, performance, and correctness are all important, but &lt;mark&gt;they come after&amp;nbsp;understandability.&lt;/mark&gt;&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://ntietz.com/blog/the-most-important-goal-in-designing-software-is-understandability/&quot;&gt;The most important goal in designing software is&amp;nbsp;understandability&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr /&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;Open Source is rewarding- but it can also be&amp;nbsp;exhausting.&lt;/p&gt;
&lt;p&gt;The linking project’s code is provided as-is, and is not actively&amp;nbsp;maintained.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://unmaintained.tech/&quot;&gt;No Maintenance&amp;nbsp;Intended&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;nav&gt;&lt;p&gt;&lt;a href=&quot;https://larlet.fr/david/2024/adaptation/&quot;&gt;#adaptation&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/addiction/&quot;&gt;#addiction&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/evolution/&quot;&gt;#évolution&lt;/a&gt;&lt;/p&gt;&lt;/nav&gt;&lt;hr/&gt;&lt;p&gt;&lt;a href=&quot;mailto:david@larlet.fr&quot;&gt;Réagir ?&lt;/a&gt;&lt;/p&gt;</summary>
</entry>
<entry xml:lang="fr">
<title type="html">Descriptions</title>
<link href="https://larlet.fr/david/2024/03/16/" rel="alternate" type="text/html" />
@@ -1146,34 +1170,6 @@ button.primary {
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://astral.sh/blog/uv&quot;&gt;uv: Python packaging in&amp;nbsp;Rust&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Un futur de Python se dessine et j’en apprécie les&amp;nbsp;esquisses.&lt;/p&gt;
&lt;nav&gt;&lt;p&gt;&lt;a href=&quot;https://larlet.fr/david/2024/commun/&quot;&gt;#commun&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/decision/&quot;&gt;#décision&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/opensource/&quot;&gt;#opensource&lt;/a&gt;&lt;/p&gt;&lt;/nav&gt;&lt;hr/&gt;&lt;p&gt;&lt;a href=&quot;mailto:david@larlet.fr&quot;&gt;Réagir ?&lt;/a&gt;&lt;/p&gt;</summary>
</entry>
<entry xml:lang="fr">
<title type="html">Licence</title>
<link href="https://larlet.fr/david/2024/02/15/" rel="alternate" type="text/html" />
<updated>2024-02-15T12:00:00+01:00</updated>
<id>https://larlet.fr/david/2024/02/15/</id>
<summary type="html">

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;Title: WTFPL Submission: http://crynwr.com/cgi-bin/ezmlm-cgi?17:mss:634:200902:aglgcgbhmfcheffmdgon License: http://sam.zoy.org/wtfpl/ Comments: It’s no different from dedication to the public domain. Author has submitted license approval request — author is free to make public domain dedication. Although he agrees with the recommendation, Mr. Michlmayr notes that &lt;mark&gt;public domain doesn’t exist in Europe.&lt;/mark&gt; Recommend: Reject&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://opensource.org/meeting-minutes/minutes20090304/&quot;&gt;OSI Board Meeting Minutes, Wednesday, March 4, 2009&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Nous sommes &lt;a href=&quot;https://github.com/umap-project/umap/pull/1605&quot;&gt;passés&lt;/a&gt; de la licence &lt;a href=&quot;http://www.wtfpl.net/&quot;&gt;WTFPL&lt;/a&gt; à &lt;a href=&quot;https://www.gnu.org/licenses/agpl-3.0.en.html&quot;&gt;AGPLv3&lt;/a&gt; pour uMap à partir de la version&amp;nbsp;2 (à venir). Notamment car elle n’était pas acceptable pour l’&lt;a href=&quot;https://opensource.org/&quot;&gt;OSI&lt;/a&gt; ce qui nous posait des problèmes pour obtenir des financements européen ou pour bénéficier des plans &lt;em&gt;open-source&lt;/em&gt; de services comme &lt;a href=&quot;https://www.browserstack.com/open-source&quot;&gt;BrowserStack&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Le seul service qui a accepté la licence WTFPL sans broncher est &lt;a href=&quot;https://sentry.io/for/open-source/&quot;&gt;Sentry&lt;/a&gt;, ceci en un temps&amp;nbsp;record.&lt;/p&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;Simply put, the AGPLv3 is effectively the GPLv3, but with an additional licensing term that ensures that users who interact &lt;mark&gt;over a network&lt;/mark&gt; with modified versions of the program can receive the source code for that&amp;nbsp;program.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://www.fsf.org/bulletin/2021/fall/the-fundamentals-of-the-agplv3&quot;&gt;The fundamentals of the&amp;nbsp;AGPLv3&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr /&gt;

&lt;blockquote&gt;
&lt;p&gt;La prévalence des drogues chinoises, et synthétiques en général, sur le marché a eu des conséquences au Mexique voisin. Dans une vidéo de fin 2020, The Intercept montre que la baisse drastique de demande en héroïne au profit du fentanyl a des conséquences humaines considérables. «&amp;nbsp;Les cultivateurs de pavot au Mexique doivent se résoudre à migrer pour travailler ou se tourner vers le crime organisé&amp;nbsp;», raconte le média, partageant des témoignages de personnes précaires encore appauvries par la&amp;nbsp;situation.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://basta.media/crise-des-opioides-pourquoi-il-ne-faut-ni-oublier-ni-ignorer&quot;&gt;Crise des opioïdes&amp;nbsp;: pourquoi il ne faut ni l’oublier ni&amp;nbsp;l’ignorer&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Je n’avais pas encore pris conscience de tous les enjeux socio-économico-géopolitiques de ces nouvelles drogues. Il y a des guerres qui sont moins médiatisées que&amp;nbsp;d’autres.&lt;/p&gt;
&lt;nav&gt;&lt;p&gt;&lt;a href=&quot;https://larlet.fr/david/2024/commun/&quot;&gt;#commun&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/decision/&quot;&gt;#décision&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/opensource/&quot;&gt;#opensource&lt;/a&gt;&lt;/p&gt;&lt;/nav&gt;&lt;hr/&gt;&lt;p&gt;&lt;a href=&quot;mailto:david@larlet.fr&quot;&gt;Réagir ?&lt;/a&gt;&lt;/p&gt;</summary>
</entry>

+ 12
- 0
david/recherche/index.html View File

@@ -276,6 +276,12 @@
</template>
<script id="search-index" type="application/json">[
{
"title": "Casquettes",
"url": "/david/2024/03/18/",
"date": "2024-03-18",
"content": "L\u2019impression de porter beaucoup de casquettes dans la m\u00eame journ\u00e9e en ce moment. Genre ces derni\u00e8res ann\u00e9es en fait. Je ne sais pas encore si \u00e7a m\u00e8ne \u00e0 l\u2019\u00e9puisement ou si c\u2019est ce qui me permet de ne pas\u00a0m\u2019ennuyer. Je vais bient\u00f4t pouvoir ajouter \u00ab\u00a0nocoder\u00a0\u00bb \u00e0 mon CV. Petite joie technique\u00a0(?) de la journ\u00e9e, on a r\u00e9ussi \u00e0 connecter une feuille AiTable \u00e0 la banque. On place une date dans une cellule et \u00e7a programme un virement de l\u2019autre c\u00f4t\u00e9. C\u2019\u00e9tait marrant de le faire en\u00a0bin\u00f4me. When you\u2019re designing a piece of software, the single most important thing to design for is understandability. Security, performance, and correctness are all important, but they come after\u00a0understandability. The most important goal in designing software is\u00a0understandability Open Source is rewarding- but it can also be\u00a0exhausting. The linking project\u2019s code is provided as-is, and is not actively\u00a0maintained. No Maintenance\u00a0Intended"
},
{
"title": "Descriptions",
"url": "/david/2024/03/16/",
@@ -726,6 +732,12 @@
"date": "2024-01-01",
"content": "33\u202f% de 44\u00a0millions de consommateurs vont faire le Dry January 22\u202f% des consommateurs ont une conso excessive, c\u2019est-\u00e0-dire 10\u00a0verres/semaine max et plus de deux\u00a0verres/jour. Les seniors sont aussi tr\u00e8s touch\u00e9\u00b7es. L\u2019alcool est une drogue.. On peut faire la f\u00eate sans alcool et\u00a0s\u2019\u00e9clater. Quand on arr\u00eate\u00a0: bienfaits sur le foie, la peau, le coeur, etc\u2026 Pb\u00a0: m\u00e9moire, troubles cognitifs, responsable de cancer, pb sommeil, d\u00e9compensation de maladie psy,\u2026 41000\u00a0d\u00e9c\u00e8s par an en\u00a0France. Les cinq sympt\u00f4mes d\u00e9finissent un probl\u00e8me de\u00a0d\u00e9pendance\u00a0: Perte de\u00a0contr\u00f4le Usage\u00a0compulsif Envie\u00a0r\u00e9pressive Usage\u00a0chronique Cons\u00e9quences psychiques, physiques, sociales,\u2026 Bon Dry J. pour celleux qui le font\u202f! Moi j\u2019en\u00a0suis\u202f! @Air@framapiaf.org Dans mon entourage, de plus en plus de personnes que j\u2019estime ne boivent pas d\u2019alcool, de plus en plus de personnes qui vieillissent en deviennent d\u00e9pendantes. Je suis davantage attir\u00e9 par la premi\u00e8re option\u2026 et pas pour un seul\u00a0mois. Je me sens pr\u00eat, on verra bien o\u00f9 cela me\u00a0m\u00e8ne. Grosse envie de reprendre la CSS par ici en ce d\u00e9but d\u2019ann\u00e9e. Avec le dilemme de faire chuter cette motivation si je publie d\u00e8s maintenant avec l\u2019ancienne (qui restera effective sur les anciens articles). Je vais essayer de me\u00a0retenir."
},
{
"title": "Casquettes",
"url": "/david/2024/03/18/",
"date": "2024-03-18",
"content": "L\u2019impression de porter beaucoup de casquettes dans la m\u00eame journ\u00e9e en ce moment. Genre ces derni\u00e8res ann\u00e9es en fait. Je ne sais pas encore si \u00e7a m\u00e8ne \u00e0 l\u2019\u00e9puisement ou si c\u2019est ce qui me permet de ne pas\u00a0m\u2019ennuyer. Je vais bient\u00f4t pouvoir ajouter \u00ab\u00a0nocoder\u00a0\u00bb \u00e0 mon CV. Petite joie technique\u00a0(?) de la journ\u00e9e, on a r\u00e9ussi \u00e0 connecter une feuille AiTable \u00e0 la banque. On place une date dans une cellule et \u00e7a programme un virement de l\u2019autre c\u00f4t\u00e9. C\u2019\u00e9tait marrant de le faire en\u00a0bin\u00f4me. When you\u2019re designing a piece of software, the single most important thing to design for is understandability. Security, performance, and correctness are all important, but they come after\u00a0understandability. The most important goal in designing software is\u00a0understandability Open Source is rewarding- but it can also be\u00a0exhausting. The linking project\u2019s code is provided as-is, and is not actively\u00a0maintained. No Maintenance\u00a0Intended"
},
{
"title": "Descriptions",
"url": "/david/2024/03/16/",

Loading…
Cancel
Save