mirror of
https://github.com/almet/notmyidea.git
synced 2025-04-28 19:42:37 +02:00
Update documentation
This commit is contained in:
parent
b57e09012c
commit
beecd8c6e4
164 changed files with 4104 additions and 996 deletions
|
@ -85,7 +85,7 @@ understand the big picture, and I’m not getting lost in the details like I
|
|||
<ul>
|
||||
<li>Using <a href="https://leafletjs.com/">Leaflet.js</a> to render <em>features</em> on the map ;</li>
|
||||
<li>Using <a href="https://github.com/Leaflet/Leaflet.Editable">Leaflet Editable</a> to edit
|
||||
complex forms, like polylines, polygons, and to draw markers ;</li>
|
||||
complex shapes, like polylines, polygons, and to draw markers ;</li>
|
||||
<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 map</li>
|
||||
<li>Serializing the layers to and from <a href="https://geojson.org/">GeoJSON</a>. That’s
|
||||
|
@ -106,7 +106,7 @@ guess) where the data is stored. It’s what uMap serializes. It contains th
|
|||
features (with their properties). But that’s the trick: these features are named
|
||||
<em>layers</em> by Leaflet.</p>
|
||||
<h4 id="geojson-and-leaflet">GeoJSON and Leaflet</h4>
|
||||
<p>We’re using GeoJSON to share data with the server, but we’re using Laflet
|
||||
<p>We’re using GeoJSON to share data with the server, but we’re using Leaflet
|
||||
internally. And these two have different way of naming things.</p>
|
||||
<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,
|
||||
|
@ -122,7 +122,7 @@ a rerendering of the interface.</p>
|
|||
get updated without being centralized. It’s just a different paradigm.</p>
|
||||
<h2 id="a-syncing-proof-of-concept">A syncing proof of concept</h2>
|
||||
<p>With that in mind, I started thinking about a simple way to implement 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 “just” want to synchronize two maps. I want a
|
||||
proof of concept to do informed decisions.</p>
|
||||
<h3 id="syncing-map-properties">Syncing map properties</h3>
|
||||
|
@ -165,8 +165,8 @@ which will be able to rerender itself.</p>
|
|||
way is probably websockets.</p>
|
||||
<p>Here is a simple code which will relay messages from one websocket to the other
|
||||
connected clients. It’s not the final code, it’s just for demo puposes.</p>
|
||||
<p>A basic way to do this on the server side is to use python’s [websockets]
|
||||
(https://websockets.readthedocs.io/) library.</p>
|
||||
<p>A basic way to do this on the server side is to use python’s
|
||||
<a href="https://websockets.readthedocs.io/">websockets</a> library.</p>
|
||||
<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">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">
|
||||
</video>
|
||||
|
||||
<p>Point properties are also editable, using the already-existing table editor. I
|
||||
was expecting this to require some work but it’s just working without more changes.</p>
|
||||
<h2 id="whats-next">What’s next ?</h2>
|
||||
<p>While I’m able to sync map properties, features and their properties, I’m not
|
||||
<p>I’m able to sync map properties, features and their properties, but I’m not
|
||||
yet syncing layers. That’s the next step! I also plan to make some pull
|
||||
requests with the interesting bits I’m sure will go in the final implementation:</p>
|
||||
<ul>
|
||||
<li>adding ids to features</li>
|
||||
<li>having a way to map properties with how they render the interface</li>
|
||||
<li>Adding ids to features, so we have a way to refer to them.</li>
|
||||
<li>Having a way to map properties with how they render the interface, the <code>renderProperties</code> bits.</li>
|
||||
</ul>
|
||||
<p>When this demo will be working, I’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 it.</p>
|
||||
<p>See you for the next update!</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>
|
|
@ -49,6 +49,7 @@ Alexis Métaireau </title>
|
|||
<dl>
|
||||
<dt>2024</dt>
|
||||
<dd><a href='https://blog.notmyidea.org/notes-hebdo-16.html'>Notes hebdo #16</a></dd>
|
||||
<dd><a href='https://blog.notmyidea.org/adding-collaboration-on-umap-third-update.html'>Adding collaboration on uMap, third update</a></dd>
|
||||
<dd><a href='https://blog.notmyidea.org/returning-objects-from-an-arrow-function.html'>Returning objects from an arrow function</a></dd>
|
||||
<dd><a href='https://blog.notmyidea.org/notes-hebdo-15.html'>Notes hebdo #15</a></dd>
|
||||
<dd><a href='https://blog.notmyidea.org/lart-de-conter-nos-experiences-collectives.html'>L’art de conter nos expériences collectives</a></dd>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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 week</a></h1>
|
||||
A heads-up on what I've been doing this week on uMap
|
||||
</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 activity</a></h1>
|
||||
<p>I’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</section>
|
||||
<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 workstation</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 hours</a></li>
|
||||
|
|
19
author/.html
19
author/.html
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
|
@ -43,6 +43,18 @@ Alexis Métaireau - </title>
|
|||
</ul>
|
||||
</section>
|
||||
<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 update</a></h1>
|
||||
<p>I’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’m not there
|
||||
yet, but I’ve made some progress that I will relate here.</p>
|
||||
<h2 id="javascript-modules">JavaScript 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">
|
||||
<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’ve been following Simon Willison since quite some time, but I’ve actually never played with his main project <a href="https://datasette.io">Datasette</a> before.</p>
|
||||
<p>As I’m going back into development, I’m trying to track where my time goes, to be able to find patterns, and just remember how much time …</p>
|
||||
</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 Relationships</a></h1>
|
||||
How to get parent and most-recent child in a one-to-many relationship
|
||||
</section>
|
||||
<ul>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-48.html" rel="bookmark" title="Permalink to 2023, Semaine 48">2023, Semaine 48</a></li>
|
||||
<li><a href="https://blog.notmyidea.org/2023-semaine-47.html" rel="bookmark" title="Permalink to 2023, Semaine 47">2023, Semaine 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 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 week</a></li>
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue