Browse Source

Article

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

+ 8
- 0
david/2024/04/14/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/04/17/"
title="Publication suivante : Échelle">Suivant →</a>
</p>
</nav>
@@ -225,6 +229,10 @@
<a href="/david/2024/" title="Liste des publications récentes">↑ En 2024</a>
• <a rel="next"
href="/david/2024/04/17/"
title="Publication suivante : Échelle">Suivant →</a>
</p>
</nav>


+ 470
- 0
david/2024/04/17/index.html View File

@@ -0,0 +1,470 @@
<!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>
Échelle
— 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="We have been obsessed with this scalability as the single differentiating factor that will tell us how well something will adapt to the changing requirements of an organization and increasing, diverse technical demand. But for businesses, scaling means that output remains the same or only slightly degrades while production costs lower.">
<!-- 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>Échelle</h1>
<p>Le <time datetime="2024-04-17">17 avril 2024</time></p>
</hgroup>
</header>
<nav>
<p>
<a rel="prev"
href="/david/2024/04/14/"
title="Publication précédente : Apex 2">← 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>

<blockquote lang="en">
<p>We have been obsessed with this scalability as the single differentiating factor that will tell us how well something will adapt to the changing requirements of an organization and increasing, diverse technical demand. But for businesses, scaling means that output remains the same or only slightly degrades while production costs&nbsp;lower.</p>
<p><mark>Scalability has become the leading differentiator, the Leitdifferenz, of almost everything in our industry.</mark> From the tech we develop with, for, and on to what, how, and who we design for It’s almost like a trance that we keep repeating to ourselves.“But will it scale?” is first and foremost a matter of business. But in development and design, it also refers to other factors. Yet when it comes to matters of industrialization, these factors remain&nbsp;secondary.</p>
<p><cite><em><a data-link-domain="helloyes.dev" href="https://helloyes.dev/blog/2023/craft-vs-industry/" hreflang="en"
title="Consultation de l’article (anglais)">Craft vs Industry: Separating Concerns</a>
<a href="/david/cache/2024/f000099cbb33176d35e7aeccdab687b3/" hreflang="en"
data-tippy data-description="We have long referred to our niche of the web as the web industry but never has the term been more congruent than it is right now. I believe this throws us into some conflicts, that we are left deal with alone."
data-source="https://helloyes.dev/blog/2023/craft-vs-industry/"
data-date="2024-04-17"
data-favicon="https://helloyes.dev/assets/favicons/illusion/icon.svg"
data-domain="helloyes.dev"
><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>
<p>C’est la raison pour laquelle je suis de plus en plus attiré par de petits évènements (voir ci-dessous) qui peuvent avoir lieu dans des endroits différents —&nbsp;de manière distribuée&nbsp;— par des communautés qui peuvent y mettre leurs propres échelles pour embarquer de nouvelles&nbsp;personnes.</p>
<a href="#hr-149" title="Lien vers cette section de la page"><hr id="hr-149" /></a>

<blockquote lang="en">
<p>I don’t think we <em>need</em> new metaphors for the things we do with computers. But I like thinking about <mark>creating software as organizing an event.</mark> Here are some reasons why I think <em>event</em> is a better metaphor than <em>product</em>:</p>
<p><cite><em><a data-link-domain="kooslooijesteijn.net" href="https://www.kooslooijesteijn.net/blog/app-website-is-not-product" hreflang="en"
title="Consultation de l’article (anglais)">Your app is not a product</a>
<a href="/david/cache/2024/e8ab525499d79428bb5674609dc486dc/" hreflang="en"
data-tippy data-description="… and neither is your website."
data-source="https://www.kooslooijesteijn.net/blog/app-website-is-not-product"
data-date="2024-04-17"
data-favicon="https://www.kooslooijesteijn.net/favicon/favicon.svg"
data-domain="kooslooijesteijn.net"
><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>
<p>Je ne vais pas énumérer toute la liste ici mais il y a de bonnes choses à aller picorer pour alimenter mes propres réflexions à ce&nbsp;sujet.</p>
<a href="#hr-150" title="Lien vers cette section de la page"><hr id="hr-150" /></a>

<blockquote lang="en">
<p>Ecology knows that shifting baselines dampen collective urgency and deepen generational divides. People who care about internet monoculture and control are often told they’re nostalgists harkening back to a pioneer era. But it’s fiendishly hard to regenerate an open and competitive infrastructure for younger generations who’ve been raised to assume that two or three platforms, two app stores, two operating systems, two browsers, one cloud/mega-store and a single search engine for the world comprise the internet. If <em>the internet</em> for you is the massive sky-scraping silo you happen to live inside and the only thing you can see outside is the single, other massive sky-scraping silo, then <mark>how can you imagine anything&nbsp;else?</mark></p>
<p>[…] For tech giants, the long period of open internet evolution is over. Their internet is not an ecosystem. It’s a&nbsp;zoo.</p>
<p><cite><em><a data-link-domain="noemamag.com" href="https://www.noemamag.com/we-need-to-rewild-the-internet/" hreflang="en"
title="Consultation de l’article (anglais)">We Need To Rewild The Internet</a>
<a href="/david/cache/2024/21f1fc65a0499d19ded2b8d326791fee/" hreflang="en"
data-tippy data-description="The internet has become an extractive and fragile monoculture. But we can revitalize it using lessons learned by ecologists."
data-source="https://www.noemamag.com/we-need-to-rewild-the-internet/"
data-date="2024-04-17"
data-favicon="https://www.noemamag.com/wp-content/uploads/2020/06/cropped-ms-icon-310x310-1-32x32.png"
data-domain="noemamag.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>
<p>Ce troisième lien est lui aussi une métaphore, combinant <em>forêt</em> et <em>web</em>. Lorsqu’on constate ce qu’il advient de nos forêts, je ne sais pas trop s’il est possible d’être optimiste à ce&nbsp;sujet…</p>
<a href="#hr-151" title="Lien vers cette section de la page"><hr id="hr-151" /></a>

<blockquote>
<p>Nous sommes un groupe d’étudiants dans les métiers du multimédia et de l’Internet. Pourtant nous n’avons pas numérisé. Il y a un an, <mark>nous nous empressions</mark> de faire une solution numérique éco conçue pour répondre à un&nbsp;problème.</p>
<p>Aujourd’hui, avec du recul, des connaissances supplémentaires et une nouvelle vision, nous nous demandons s’il est nécessaire de&nbsp;numériser.</p>
<p><cite><em><a data-link-domain="nousnavonspasnumerise.mmibordeaux.com" href="https://nousnavonspasnumerise.mmibordeaux.com/autopsie/" hreflang="fr"
title="Consultation de l’article">Nous n’avons pas numérisé.</a>
<a href="/david/cache/2024/6fd58c8dcf1738605fb932bb83f4411a/" hreflang="fr"
data-tippy data-description="L’écran captive plus facilement les enfants que le papier"
data-source="https://nousnavonspasnumerise.mmibordeaux.com/autopsie/"
data-date="2024-04-17"
data-favicon="https://nousnavonspasnumerise.mmibordeaux.com/assets/images/favicons/favicon.png"
data-domain="nousnavonspasnumerise.mmibordeaux.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>
<p>Un peu d’espoir tout de&nbsp;même.</p>

