Update documentation

This commit is contained in:
Alexis Métaireau 2024-02-15 14:48:16 +01:00
parent b57e09012c
commit beecd8c6e4
164 changed files with 4104 additions and 996 deletions

View file

@ -85,7 +85,7 @@ understand the big picture, and I’m not getting lost in the details like I
<ul> <ul>
<li>Using <a href="https://leafletjs.com/">Leaflet.js</a> to render <em>features</em> on the map&nbsp;;</li> <li>Using <a href="https://leafletjs.com/">Leaflet.js</a> to render <em>features</em> on the map&nbsp;;</li>
<li>Using <a href="https://github.com/Leaflet/Leaflet.Editable">Leaflet Editable</a> to edit <li>Using <a href="https://github.com/Leaflet/Leaflet.Editable">Leaflet Editable</a> to edit
complex forms, like polylines, polygons, and to draw markers&nbsp;;</li> complex shapes, like polylines, polygons, and to draw markers&nbsp;;</li>
<li>Using the <a href="https://github.com/yohanboniface/Leaflet.FormBuilder">Formbuilder</a> <li>Using the <a href="https://github.com/yohanboniface/Leaflet.FormBuilder">Formbuilder</a>
to expose a way for the users to edit the features, and the data of the&nbsp;map</li> to expose a way for the users to edit the features, and the data of the&nbsp;map</li>
<li>Serializing the layers to and from <a href="https://geojson.org/">GeoJSON</a>. That&#8217;s <li>Serializing the layers to and from <a href="https://geojson.org/">GeoJSON</a>. That&#8217;s
@ -106,7 +106,7 @@ guess) where the data is stored. It&#8217;s what uMap serializes. It contains th
features (with their properties). But that&#8217;s the trick: these features are named features (with their properties). But that&#8217;s the trick: these features are named
<em>layers</em> by&nbsp;Leaflet.</p> <em>layers</em> by&nbsp;Leaflet.</p>
<h4 id="geojson-and-leaflet">GeoJSON and&nbsp;Leaflet</h4> <h4 id="geojson-and-leaflet">GeoJSON and&nbsp;Leaflet</h4>
<p>We&#8217;re using GeoJSON to share data with the server, but we&#8217;re using Laflet <p>We&#8217;re using GeoJSON to share data with the server, but we&#8217;re using Leaflet
internally. And these two have different way of naming&nbsp;things.</p> internally. And these two have different way of naming&nbsp;things.</p>
<p>The different geometries are named differently (a leaflet <code>Marker</code> is a GeoJSON <p>The different geometries are named differently (a leaflet <code>Marker</code> is a GeoJSON
<code>Point</code>), and their coordinates are stored differently: Leaflet stores <code>lat, <code>Point</code>), and their coordinates are stored differently: Leaflet stores <code>lat,
@ -122,7 +122,7 @@ a rerendering of the&nbsp;interface.</p>
get updated without being centralized. It&#8217;s just a different&nbsp;paradigm.</p> get updated without being centralized. It&#8217;s just a different&nbsp;paradigm.</p>
<h2 id="a-syncing-proof-of-concept">A syncing proof of&nbsp;concept</h2> <h2 id="a-syncing-proof-of-concept">A syncing proof of&nbsp;concept</h2>
<p>With that in mind, I started thinking about a simple way to implement&nbsp;syncing. </p> <p>With that in mind, I started thinking about a simple way to implement&nbsp;syncing. </p>
<p>I let aside all the thinking about how this would relate with CRDTs. It can <p>I left aside all the thinking about how this would relate with CRDTs. It can
be useful, but later. For now, I &#8220;just&#8221; want to synchronize two maps. I want a be useful, but later. For now, I &#8220;just&#8221; want to synchronize two maps. I want a
proof of concept to do informed&nbsp;decisions.</p> proof of concept to do informed&nbsp;decisions.</p>
<h3 id="syncing-map-properties">Syncing map&nbsp;properties</h3> <h3 id="syncing-map-properties">Syncing map&nbsp;properties</h3>
@ -165,8 +165,8 @@ which will be able to rerender&nbsp;itself.</p>
way is probably&nbsp;websockets.</p> way is probably&nbsp;websockets.</p>
<p>Here is a simple code which will relay messages from one websocket to the other <p>Here is a simple code which will relay messages from one websocket to the other
connected clients. It&#8217;s not the final code, it&#8217;s just for demo&nbsp;puposes.</p> connected clients. It&#8217;s not the final code, it&#8217;s just for demo&nbsp;puposes.</p>
<p>A basic way to do this on the server side is to use python&#8217;s [websockets] <p>A basic way to do this on the server side is to use python&#8217;s
(https://websockets.readthedocs.io/)&nbsp;library.</p> <a href="https://websockets.readthedocs.io/">websockets</a>&nbsp;library.</p>
<div class="highlight"><pre><span></span><code><span class="kn">import</span> <span class="nn">asyncio</span> <div class="highlight"><pre><span></span><code><span class="kn">import</span> <span class="nn">asyncio</span>
<span class="kn">import</span> <span class="nn">websockets</span> <span class="kn">import</span> <span class="nn">websockets</span>
<span class="kn">from</span> <span class="nn">websockets.server</span> <span class="kn">import</span> <span class="n">serve</span> <span class="kn">from</span> <span class="nn">websockets.server</span> <span class="kn">import</span> <span class="n">serve</span>
@ -268,14 +268,18 @@ width, depending on the type of geometry and the number of shapes in each of&nbs
<source src="/images/umap/sync-features.webm" type="video/webm"> <source src="/images/umap/sync-features.webm" type="video/webm">
</video> </video>
<p>Point properties are also editable, using the already-existing table editor. I
was expecting this to require some work but it&#8217;s just working without more&nbsp;changes.</p>
<h2 id="whats-next">What&#8217;s next&nbsp;?</h2> <h2 id="whats-next">What&#8217;s next&nbsp;?</h2>
<p>While I&#8217;m able to sync map properties, features and their properties, I&#8217;m not <p>I&#8217;m able to sync map properties, features and their properties, but I&#8217;m not
yet syncing layers. That&#8217;s the next step! I also plan to make some pull yet syncing layers. That&#8217;s the next step! I also plan to make some pull
requests with the interesting bits I&#8217;m sure will go in the final&nbsp;implementation:</p> requests with the interesting bits I&#8217;m sure will go in the final&nbsp;implementation:</p>
<ul> <ul>
<li>adding ids to&nbsp;features</li> <li>Adding ids to features, so we have a way to refer to&nbsp;them.</li>
<li>having a way to map properties with how they render the&nbsp;interface</li> <li>Having a way to map properties with how they render the interface, the <code>renderProperties</code> bits.</li>
</ul> </ul>
<p>When this demo will be working, I&#8217;ll probably spend some time updating it with the latest changes (umap is moving a lot these weeks).
I will probably focus on how to integrate websockets in the server side, and then will see how to leverage (maybe) some magic from CRDTs, if we need&nbsp;it.</p>
<p>See you for the next&nbsp;update!</p> <p>See you for the next&nbsp;update!</p>
<p> <p>
<a href="https://blog.notmyidea.org/tag/umap.html">#umap</a>, <a href="https://blog.notmyidea.org/tag/geojson.html">#geojson</a>, <a href="https://blog.notmyidea.org/tag/websockets.html">#websockets</a> - Posté dans la catégorie <a href="https://blog.notmyidea.org/code/">code</a> <a href="https://blog.notmyidea.org/tag/umap.html">#umap</a>, <a href="https://blog.notmyidea.org/tag/geojson.html">#geojson</a>, <a href="https://blog.notmyidea.org/tag/websockets.html">#websockets</a> - Posté dans la catégorie <a href="https://blog.notmyidea.org/code/">code</a>

View file

@ -49,6 +49,7 @@ Alexis Métaireau </title>
<dl> <dl>
<dt>2024</dt> <dt>2024</dt>
<dd><a href='https://blog.notmyidea.org/notes-hebdo-16.html'>Notes hebdo&nbsp;#16</a></dd> <dd><a href='https://blog.notmyidea.org/notes-hebdo-16.html'>Notes hebdo&nbsp;#16</a></dd>
<dd><a href='https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html'>Adding collaboration on uMap, third&nbsp;update</a></dd>
<dd><a href='https://blog.notmyidea.org/returning-objects-from-an-arrow-function.html'>Returning objects from an arrow&nbsp;function</a></dd> <dd><a href='https://blog.notmyidea.org/returning-objects-from-an-arrow-function.html'>Returning objects from an arrow&nbsp;function</a></dd>
<dd><a href='https://blog.notmyidea.org/notes-hebdo-15.html'>Notes hebdo&nbsp;#15</a></dd> <dd><a href='https://blog.notmyidea.org/notes-hebdo-15.html'>Notes hebdo&nbsp;#15</a></dd>
<dd><a href='https://blog.notmyidea.org/lart-de-conter-nos-experiences-collectives.html'>L&#8217;art de conter nos expériences&nbsp;collectives</a></dd> <dd><a href='https://blog.notmyidea.org/lart-de-conter-nos-experiences-collectives.html'>L&#8217;art de conter nos expériences&nbsp;collectives</a></dd>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -102,14 +114,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1> <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/crdt.html">CRDT</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sync.html">Sync</a>, <a class='tag' href="https://blog.notmyidea.org/tag/umap.html">uMap</a> <h1><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html" id="page-title">Adding Real-Time Collaboration to uMap, first&nbsp;week</a></h1>
A heads-up on what I've been doing this week on uMap A heads-up on what I've been doing this week on uMap
</section> </section>
<section class="section index">
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/graphs.html">Graphs</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a> <h1><a href="https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html" id="page-title">Using Datasette for tracking my professional&nbsp;activity</a></h1>
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/rescuing-a-broken-asahi-linux-workstation.html" rel="bookmark" title="Permalink to Rescuing a broken asahi linux workstation">Rescuing a broken asahi linux&nbsp;workstation</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

View file

@ -43,6 +43,18 @@ Alexis Métaireau - </title>
</ul> </ul>
</section> </section>
<h1></h1> <h1></h1>
<section class="section index">
<time datetime="2024-02-12T00:00:00+01:00">12 février 2024</time>
<a class='tag' href="https://blog.notmyidea.org/tag/umap.html">umap</a>, <a class='tag' href="https://blog.notmyidea.org/tag/geojson.html">geojson</a>, <a class='tag' href="https://blog.notmyidea.org/tag/websockets.html">websockets</a> <h1><a href="https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html" id="page-title">Adding collaboration on uMap, third&nbsp;update</a></h1>
<p>I&#8217;ve spent the last few weeks working on <a href="https://umap-project.org">uMap</a>, still
with the goal of bringing real-time collaboration to the maps. I&#8217;m not there
yet, but I&#8217;ve made some progress that I will relate&nbsp;here.</p>
<h2 id="javascript-modules">JavaScript&nbsp;modules</h2>
<p>uMap has been there <a href="https://github.com/
umap-project/umap/commit/0cce7f9e2a19c83fa76645d7773d39d54f357c43">since 2012</a>, at a time
when <span class="caps">ES6 …</span></p>
</section>
<section class="section index"> <section class="section index">
<time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time> <time datetime="2024-02-08T00:00:00+01:00">08 février 2024</time>
@ -103,13 +115,8 @@ sudo<span class="w"> </span>diskutil<span class="w"> </span>eraseDisk<span class
<p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p> <p>I&#8217;ve been following Simon Willison since quite some time, but I&#8217;ve actually never played with his main project <a href="https://datasette.io">Datasette</a>&nbsp;before.</p>
<p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p> <p>As I&#8217;m going back into development, I&#8217;m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
</section> </section>
<section class="section index">
<time datetime="2023-10-18T00:00:00+02:00">18 octobre 2023</time>
<a class='tag' href="https://blog.notmyidea.org/tag/sql.html">SQL</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlalchemy.html">SQLAlchemy</a>, <a class='tag' href="https://blog.notmyidea.org/tag/python.html">Python</a> <h1><a href="https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html" id="page-title">Using <span class="caps">DISTINCT</span> in Parent-Child&nbsp;Relationships</a></h1>
How to get parent and most-recent child in a one-to-many relationship
</section>
<ul> <ul>
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine&nbsp;48</a></li>
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li> <li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine&nbsp;47</a></li>
<li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li> <li><a href="https://blog.notmyidea.org/using-pelican-to-track-my-worked-and-volunteer-hours.html" rel="bookmark" title="Permalink to Using pelican to track my worked and volunteer hours">Using pelican to track my worked and volunteer&nbsp;hours</a></li>
<li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li> <li><a href="https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html" rel="bookmark" title="Permalink to Adding Real-Time Collaboration to uMap, second week">Adding Real-Time Collaboration to uMap, second&nbsp;week</a></li>

Some files were not shown because too many files have changed in this diff Show more