Browse Source

Article

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

+ 8
- 0
david/2024/05/13/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/05/20/"
title="Publication suivante : Stimulations">Suivant →</a>
</p>
</nav>
@@ -207,6 +211,10 @@
<a href="/david/2024/" title="Liste des publications récentes">↑ En 2024</a>
• <a rel="next"
href="/david/2024/05/20/"
title="Publication suivante : Stimulations">Suivant →</a>
</p>
</nav>


+ 542
- 0
david/2024/05/20/index.html View File

@@ -0,0 +1,542 @@
<!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>
Stimulations
— 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="Je me suis demandé en passant par la page sur le Stimming (Auto-stimulation en français) après avoir couru s’il pouvait y avoir un lien avec les sports d’endurance. Je n’ai trouvé que cet article qui n’a pas été publié :">
<!-- 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>Stimulations</h1>
<p>Le <time datetime="2024-05-20">20 mai 2024</time></p>
</hgroup>
</header>
<nav>
<p>
<a rel="prev"
href="/david/2024/05/13/"
title="Publication précédente : Tensions">← 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><a href="/david/2024/05/12/" title="Alien">Je me suis demandé</a> en passant par la page sur le <a data-link-domain="en.wikipedia.org" href="https://en.wikipedia.org/wiki/Stimming">Stimming</a> (<a data-link-domain="fr.wikipedia.org" href="https://fr.wikipedia.org/wiki/Auto-stimulation">Auto-stimulation</a> en français) après avoir couru s’il pouvait y avoir un lien avec les sports d’endurance. Je n’ai trouvé que <a data-link-domain="ncbi.nlm.nih.gov" href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8992823/">cet article</a> qui n’a pas été&nbsp;publié&nbsp;:</p>

<blockquote lang="en">
<p>Physical activity is beneficial for physical and mental health in the general population. Among autistic people, a range of physical and mental health conditions, particularly depression and anxiety, occur more frequently than in the general population. <mark>Physical activity interventions could help improve physical and mental health in autistic adults,</mark> but there is a lack of research in the area. The aim of this perspective article is to explore research into physical activity interventions for autistic adults, and identify gaps particularly in need of&nbsp;addressing.</p>
</blockquote>
<p>J’imagine que les mouvements de jambes à l’arrêt facilitent la récupération aussi d’une certaine&nbsp;manière&nbsp;😇.</p>
<p><a href="/david/2024/04/13/#hr-148">Still</a> <a data-link-domain="relationalpsych.group" href="https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd" hreflang="en"
title="Consultation de l’article (anglais)">digging</a>
<a href="/david/cache/2024/7f7afbfc0e4528838aadd7db4ba231cb/" hreflang="en"
data-tippy data-description="Autism Assessment at Relational Psych involves comprehensive evaluations to diagnose Autism Spectrum Disorders (ASD). Our assessments are conducted by experienced professionals and are tailored to identify the unique needs and strengths of each individual."
data-source="https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd"
data-date="2024-05-20"
data-favicon="https://assets-global.website-files.com/638a47e8e6837e0de97565b0/63fc2dfc3efb72e41f561cf0_Exclude.png"
data-domain="relationalpsych.group"
><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>&nbsp;⛏️.</p>
<a href="#hr-160" title="Lien vers cette section de la page"><hr id="hr-160" /></a>

<blockquote lang="en">
<p>When you’re driving around in Google Maps, you’re piloting a spaceship in an ancient simulation of space&nbsp;warfare.</p>
<p><cite><em><a data-link-domain="interconnected.org" href="https://interconnected.org/home/2024/05/17/arrow" hreflang="en"
title="Consultation de l’article (anglais)">When you’re driving in Google Maps you’re re-enacting an ancient space combat sim</a>
<a href="/david/cache/2024/37e471123bcb625e1ada602b1168a3dd/" hreflang="en"
data-tippy data-description="Posted on Friday 17 May 2024. 1,259 words, 14 links. By Matt Webb."
data-source="https://interconnected.org/home/2024/05/17/arrow"
data-date="2024-05-20"
data-favicon=""
data-domain="interconnected.org"
><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>Matt Webb, un des meilleurs tisseurs du&nbsp;Web.</p>
<a href="#hr-161" title="Lien vers cette section de la page"><hr id="hr-161" /></a>

<blockquote>
<p>Depuis quelques mois, je réalise des petites BD sur le même principe qu’Étymographie dans Le Combat syndicaliste, le journal de la CNT-F. <mark>Je les mets à l’occasion sur Instagram,</mark> mais je ne veux pas non plus totalement laisser mourir mon cher blog, d’autant qu’il y a peut-être une ou deux personnes qui y vont encore et boudent les réseaux sociaux, sait-on jamais… En voici donc&nbsp;trois</p>
<p><cite><em><a data-link-domain="boutanox.blogspot.com" href="https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html" hreflang=""
title="Consultation de l’article">Mélanaïlourologos - Le Combat syndicaliste</a>
<a href="/david/cache/2024/8a50a4b5f8ead46ca899437425315367/" hreflang=""
data-tippy data-description="Depuis quelques mois, je réalise des petites BD sur le même principe qu'Étymographie dans Le Combat syndicaliste , le journal de la CNT-F ...."
data-source="https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html"
data-date="2024-05-20"
data-favicon="https://boutanox.blogspot.com/favicon.ico"
data-domain="boutanox.blogspot.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>Merci aux auteur·ices qui publient aussi sur le web (même si c’est sur Google en&nbsp;l’occurence…).</p>
<a href="#hr-162" title="Lien vers cette section de la page"><hr id="hr-162" /></a>

<blockquote lang="en">
<p>Libraries are essential for democracy. We provide librarians and their communities the necessary skills <mark>to turn our ideals into action,</mark> focused on issues like privacy, intellectual freedom, and information&nbsp;democracy.</p>
<p><cite><em><a data-link-domain="libraryfreedom.org" href="https://libraryfreedom.org/">We are Library Freedom&nbsp;Project </a></em></cite></p>
</blockquote>
<p>📚✊</p>
<a href="#hr-163" title="Lien vers cette section de la page"><hr id="hr-163" /></a>

<blockquote>
<p>Je ne connais pas bien l’analyse transactionnelle, mais je m’en méfie un peu, surement plus par ignorance que par&nbsp;connaissance.</p>
<p>Je trouve cependant que les différents «&nbsp;P&nbsp;» (Protection, Permission, Puissance) qui sont proposés sont intéressants quand il s’agit de parler de confiance, de légitimité et de collaboration. Je suis content de rencontrer ces&nbsp;termes.</p>
<p><cite><em><a data-link-domain="blog.notmyidea.org" href="https://blog.notmyidea.org/oser-la-confiance.html" hreflang="fr"
title="Consultation de l’article">Oser la confiance</a>
<a href="/david/cache/2024/f0f339af451863ac8580a9fb65a58e99/" hreflang="fr"
data-tippy data-description="On m’a conseillé ce livre, voici donc quelques notes."
data-source="https://blog.notmyidea.org/oser-la-confiance.html"
data-date="2024-05-20"
data-favicon="https://blog.notmyidea.org/favicon-32x32.png"
data-domain="blog.notmyidea.org"
><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>Cet article rai·ésonne <a href="/david/2024/05/13/" title="Tensions">particulièrement en ce moment</a>.</p>
<a href="#hr-164" title="Lien vers cette section de la page"><hr id="hr-164" /></a>

<blockquote>
<p>Si je prends la parole aujourd’hui, c’est que je pense que mon parcours et mon cheminement intellectuel peuvent servir à d’autres confrères qui, je le sais, sont nombreux à être passés par mes différentes&nbsp;situations.</p>
<p>Lorsque je suis entré en études d’ostéopathie, j’étais certain de commencer un cursus scientifique qui m’amènerait à être une profession de santé&nbsp;respectable.</p>
<p><cite><em><a data-link-domain="scribe.rip" href="https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871" hreflang="fr"
title="Consultation de l’article">Ostéopathe, je n’en garderai que le nom</a>
<a href="/david/cache/2024/b2c5ca7e92e2c0d461bc3c7da36e8d32/" hreflang="fr"
data-tippy data-description="Cette rupture est symbolique. Mais les dérives sont quant à elles réelles. N’oubliez pas, ne pas se positionner, c’est cautionner."
data-source="https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871"
data-date="2024-05-20"
data-favicon="https://scribe.rip/favicon.ico"
data-domain="scribe.rip"
><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>Merci aux personnes qui témoignent de&nbsp;l’intérieur.</p>
<a href="#hr-165" title="Lien vers cette section de la page"><hr id="hr-165" /></a>

<blockquote lang="en">
<p>In our increasingly data-driven world, the ability to quickly and accurately access geospatial data can transform industries from public health to urban planning. Imagine being able to locate and analyze data from ‘within 10&nbsp;miles of the North Carolina coastline’ in mere seconds. Natural Language Geocoding makes this possible, <mark>bridging the gap between complex geospatial queries and user-friendly language.</mark> Let’s dive into how this innovative technology is changing the landscape of data analysis, making it more accessible and&nbsp;efficient.</p>
<p><cite><em><a data-link-domain="element84.com" href="https://www.element84.com/machine-learning/natural-language-geocoding/" hreflang="en"
title="Consultation de l’article (anglais)">Natural Language Geocoding</a>
<a href="/david/cache/2024/7084f7b279604bc141fee03e01531eb7/" hreflang="en"
data-tippy data-description="We discuss how natural language geocoding is changing the landscape of data analysis, making it more accessible and efficient."
data-source="https://www.element84.com/machine-learning/natural-language-geocoding/"
data-date="2024-05-20"
data-favicon="https://www.element84.com/favicon-32x32.png?v=24e856d25e63af3f5b952cefe84a531f"
data-domain="element84.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>L’AI s’immisce décidément partout. Je pensais naïvement être épargné dans ce domaine là. #enshAIttification (you saw it here&nbsp;first).</p>
<a href="#hr-166" title="Lien vers cette section de la page"><hr id="hr-166" /></a>

<blockquote lang="en">
<p>A privacy-first, no-nonsense, super-fast <mark>blogging&nbsp;platform</mark></p>
<p>No trackers, no javascript, no stylesheets. Just your&nbsp;words.</p>
<p><cite><em><a data-link-domain="bearblog.dev" href="https://bearblog.dev/">ʕ•ᴥ•ʔ Bear&nbsp;Blog</a></em></cite></p>
</blockquote>
<a href="#hr-167" title="Lien vers cette section de la page"><hr id="hr-167" /></a>

<blockquote>
<p>Éducation sur le cannabis <mark>pour et par</mark> les Premières Nations, les Inuits et les&nbsp;Métis</p>
<p><cite><em><a data-link-domain="nwaccannabised.ca" href="https://nwaccannabised.ca/fr">NWAC&nbsp;Cannabis</a></em></cite></p>
</blockquote>
<p>Je découvre au passage <a data-link-domain="deplume.ca" href="https://deplume.ca/">Design de Plume</a>.</p>
<a href="#hr-168" title="Lien vers cette section de la page"><hr id="hr-168" /></a>