<nav>
<p>
<a href="/david/2024/commun/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#commun</a>
<a href="/david/2024/decentralisation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#décentralisation</a>
<a href="/david/2024/protopie/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#protopie</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/04/14/"
title="Publication précédente : Apex 2">← 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>

+ 39
- 0
david/2024/_sources/2024-04-17 - Echelle.md View File

@@ -0,0 +1,39 @@
# Échelle

> [en] We have been obsessed with this scalability as the single differentiating factor that will tell us how well something will adapt to the changing requirements of an organization and increasing, diverse technical demand. But for businesses, scaling means that output remains the same or only slightly degrades while production costs lower.
>
> ==Scalability has become the leading differentiator, the Leitdifferenz, of almost everything in our industry.== From the tech we develop with, for, and on to what, how, and who we design for It’s almost like a trance that we keep repeating to ourselves.“But will it scale?” is first and foremost a matter of business. But in development and design, it also refers to other factors. Yet when it comes to matters of industrialization, these factors remain secondary.
>
> <cite>*[Craft vs Industry: Separating Concerns](https://helloyes.dev/blog/2023/craft-vs-industry/)*</cite>

C’est la raison pour laquelle je suis de plus en plus attiré par de petits évènements (voir ci-dessous) qui peuvent avoir lieu dans des endroits différents — de manière distribuée — par des communautés qui peuvent y mettre leurs propres échelles pour embarquer de nouvelles personnes.

---

> [en] I don’t think we *need* new metaphors for the things we do with computers. But I like thinking about ==creating software as organizing an event.== Here are some reasons why I think *event* is a better metaphor than *product*:
>
> <cite>*[Your app is not a product](https://www.kooslooijesteijn.net/blog/app-website-is-not-product)*</cite>

Je ne vais pas énumérer toute la liste ici mais il y a de bonnes choses à aller picorer pour alimenter mes propres réflexions à ce sujet.

---

> [en] Ecology knows that shifting baselines dampen collective urgency and deepen generational divides. People who care about internet monoculture and control are often told they’re nostalgists harkening back to a pioneer era. But it’s fiendishly hard to regenerate an open and competitive infrastructure for younger generations who’ve been raised to assume that two or three platforms, two app stores, two operating systems, two browsers, one cloud/mega-store and a single search engine for the world comprise the internet. If *the internet* for you is the massive sky-scraping silo you happen to live inside and the only thing you can see outside is the single, other massive sky-scraping silo, then ==how can you imagine anything else?==
>
> […] For tech giants, the long period of open internet evolution is over. Their internet is not an ecosystem. It’s a zoo.
>
> <cite>*[We Need To Rewild The Internet](https://www.noemamag.com/we-need-to-rewild-the-internet/)*</cite>

Ce troisième lien est lui aussi une métaphore, combinant *forêt* et *web*. Lorsqu’on constate ce qu’il advient de nos forêts, je ne sais pas trop s’il est possible d’être optimiste à ce sujet…

---

> Nous sommes un groupe d’étudiants dans les métiers du multimédia et de l’Internet. Pourtant nous n’avons pas numérisé. Il y a un an, ==nous nous empressions== de faire une solution numérique éco conçue pour répondre à un problème.
>
> Aujourd’hui, avec du recul, des connaissances supplémentaires et une nouvelle vision, nous nous demandons s’il est nécessaire de numériser.
>
> <cite>*[Nous n’avons pas numérisé.](https://nousnavonspasnumerise.mmibordeaux.com/autopsie/)*</cite>

Un peu d’espoir tout de même.

#commun #décentralisation #protopie

+ 116
- 0
david/2024/commun/index.html View File

@@ -134,6 +134,122 @@
</p>
</nav>
<h2>
<a href="/david/2024/04/17/" title="Lien permanent vers cet article">Échelle</a> <time datetime="2024-04-17">17 avril 2024</time>
</h2>

<blockquote lang="en">
<p>We have been obsessed with this scalability as the single differentiating factor that will tell us how well something will adapt to the changing requirements of an organization and increasing, diverse technical demand. But for businesses, scaling means that output remains the same or only slightly degrades while production costs&nbsp;lower.</p>
<p><mark>Scalability has become the leading differentiator, the Leitdifferenz, of almost everything in our industry.</mark> From the tech we develop with, for, and on to what, how, and who we design for It’s almost like a trance that we keep repeating to ourselves.“But will it scale?” is first and foremost a matter of business. But in development and design, it also refers to other factors. Yet when it comes to matters of industrialization, these factors remain&nbsp;secondary.</p>
<p><cite><em><a data-link-domain="helloyes.dev" href="https://helloyes.dev/blog/2023/craft-vs-industry/" hreflang="en"
title="Consultation de l’article (anglais)">Craft vs Industry: Separating Concerns</a>
<a href="/david/cache/2024/f000099cbb33176d35e7aeccdab687b3/" hreflang="en"
data-tippy data-description="We have long referred to our niche of the web as the web industry but never has the term been more congruent than it is right now. I believe this throws us into some conflicts, that we are left deal with alone."
data-source="https://helloyes.dev/blog/2023/craft-vs-industry/"
data-date="2024-04-17"
data-favicon="https://helloyes.dev/assets/favicons/illusion/icon.svg"
data-domain="helloyes.dev"
><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>
<p>C’est la raison pour laquelle je suis de plus en plus attiré par de petits évènements (voir ci-dessous) qui peuvent avoir lieu dans des endroits différents —&nbsp;de manière distribuée&nbsp;— par des communautés qui peuvent y mettre leurs propres échelles pour embarquer de nouvelles&nbsp;personnes.</p>
<a href="#hr-149" title="Lien vers cette section de la page"><hr id="hr-149" /></a>

<blockquote lang="en">
<p>I don’t think we <em>need</em> new metaphors for the things we do with computers. But I like thinking about <mark>creating software as organizing an event.</mark> Here are some reasons why I think <em>event</em> is a better metaphor than <em>product</em>:</p>
<p><cite><em><a data-link-domain="kooslooijesteijn.net" href="https://www.kooslooijesteijn.net/blog/app-website-is-not-product" hreflang="en"
title="Consultation de l’article (anglais)">Your app is not a product</a>
<a href="/david/cache/2024/e8ab525499d79428bb5674609dc486dc/" hreflang="en"
data-tippy data-description="… and neither is your website."
data-source="https://www.kooslooijesteijn.net/blog/app-website-is-not-product"
data-date="2024-04-17"
data-favicon="https://www.kooslooijesteijn.net/favicon/favicon.svg"
data-domain="kooslooijesteijn.net"
><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>
<p>Je ne vais pas énumérer toute la liste ici mais il y a de bonnes choses à aller picorer pour alimenter mes propres réflexions à ce&nbsp;sujet.</p>
<a href="#hr-150" title="Lien vers cette section de la page"><hr id="hr-150" /></a>

<blockquote lang="en">
<p>Ecology knows that shifting baselines dampen collective urgency and deepen generational divides. People who care about internet monoculture and control are often told they’re nostalgists harkening back to a pioneer era. But it’s fiendishly hard to regenerate an open and competitive infrastructure for younger generations who’ve been raised to assume that two or three platforms, two app stores, two operating systems, two browsers, one cloud/mega-store and a single search engine for the world comprise the internet. If <em>the internet</em> for you is the massive sky-scraping silo you happen to live inside and the only thing you can see outside is the single, other massive sky-scraping silo, then <mark>how can you imagine anything&nbsp;else?</mark></p>
<p>[…] For tech giants, the long period of open internet evolution is over. Their internet is not an ecosystem. It’s a&nbsp;zoo.</p>
<p><cite><em><a data-link-domain="noemamag.com" href="https://www.noemamag.com/we-need-to-rewild-the-internet/" hreflang="en"
title="Consultation de l’article (anglais)">We Need To Rewild The Internet</a>
<a href="/david/cache/2024/21f1fc65a0499d19ded2b8d326791fee/" hreflang="en"
data-tippy data-description="The internet has become an extractive and fragile monoculture. But we can revitalize it using lessons learned by ecologists."
data-source="https://www.noemamag.com/we-need-to-rewild-the-internet/"
data-date="2024-04-17"
data-favicon="https://www.noemamag.com/wp-content/uploads/2020/06/cropped-ms-icon-310x310-1-32x32.png"
data-domain="noemamag.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>
<p>Ce troisième lien est lui aussi une métaphore, combinant <em>forêt</em> et <em>web</em>. Lorsqu’on constate ce qu’il advient de nos forêts, je ne sais pas trop s’il est possible d’être optimiste à ce&nbsp;sujet…</p>
<a href="#hr-151" title="Lien vers cette section de la page"><hr id="hr-151" /></a>

<blockquote>
<p>Nous sommes un groupe d’étudiants dans les métiers du multimédia et de l’Internet. Pourtant nous n’avons pas numérisé. Il y a un an, <mark>nous nous empressions</mark> de faire une solution numérique éco conçue pour répondre à un&nbsp;problème.</p>
<p>Aujourd’hui, avec du recul, des connaissances supplémentaires et une nouvelle vision, nous nous demandons s’il est nécessaire de&nbsp;numériser.</p>
<p><cite><em><a data-link-domain="nousnavonspasnumerise.mmibordeaux.com" href="https://nousnavonspasnumerise.mmibordeaux.com/autopsie/" hreflang="fr"
title="Consultation de l’article">Nous n’avons pas numérisé.</a>
<a href="/david/cache/2024/6fd58c8dcf1738605fb932bb83f4411a/" hreflang="fr"
data-tippy data-description="L’écran captive plus facilement les enfants que le papier"
data-source="https://nousnavonspasnumerise.mmibordeaux.com/autopsie/"
data-date="2024-04-17"
data-favicon="https://nousnavonspasnumerise.mmibordeaux.com/assets/images/favicons/favicon.png"
data-domain="nousnavonspasnumerise.mmibordeaux.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>
<p>Un peu d’espoir tout de&nbsp;même.</p>

<nav>
<p>
<a href="/david/2024/commun/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#commun</a>
<a href="/david/2024/decentralisation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#décentralisation</a>
<a href="/david/2024/protopie/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#protopie</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<h2>
<a href="/david/2024/04/02/" title="Lien permanent vers cet article">Porte</a> <time datetime="2024-04-02">2 avril 2024</time>
</h2>

+ 116
- 0
david/2024/decentralisation/index.html View File

@@ -134,6 +134,122 @@
</p>
</nav>
<h2>
<a href="/david/2024/04/17/" title="Lien permanent vers cet article">Échelle</a> <time datetime="2024-04-17">17 avril 2024</time>
</h2>

<blockquote lang="en">
<p>We have been obsessed with this scalability as the single differentiating factor that will tell us how well something will adapt to the changing requirements of an organization and increasing, diverse technical demand. But for businesses, scaling means that output remains the same or only slightly degrades while production costs&nbsp;lower.</p>
<p><mark>Scalability has become the leading differentiator, the Leitdifferenz, of almost everything in our industry.</mark> From the tech we develop with, for, and on to what, how, and who we design for It’s almost like a trance that we keep repeating to ourselves.“But will it scale?” is first and foremost a matter of business. But in development and design, it also refers to other factors. Yet when it comes to matters of industrialization, these factors remain&nbsp;secondary.</p>
<p><cite><em><a data-link-domain="helloyes.dev" href="https://helloyes.dev/blog/2023/craft-vs-industry/" hreflang="en"
title="Consultation de l’article (anglais)">Craft vs Industry: Separating Concerns</a>
<a href="/david/cache/2024/f000099cbb33176d35e7aeccdab687b3/" hreflang="en"
data-tippy data-description="We have long referred to our niche of the web as the web industry but never has the term been more congruent than it is right now. I believe this throws us into some conflicts, that we are left deal with alone."
data-source="https://helloyes.dev/blog/2023/craft-vs-industry/"
data-date="2024-04-17"
data-favicon="https://helloyes.dev/assets/favicons/illusion/icon.svg"
data-domain="helloyes.dev"
><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>
<p>C’est la raison pour laquelle je suis de plus en plus attiré par de petits évènements (voir ci-dessous) qui peuvent avoir lieu dans des endroits différents —&nbsp;de manière distribuée&nbsp;— par des communautés qui peuvent y mettre leurs propres échelles pour embarquer de nouvelles&nbsp;personnes.</p>
<a href="#hr-149" title="Lien vers cette section de la page"><hr id="hr-149" /></a>

<blockquote lang="en">
<p>I don’t think we <em>need</em> new metaphors for the things we do with computers. But I like thinking about <mark>creating software as organizing an event.</mark> Here are some reasons why I think <em>event</em> is a better metaphor than <em>product</em>:</p>
<p><cite><em><a data-link-domain="kooslooijesteijn.net" href="https://www.kooslooijesteijn.net/blog/app-website-is-not-product" hreflang="en"
title="Consultation de l’article (anglais)">Your app is not a product</a>
<a href="/david/cache/2024/e8ab525499d79428bb5674609dc486dc/" hreflang="en"
data-tippy data-description="… and neither is your website."
data-source="https://www.kooslooijesteijn.net/blog/app-website-is-not-product"
data-date="2024-04-17"
data-favicon="https://www.kooslooijesteijn.net/favicon/favicon.svg"
data-domain="kooslooijesteijn.net"
><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>
<p>Je ne vais pas énumérer toute la liste ici mais il y a de bonnes choses à aller picorer pour alimenter mes propres réflexions à ce&nbsp;sujet.</p>
<a href="#hr-150" title="Lien vers cette section de la page"><hr id="hr-150" /></a>

<blockquote lang="en">
<p>Ecology knows that shifting baselines dampen collective urgency and deepen generational divides. People who care about internet monoculture and control are often told they’re nostalgists harkening back to a pioneer era. But it’s fiendishly hard to regenerate an open and competitive infrastructure for younger generations who’ve been raised to assume that two or three platforms, two app stores, two operating systems, two browsers, one cloud/mega-store and a single search engine for the world comprise the internet. If <em>the internet</em> for you is the massive sky-scraping silo you happen to live inside and the only thing you can see outside is the single, other massive sky-scraping silo, then <mark>how can you imagine anything&nbsp;else?</mark></p>
<p>[…] For tech giants, the long period of open internet evolution is over. Their internet is not an ecosystem. It’s a&nbsp;zoo.</p>
<p><cite><em><a data-link-domain="noemamag.com" href="https://www.noemamag.com/we-need-to-rewild-the-internet/" hreflang="en"
title="Consultation de l’article (anglais)">We Need To Rewild The Internet</a>
<a href="/david/cache/2024/21f1fc65a0499d19ded2b8d326791fee/" hreflang="en"
data-tippy data-description="The internet has become an extractive and fragile monoculture. But we can revitalize it using lessons learned by ecologists."
data-source="https://www.noemamag.com/we-need-to-rewild-the-internet/"
data-date="2024-04-17"
data-favicon="https://www.noemamag.com/wp-content/uploads/2020/06/cropped-ms-icon-310x310-1-32x32.png"
data-domain="noemamag.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>
<p>Ce troisième lien est lui aussi une métaphore, combinant <em>forêt</em> et <em>web</em>. Lorsqu’on constate ce qu’il advient de nos forêts, je ne sais pas trop s’il est possible d’être optimiste à ce&nbsp;sujet…</p>
<a href="#hr-151" title="Lien vers cette section de la page"><hr id="hr-151" /></a>

<blockquote>
<p>Nous sommes un groupe d’étudiants dans les métiers du multimédia et de l’Internet. Pourtant nous n’avons pas numérisé. Il y a un an, <mark>nous nous empressions</mark> de faire une solution numérique éco conçue pour répondre à un&nbsp;problème.</p>
<p>Aujourd’hui, avec du recul, des connaissances supplémentaires et une nouvelle vision, nous nous demandons s’il est nécessaire de&nbsp;numériser.</p>
<p><cite><em><a data-link-domain="nousnavonspasnumerise.mmibordeaux.com" href="https://nousnavonspasnumerise.mmibordeaux.com/autopsie/" hreflang="fr"
title="Consultation de l’article">Nous n’avons pas numérisé.</a>
<a href="/david/cache/2024/6fd58c8dcf1738605fb932bb83f4411a/" hreflang="fr"
data-tippy data-description="L’écran captive plus facilement les enfants que le papier"
data-source="https://nousnavonspasnumerise.mmibordeaux.com/autopsie/"
data-date="2024-04-17"
data-favicon="https://nousnavonspasnumerise.mmibordeaux.com/assets/images/favicons/favicon.png"
data-domain="nousnavonspasnumerise.mmibordeaux.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>
<p>Un peu d’espoir tout de&nbsp;même.</p>

<nav>
<p>
<a href="/david/2024/commun/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#commun</a>
<a href="/david/2024/decentralisation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#décentralisation</a>
<a href="/david/2024/protopie/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#protopie</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<h2>
<a href="/david/2024/03/11/" title="Lien permanent vers cet article">LoginWall</a> <time datetime="2024-03-11">11 mars 2024</time>
</h2>

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

@@ -237,7 +237,8 @@
<a href="/david/2024/04/08/">Éclipse</a>,
<a href="/david/2024/04/10/">Weird</a>,
<a href="/david/2024/04/13/">Fondation</a>,
<a href="/david/2024/04/14/">Apex 2</a>.
<a href="/david/2024/04/14/">Apex 2</a>,
<a href="/david/2024/04/17/">Échelle</a>.
</p>
@@ -251,10 +252,10 @@
<a href="/david/2024/apprentissage/" rel="tag">#apprentissage (16)</a>,
<a href="/david/2024/aventure/" rel="tag">#aventure (4)</a>,
<a href="/david/2024/cinema/" rel="tag">#cinéma (1)</a>,
<a href="/david/2024/commun/" rel="tag">#commun (11)</a>,
<a href="/david/2024/commun/" rel="tag">#commun (12)</a>,
<a href="/david/2024/communaute/" rel="tag">#communauté (7)</a>,
<a href="/david/2024/courage/" rel="tag">#courage (2)</a>,
<a href="/david/2024/decentralisation/" rel="tag">#décentralisation (1)</a>,
<a href="/david/2024/decentralisation/" rel="tag">#décentralisation (2)</a>,
<a href="/david/2024/deception/" rel="tag">#déception (3)</a>,
<a href="/david/2024/decision/" rel="tag">#décision (8)</a>,
<a href="/david/2024/dependance/" rel="tag">#dépendance (8)</a>,
@@ -283,7 +284,7 @@
<a href="/david/2024/poesie/" rel="tag">#poésie (4)</a>,
<a href="/david/2024/processus/" rel="tag">#processus (10)</a>,
<a href="/david/2024/propriete/" rel="tag">#propriété (1)</a>,
<a href="/david/2024/protopie/" rel="tag">#protopie (9)</a>,
<a href="/david/2024/protopie/" rel="tag">#protopie (10)</a>,
<a href="/david/2024/psychologie/" rel="tag">#psychologie (14)</a>,
<a href="/david/2024/solastalgia/" rel="tag">#solastalgia (5)</a>,
<a href="/david/2024/sport/" rel="tag">#sport (8)</a>,

+ 116
- 0
david/2024/protopie/index.html View File

@@ -134,6 +134,122 @@
</p>
</nav>
<h2>
<a href="/david/2024/04/17/" title="Lien permanent vers cet article">Échelle</a> <time datetime="2024-04-17">17 avril 2024</time>
</h2>

<blockquote lang="en">
<p>We have been obsessed with this scalability as the single differentiating factor that will tell us how well something will adapt to the changing requirements of an organization and increasing, diverse technical demand. But for businesses, scaling means that output remains the same or only slightly degrades while production costs&nbsp;lower.</p>
<p><mark>Scalability has become the leading differentiator, the Leitdifferenz, of almost everything in our industry.</mark> From the tech we develop with, for, and on to what, how, and who we design for It’s almost like a trance that we keep repeating to ourselves.“But will it scale?” is first and foremost a matter of business. But in development and design, it also refers to other factors. Yet when it comes to matters of industrialization, these factors remain&nbsp;secondary.</p>
<p><cite><em><a data-link-domain="helloyes.dev" href="https://helloyes.dev/blog/2023/craft-vs-industry/" hreflang="en"
title="Consultation de l’article (anglais)">Craft vs Industry: Separating Concerns</a>
<a href="/david/cache/2024/f000099cbb33176d35e7aeccdab687b3/" hreflang="en"
data-tippy data-description="We have long referred to our niche of the web as the web industry but never has the term been more congruent than it is right now. I believe this throws us into some conflicts, that we are left deal with alone."
data-source="https://helloyes.dev/blog/2023/craft-vs-industry/"
data-date="2024-04-17"
data-favicon="https://helloyes.dev/assets/favicons/illusion/icon.svg"
data-domain="helloyes.dev"
><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>
<p>C’est la raison pour laquelle je suis de plus en plus attiré par de petits évènements (voir ci-dessous) qui peuvent avoir lieu dans des endroits différents —&nbsp;de manière distribuée&nbsp;— par des communautés qui peuvent y mettre leurs propres échelles pour embarquer de nouvelles&nbsp;personnes.</p>
<a href="#hr-149" title="Lien vers cette section de la page"><hr id="hr-149" /></a>

<blockquote lang="en">
<p>I don’t think we <em>need</em> new metaphors for the things we do with computers. But I like thinking about <mark>creating software as organizing an event.</mark> Here are some reasons why I think <em>event</em> is a better metaphor than <em>product</em>:</p>
<p><cite><em><a data-link-domain="kooslooijesteijn.net" href="https://www.kooslooijesteijn.net/blog/app-website-is-not-product" hreflang="en"
title="Consultation de l’article (anglais)">Your app is not a product</a>
<a href="/david/cache/2024/e8ab525499d79428bb5674609dc486dc/" hreflang="en"
data-tippy data-description="… and neither is your website."
data-source="https://www.kooslooijesteijn.net/blog/app-website-is-not-product"
data-date="2024-04-17"
data-favicon="https://www.kooslooijesteijn.net/favicon/favicon.svg"
data-domain="kooslooijesteijn.net"
><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>
<p>Je ne vais pas énumérer toute la liste ici mais il y a de bonnes choses à aller picorer pour alimenter mes propres réflexions à ce&nbsp;sujet.</p>
<a href="#hr-150" title="Lien vers cette section de la page"><hr id="hr-150" /></a>

<blockquote lang="en">
<p>Ecology knows that shifting baselines dampen collective urgency and deepen generational divides. People who care about internet monoculture and control are often told they’re nostalgists harkening back to a pioneer era. But it’s fiendishly hard to regenerate an open and competitive infrastructure for younger generations who’ve been raised to assume that two or three platforms, two app stores, two operating systems, two browsers, one cloud/mega-store and a single search engine for the world comprise the internet. If <em>the internet</em> for you is the massive sky-scraping silo you happen to live inside and the only thing you can see outside is the single, other massive sky-scraping silo, then <mark>how can you imagine anything&nbsp;else?</mark></p>
<p>[…] For tech giants, the long period of open internet evolution is over. Their internet is not an ecosystem. It’s a&nbsp;zoo.</p>
<p><cite><em><a data-link-domain="noemamag.com" href="https://www.noemamag.com/we-need-to-rewild-the-internet/" hreflang="en"
title="Consultation de l’article (anglais)">We Need To Rewild The Internet</a>
<a href="/david/cache/2024/21f1fc65a0499d19ded2b8d326791fee/" hreflang="en"
data-tippy data-description="The internet has become an extractive and fragile monoculture. But we can revitalize it using lessons learned by ecologists."
data-source="https://www.noemamag.com/we-need-to-rewild-the-internet/"
data-date="2024-04-17"
data-favicon="https://www.noemamag.com/wp-content/uploads/2020/06/cropped-ms-icon-310x310-1-32x32.png"
data-domain="noemamag.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>
<p>Ce troisième lien est lui aussi une métaphore, combinant <em>forêt</em> et <em>web</em>. Lorsqu’on constate ce qu’il advient de nos forêts, je ne sais pas trop s’il est possible d’être optimiste à ce&nbsp;sujet…</p>
<a href="#hr-151" title="Lien vers cette section de la page"><hr id="hr-151" /></a>

<blockquote>
<p>Nous sommes un groupe d’étudiants dans les métiers du multimédia et de l’Internet. Pourtant nous n’avons pas numérisé. Il y a un an, <mark>nous nous empressions</mark> de faire une solution numérique éco conçue pour répondre à un&nbsp;problème.</p>
<p>Aujourd’hui, avec du recul, des connaissances supplémentaires et une nouvelle vision, nous nous demandons s’il est nécessaire de&nbsp;numériser.</p>
<p><cite><em><a data-link-domain="nousnavonspasnumerise.mmibordeaux.com" href="https://nousnavonspasnumerise.mmibordeaux.com/autopsie/" hreflang="fr"
title="Consultation de l’article">Nous n’avons pas numérisé.</a>
<a href="/david/cache/2024/6fd58c8dcf1738605fb932bb83f4411a/" hreflang="fr"
data-tippy data-description="L’écran captive plus facilement les enfants que le papier"
data-source="https://nousnavonspasnumerise.mmibordeaux.com/autopsie/"
data-date="2024-04-17"
data-favicon="https://nousnavonspasnumerise.mmibordeaux.com/assets/images/favicons/favicon.png"
data-domain="nousnavonspasnumerise.mmibordeaux.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>
<p>Un peu d’espoir tout de&nbsp;même.</p>

<nav>
<p>
<a href="/david/2024/commun/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#commun</a>
<a href="/david/2024/decentralisation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#décentralisation</a>
<a href="/david/2024/protopie/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#protopie</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<h2>
<a href="/david/2024/04/02/" title="Lien permanent vers cet article">Porte</a> <time datetime="2024-04-02">2 avril 2024</time>
</h2>

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

@@ -316,32 +316,32 @@
</dl>
<dl>
<dt>
<a href="https://www.la-grange.net/2024/03/16/age">age += 1</a>,
16-03-2024
<a href="https://www.la-grange.net/2024/03/17/vie">espace de vie</a>,
17-03-2024
</dt>
<dd>
Nogizaka, Japon, 16 mars 2024 We are accustomed to look for the gross and immediate effect and to ignore all else. — Silent Spring, Rachel Carson, urn:isbn:978-0-141-18494-4 En face du café, il y a une boutique, encore fermée à cette heure. Son nom est « Carrot rape » avec des lapins sur un fond rose et bleu pour l'enseigne. C'est peut-être ainsi que les mots et les noms de personne changeaient
Komagome, Japon, 17 mars 2024 The balance of nature is not a status quo; it is fluid, ever shifting, in a constant state of adjustment. — titre, auteur, urn:isbn:code Aujourd'hui je me suis occupé des plantes du bureau. Rempoter quelques unes, déplacer certaines car elles semblaient ne pas être heureuses dans leur emplacement précédent. La grande umbellata prend l'espace. Il ne reste plus que un
— <a href="https://www.la-grange.net/">Karl Dubost</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://n.survol.fr/n/en-voiture-ou-marreter-sur-la-chaussee">En voiture, où m’ar­rê­ter sur la chaus­sée ?</a>,
15-03-2024
<a href="https://www.la-grange.net/2024/03/16/age">age += 1</a>,
16-03-2024
</dt>
<dd>
L’idée c’est de parcou­rir cas à cas, dans l’ordre, et de s’ar­rê­ter au premier qui corres­pond. Cas géné­ral Il y a des places de station­ne­ment libres ? ✅ Utili­sez-les. Ne faites pas de double file, n’oc­cu­pez pas la bande cyclable. Il y a une place de livrai­son avec ligne discon­ti­nue ? ✅ Vous pouvez vous y arrê­ter […]
— <a href="https://n.survol.fr/">Éric D.</a>
Nogizaka, Japon, 16 mars 2024 We are accustomed to look for the gross and immediate effect and to ignore all else. — Silent Spring, Rachel Carson, urn:isbn:978-0-141-18494-4 En face du café, il y a une boutique, encore fermée à cette heure. Son nom est « Carrot rape » avec des lapins sur un fond rose et bleu pour l'enseigne. C'est peut-être ainsi que les mots et les noms de personne changeaient…
— <a href="https://www.la-grange.net/">Karl Dubost</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://www.la-grange.net/2024/03/15/entendre">entendre la rue</a>,
<a href="https://n.survol.fr/n/en-voiture-ou-marreter-sur-la-chaussee">En voiture, où m’ar­rê­ter sur la chaus­sée ?</a>,
15-03-2024
</dt>
<dd>
Nishi-Sugamo, Japon, 15 mars 2024 Each of these recurrent exposures, no matter how slight, contributes to the progressive build-up of chemicals in our bodies and so to cumulative poisoning. — Silent Spring, Rachel Carson, urn:isbn:978-0-141-18494-4 J'ai enregistré les sons de la rue depuis la maison jusqu'au café. Je ne sais pas encore si le son est intéressant. Peut-être qu'il ne doit pas être…
— <a href="https://www.la-grange.net/">Karl Dubost</a>
L’idée c’est de parcou­rir cas à cas, dans l’ordre, et de s’ar­rê­ter au premier qui corres­pond. Cas géné­ral Il y a des places de station­ne­ment libres ? ✅ Utili­sez-les. Ne faites pas de double file, n’oc­cu­pez pas la bande cyclable. Il y a une place de livrai­son avec ligne discon­ti­nue ? ✅ Vous pouvez vous y arrê­ter […]
— <a href="https://n.survol.fr/">Éric D.</a>
</dd>
</dl>
<dl>

+ 4
- 3
david/index.html View File

@@ -468,6 +468,7 @@
</style>
<p>Liste des publications récentes en ordre anté-chronologique :</p>
<p>
<a href="/david/2024/04/17/" data-commun data-decentralisation data-protopie title="Étiquettes : commun, décentralisation, protopie.">Échelle</a>,
<a href="/david/2024/04/14/" data-enthousiasme data-laboratoire data-sport title="Étiquettes : enthousiasme, laboratoire, sport.">Apex 2</a>,
<a href="/david/2024/04/13/" data-dystopie data-lecture data-psychologie title="Étiquettes : dystopie, lecture, psychologie.">Fondation</a>,
<a href="/david/2024/04/10/" data-communaute data-poesie data-psychologie title="Étiquettes : communauté, poésie, psychologie.">Weird</a>,
@@ -574,10 +575,10 @@
<a href="/david/2024/apprentissage/" data-tag="apprentissage" rel="tag">#apprentissage (16)</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>,
<a href="/david/2024/commun/" data-tag="commun" rel="tag">#commun (11)</a>,
<a href="/david/2024/commun/" data-tag="commun" rel="tag">#commun (12)</a>,
<a href="/david/2024/communaute/" data-tag="communaute" rel="tag">#communauté (7)</a>,
<a href="/david/2024/courage/" data-tag="courage" rel="tag">#courage (2)</a>,
<a href="/david/2024/decentralisation/" data-tag="decentralisation" rel="tag">#décentralisation (1)</a>,
<a href="/david/2024/decentralisation/" data-tag="decentralisation" rel="tag">#décentralisation (2)</a>,
<a href="/david/2024/deception/" data-tag="deception" rel="tag">#déception (3)</a>,
<a href="/david/2024/decision/" data-tag="decision" rel="tag">#décision (8)</a>,
<a href="/david/2024/dependance/" data-tag="dependance" rel="tag">#dépendance (8)</a>,
@@ -606,7 +607,7 @@
<a href="/david/2024/poesie/" data-tag="poesie" rel="tag">#poésie (4)</a>,
<a href="/david/2024/processus/" data-tag="processus" rel="tag">#processus (10)</a>,
<a href="/david/2024/propriete/" data-tag="propriete" rel="tag">#propriété (1)</a>,
<a href="/david/2024/protopie/" data-tag="protopie" rel="tag">#protopie (9)</a>,
<a href="/david/2024/protopie/" data-tag="protopie" rel="tag">#protopie (10)</a>,
<a href="/david/2024/psychologie/" data-tag="psychologie" rel="tag">#psychologie (14)</a>,
<a href="/david/2024/solastalgia/" data-tag="solastalgia" rel="tag">#solastalgia (5)</a>,
<a href="/david/2024/sport/" data-tag="sport" rel="tag">#sport (8)</a>,

+ 40
- 43
david/log/index.xml View File

@@ -6,13 +6,52 @@
<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-04-15T12:00:00+01:00</updated>
<updated>2024-04-18T12: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">Échelle</title>
<link href="https://larlet.fr/david/2024/04/17/" rel="alternate" type="text/html" />
<updated>2024-04-17T12:00:00+01:00</updated>
<id>https://larlet.fr/david/2024/04/17/</id>
<summary type="html">

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;We have been obsessed with this scalability as the single differentiating factor that will tell us how well something will adapt to the changing requirements of an organization and increasing, diverse technical demand. But for businesses, scaling means that output remains the same or only slightly degrades while production costs&amp;nbsp;lower.&lt;/p&gt;
&lt;p&gt;&lt;mark&gt;Scalability has become the leading differentiator, the Leitdifferenz, of almost everything in our industry.&lt;/mark&gt; From the tech we develop with, for, and on to what, how, and who we design for It’s almost like a trance that we keep repeating to ourselves.“But will it scale?” is first and foremost a matter of business. But in development and design, it also refers to other factors. Yet when it comes to matters of industrialization, these factors remain&amp;nbsp;secondary.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://helloyes.dev/blog/2023/craft-vs-industry/&quot;&gt;Craft vs Industry: Separating&amp;nbsp;Concerns&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;C’est la raison pour laquelle je suis de plus en plus attiré par de petits évènements (voir ci-dessous) qui peuvent avoir lieu dans des endroits différents —&amp;nbsp;de manière distribuée&amp;nbsp;— par des communautés qui peuvent y mettre leurs propres échelles pour embarquer de nouvelles&amp;nbsp;personnes.&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;I don’t think we &lt;em&gt;need&lt;/em&gt; new metaphors for the things we do with computers. But I like thinking about &lt;mark&gt;creating software as organizing an event.&lt;/mark&gt; Here are some reasons why I think &lt;em&gt;event&lt;/em&gt; is a better metaphor than &lt;em&gt;product&lt;/em&gt;:&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://www.kooslooijesteijn.net/blog/app-website-is-not-product&quot;&gt;Your app is not a&amp;nbsp;product&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Je ne vais pas énumérer toute la liste ici mais il y a de bonnes choses à aller picorer pour alimenter mes propres réflexions à ce&amp;nbsp;sujet.&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;Ecology knows that shifting baselines dampen collective urgency and deepen generational divides. People who care about internet monoculture and control are often told they’re nostalgists harkening back to a pioneer era. But it’s fiendishly hard to regenerate an open and competitive infrastructure for younger generations who’ve been raised to assume that two or three platforms, two app stores, two operating systems, two browsers, one cloud/mega-store and a single search engine for the world comprise the internet. If &lt;em&gt;the internet&lt;/em&gt; for you is the massive sky-scraping silo you happen to live inside and the only thing you can see outside is the single, other massive sky-scraping silo, then &lt;mark&gt;how can you imagine anything&amp;nbsp;else?&lt;/mark&gt;&lt;/p&gt;
&lt;p&gt;[…] For tech giants, the long period of open internet evolution is over. Their internet is not an ecosystem. It’s a&amp;nbsp;zoo.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://www.noemamag.com/we-need-to-rewild-the-internet/&quot;&gt;We Need To Rewild The&amp;nbsp;Internet&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Ce troisième lien est lui aussi une métaphore, combinant &lt;em&gt;forêt&lt;/em&gt; et &lt;em&gt;web&lt;/em&gt;. Lorsqu’on constate ce qu’il advient de nos forêts, je ne sais pas trop s’il est possible d’être optimiste à ce&amp;nbsp;sujet…&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote&gt;
&lt;p&gt;Nous sommes un groupe d’étudiants dans les métiers du multimédia et de l’Internet. Pourtant nous n’avons pas numérisé. Il y a un an, &lt;mark&gt;nous nous empressions&lt;/mark&gt; de faire une solution numérique éco conçue pour répondre à un&amp;nbsp;problème.&lt;/p&gt;
&lt;p&gt;Aujourd’hui, avec du recul, des connaissances supplémentaires et une nouvelle vision, nous nous demandons s’il est nécessaire de&amp;nbsp;numériser.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://nousnavonspasnumerise.mmibordeaux.com/autopsie/&quot;&gt;Nous n’avons pas&amp;nbsp;numérisé.&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Un peu d’espoir tout de&amp;nbsp;même.&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/decentralisation/&quot;&gt;#décentralisation&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/protopie/&quot;&gt;#protopie&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">Apex 2</title>
<link href="https://larlet.fr/david/2024/04/14/" rel="alternate" type="text/html" />
@@ -1301,46 +1340,4 @@ Lovée dans mes&amp;nbsp;bras&lt;/p&gt;
&lt;nav&gt;&lt;p&gt;&lt;a href=&quot;https://larlet.fr/david/2024/apprentissage/&quot;&gt;#apprentissage&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/parentalite/&quot;&gt;#parentalité&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/protopie/&quot;&gt;#protopie&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">Jour 2</title>
<link href="https://larlet.fr/david/2024/03/05/" rel="alternate" type="text/html" />
<updated>2024-03-05T12:00:00+01:00</updated>
<id>https://larlet.fr/david/2024/03/05/</id>
<summary type="html">
&lt;p&gt;On se réveille dans la brume avec le soleil peinant à passer à travers, le lac et la neige ont regelé pendant la nuit. C’est une belle ambiance après une nuit agitée par la chaleur du &lt;del&gt;sauna&lt;/del&gt; refuge. Les poêles tirent à fond dans ces endroits pour éviter que des personnes n’arrivent pas à faire démarrer un feu (j’imagine que ça peut être critique) mais ça les rend très inefficaces dans la durée et très chauds dès qu’on met deux buches&amp;nbsp;dedans.&lt;/p&gt;
&lt;figure&gt;
&lt;a href=&quot;https://larlet.fr/static/david/2024/2024-03-05-lac-corbeau.jpg&quot;
title=&quot;Cliquer pour une version haute résolution&quot;&gt;
&lt;img
src=&quot;https://larlet.fr/static/david/2024/2024-03-05-lac-corbeau.jpg&quot;
width=&quot;4032&quot; height=&quot;3024&quot;
srcset=&quot;/static/david/2024/2024-03-05-lac-corbeau.jpg 4032w, /static/david/2024/2024-03-05-lac-corbeau_660x440.jpg 660w, /static/david/2024/2024-03-05-lac-corbeau_990x660.jpg 990w, /static/david/2024/2024-03-05-lac-corbeau_1320x880.jpg 1320w&quot;
sizes=&quot;min(100vw, calc(100vh * 4032 / 3024))&quot;
loading=&quot;lazy&quot;
decoding=&quot;async&quot;
alt=&quot;Lac corbeau à l’aube.&quot;&gt;
&lt;/a&gt;
&lt;figcaption&gt;De bien jolies couleurs au&amp;nbsp;réveil.&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;p&gt;Cet épisode me confirme encore une fois que les enfants ont des corps de sportifs de très haut niveau. Je suis impatient de pouvoir le charger un peu plus car c’est frustrant de le voir gambader devant de bon matin alors que mes muscles sont à peine réveillés. J’aime bien lorsqu’on va explorer un peu plus loin et que l’on se projette sur ce que l’on pourrait faire l’année&amp;nbsp;suivante.&lt;/p&gt;
&lt;figure&gt;
&lt;a href=&quot;https://larlet.fr/static/david/2024/2024-03-05-enfant-refuge-corbeau.jpg&quot;
title=&quot;Cliquer pour une version haute résolution&quot;&gt;
&lt;img
src=&quot;https://larlet.fr/static/david/2024/2024-03-05-enfant-refuge-corbeau.jpg&quot;
width=&quot;3024&quot; height=&quot;4032&quot;
srcset=&quot;/static/david/2024/2024-03-05-enfant-refuge-corbeau.jpg 3024w, /static/david/2024/2024-03-05-enfant-refuge-corbeau_660x440.jpg 660w, /static/david/2024/2024-03-05-enfant-refuge-corbeau_990x660.jpg 990w, /static/david/2024/2024-03-05-enfant-refuge-corbeau_1320x880.jpg 1320w&quot;
sizes=&quot;min(100vw, calc(100vh * 3024 / 4032))&quot;
loading=&quot;lazy&quot;
decoding=&quot;async&quot;
alt=&quot;Un enfant qui court dans la neige vers un refuge.&quot;&gt;
&lt;/a&gt;
&lt;figcaption&gt;Jamais&amp;nbsp;fatigué.&lt;/figcaption&gt;
&lt;/figure&gt;
&lt;p&gt;Le retour est moins joyeux car il s’agit d’enchainer les efforts et chaque heure qui passe rend la neige plus meuble. À tel point que l’on décide de couper par une piste sur une courte section. Mon évaluation est que la saison de ski est terminée, même une sous-couche bien travaillée ne tiendra pas la semaine qui s’en&amp;nbsp;vient.&lt;/p&gt;
&lt;p&gt;J’aurais aimé faire une boucle un peu plus longue au retour mais il faut savoir s’adapter aux conditions. Le plus important est de terminer sans blessure ni&amp;nbsp;dégoût.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;Je commence à imaginer un parcours rapide sur plusieurs jours dans cette forêt que je connais bien. Peut-être qu’une fenêtre se dessine en avril… il faut que je récupère un peu de cardio d’ici&amp;nbsp;là.&lt;/em&gt;&lt;/p&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/aventure/&quot;&gt;#aventure&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/psychologie/&quot;&gt;#psychologie&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>
</feed>

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

@@ -276,6 +276,12 @@
</template>
<script id="search-index" type="application/json">[
{
"title": "\u00c9chelle",
"url": "/david/2024/04/17/",
"date": "2024-04-17",
"content": "We have been obsessed with this scalability as the single differentiating factor that will tell us how well something will adapt to the changing requirements of an organization and increasing, diverse technical demand. But for businesses, scaling means that output remains the same or only slightly degrades while production costs\u00a0lower. Scalability has become the leading differentiator, the Leitdifferenz, of almost everything in our industry. From the tech we develop with, for, and on to what, how, and who we design for It\u2019s almost like a trance that we keep repeating to ourselves.\u201cBut will it scale?\u201d is first and foremost a matter of business. But in development and design, it also refers to other factors. Yet when it comes to matters of industrialization, these factors remain\u00a0secondary. Craft vs Industry: Separating\u00a0Concerns C\u2019est la raison pour laquelle je suis de plus en plus attir\u00e9 par de petits \u00e9v\u00e8nements (voir ci-dessous) qui peuvent avoir lieu dans des endroits diff\u00e9rents \u2014\u00a0de mani\u00e8re distribu\u00e9e\u00a0\u2014 par des communaut\u00e9s qui peuvent y mettre leurs propres \u00e9chelles pour embarquer de nouvelles\u00a0personnes. I don\u2019t think we need new metaphors for the things we do with computers. But I like thinking about creating software as organizing an event. Here are some reasons why I think event is a better metaphor than product: Your app is not a\u00a0product Je ne vais pas \u00e9num\u00e9rer toute la liste ici mais il y a de bonnes choses \u00e0 aller picorer pour alimenter mes propres r\u00e9flexions \u00e0 ce\u00a0sujet. Ecology knows that shifting baselines dampen collective urgency and deepen generational divides. People who care about internet monoculture and control are often told they\u2019re nostalgists harkening back to a pioneer era. But it\u2019s fiendishly hard to regenerate an open and competitive infrastructure for younger generations who\u2019ve been raised to assume that two or three platforms, two app stores, two operating systems, two browsers, one cloud/mega-store and a single search engine for the world comprise the internet. If the internet for you is the massive sky-scraping silo you happen to live inside and the only thing you can see outside is the single, other massive sky-scraping silo, then how can you imagine anything\u00a0else? [\u2026] For tech giants, the long period of open internet evolution is over. Their internet is not an ecosystem. It\u2019s a\u00a0zoo. We Need To Rewild The\u00a0Internet Ce troisi\u00e8me lien est lui aussi une m\u00e9taphore, combinant for\u00eat et web. Lorsqu\u2019on constate ce qu\u2019il advient de nos for\u00eats, je ne sais pas trop s\u2019il est possible d\u2019\u00eatre optimiste \u00e0 ce\u00a0sujet\u2026 Nous sommes un groupe d\u2019\u00e9tudiants dans les m\u00e9tiers du multim\u00e9dia et de l\u2019Internet. Pourtant nous n\u2019avons pas num\u00e9ris\u00e9. Il y a un an, nous nous empressions de faire une solution num\u00e9rique \u00e9co con\u00e7ue pour r\u00e9pondre \u00e0 un\u00a0probl\u00e8me. Aujourd\u2019hui, avec du recul, des connaissances suppl\u00e9mentaires et une nouvelle vision, nous nous demandons s\u2019il est n\u00e9cessaire de\u00a0num\u00e9riser. Nous n\u2019avons pas\u00a0num\u00e9ris\u00e9. Un peu d\u2019espoir tout de\u00a0m\u00eame."
},
{
"title": "Apex 2",
"url": "/david/2024/04/14/",
@@ -840,6 +846,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": "\u00c9chelle",
"url": "/david/2024/04/17/",
"date": "2024-04-17",
"content": "We have been obsessed with this scalability as the single differentiating factor that will tell us how well something will adapt to the changing requirements of an organization and increasing, diverse technical demand. But for businesses, scaling means that output remains the same or only slightly degrades while production costs\u00a0lower. Scalability has become the leading differentiator, the Leitdifferenz, of almost everything in our industry. From the tech we develop with, for, and on to what, how, and who we design for It\u2019s almost like a trance that we keep repeating to ourselves.\u201cBut will it scale?\u201d is first and foremost a matter of business. But in development and design, it also refers to other factors. Yet when it comes to matters of industrialization, these factors remain\u00a0secondary. Craft vs Industry: Separating\u00a0Concerns C\u2019est la raison pour laquelle je suis de plus en plus attir\u00e9 par de petits \u00e9v\u00e8nements (voir ci-dessous) qui peuvent avoir lieu dans des endroits diff\u00e9rents \u2014\u00a0de mani\u00e8re distribu\u00e9e\u00a0\u2014 par des communaut\u00e9s qui peuvent y mettre leurs propres \u00e9chelles pour embarquer de nouvelles\u00a0personnes. I don\u2019t think we need new metaphors for the things we do with computers. But I like thinking about creating software as organizing an event. Here are some reasons why I think event is a better metaphor than product: Your app is not a\u00a0product Je ne vais pas \u00e9num\u00e9rer toute la liste ici mais il y a de bonnes choses \u00e0 aller picorer pour alimenter mes propres r\u00e9flexions \u00e0 ce\u00a0sujet. Ecology knows that shifting baselines dampen collective urgency and deepen generational divides. People who care about internet monoculture and control are often told they\u2019re nostalgists harkening back to a pioneer era. But it\u2019s fiendishly hard to regenerate an open and competitive infrastructure for younger generations who\u2019ve been raised to assume that two or three platforms, two app stores, two operating systems, two browsers, one cloud/mega-store and a single search engine for the world comprise the internet. If the internet for you is the massive sky-scraping silo you happen to live inside and the only thing you can see outside is the single, other massive sky-scraping silo, then how can you imagine anything\u00a0else? [\u2026] For tech giants, the long period of open internet evolution is over. Their internet is not an ecosystem. It\u2019s a\u00a0zoo. We Need To Rewild The\u00a0Internet Ce troisi\u00e8me lien est lui aussi une m\u00e9taphore, combinant for\u00eat et web. Lorsqu\u2019on constate ce qu\u2019il advient de nos for\u00eats, je ne sais pas trop s\u2019il est possible d\u2019\u00eatre optimiste \u00e0 ce\u00a0sujet\u2026 Nous sommes un groupe d\u2019\u00e9tudiants dans les m\u00e9tiers du multim\u00e9dia et de l\u2019Internet. Pourtant nous n\u2019avons pas num\u00e9ris\u00e9. Il y a un an, nous nous empressions de faire une solution num\u00e9rique \u00e9co con\u00e7ue pour r\u00e9pondre \u00e0 un\u00a0probl\u00e8me. Aujourd\u2019hui, avec du recul, des connaissances suppl\u00e9mentaires et une nouvelle vision, nous nous demandons s\u2019il est n\u00e9cessaire de\u00a0num\u00e9riser. Nous n\u2019avons pas\u00a0num\u00e9ris\u00e9. Un peu d\u2019espoir tout de\u00a0m\u00eame."
},
{
"title": "Apex 2",
"url": "/david/2024/04/14/",

Loading…
Cancel
Save