<blockquote>
<p>Peut-être que je viens de courir le 5k le plus rapide du reste de ma vie. 🏃💨</p>
<p><cite><em><a data-link-domain="fedi.larlet.fr" href="https://fedi.larlet.fr/@david/111133899699614778">Sur masto</a>, le 26&nbsp;septembre&nbsp;2023</em></cite></p>
</blockquote>
<p>Ce pouet va mal&nbsp;vieillir&nbsp;🫀🦵.</p>

<nav>
<p>
<a href="/david/2024/apprentissage/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#apprentissage</a>
<a href="/david/2024/documentation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#documentation</a>
<a href="/david/2024/liens/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#liens</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/05/13/"
title="Publication précédente : Tensions">← 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>

+ 88
- 0
david/2024/_sources/2024-05-20 - Stimulations.md View File

@@ -0,0 +1,88 @@
# Stimulations

[Je me suis demandé](/david/2024/05/12/) en passant par la page sur le [Stimming](https://en.wikipedia.org/wiki/Stimming) ([Auto-stimulation](https://fr.wikipedia.org/wiki/Auto-stimulation) en français) après avoir couru s’il pouvait y avoir un lien avec les sports d’endurance. Je n’ai trouvé que [cet article](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8992823/) qui n’a pas été publié :

> [en] Physical activity is beneficial for physical and mental health in the general population. Among autistic people, a range of physical and mental health conditions, particularly depression and anxiety, occur more frequently than in the general population. ==Physical activity interventions could help improve physical and mental health in autistic adults,== but there is a lack of research in the area. The aim of this perspective article is to explore research into physical activity interventions for autistic adults, and identify gaps particularly in need of addressing.

J’imagine que les mouvements de jambes à l’arrêt facilitent la récupération aussi d’une certaine manière 😇.

[Still](/david/2024/04/13/#hr-148) [digging](https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd) ⛏️.


---

> [en] When you’re driving around in Google Maps, you’re piloting a spaceship in an ancient simulation of space warfare.
>
> <cite>*[When you’re driving in Google Maps you’re re-enacting an ancient space combat sim](https://interconnected.org/home/2024/05/17/arrow)*</cite>

Matt Webb, un des meilleurs tisseurs du Web.

---

> Depuis quelques mois, je réalise des petites BD sur le même principe qu’Étymographie dans Le Combat syndicaliste, le journal de la CNT-F. ==Je les mets à l’occasion sur Instagram,== mais je ne veux pas non plus totalement laisser mourir mon cher blog, d’autant qu’il y a peut-être une ou deux personnes qui y vont encore et boudent les réseaux sociaux, sait-on jamais… En voici donc trois
>
> <cite>*[Mélanaïlourologos - Le Combat syndicaliste](https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html)*</cite>

Merci aux auteur·ices qui publient aussi sur le web (même si c’est sur Google en l’occurence…).

---

> [en] Libraries are essential for democracy. We provide librarians and their communities the necessary skills ==to turn our ideals into action,== focused on issues like privacy, intellectual freedom, and information democracy.
>
> <cite>*[We are Library Freedom Project ](https://libraryfreedom.org/)*</cite>

📚✊

---

> Je ne connais pas bien l’analyse transactionnelle, mais je m’en méfie un peu, surement plus par ignorance que par connaissance.
>
> Je trouve cependant que les différents « P » (Protection, Permission, Puissance) qui sont proposés sont intéressants quand il s’agit de parler de confiance, de légitimité et de collaboration. Je suis content de rencontrer ces termes.
>
> <cite>*[Oser la confiance](https://blog.notmyidea.org/oser-la-confiance.html)*</cite>

Cet article rai·ésonne [particulièrement en ce moment](/david/2024/05/13/).

---

> Si je prends la parole aujourd’hui, c’est que je pense que mon parcours et mon cheminement intellectuel peuvent servir à d’autres confrères qui, je le sais, sont nombreux à être passés par mes différentes situations.
>
> Lorsque je suis entré en études d’ostéopathie, j’étais certain de commencer un cursus scientifique qui m’amènerait à être une profession de santé respectable.
>
> <cite>*[Ostéopathe, je n’en garderai que le nom](https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871)*</cite>

Merci aux personnes qui témoignent de l’intérieur.

---

> [en] In our increasingly data-driven world, the ability to quickly and accurately access geospatial data can transform industries from public health to urban planning. Imagine being able to locate and analyze data from ‘within 10 miles of the North Carolina coastline’ in mere seconds. Natural Language Geocoding makes this possible, ==bridging the gap between complex geospatial queries and user-friendly language.== Let’s dive into how this innovative technology is changing the landscape of data analysis, making it more accessible and efficient.
>
> <cite>*[Natural Language Geocoding](https://www.element84.com/machine-learning/natural-language-geocoding/)*</cite>

L’AI s’immisce décidément partout. Je pensais naïvement être épargné dans ce domaine là. \#enshAIttification (you saw it here first).

---

> [en] A privacy-first, no-nonsense, super-fast ==blogging platform==
>
> No trackers, no javascript, no stylesheets. Just your words.
>
> <cite>*[ʕ•ᴥ•ʔ Bear Blog](https://bearblog.dev/)*</cite>

---

> Éducation sur le cannabis ==pour et par== les Premières Nations, les Inuits et les Métis
>
> <cite>*[NWAC Cannabis](https://nwaccannabised.ca/fr)*</cite>

Je découvre au passage [Design de Plume](https://deplume.ca/).

---

> Peut-être que je viens de courir le 5k le plus rapide du reste de ma vie. 🏃💨
>
> <cite>*[Sur masto](https://fedi.larlet.fr/@david/111133899699614778), le 26 septembre 2023*</cite>

Ce pouet va mal vieillir 🫀🦵.

#apprentissage #documentation #liens

+ 188
- 0
david/2024/apprentissage/index.html View File

@@ -134,6 +134,194 @@
</p>
</nav>
<h2>
<a href="/david/2024/05/20/" title="Lien permanent vers cet article">Stimulations</a> <time datetime="2024-05-20">20 mai 2024</time>
</h2>
<p><a href="/david/2024/05/12/" title="Alien">Je me suis demandé</a> en passant par la page sur le <a data-link-domain="en.wikipedia.org" href="https://en.wikipedia.org/wiki/Stimming">Stimming</a> (<a data-link-domain="fr.wikipedia.org" href="https://fr.wikipedia.org/wiki/Auto-stimulation">Auto-stimulation</a> en français) après avoir couru s’il pouvait y avoir un lien avec les sports d’endurance. Je n’ai trouvé que <a data-link-domain="ncbi.nlm.nih.gov" href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8992823/">cet article</a> qui n’a pas été&nbsp;publié&nbsp;:</p>

<blockquote lang="en">
<p>Physical activity is beneficial for physical and mental health in the general population. Among autistic people, a range of physical and mental health conditions, particularly depression and anxiety, occur more frequently than in the general population. <mark>Physical activity interventions could help improve physical and mental health in autistic adults,</mark> but there is a lack of research in the area. The aim of this perspective article is to explore research into physical activity interventions for autistic adults, and identify gaps particularly in need of&nbsp;addressing.</p>
</blockquote>
<p>J’imagine que les mouvements de jambes à l’arrêt facilitent la récupération aussi d’une certaine&nbsp;manière&nbsp;😇.</p>
<p><a href="/david/2024/04/13/#hr-148">Still</a> <a data-link-domain="relationalpsych.group" href="https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd" hreflang="en"
title="Consultation de l’article (anglais)">digging</a>
<a href="/david/cache/2024/7f7afbfc0e4528838aadd7db4ba231cb/" hreflang="en"
data-tippy data-description="Autism Assessment at Relational Psych involves comprehensive evaluations to diagnose Autism Spectrum Disorders (ASD). Our assessments are conducted by experienced professionals and are tailored to identify the unique needs and strengths of each individual."
data-source="https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd"
data-date="2024-05-20"
data-favicon="https://assets-global.website-files.com/638a47e8e6837e0de97565b0/63fc2dfc3efb72e41f561cf0_Exclude.png"
data-domain="relationalpsych.group"
><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>&nbsp;⛏️.</p>
<a href="#hr-160" title="Lien vers cette section de la page"><hr id="hr-160" /></a>

<blockquote lang="en">
<p>When you’re driving around in Google Maps, you’re piloting a spaceship in an ancient simulation of space&nbsp;warfare.</p>
<p><cite><em><a data-link-domain="interconnected.org" href="https://interconnected.org/home/2024/05/17/arrow" hreflang="en"
title="Consultation de l’article (anglais)">When you’re driving in Google Maps you’re re-enacting an ancient space combat sim</a>
<a href="/david/cache/2024/37e471123bcb625e1ada602b1168a3dd/" hreflang="en"
data-tippy data-description="Posted on Friday 17 May 2024. 1,259 words, 14 links. By Matt Webb."
data-source="https://interconnected.org/home/2024/05/17/arrow"
data-date="2024-05-20"
data-favicon=""
data-domain="interconnected.org"
><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>Matt Webb, un des meilleurs tisseurs du&nbsp;Web.</p>
<a href="#hr-161" title="Lien vers cette section de la page"><hr id="hr-161" /></a>

<blockquote>
<p>Depuis quelques mois, je réalise des petites BD sur le même principe qu’Étymographie dans Le Combat syndicaliste, le journal de la CNT-F. <mark>Je les mets à l’occasion sur Instagram,</mark> mais je ne veux pas non plus totalement laisser mourir mon cher blog, d’autant qu’il y a peut-être une ou deux personnes qui y vont encore et boudent les réseaux sociaux, sait-on jamais… En voici donc&nbsp;trois</p>
<p><cite><em><a data-link-domain="boutanox.blogspot.com" href="https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html" hreflang=""
title="Consultation de l’article">Mélanaïlourologos - Le Combat syndicaliste</a>
<a href="/david/cache/2024/8a50a4b5f8ead46ca899437425315367/" hreflang=""
data-tippy data-description="Depuis quelques mois, je réalise des petites BD sur le même principe qu'Étymographie dans Le Combat syndicaliste , le journal de la CNT-F ...."
data-source="https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html"
data-date="2024-05-20"
data-favicon="https://boutanox.blogspot.com/favicon.ico"
data-domain="boutanox.blogspot.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>Merci aux auteur·ices qui publient aussi sur le web (même si c’est sur Google en&nbsp;l’occurence…).</p>
<a href="#hr-162" title="Lien vers cette section de la page"><hr id="hr-162" /></a>

<blockquote lang="en">
<p>Libraries are essential for democracy. We provide librarians and their communities the necessary skills <mark>to turn our ideals into action,</mark> focused on issues like privacy, intellectual freedom, and information&nbsp;democracy.</p>
<p><cite><em><a data-link-domain="libraryfreedom.org" href="https://libraryfreedom.org/">We are Library Freedom&nbsp;Project </a></em></cite></p>
</blockquote>
<p>📚✊</p>
<a href="#hr-163" title="Lien vers cette section de la page"><hr id="hr-163" /></a>

<blockquote>
<p>Je ne connais pas bien l’analyse transactionnelle, mais je m’en méfie un peu, surement plus par ignorance que par&nbsp;connaissance.</p>
<p>Je trouve cependant que les différents «&nbsp;P&nbsp;» (Protection, Permission, Puissance) qui sont proposés sont intéressants quand il s’agit de parler de confiance, de légitimité et de collaboration. Je suis content de rencontrer ces&nbsp;termes.</p>
<p><cite><em><a data-link-domain="blog.notmyidea.org" href="https://blog.notmyidea.org/oser-la-confiance.html" hreflang="fr"
title="Consultation de l’article">Oser la confiance</a>
<a href="/david/cache/2024/f0f339af451863ac8580a9fb65a58e99/" hreflang="fr"
data-tippy data-description="On m’a conseillé ce livre, voici donc quelques notes."
data-source="https://blog.notmyidea.org/oser-la-confiance.html"
data-date="2024-05-20"
data-favicon="https://blog.notmyidea.org/favicon-32x32.png"
data-domain="blog.notmyidea.org"
><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>Cet article rai·ésonne <a href="/david/2024/05/13/" title="Tensions">particulièrement en ce moment</a>.</p>
<a href="#hr-164" title="Lien vers cette section de la page"><hr id="hr-164" /></a>

<blockquote>
<p>Si je prends la parole aujourd’hui, c’est que je pense que mon parcours et mon cheminement intellectuel peuvent servir à d’autres confrères qui, je le sais, sont nombreux à être passés par mes différentes&nbsp;situations.</p>
<p>Lorsque je suis entré en études d’ostéopathie, j’étais certain de commencer un cursus scientifique qui m’amènerait à être une profession de santé&nbsp;respectable.</p>
<p><cite><em><a data-link-domain="scribe.rip" href="https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871" hreflang="fr"
title="Consultation de l’article">Ostéopathe, je n’en garderai que le nom</a>
<a href="/david/cache/2024/b2c5ca7e92e2c0d461bc3c7da36e8d32/" hreflang="fr"
data-tippy data-description="Cette rupture est symbolique. Mais les dérives sont quant à elles réelles. N’oubliez pas, ne pas se positionner, c’est cautionner."
data-source="https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871"
data-date="2024-05-20"
data-favicon="https://scribe.rip/favicon.ico"
data-domain="scribe.rip"
><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>Merci aux personnes qui témoignent de&nbsp;l’intérieur.</p>
<a href="#hr-165" title="Lien vers cette section de la page"><hr id="hr-165" /></a>

<blockquote lang="en">
<p>In our increasingly data-driven world, the ability to quickly and accurately access geospatial data can transform industries from public health to urban planning. Imagine being able to locate and analyze data from ‘within 10&nbsp;miles of the North Carolina coastline’ in mere seconds. Natural Language Geocoding makes this possible, <mark>bridging the gap between complex geospatial queries and user-friendly language.</mark> Let’s dive into how this innovative technology is changing the landscape of data analysis, making it more accessible and&nbsp;efficient.</p>
<p><cite><em><a data-link-domain="element84.com" href="https://www.element84.com/machine-learning/natural-language-geocoding/" hreflang="en"
title="Consultation de l’article (anglais)">Natural Language Geocoding</a>
<a href="/david/cache/2024/7084f7b279604bc141fee03e01531eb7/" hreflang="en"
data-tippy data-description="We discuss how natural language geocoding is changing the landscape of data analysis, making it more accessible and efficient."
data-source="https://www.element84.com/machine-learning/natural-language-geocoding/"
data-date="2024-05-20"
data-favicon="https://www.element84.com/favicon-32x32.png?v=24e856d25e63af3f5b952cefe84a531f"
data-domain="element84.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>L’AI s’immisce décidément partout. Je pensais naïvement être épargné dans ce domaine là. #enshAIttification (you saw it here&nbsp;first).</p>
<a href="#hr-166" title="Lien vers cette section de la page"><hr id="hr-166" /></a>

<blockquote lang="en">
<p>A privacy-first, no-nonsense, super-fast <mark>blogging&nbsp;platform</mark></p>
<p>No trackers, no javascript, no stylesheets. Just your&nbsp;words.</p>
<p><cite><em><a data-link-domain="bearblog.dev" href="https://bearblog.dev/">ʕ•ᴥ•ʔ Bear&nbsp;Blog</a></em></cite></p>
</blockquote>
<a href="#hr-167" title="Lien vers cette section de la page"><hr id="hr-167" /></a>

<blockquote>
<p>Éducation sur le cannabis <mark>pour et par</mark> les Premières Nations, les Inuits et les&nbsp;Métis</p>
<p><cite><em><a data-link-domain="nwaccannabised.ca" href="https://nwaccannabised.ca/fr">NWAC&nbsp;Cannabis</a></em></cite></p>
</blockquote>
<p>Je découvre au passage <a data-link-domain="deplume.ca" href="https://deplume.ca/">Design de Plume</a>.</p>
<a href="#hr-168" title="Lien vers cette section de la page"><hr id="hr-168" /></a>

<blockquote>
<p>Peut-être que je viens de courir le 5k le plus rapide du reste de ma vie. 🏃💨</p>
<p><cite><em><a data-link-domain="fedi.larlet.fr" href="https://fedi.larlet.fr/@david/111133899699614778">Sur masto</a>, le 26&nbsp;septembre&nbsp;2023</em></cite></p>
</blockquote>
<p>Ce pouet va mal&nbsp;vieillir&nbsp;🫀🦵.</p>

<nav>
<p>
<a href="/david/2024/apprentissage/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#apprentissage</a>
<a href="/david/2024/documentation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#documentation</a>
<a href="/david/2024/liens/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#liens</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<h2>
<a href="/david/2024/05/12/" title="Lien permanent vers cet article">Alien</a> <time datetime="2024-05-12">12 mai 2024</time>
</h2>

+ 188
- 0
david/2024/documentation/index.html View File

@@ -134,6 +134,194 @@
</p>
</nav>
<h2>
<a href="/david/2024/05/20/" title="Lien permanent vers cet article">Stimulations</a> <time datetime="2024-05-20">20 mai 2024</time>
</h2>
<p><a href="/david/2024/05/12/" title="Alien">Je me suis demandé</a> en passant par la page sur le <a data-link-domain="en.wikipedia.org" href="https://en.wikipedia.org/wiki/Stimming">Stimming</a> (<a data-link-domain="fr.wikipedia.org" href="https://fr.wikipedia.org/wiki/Auto-stimulation">Auto-stimulation</a> en français) après avoir couru s’il pouvait y avoir un lien avec les sports d’endurance. Je n’ai trouvé que <a data-link-domain="ncbi.nlm.nih.gov" href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8992823/">cet article</a> qui n’a pas été&nbsp;publié&nbsp;:</p>

<blockquote lang="en">
<p>Physical activity is beneficial for physical and mental health in the general population. Among autistic people, a range of physical and mental health conditions, particularly depression and anxiety, occur more frequently than in the general population. <mark>Physical activity interventions could help improve physical and mental health in autistic adults,</mark> but there is a lack of research in the area. The aim of this perspective article is to explore research into physical activity interventions for autistic adults, and identify gaps particularly in need of&nbsp;addressing.</p>
</blockquote>
<p>J’imagine que les mouvements de jambes à l’arrêt facilitent la récupération aussi d’une certaine&nbsp;manière&nbsp;😇.</p>
<p><a href="/david/2024/04/13/#hr-148">Still</a> <a data-link-domain="relationalpsych.group" href="https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd" hreflang="en"
title="Consultation de l’article (anglais)">digging</a>
<a href="/david/cache/2024/7f7afbfc0e4528838aadd7db4ba231cb/" hreflang="en"
data-tippy data-description="Autism Assessment at Relational Psych involves comprehensive evaluations to diagnose Autism Spectrum Disorders (ASD). Our assessments are conducted by experienced professionals and are tailored to identify the unique needs and strengths of each individual."
data-source="https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd"
data-date="2024-05-20"
data-favicon="https://assets-global.website-files.com/638a47e8e6837e0de97565b0/63fc2dfc3efb72e41f561cf0_Exclude.png"
data-domain="relationalpsych.group"
><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>&nbsp;⛏️.</p>
<a href="#hr-160" title="Lien vers cette section de la page"><hr id="hr-160" /></a>

<blockquote lang="en">
<p>When you’re driving around in Google Maps, you’re piloting a spaceship in an ancient simulation of space&nbsp;warfare.</p>
<p><cite><em><a data-link-domain="interconnected.org" href="https://interconnected.org/home/2024/05/17/arrow" hreflang="en"
title="Consultation de l’article (anglais)">When you’re driving in Google Maps you’re re-enacting an ancient space combat sim</a>
<a href="/david/cache/2024/37e471123bcb625e1ada602b1168a3dd/" hreflang="en"
data-tippy data-description="Posted on Friday 17 May 2024. 1,259 words, 14 links. By Matt Webb."
data-source="https://interconnected.org/home/2024/05/17/arrow"
data-date="2024-05-20"
data-favicon=""
data-domain="interconnected.org"
><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>Matt Webb, un des meilleurs tisseurs du&nbsp;Web.</p>
<a href="#hr-161" title="Lien vers cette section de la page"><hr id="hr-161" /></a>

<blockquote>
<p>Depuis quelques mois, je réalise des petites BD sur le même principe qu’Étymographie dans Le Combat syndicaliste, le journal de la CNT-F. <mark>Je les mets à l’occasion sur Instagram,</mark> mais je ne veux pas non plus totalement laisser mourir mon cher blog, d’autant qu’il y a peut-être une ou deux personnes qui y vont encore et boudent les réseaux sociaux, sait-on jamais… En voici donc&nbsp;trois</p>
<p><cite><em><a data-link-domain="boutanox.blogspot.com" href="https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html" hreflang=""
title="Consultation de l’article">Mélanaïlourologos - Le Combat syndicaliste</a>
<a href="/david/cache/2024/8a50a4b5f8ead46ca899437425315367/" hreflang=""
data-tippy data-description="Depuis quelques mois, je réalise des petites BD sur le même principe qu'Étymographie dans Le Combat syndicaliste , le journal de la CNT-F ...."
data-source="https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html"
data-date="2024-05-20"
data-favicon="https://boutanox.blogspot.com/favicon.ico"
data-domain="boutanox.blogspot.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>Merci aux auteur·ices qui publient aussi sur le web (même si c’est sur Google en&nbsp;l’occurence…).</p>
<a href="#hr-162" title="Lien vers cette section de la page"><hr id="hr-162" /></a>

<blockquote lang="en">
<p>Libraries are essential for democracy. We provide librarians and their communities the necessary skills <mark>to turn our ideals into action,</mark> focused on issues like privacy, intellectual freedom, and information&nbsp;democracy.</p>
<p><cite><em><a data-link-domain="libraryfreedom.org" href="https://libraryfreedom.org/">We are Library Freedom&nbsp;Project </a></em></cite></p>
</blockquote>
<p>📚✊</p>
<a href="#hr-163" title="Lien vers cette section de la page"><hr id="hr-163" /></a>

<blockquote>
<p>Je ne connais pas bien l’analyse transactionnelle, mais je m’en méfie un peu, surement plus par ignorance que par&nbsp;connaissance.</p>
<p>Je trouve cependant que les différents «&nbsp;P&nbsp;» (Protection, Permission, Puissance) qui sont proposés sont intéressants quand il s’agit de parler de confiance, de légitimité et de collaboration. Je suis content de rencontrer ces&nbsp;termes.</p>
<p><cite><em><a data-link-domain="blog.notmyidea.org" href="https://blog.notmyidea.org/oser-la-confiance.html" hreflang="fr"
title="Consultation de l’article">Oser la confiance</a>
<a href="/david/cache/2024/f0f339af451863ac8580a9fb65a58e99/" hreflang="fr"
data-tippy data-description="On m’a conseillé ce livre, voici donc quelques notes."
data-source="https://blog.notmyidea.org/oser-la-confiance.html"
data-date="2024-05-20"
data-favicon="https://blog.notmyidea.org/favicon-32x32.png"
data-domain="blog.notmyidea.org"
><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>Cet article rai·ésonne <a href="/david/2024/05/13/" title="Tensions">particulièrement en ce moment</a>.</p>
<a href="#hr-164" title="Lien vers cette section de la page"><hr id="hr-164" /></a>

<blockquote>
<p>Si je prends la parole aujourd’hui, c’est que je pense que mon parcours et mon cheminement intellectuel peuvent servir à d’autres confrères qui, je le sais, sont nombreux à être passés par mes différentes&nbsp;situations.</p>
<p>Lorsque je suis entré en études d’ostéopathie, j’étais certain de commencer un cursus scientifique qui m’amènerait à être une profession de santé&nbsp;respectable.</p>
<p><cite><em><a data-link-domain="scribe.rip" href="https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871" hreflang="fr"
title="Consultation de l’article">Ostéopathe, je n’en garderai que le nom</a>
<a href="/david/cache/2024/b2c5ca7e92e2c0d461bc3c7da36e8d32/" hreflang="fr"
data-tippy data-description="Cette rupture est symbolique. Mais les dérives sont quant à elles réelles. N’oubliez pas, ne pas se positionner, c’est cautionner."
data-source="https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871"
data-date="2024-05-20"
data-favicon="https://scribe.rip/favicon.ico"
data-domain="scribe.rip"
><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>Merci aux personnes qui témoignent de&nbsp;l’intérieur.</p>
<a href="#hr-165" title="Lien vers cette section de la page"><hr id="hr-165" /></a>

<blockquote lang="en">
<p>In our increasingly data-driven world, the ability to quickly and accurately access geospatial data can transform industries from public health to urban planning. Imagine being able to locate and analyze data from ‘within 10&nbsp;miles of the North Carolina coastline’ in mere seconds. Natural Language Geocoding makes this possible, <mark>bridging the gap between complex geospatial queries and user-friendly language.</mark> Let’s dive into how this innovative technology is changing the landscape of data analysis, making it more accessible and&nbsp;efficient.</p>
<p><cite><em><a data-link-domain="element84.com" href="https://www.element84.com/machine-learning/natural-language-geocoding/" hreflang="en"
title="Consultation de l’article (anglais)">Natural Language Geocoding</a>
<a href="/david/cache/2024/7084f7b279604bc141fee03e01531eb7/" hreflang="en"
data-tippy data-description="We discuss how natural language geocoding is changing the landscape of data analysis, making it more accessible and efficient."
data-source="https://www.element84.com/machine-learning/natural-language-geocoding/"
data-date="2024-05-20"
data-favicon="https://www.element84.com/favicon-32x32.png?v=24e856d25e63af3f5b952cefe84a531f"
data-domain="element84.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>L’AI s’immisce décidément partout. Je pensais naïvement être épargné dans ce domaine là. #enshAIttification (you saw it here&nbsp;first).</p>
<a href="#hr-166" title="Lien vers cette section de la page"><hr id="hr-166" /></a>

<blockquote lang="en">
<p>A privacy-first, no-nonsense, super-fast <mark>blogging&nbsp;platform</mark></p>
<p>No trackers, no javascript, no stylesheets. Just your&nbsp;words.</p>
<p><cite><em><a data-link-domain="bearblog.dev" href="https://bearblog.dev/">ʕ•ᴥ•ʔ Bear&nbsp;Blog</a></em></cite></p>
</blockquote>
<a href="#hr-167" title="Lien vers cette section de la page"><hr id="hr-167" /></a>

<blockquote>
<p>Éducation sur le cannabis <mark>pour et par</mark> les Premières Nations, les Inuits et les&nbsp;Métis</p>
<p><cite><em><a data-link-domain="nwaccannabised.ca" href="https://nwaccannabised.ca/fr">NWAC&nbsp;Cannabis</a></em></cite></p>
</blockquote>
<p>Je découvre au passage <a data-link-domain="deplume.ca" href="https://deplume.ca/">Design de Plume</a>.</p>
<a href="#hr-168" title="Lien vers cette section de la page"><hr id="hr-168" /></a>

<blockquote>
<p>Peut-être que je viens de courir le 5k le plus rapide du reste de ma vie. 🏃💨</p>
<p><cite><em><a data-link-domain="fedi.larlet.fr" href="https://fedi.larlet.fr/@david/111133899699614778">Sur masto</a>, le 26&nbsp;septembre&nbsp;2023</em></cite></p>
</blockquote>
<p>Ce pouet va mal&nbsp;vieillir&nbsp;🫀🦵.</p>

<nav>
<p>
<a href="/david/2024/apprentissage/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#apprentissage</a>
<a href="/david/2024/documentation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#documentation</a>
<a href="/david/2024/liens/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#liens</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<h2>
<a href="/david/2024/04/05/" title="Lien permanent vers cet article">Productivité</a> <time datetime="2024-04-05">5 avril 2024</time>
</h2>

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

@@ -252,7 +252,8 @@
<a href="/david/2024/05/05/">Jour 2</a>,
<a href="/david/2024/05/10/">Aurores</a>,
<a href="/david/2024/05/12/">Alien</a>,
<a href="/david/2024/05/13/">Tensions</a>.
<a href="/david/2024/05/13/">Tensions</a>,
<a href="/david/2024/05/20/">Stimulations</a>.
</p>
@@ -263,7 +264,7 @@
<a href="/david/2024/accompagnement/" rel="tag">#accompagnement (2)</a>,
<a href="/david/2024/adaptation/" rel="tag">#adaptation (4)</a>,
<a href="/david/2024/addiction/" rel="tag">#addiction (5)</a>,
<a href="/david/2024/apprentissage/" rel="tag">#apprentissage (19)</a>,
<a href="/david/2024/apprentissage/" rel="tag">#apprentissage (20)</a>,
<a href="/david/2024/aventure/" rel="tag">#aventure (6)</a>,
<a href="/david/2024/cinema/" rel="tag">#cinéma (1)</a>,
<a href="/david/2024/commun/" rel="tag">#commun (12)</a>,
@@ -273,7 +274,7 @@
<a href="/david/2024/deception/" rel="tag">#déception (4)</a>,
<a href="/david/2024/decision/" rel="tag">#décision (8)</a>,
<a href="/david/2024/dependance/" rel="tag">#dépendance (8)</a>,
<a href="/david/2024/documentation/" rel="tag">#documentation (3)</a>,
<a href="/david/2024/documentation/" rel="tag">#documentation (4)</a>,
<a href="/david/2024/dystopie/" rel="tag">#dystopie (4)</a>,
<a href="/david/2024/echanges/" rel="tag">#échanges (5)</a>,
<a href="/david/2024/ecriture/" rel="tag">#écriture (9)</a>,
@@ -289,7 +290,7 @@
<a href="/david/2024/introspection/" rel="tag">#introspection (3)</a>,
<a href="/david/2024/laboratoire/" rel="tag">#laboratoire (6)</a>,
<a href="/david/2024/lecture/" rel="tag">#lecture (7)</a>,
<a href="/david/2024/liens/" rel="tag">#liens (1)</a>,
<a href="/david/2024/liens/" rel="tag">#liens (2)</a>,
<a href="/david/2024/opendata/" rel="tag">#opendata (1)</a>,
<a href="/david/2024/opensource/" rel="tag">#opensource (10)</a>,
<a href="/david/2024/parentalite/" rel="tag">#parentalité (6)</a>,

+ 188
- 0
david/2024/liens/index.html View File

@@ -134,6 +134,194 @@
</p>
</nav>
<h2>
<a href="/david/2024/05/20/" title="Lien permanent vers cet article">Stimulations</a> <time datetime="2024-05-20">20 mai 2024</time>
</h2>
<p><a href="/david/2024/05/12/" title="Alien">Je me suis demandé</a> en passant par la page sur le <a data-link-domain="en.wikipedia.org" href="https://en.wikipedia.org/wiki/Stimming">Stimming</a> (<a data-link-domain="fr.wikipedia.org" href="https://fr.wikipedia.org/wiki/Auto-stimulation">Auto-stimulation</a> en français) après avoir couru s’il pouvait y avoir un lien avec les sports d’endurance. Je n’ai trouvé que <a data-link-domain="ncbi.nlm.nih.gov" href="https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8992823/">cet article</a> qui n’a pas été&nbsp;publié&nbsp;:</p>

<blockquote lang="en">
<p>Physical activity is beneficial for physical and mental health in the general population. Among autistic people, a range of physical and mental health conditions, particularly depression and anxiety, occur more frequently than in the general population. <mark>Physical activity interventions could help improve physical and mental health in autistic adults,</mark> but there is a lack of research in the area. The aim of this perspective article is to explore research into physical activity interventions for autistic adults, and identify gaps particularly in need of&nbsp;addressing.</p>
</blockquote>
<p>J’imagine que les mouvements de jambes à l’arrêt facilitent la récupération aussi d’une certaine&nbsp;manière&nbsp;😇.</p>
<p><a href="/david/2024/04/13/#hr-148">Still</a> <a data-link-domain="relationalpsych.group" href="https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd" hreflang="en"
title="Consultation de l’article (anglais)">digging</a>
<a href="/david/cache/2024/7f7afbfc0e4528838aadd7db4ba231cb/" hreflang="en"
data-tippy data-description="Autism Assessment at Relational Psych involves comprehensive evaluations to diagnose Autism Spectrum Disorders (ASD). Our assessments are conducted by experienced professionals and are tailored to identify the unique needs and strengths of each individual."
data-source="https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd"
data-date="2024-05-20"
data-favicon="https://assets-global.website-files.com/638a47e8e6837e0de97565b0/63fc2dfc3efb72e41f561cf0_Exclude.png"
data-domain="relationalpsych.group"
><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>&nbsp;⛏️.</p>
<a href="#hr-160" title="Lien vers cette section de la page"><hr id="hr-160" /></a>

<blockquote lang="en">
<p>When you’re driving around in Google Maps, you’re piloting a spaceship in an ancient simulation of space&nbsp;warfare.</p>
<p><cite><em><a data-link-domain="interconnected.org" href="https://interconnected.org/home/2024/05/17/arrow" hreflang="en"
title="Consultation de l’article (anglais)">When you’re driving in Google Maps you’re re-enacting an ancient space combat sim</a>
<a href="/david/cache/2024/37e471123bcb625e1ada602b1168a3dd/" hreflang="en"
data-tippy data-description="Posted on Friday 17 May 2024. 1,259 words, 14 links. By Matt Webb."
data-source="https://interconnected.org/home/2024/05/17/arrow"
data-date="2024-05-20"
data-favicon=""
data-domain="interconnected.org"
><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>Matt Webb, un des meilleurs tisseurs du&nbsp;Web.</p>
<a href="#hr-161" title="Lien vers cette section de la page"><hr id="hr-161" /></a>

<blockquote>
<p>Depuis quelques mois, je réalise des petites BD sur le même principe qu’Étymographie dans Le Combat syndicaliste, le journal de la CNT-F. <mark>Je les mets à l’occasion sur Instagram,</mark> mais je ne veux pas non plus totalement laisser mourir mon cher blog, d’autant qu’il y a peut-être une ou deux personnes qui y vont encore et boudent les réseaux sociaux, sait-on jamais… En voici donc&nbsp;trois</p>
<p><cite><em><a data-link-domain="boutanox.blogspot.com" href="https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html" hreflang=""
title="Consultation de l’article">Mélanaïlourologos - Le Combat syndicaliste</a>
<a href="/david/cache/2024/8a50a4b5f8ead46ca899437425315367/" hreflang=""
data-tippy data-description="Depuis quelques mois, je réalise des petites BD sur le même principe qu'Étymographie dans Le Combat syndicaliste , le journal de la CNT-F ...."
data-source="https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html"
data-date="2024-05-20"
data-favicon="https://boutanox.blogspot.com/favicon.ico"
data-domain="boutanox.blogspot.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>Merci aux auteur·ices qui publient aussi sur le web (même si c’est sur Google en&nbsp;l’occurence…).</p>
<a href="#hr-162" title="Lien vers cette section de la page"><hr id="hr-162" /></a>

<blockquote lang="en">
<p>Libraries are essential for democracy. We provide librarians and their communities the necessary skills <mark>to turn our ideals into action,</mark> focused on issues like privacy, intellectual freedom, and information&nbsp;democracy.</p>
<p><cite><em><a data-link-domain="libraryfreedom.org" href="https://libraryfreedom.org/">We are Library Freedom&nbsp;Project </a></em></cite></p>
</blockquote>
<p>📚✊</p>
<a href="#hr-163" title="Lien vers cette section de la page"><hr id="hr-163" /></a>

<blockquote>
<p>Je ne connais pas bien l’analyse transactionnelle, mais je m’en méfie un peu, surement plus par ignorance que par&nbsp;connaissance.</p>
<p>Je trouve cependant que les différents «&nbsp;P&nbsp;» (Protection, Permission, Puissance) qui sont proposés sont intéressants quand il s’agit de parler de confiance, de légitimité et de collaboration. Je suis content de rencontrer ces&nbsp;termes.</p>
<p><cite><em><a data-link-domain="blog.notmyidea.org" href="https://blog.notmyidea.org/oser-la-confiance.html" hreflang="fr"
title="Consultation de l’article">Oser la confiance</a>
<a href="/david/cache/2024/f0f339af451863ac8580a9fb65a58e99/" hreflang="fr"
data-tippy data-description="On m’a conseillé ce livre, voici donc quelques notes."
data-source="https://blog.notmyidea.org/oser-la-confiance.html"
data-date="2024-05-20"
data-favicon="https://blog.notmyidea.org/favicon-32x32.png"
data-domain="blog.notmyidea.org"
><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>Cet article rai·ésonne <a href="/david/2024/05/13/" title="Tensions">particulièrement en ce moment</a>.</p>
<a href="#hr-164" title="Lien vers cette section de la page"><hr id="hr-164" /></a>

<blockquote>
<p>Si je prends la parole aujourd’hui, c’est que je pense que mon parcours et mon cheminement intellectuel peuvent servir à d’autres confrères qui, je le sais, sont nombreux à être passés par mes différentes&nbsp;situations.</p>
<p>Lorsque je suis entré en études d’ostéopathie, j’étais certain de commencer un cursus scientifique qui m’amènerait à être une profession de santé&nbsp;respectable.</p>
<p><cite><em><a data-link-domain="scribe.rip" href="https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871" hreflang="fr"
title="Consultation de l’article">Ostéopathe, je n’en garderai que le nom</a>
<a href="/david/cache/2024/b2c5ca7e92e2c0d461bc3c7da36e8d32/" hreflang="fr"
data-tippy data-description="Cette rupture est symbolique. Mais les dérives sont quant à elles réelles. N’oubliez pas, ne pas se positionner, c’est cautionner."
data-source="https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871"
data-date="2024-05-20"
data-favicon="https://scribe.rip/favicon.ico"
data-domain="scribe.rip"
><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>Merci aux personnes qui témoignent de&nbsp;l’intérieur.</p>
<a href="#hr-165" title="Lien vers cette section de la page"><hr id="hr-165" /></a>

<blockquote lang="en">
<p>In our increasingly data-driven world, the ability to quickly and accurately access geospatial data can transform industries from public health to urban planning. Imagine being able to locate and analyze data from ‘within 10&nbsp;miles of the North Carolina coastline’ in mere seconds. Natural Language Geocoding makes this possible, <mark>bridging the gap between complex geospatial queries and user-friendly language.</mark> Let’s dive into how this innovative technology is changing the landscape of data analysis, making it more accessible and&nbsp;efficient.</p>
<p><cite><em><a data-link-domain="element84.com" href="https://www.element84.com/machine-learning/natural-language-geocoding/" hreflang="en"
title="Consultation de l’article (anglais)">Natural Language Geocoding</a>
<a href="/david/cache/2024/7084f7b279604bc141fee03e01531eb7/" hreflang="en"
data-tippy data-description="We discuss how natural language geocoding is changing the landscape of data analysis, making it more accessible and efficient."
data-source="https://www.element84.com/machine-learning/natural-language-geocoding/"
data-date="2024-05-20"
data-favicon="https://www.element84.com/favicon-32x32.png?v=24e856d25e63af3f5b952cefe84a531f"
data-domain="element84.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>L’AI s’immisce décidément partout. Je pensais naïvement être épargné dans ce domaine là. #enshAIttification (you saw it here&nbsp;first).</p>
<a href="#hr-166" title="Lien vers cette section de la page"><hr id="hr-166" /></a>

<blockquote lang="en">
<p>A privacy-first, no-nonsense, super-fast <mark>blogging&nbsp;platform</mark></p>
<p>No trackers, no javascript, no stylesheets. Just your&nbsp;words.</p>
<p><cite><em><a data-link-domain="bearblog.dev" href="https://bearblog.dev/">ʕ•ᴥ•ʔ Bear&nbsp;Blog</a></em></cite></p>
</blockquote>
<a href="#hr-167" title="Lien vers cette section de la page"><hr id="hr-167" /></a>

<blockquote>
<p>Éducation sur le cannabis <mark>pour et par</mark> les Premières Nations, les Inuits et les&nbsp;Métis</p>
<p><cite><em><a data-link-domain="nwaccannabised.ca" href="https://nwaccannabised.ca/fr">NWAC&nbsp;Cannabis</a></em></cite></p>
</blockquote>
<p>Je découvre au passage <a data-link-domain="deplume.ca" href="https://deplume.ca/">Design de Plume</a>.</p>
<a href="#hr-168" title="Lien vers cette section de la page"><hr id="hr-168" /></a>

<blockquote>
<p>Peut-être que je viens de courir le 5k le plus rapide du reste de ma vie. 🏃💨</p>
<p><cite><em><a data-link-domain="fedi.larlet.fr" href="https://fedi.larlet.fr/@david/111133899699614778">Sur masto</a>, le 26&nbsp;septembre&nbsp;2023</em></cite></p>
</blockquote>
<p>Ce pouet va mal&nbsp;vieillir&nbsp;🫀🦵.</p>

<nav>
<p>
<a href="/david/2024/apprentissage/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#apprentissage</a>
<a href="/david/2024/documentation/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#documentation</a>
<a href="/david/2024/liens/"
title="Liste de tous les articles 2024 associés à cette étiquette"
rel="tag">#liens</a>
<a href="/david/2024/#tags" title="Liste de toutes les étiquettes 2024">tous ?</a>
</p>
</nav>
<h2>
<a href="/david/2024/03/13/" title="Lien permanent vers cet article">Sérendipité</a> <time datetime="2024-03-13">13 mars 2024</time>
</h2>

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

@@ -176,52 +176,82 @@
<h2>Leurs dernières publications</h2>
<dl>
<dt>
<a href="https://winnielim.org/journal/why-i-love-hong-kong/">why i love hong kong</a>,
12-05-2024
<a href="https://n.survol.fr/n/leetcode">Leet­code</a>,
20-05-2024
</dt>
<dd>
Hong Kong still seems like the same place in many ways, but it feels different. I don’t know how much of it is due to the changes in me or the changes...
Je cherche un bon moyen d’éva­luer la compé­tence tech­nique d’un déve­lop­peur. Aujourd’­hui j’ai un test qui semble bien fonc­tion­ner pour notre usage mais que je trouve clai­re­ment trop long avec 4 heures. J’ai toujours été réti­cent aux exer­cices tableau blanc de type parcours d’arbre, calculs sur tableau et autres jeux d’al­go­rithme. J’ai quand même voulu […]
— <a href="https://n.survol.fr/">Éric D.</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://www.hypothermia.fr/2024/05/hallucinations-collectives/">Hallucinations collectives</a>,
20-05-2024
</dt>
<dd>
Trouver du lien dans le ciel ou dans l'art en guise de remparts.
— <a href="https://www.hypothermia.fr/">Eliness</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://winnielim.org/journal/did-i-just-do-my-first-pull-up/">did i just do my first pull-up?</a>,
20-05-2024
</dt>
<dd>
Wanted to write a note but I guess this warrants a proper post since I’ve completed my main aspiration for 2024! Today while trying our home pull-up bar I realised I could...
— <a href="https://winnielim.org/">Winnie Lim (en)</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://winnielim.org/notes/pink/">pink</a>,
11-05-2024
<a href="https://winnielim.org/journal/open-air-dining-in-hong-kong/">open-air dining in hong kong</a>,
19-05-2024
</dt>
<dd>
When I wrote about open-air dining in seoul I thought nobody would care, but surprisingly I got quite a bit of comments and DMs from fellow covid-cautious travellers. I would keep on...
— <a href="https://winnielim.org/">Winnie Lim (en)</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://n.survol.fr/n/travail-journalistique-gratuit">Travail jour­na­lis­tique gratuit</a>,
07-05-2024
<a href="https://n.survol.fr/n/euthanasie-suicide">Eutha­na­sie, Suicide</a>,
17-05-2024
</dt>
<dd>
Contexte (*)Une psycho­logue et auteure inter­vient dans les média sur ses sujets de d’ex­per­tise. Elle indique le faire béné­vo­le­ment parce que le sujet lui semble impor­tant. C’est l’usage. Cette fois-ci, les presque deux heures de temps inves­tis l’ont été à vide parce que l’in­ter­view prévue sur M6 ne sera ni diffu­sée ni utili­sée. Le temps […]
Le sujet est lourd, et je sais que ma posi­tion va être diffi­cile à comprendre pour ceux qui n’y ont jamais été confron­tés. Je vais quand même essayer parce que le sujet revient sur le tapis. Alors oui, il serait temps qu’on évite de consi­dé­rer la fin de vie comme une solu­tion poli­tique à l’ab­sence […]
— <a href="https://n.survol.fr/">Éric D.</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://www.hypothermia.fr/2024/05/de-lor-dans-les-veines/">De l’or dans les veines</a>,
06-05-2024
<a href="https://www.arthurperret.fr/veille/2024-05-17-subconscious-et-le-mirage-de-l-ia-personnelle.html">[Veille] L’échec de Subconscious et le mirage de l’IA personnelle</a>,
16-05-2024
</dt>
<dd>
Les leçons du kintsugi sont bien différentes lorsqu'on s'y frotte en réalité.
— <a href="https://www.hypothermia.fr/">Eliness</a>
https://subconscious.substack.com/p/subconscious-is-winding-down Gordon Brander travaillait depuis quelques années sur un outil de gestion des connaissances personnelles appelé Subconscious. Son équipe avait même créé Noosphere, un protocole permettant de relier des graphes de connaissances de manière décentralisée, pour passer de graphes personnels à une galaxie de graphes interreliés. Mais le…
— <a href="https://www.arthurperret.fr/">Arthur Perret</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://n.survol.fr/n/pourquoi-une-grille-de-salaire">Pourquoi une grille de salaire ?</a>,
03-05-2024
<a href="https://ynote.hk/mots/temporalite/explorartise-d-hiver-nouvel-an-lunaire.html">Explorartise d’hiver - 新年, nouvel an lunaire</a>,
13-05-2024
</dt>
<dd>
« On n’est pas chez les fonc­tion­naires !  » (*) Ceci est la mise à l’écrit d’une inter­ven­tion aux confé­rences MiXiT fin avril 2024. Elle ne remplace pas l’en­re­gis­tre­ment vidéo mais me permet de mettre quelques points plus en détail et en profi­ter pour placer quelques liens. Forcé­ment, parce que ça revient à faire un discours à l’écrit, c’est […]
— <a href="https://n.survol.fr/">Éric D.</a>
Ce weekend, j’ai fêté le nouvel an lunaire avec ma famille.
— <a href="https://ynote.hk/">Fanny Cheung</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://www.hypothermia.fr/2024/05/de-lor-dans-les-veines/">De l’or dans les veines</a>,
06-05-2024
</dt>
<dd>
Les leçons du kintsugi sont bien différentes lorsqu'on s'y frotte en réalité.
— <a href="https://www.hypothermia.fr/">Eliness</a>
</dd>
</dl>
<dl>
@@ -244,16 +274,6 @@
— <a href="https://www.arthurperret.fr/">Arthur Perret</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://www.arthurperret.fr/veille/2024-04-29-pandoc-profile-generator.html">[Veille] Pandoc Profile Generator</a>,
29-04-2024
</dt>
<dd>
https://nathanlesage.github.io/pandoc-profile-generator/ Hendrik Erz (principal développeur de Zettlr) a créé une application web qui aide à sélectionner des options pour Pandoc. C’est un formulaire qui permet de faire son petit marché, avec des explications et des exemples pour chaque groupe d’options. À la fin on télécharge (ou on copie dans son presse-papiers) la configuration correspondante…
— <a href="https://www.arthurperret.fr/">Arthur Perret</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://blog.ecologie-politique.eu/post/Etre-de-gauche-et-penser-la-domination-ou-pas">Être de gauche et penser la domination (ou pas)</a>,
@@ -266,32 +286,32 @@
</dl>
<dl>
<dt>
<a href="https://www.hypothermia.fr/2024/04/le-sursis-des-flocons/">Huis clos – Le sursis des flocons</a>,
<a href="https://blog.ecologie-politique.eu/post/Les-hommes-doux-sont-ils-l-avenir-du-feminisme">Les hommes doux sont-ils l’avenir du féminisme ?</a>,
22-04-2024
</dt>
<dd>
La douleur exposée au soleil qui s'apaise avec la neige.
— <a href="https://www.hypothermia.fr/">Eliness</a>
Même si lafemme est l’avenir de l’homme, c’est moins sur nous que sur les hommes que sont projetées nombre d’attentes concernant le recul espéré du sexisme. Comme si nous ne faisions que notre boulot ingrat de féministes, tandis qu’eux sont des forces telluriques. Hommes proféministes, à la masculinité non hégémonique, non binaires (1), ce sont eux qui vont sauver le monde. Engagements contre le…
— <a href="https://blog.ecologie-politique.eu/">Aude</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://blog.ecologie-politique.eu/post/Les-hommes-doux-sont-ils-l-avenir-du-feminisme">Les hommes doux sont-ils l’avenir du féminisme ?</a>,
22-04-2024
<a href="https://www.la-grange.net/2024/04/10/oubli">oubli</a>,
10-04-2024
</dt>
<dd>
Même si lafemme est l’avenir de l’homme, c’est moins sur nous que sur les hommes que sont projetées nombre d’attentes concernant le recul espéré du sexisme. Comme si nous ne faisions que notre boulot ingrat de féministes, tandis qu’eux sont des forces telluriques. Hommes proféministes, à la masculinité non hégémonique, non binaires (1), ce sont eux qui vont sauver le monde. Engagements contre le
— <a href="https://blog.ecologie-politique.eu/">Aude</a>
Cimetière de Somei, Japon, 10 avril 2024 N'oublie pas. — Nos vaches sont jolies parce qu'elles mangent des fleurs, Paul Bedel / Catherine Boivin, urn:isbn:978-2-266-28669-5 Les oublis sont les obstacles que l'on évite. L'esthétique de la série est belle… mais je ne suis pas particulièrement charmé par l'histoire. While assembling the lookbook for Shogun, van Tulleken’s lodestars were movies that
— <a href="https://www.la-grange.net/">Karl Dubost</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://ynote.hk/mots/temporalite/explorartise-d-hiver-grand-froid.html">Explorartise d’hiver - 大寒 Grand froid</a>,
18-04-2024
<a href="https://www.la-grange.net/2024/04/09/chute">après la chute</a>,
09-04-2024
</dt>
<dd>
Voici le retour des récaps de saison ! Demain, ce sera 大寒 (daai6 hon4), grand froid. Je me réjouis enfin de pouvoir me promener avec mon bout de nez glacé.
— <a href="https://ynote.hk/">Fanny Cheung</a>
Komagome, Japon, 9 avril 2024 Écrire ma terre. Mon bout de terre et la vôtre évidemment. — Nos vaches sont jolies parce qu'elles mangent des fleurs, Paul Bedel / Catherine Boivin, urn:isbn:978-2-266-28669-5 Quand il pleut, on n'entend plus les pétales qui tombent. Komagome, Japon, 9 avril 2024 🌞+🌑 = éclipse. Formidable.
— <a href="https://www.la-grange.net/">Karl Dubost</a>
</dd>
</dl>
<dl>
@@ -324,26 +344,6 @@
— <a href="https://thom4.net/">Thomas Parisot</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://www.la-grange.net/2024/03/30/komagome">Autour de Komagome</a>,
30-03-2024
</dt>
<dd>
Sugamo, Japon, 30 mars 2024 Écrire la vie, non pas écrire ma vie. En quoi consiste la différence, dira-t-on ? C'est considérer ce qui m'est arrivé, ce qui m'arrive, non pas comme quelque chose d'unique, d'accessoirement honteux ou indicible, mais comme matière d'observation afin de mieux comprendre, de mettre au jour une vérité plus générale. — Retour à Yvetot, Annie Ernaux,…
— <a href="https://www.la-grange.net/">Karl Dubost</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://www.la-grange.net/2024/03/29/concretement">concrètement</a>,
29-03-2024
</dt>
<dd>
Itabashi, Japon, 29 mars 2024 Mais comment faites-vous pour relier cette dimension imaginaire avec une réalité de la topographie qui est extrêmement présente ? — Retour à Yvetot, Annie Ernaux, urn:isbn:979-10-90566-53-8 Quand nous échangeons du haut de nos positions bourgeoises sur l'agriculture biologique, le vélo, les désirs écologiques d'un monde dont l'urgence est déjà un passé qui laisse de…
— <a href="https://www.la-grange.net/">Karl Dubost</a>
</dd>
</dl>
<dl>
<dt>
<a href="https://emmaclit.com/2024/03/19/tri-social/">Tri social</a>,

+ 4
- 3
david/index.html View File

@@ -475,6 +475,7 @@
</style>
<p>Liste des publications récentes en ordre anté-chronologique :</p>
<p>
<a href="/david/2024/05/20/" data-apprentissage data-documentation data-liens title="Étiquettes : apprentissage, documentation, liens.">Stimulations</a>,
<a href="/david/2024/05/13/" data-ecriture data-lecture data-psychologie title="Étiquettes : écriture, lecture, psychologie.">Tensions</a>,
<a href="/david/2024/05/12/" data-apprentissage data-introspection data-psychologie title="Étiquettes : apprentissage, introspection, psychologie.">Alien</a>,
<a href="/david/2024/05/10/" data-enthousiasme data-parentalite data-photographie title="Étiquettes : enthousiasme, parentalité, photographie.">Aurores</a>,
@@ -588,7 +589,7 @@
<a href="/david/2024/accompagnement/" data-tag="accompagnement" rel="tag">#accompagnement (2)</a>,
<a href="/david/2024/adaptation/" data-tag="adaptation" rel="tag">#adaptation (4)</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 (19)</a>,
<a href="/david/2024/apprentissage/" data-tag="apprentissage" rel="tag">#apprentissage (20)</a>,
<a href="/david/2024/aventure/" data-tag="aventure" rel="tag">#aventure (6)</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 (12)</a>,
@@ -598,7 +599,7 @@
<a href="/david/2024/deception/" data-tag="deception" rel="tag">#déception (4)</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>,
<a href="/david/2024/documentation/" data-tag="documentation" rel="tag">#documentation (3)</a>,
<a href="/david/2024/documentation/" data-tag="documentation" rel="tag">#documentation (4)</a>,
<a href="/david/2024/dystopie/" data-tag="dystopie" rel="tag">#dystopie (4)</a>,
<a href="/david/2024/echanges/" data-tag="echanges" rel="tag">#échanges (5)</a>,
<a href="/david/2024/ecriture/" data-tag="ecriture" rel="tag">#écriture (9)</a>,
@@ -614,7 +615,7 @@
<a href="/david/2024/introspection/" data-tag="introspection" rel="tag">#introspection (3)</a>,
<a href="/david/2024/laboratoire/" data-tag="laboratoire" rel="tag">#laboratoire (6)</a>,
<a href="/david/2024/lecture/" data-tag="lecture" rel="tag">#lecture (7)</a>,
<a href="/david/2024/liens/" data-tag="liens" rel="tag">#liens (1)</a>,
<a href="/david/2024/liens/" data-tag="liens" rel="tag">#liens (2)</a>,
<a href="/david/2024/opendata/" data-tag="opendata" rel="tag">#opendata (1)</a>,
<a href="/david/2024/opensource/" data-tag="opensource" rel="tag">#opensource (10)</a>,
<a href="/david/2024/parentalite/" data-tag="parentalite" rel="tag">#parentalité (6)</a>,

+ 82
- 21
david/log/index.xml View File

@@ -6,13 +6,94 @@
<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-05-13T12:00:00+01:00</updated>
<updated>2024-05-21T12: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">Stimulations</title>
<link href="https://larlet.fr/david/2024/05/20/" rel="alternate" type="text/html" />
<updated>2024-05-20T12:00:00+01:00</updated>
<id>https://larlet.fr/david/2024/05/20/</id>
<summary type="html">
&lt;p&gt;&lt;a href=&quot;https://larlet.fr/david/2024/05/12/&quot;&gt;Je me suis demandé&lt;/a&gt; en passant par la page sur le &lt;a href=&quot;https://en.wikipedia.org/wiki/Stimming&quot;&gt;Stimming&lt;/a&gt; (&lt;a href=&quot;https://fr.wikipedia.org/wiki/Auto-stimulation&quot;&gt;Auto-stimulation&lt;/a&gt; en français) après avoir couru s’il pouvait y avoir un lien avec les sports d’endurance. Je n’ai trouvé que &lt;a href=&quot;https://www.ncbi.nlm.nih.gov/pmc/articles/PMC8992823/&quot;&gt;cet article&lt;/a&gt; qui n’a pas été&amp;nbsp;publié&amp;nbsp;:&lt;/p&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;Physical activity is beneficial for physical and mental health in the general population. Among autistic people, a range of physical and mental health conditions, particularly depression and anxiety, occur more frequently than in the general population. &lt;mark&gt;Physical activity interventions could help improve physical and mental health in autistic adults,&lt;/mark&gt; but there is a lack of research in the area. The aim of this perspective article is to explore research into physical activity interventions for autistic adults, and identify gaps particularly in need of&amp;nbsp;addressing.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;J’imagine que les mouvements de jambes à l’arrêt facilitent la récupération aussi d’une certaine&amp;nbsp;manière&amp;nbsp;😇.&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;https://larlet.fr/david/2024/04/13/#hr-148&quot;&gt;Still&lt;/a&gt; &lt;a href=&quot;https://www.relationalpsych.group/articles/understanding-audhd-the-co-occurence-of-autism-and-adhd&quot;&gt;digging&lt;/a&gt;&amp;nbsp;⛏️.&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;When you’re driving around in Google Maps, you’re piloting a spaceship in an ancient simulation of space&amp;nbsp;warfare.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://interconnected.org/home/2024/05/17/arrow&quot;&gt;When you’re driving in Google Maps you’re re-enacting an ancient space combat&amp;nbsp;sim&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Matt Webb, un des meilleurs tisseurs du&amp;nbsp;Web.&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote&gt;
&lt;p&gt;Depuis quelques mois, je réalise des petites BD sur le même principe qu’Étymographie dans Le Combat syndicaliste, le journal de la CNT-F. &lt;mark&gt;Je les mets à l’occasion sur Instagram,&lt;/mark&gt; mais je ne veux pas non plus totalement laisser mourir mon cher blog, d’autant qu’il y a peut-être une ou deux personnes qui y vont encore et boudent les réseaux sociaux, sait-on jamais… En voici donc&amp;nbsp;trois&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://boutanox.blogspot.com/2024/04/melanailourologos-le-combat-syndicaliste.html&quot;&gt;Mélanaïlourologos - Le Combat&amp;nbsp;syndicaliste&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Merci aux auteur·ices qui publient aussi sur le web (même si c’est sur Google en&amp;nbsp;l’occurence…).&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;Libraries are essential for democracy. We provide librarians and their communities the necessary skills &lt;mark&gt;to turn our ideals into action,&lt;/mark&gt; focused on issues like privacy, intellectual freedom, and information&amp;nbsp;democracy.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://libraryfreedom.org/&quot;&gt;We are Library Freedom&amp;nbsp;Project &lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;📚✊&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote&gt;
&lt;p&gt;Je ne connais pas bien l’analyse transactionnelle, mais je m’en méfie un peu, surement plus par ignorance que par&amp;nbsp;connaissance.&lt;/p&gt;
&lt;p&gt;Je trouve cependant que les différents «&amp;nbsp;P&amp;nbsp;» (Protection, Permission, Puissance) qui sont proposés sont intéressants quand il s’agit de parler de confiance, de légitimité et de collaboration. Je suis content de rencontrer ces&amp;nbsp;termes.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://blog.notmyidea.org/oser-la-confiance.html&quot;&gt;Oser la&amp;nbsp;confiance&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Cet article rai·ésonne &lt;a href=&quot;https://larlet.fr/david/2024/05/13/&quot;&gt;particulièrement en ce moment&lt;/a&gt;.&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote&gt;
&lt;p&gt;Si je prends la parole aujourd’hui, c’est que je pense que mon parcours et mon cheminement intellectuel peuvent servir à d’autres confrères qui, je le sais, sont nombreux à être passés par mes différentes&amp;nbsp;situations.&lt;/p&gt;
&lt;p&gt;Lorsque je suis entré en études d’ostéopathie, j’étais certain de commencer un cursus scientifique qui m’amènerait à être une profession de santé&amp;nbsp;respectable.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://scribe.rip/@laurentlouat/ost%C3%A9opathe-je-nen-garderai-que-le-nom-fd14316bc871&quot;&gt;Ostéopathe, je n’en garderai que le&amp;nbsp;nom&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Merci aux personnes qui témoignent de&amp;nbsp;l’intérieur.&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;In our increasingly data-driven world, the ability to quickly and accurately access geospatial data can transform industries from public health to urban planning. Imagine being able to locate and analyze data from ‘within 10&amp;nbsp;miles of the North Carolina coastline’ in mere seconds. Natural Language Geocoding makes this possible, &lt;mark&gt;bridging the gap between complex geospatial queries and user-friendly language.&lt;/mark&gt; Let’s dive into how this innovative technology is changing the landscape of data analysis, making it more accessible and&amp;nbsp;efficient.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://www.element84.com/machine-learning/natural-language-geocoding/&quot;&gt;Natural Language&amp;nbsp;Geocoding&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;L’AI s’immisce décidément partout. Je pensais naïvement être épargné dans ce domaine là. #enshAIttification (you saw it here&amp;nbsp;first).&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote lang=&quot;en&quot;&gt;
&lt;p&gt;A privacy-first, no-nonsense, super-fast &lt;mark&gt;blogging&amp;nbsp;platform&lt;/mark&gt;&lt;/p&gt;
&lt;p&gt;No trackers, no javascript, no stylesheets. Just your&amp;nbsp;words.&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://bearblog.dev/&quot;&gt;ʕ•ᴥ•ʔ Bear&amp;nbsp;Blog&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr /&gt;

&lt;blockquote&gt;
&lt;p&gt;Éducation sur le cannabis &lt;mark&gt;pour et par&lt;/mark&gt; les Premières Nations, les Inuits et les&amp;nbsp;Métis&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://nwaccannabised.ca/fr&quot;&gt;NWAC&amp;nbsp;Cannabis&lt;/a&gt;&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Je découvre au passage &lt;a href=&quot;https://deplume.ca/&quot;&gt;Design de Plume&lt;/a&gt;.&lt;/p&gt;
&lt;hr /&gt;

&lt;blockquote&gt;
&lt;p&gt;Peut-être que je viens de courir le 5k le plus rapide du reste de ma vie. 🏃💨&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;&lt;a href=&quot;https://fedi.larlet.fr/@david/111133899699614778&quot;&gt;Sur masto&lt;/a&gt;, le 26&amp;nbsp;septembre&amp;nbsp;2023&lt;/em&gt;&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Ce pouet va mal&amp;nbsp;vieillir&amp;nbsp;🫀🦵.&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/documentation/&quot;&gt;#documentation&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/liens/&quot;&gt;#liens&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">Tensions</title>
<link href="https://larlet.fr/david/2024/05/13/" rel="alternate" type="text/html" />
@@ -1175,24 +1256,4 @@ L’aube viendra dans sa mârde&amp;nbsp;blanche.&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/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" />
<updated>2024-03-16T12:00:00+01:00</updated>
<id>https://larlet.fr/david/2024/03/16/</id>
<summary type="html">

&lt;blockquote&gt;
&lt;p&gt;Le crépuscule était tombé lorsqu’ils partirent enfin&amp;nbsp;: rampant par-dessus le bord ouest du vallon, ils passèrent comme des fantômes dans le pays accidenté en bordure de la route. La Lune n’était plus qu’à trois nuits de son plein, mais elle ne devait pas franchir les Montagnes avant minuit ou presque, et le début de leur voyage se fit dans la plus grande obscurité. […]&lt;/p&gt;
&lt;p&gt;&lt;mark&gt;Enfin, quand la nuit se fit vieille et que la fatigue les eut déjà rattrapés&lt;/mark&gt;&amp;nbsp;[…]&lt;/p&gt;
&lt;p&gt;Dès la tombée de la nuit, la terre s’étant évanouie en un gris informe, ils se remirent en route. […]&lt;/p&gt;
&lt;p&gt;Le jour était en train d’éclore, et ils virent que les Montagnes étaient à présent beaucoup plus distantes, fuyant vers l’est en une longue courbe qui se perdait à l’horizon. […]&lt;/p&gt;
&lt;p&gt;La lumière croissante leur révéla une terre déjà moins aride et moins ravagée. Les Montagnes se dressaient encore de façon menaçante sur leur gauche, mais la route du Sud était visible tout près d’eux, et elle s’éloignait à présent des racines noires des collines, obliquant vers l’ouest. […]&lt;/p&gt;
&lt;p&gt;&lt;cite&gt;&lt;em&gt;Le Seigneur des Anneaux&lt;/em&gt;, J.R.R. Tolkien, traduction de Daniel&amp;nbsp;Lauzon&lt;/cite&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;Je ne sais pas si j’y suis plus sensible à &lt;a href=&quot;https://larlet.fr/david/2024/02/06/&quot;&gt;cette relecture&lt;/a&gt; ou s’il s’agit d’améliorations avec la nouvelle traduction mais je remarque des tournures de phrases qui m’inspirent pour raconter des aventures en nature. Le sujet devenant l’environnement pour traduire les contraintes qu’il&amp;nbsp;impose.&lt;/p&gt;
&lt;p&gt;Puisqu’il faut s’éloigner du style de &lt;a href=&quot;https://comptoir.org/2024/03/11/sylvain-tesson-les-vers-de-la-reaction/&quot;&gt;Sylvain Tesson&lt;/a&gt;…&lt;/p&gt;
&lt;nav&gt;&lt;p&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/ecriture/&quot;&gt;#écriture&lt;/a&gt; &lt;a href=&quot;https://larlet.fr/david/2024/lecture/&quot;&gt;#lecture&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": "Stimulations",
"url": "/david/2024/05/20/",
"date": "2024-05-20",
"content": "Je me suis demand\u00e9 en passant par la page sur le Stimming (Auto-stimulation en fran\u00e7ais) apr\u00e8s avoir couru s\u2019il pouvait y avoir un lien avec les sports d\u2019endurance. Je n\u2019ai trouv\u00e9 que cet article qui n\u2019a pas \u00e9t\u00e9\u00a0publi\u00e9\u00a0: Physical activity is beneficial for physical and mental health in the general population. Among autistic people, a range of physical and mental health conditions, particularly depression and anxiety, occur more frequently than in the general population. Physical activity interventions could help improve physical and mental health in autistic adults, but there is a lack of research in the area. The aim of this perspective article is to explore research into physical activity interventions for autistic adults, and identify gaps particularly in need of\u00a0addressing. J\u2019imagine que les mouvements de jambes \u00e0 l\u2019arr\u00eat facilitent la r\u00e9cup\u00e9ration aussi d\u2019une certaine\u00a0mani\u00e8re\u00a0\ud83d\ude07. Still digging\u00a0\u26cf\ufe0f. When you\u2019re driving around in Google Maps, you\u2019re piloting a spaceship in an ancient simulation of space\u00a0warfare. When you\u2019re driving in Google Maps you\u2019re re-enacting an ancient space combat\u00a0sim Matt Webb, un des meilleurs tisseurs du\u00a0Web. Depuis quelques mois, je r\u00e9alise des petites BD sur le m\u00eame principe qu\u2019\u00c9tymographie dans Le Combat syndicaliste, le journal de la CNT-F. Je les mets \u00e0 l\u2019occasion sur Instagram, mais je ne veux pas non plus totalement laisser mourir mon cher blog, d\u2019autant qu\u2019il y a peut-\u00eatre une ou deux personnes qui y vont encore et boudent les r\u00e9seaux sociaux, sait-on jamais\u2026 En voici donc\u00a0trois M\u00e9lana\u00eflourologos - Le Combat\u00a0syndicaliste Merci aux auteur\u00b7ices qui publient aussi sur le web (m\u00eame si c\u2019est sur Google en\u00a0l\u2019occurence\u2026). Libraries are essential for democracy. We provide librarians and their communities the necessary skills to turn our ideals into action, focused on issues like privacy, intellectual freedom, and information\u00a0democracy. We are Library Freedom\u00a0Project \ud83d\udcda\u270a Je ne connais pas bien l\u2019analyse transactionnelle, mais je m\u2019en m\u00e9fie un peu, surement plus par ignorance que par\u00a0connaissance. Je trouve cependant que les diff\u00e9rents \u00ab\u00a0P\u00a0\u00bb (Protection, Permission, Puissance) qui sont propos\u00e9s sont int\u00e9ressants quand il s\u2019agit de parler de confiance, de l\u00e9gitimit\u00e9 et de collaboration. Je suis content de rencontrer ces\u00a0termes. Oser la\u00a0confiance Cet article rai\u00b7\u00e9sonne particuli\u00e8rement en ce moment. Si je prends la parole aujourd\u2019hui, c\u2019est que je pense que mon parcours et mon cheminement intellectuel peuvent servir \u00e0 d\u2019autres confr\u00e8res qui, je le sais, sont nombreux \u00e0 \u00eatre pass\u00e9s par mes diff\u00e9rentes\u00a0situations. Lorsque je suis entr\u00e9 en \u00e9tudes d\u2019ost\u00e9opathie, j\u2019\u00e9tais certain de commencer un cursus scientifique qui m\u2019am\u00e8nerait \u00e0 \u00eatre une profession de sant\u00e9\u00a0respectable. Ost\u00e9opathe, je n\u2019en garderai que le\u00a0nom Merci aux personnes qui t\u00e9moignent de\u00a0l\u2019int\u00e9rieur. In our increasingly data-driven world, the ability to quickly and accurately access geospatial data can transform industries from public health to urban planning. Imagine being able to locate and analyze data from \u2018within 10\u00a0miles of the North Carolina coastline\u2019 in mere seconds. Natural Language Geocoding makes this possible, bridging the gap between complex geospatial queries and user-friendly language. Let\u2019s dive into how this innovative technology is changing the landscape of data analysis, making it more accessible and\u00a0efficient. Natural Language\u00a0Geocoding L\u2019AI s\u2019immisce d\u00e9cid\u00e9ment partout. Je pensais na\u00efvement \u00eatre \u00e9pargn\u00e9 dans ce domaine l\u00e0. #enshAIttification (you saw it here\u00a0first). A privacy-first, no-nonsense, super-fast blogging\u00a0platform No trackers, no javascript, no stylesheets. Just your\u00a0words. \u0295\u2022\u1d25\u2022\u0294 Bear\u00a0Blog \u00c9ducation sur le cannabis pour et par les Premi\u00e8res Nations, les Inuits et les\u00a0M\u00e9tis NWAC\u00a0Cannabis Je d\u00e9couvre au passage Design de Plume. Peut-\u00eatre que je viens de courir le 5k le plus rapide du reste de ma vie. \ud83c\udfc3\ud83d\udca8 Sur masto, le 26\u00a0septembre\u00a02023 Ce pouet va mal\u00a0vieillir\u00a0\ud83e\udec0\ud83e\uddb5."
},
{
"title": "Tensions",
"url": "/david/2024/05/13/",
@@ -900,6 +906,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": "Stimulations",
"url": "/david/2024/05/20/",
"date": "2024-05-20",
"content": "Je me suis demand\u00e9 en passant par la page sur le Stimming (Auto-stimulation en fran\u00e7ais) apr\u00e8s avoir couru s\u2019il pouvait y avoir un lien avec les sports d\u2019endurance. Je n\u2019ai trouv\u00e9 que cet article qui n\u2019a pas \u00e9t\u00e9\u00a0publi\u00e9\u00a0: Physical activity is beneficial for physical and mental health in the general population. Among autistic people, a range of physical and mental health conditions, particularly depression and anxiety, occur more frequently than in the general population. Physical activity interventions could help improve physical and mental health in autistic adults, but there is a lack of research in the area. The aim of this perspective article is to explore research into physical activity interventions for autistic adults, and identify gaps particularly in need of\u00a0addressing. J\u2019imagine que les mouvements de jambes \u00e0 l\u2019arr\u00eat facilitent la r\u00e9cup\u00e9ration aussi d\u2019une certaine\u00a0mani\u00e8re\u00a0\ud83d\ude07. Still digging\u00a0\u26cf\ufe0f. When you\u2019re driving around in Google Maps, you\u2019re piloting a spaceship in an ancient simulation of space\u00a0warfare. When you\u2019re driving in Google Maps you\u2019re re-enacting an ancient space combat\u00a0sim Matt Webb, un des meilleurs tisseurs du\u00a0Web. Depuis quelques mois, je r\u00e9alise des petites BD sur le m\u00eame principe qu\u2019\u00c9tymographie dans Le Combat syndicaliste, le journal de la CNT-F. Je les mets \u00e0 l\u2019occasion sur Instagram, mais je ne veux pas non plus totalement laisser mourir mon cher blog, d\u2019autant qu\u2019il y a peut-\u00eatre une ou deux personnes qui y vont encore et boudent les r\u00e9seaux sociaux, sait-on jamais\u2026 En voici donc\u00a0trois M\u00e9lana\u00eflourologos - Le Combat\u00a0syndicaliste Merci aux auteur\u00b7ices qui publient aussi sur le web (m\u00eame si c\u2019est sur Google en\u00a0l\u2019occurence\u2026). Libraries are essential for democracy. We provide librarians and their communities the necessary skills to turn our ideals into action, focused on issues like privacy, intellectual freedom, and information\u00a0democracy. We are Library Freedom\u00a0Project \ud83d\udcda\u270a Je ne connais pas bien l\u2019analyse transactionnelle, mais je m\u2019en m\u00e9fie un peu, surement plus par ignorance que par\u00a0connaissance. Je trouve cependant que les diff\u00e9rents \u00ab\u00a0P\u00a0\u00bb (Protection, Permission, Puissance) qui sont propos\u00e9s sont int\u00e9ressants quand il s\u2019agit de parler de confiance, de l\u00e9gitimit\u00e9 et de collaboration. Je suis content de rencontrer ces\u00a0termes. Oser la\u00a0confiance Cet article rai\u00b7\u00e9sonne particuli\u00e8rement en ce moment. Si je prends la parole aujourd\u2019hui, c\u2019est que je pense que mon parcours et mon cheminement intellectuel peuvent servir \u00e0 d\u2019autres confr\u00e8res qui, je le sais, sont nombreux \u00e0 \u00eatre pass\u00e9s par mes diff\u00e9rentes\u00a0situations. Lorsque je suis entr\u00e9 en \u00e9tudes d\u2019ost\u00e9opathie, j\u2019\u00e9tais certain de commencer un cursus scientifique qui m\u2019am\u00e8nerait \u00e0 \u00eatre une profession de sant\u00e9\u00a0respectable. Ost\u00e9opathe, je n\u2019en garderai que le\u00a0nom Merci aux personnes qui t\u00e9moignent de\u00a0l\u2019int\u00e9rieur. In our increasingly data-driven world, the ability to quickly and accurately access geospatial data can transform industries from public health to urban planning. Imagine being able to locate and analyze data from \u2018within 10\u00a0miles of the North Carolina coastline\u2019 in mere seconds. Natural Language Geocoding makes this possible, bridging the gap between complex geospatial queries and user-friendly language. Let\u2019s dive into how this innovative technology is changing the landscape of data analysis, making it more accessible and\u00a0efficient. Natural Language\u00a0Geocoding L\u2019AI s\u2019immisce d\u00e9cid\u00e9ment partout. Je pensais na\u00efvement \u00eatre \u00e9pargn\u00e9 dans ce domaine l\u00e0. #enshAIttification (you saw it here\u00a0first). A privacy-first, no-nonsense, super-fast blogging\u00a0platform No trackers, no javascript, no stylesheets. Just your\u00a0words. \u0295\u2022\u1d25\u2022\u0294 Bear\u00a0Blog \u00c9ducation sur le cannabis pour et par les Premi\u00e8res Nations, les Inuits et les\u00a0M\u00e9tis NWAC\u00a0Cannabis Je d\u00e9couvre au passage Design de Plume. Peut-\u00eatre que je viens de courir le 5k le plus rapide du reste de ma vie. \ud83c\udfc3\ud83d\udca8 Sur masto, le 26\u00a0septembre\u00a02023 Ce pouet va mal\u00a0vieillir\u00a0\ud83e\udec0\ud83e\uddb5."
},
{
"title": "Tensions",
"url": "/david/2024/05/13/",

Loading…
Cancel
Save