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
8a655a0b7d
commit
54de661394
155 changed files with 4660 additions and 3046 deletions
|
@ -347,7 +347,7 @@ poster="https://nuage.b.delire.party/s/kpP9ijfqabmKxnr">
|
||||||
</ul>
|
</ul>
|
||||||
<p>We’ll figure that out next week, I guess!</p>
|
<p>We’ll figure that out next week, I guess!</p>
|
||||||
<p>
|
<p>
|
||||||
<a href="https://blog.notmyidea.org/tag/python.html">#Python</a>, <a href="https://blog.notmyidea.org/tag/crdt.html">#CRDT</a>, <a href="https://blog.notmyidea.org/tag/sync.html">#Sync</a> - Posté dans la catégorie <a href="https://blog.notmyidea.org/code/">code</a>
|
<a href="https://blog.notmyidea.org/tag/python.html">#Python</a>, <a href="https://blog.notmyidea.org/tag/crdt.html">#CRDT</a>, <a href="https://blog.notmyidea.org/tag/sync.html">#Sync</a>, <a href="https://blog.notmyidea.org/tag/umap.html">#uMap</a> - Posté dans la catégorie <a href="https://blog.notmyidea.org/code/">code</a>
|
||||||
</p>
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<footer>
|
<footer>
|
145
adding-real-time-collaboration-to-umap-second-week.html
Normal file
145
adding-real-time-collaboration-to-umap-second-week.html
Normal file
|
@ -0,0 +1,145 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>Adding Real-Time Collaboration to uMap, second week - Alexis Métaireau</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link rel="stylesheet" href="https://blog.notmyidea.org/theme/css/main.css?v2" type="text/css" />
|
||||||
|
<link href="https://blog.notmyidea.org/feeds/all.atom.xml" type="application/atom+xml" rel="alternate"
|
||||||
|
title="Alexis Métaireau ATOM Feed" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="content">
|
||||||
|
<section id="links">
|
||||||
|
<ul>
|
||||||
|
<li><a class="main" href="/">Alexis Métaireau</a></li>
|
||||||
|
<li><a class=""
|
||||||
|
href="https://blog.notmyidea.org/journal/index.html">Journal</a></li>
|
||||||
|
<li><a class="selected"
|
||||||
|
href="https://blog.notmyidea.org/code/">Code, etc.</a></li>
|
||||||
|
<li><a class=""
|
||||||
|
href="https://blog.notmyidea.org/weeknotes/">Notes hebdo</a></li>
|
||||||
|
<li><a class=""
|
||||||
|
href="https://blog.notmyidea.org/lectures/">Lectures</a></li>
|
||||||
|
<li><a class=""
|
||||||
|
href="https://blog.notmyidea.org/projets.html">Projets</a></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
|
||||||
|
<header>
|
||||||
|
<h1 class="post-title">Adding Real-Time Collaboration to uMap, second week</h1>
|
||||||
|
<p><em>A heads-up on what I've been doing this week on uMap</em></p>
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
|
||||||
|
</header>
|
||||||
|
<article>
|
||||||
|
<p>I continued working on <a href="https://github.com/umap-project/umap/">uMap</a>, an open-source map-making tool to create and share customizable maps, based on Open Street Map data.</p>
|
||||||
|
<p>Here is a summary of what I did:</p>
|
||||||
|
<ul>
|
||||||
|
<li>I reviewed, rebased and made some minor changes to <a href="https://github.com/umap-project/umap/pull/772">a pull request which makes it possible to merge geojson features together</a> ;</li>
|
||||||
|
<li>I’ve explored around the idea of using SQLite inside the browser, for two reasons : it could make it possible to use the <a href="https://www.gaia-gis.it/fossil/libspatialite/index">Spatialite</a> extension, and it might help us to implement a <span class="caps">CRDT</span> with <a href="https://github.com/vlcn-io/cr-sqlite">cr-sqlite</a> ;</li>
|
||||||
|
<li>I learned a lot about the <span class="caps">SIG</span> field. This is a wide ecosystem with lots of moving parts, which I understand a bit better now.</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="the-optimistic-merge-approach">The optimistic-merge approach</h2>
|
||||||
|
<p>There were an open pull request implementing an “optimistic merge”. We spent some time together with Yohan to understand what the pull request is doing, discuss it and made a few changes.</p>
|
||||||
|
<p>Here’s the logic of the changes:</p>
|
||||||
|
<ol>
|
||||||
|
<li>On the server-side, we detect if we have a conflict between the incoming changes and what’s stored on the server (is the last document save fresher than the <code>IF-UNMODIFIED-SINCE</code> header we get ?) ;</li>
|
||||||
|
<li>In case of conflict, find back the reference document in the history (let’s name this the “local reference”) ;</li>
|
||||||
|
<li>Merge the 3 documents together, that is :</li>
|
||||||
|
<li>Find what the the incoming changes are, by comparing the incoming doc to the local reference.</li>
|
||||||
|
<li>Re-apply the changes on top of the latest doc.</li>
|
||||||
|
</ol>
|
||||||
|
<p>One could compare this logic to what happens when you do a <code>git rebase</code>. Here is some pseudo-code:</p>
|
||||||
|
<div class="highlight"><pre><span></span><code><span class="k">def</span> <span class="nf">merge_features</span><span class="p">(</span><span class="n">reference</span><span class="p">:</span> <span class="nb">list</span><span class="p">,</span> <span class="n">latest</span><span class="p">:</span> <span class="nb">list</span><span class="p">,</span> <span class="n">incoming</span><span class="p">:</span> <span class="nb">list</span><span class="p">):</span>
|
||||||
|
<span class="w"> </span><span class="sd">"""Finds the changes between reference and entrant, and reapplies them on top of latest."""</span>
|
||||||
|
<span class="k">if</span> <span class="n">latest</span> <span class="o">==</span> <span class="n">entrant</span><span class="p">:</span>
|
||||||
|
<span class="k">return</span> <span class="n">latest</span>
|
||||||
|
|
||||||
|
<span class="n">reference_deleted</span><span class="p">,</span> <span class="n">incoming_added</span> <span class="o">=</span> <span class="n">get_difference</span><span class="p">(</span><span class="n">reference</span><span class="p">,</span> <span class="n">incoming</span><span class="p">)</span>
|
||||||
|
|
||||||
|
<span class="c1"># Ensure that items changed in the reference weren't also changed in the latest.</span>
|
||||||
|
<span class="k">for</span> <span class="n">removed</span> <span class="ow">in</span> <span class="n">reference_removed</span><span class="p">:</span>
|
||||||
|
<span class="k">if</span> <span class="n">removed</span> <span class="ow">not</span> <span class="ow">in</span> <span class="n">latest</span><span class="p">:</span>
|
||||||
|
<span class="k">raise</span> <span class="n">ConflictError</span>
|
||||||
|
|
||||||
|
<span class="n">merged</span> <span class="o">=</span> <span class="n">copy</span><span class="p">(</span><span class="n">latest</span><span class="p">)</span>
|
||||||
|
<span class="c1"># Reapply the changes on top of the latest.</span>
|
||||||
|
<span class="k">for</span> <span class="n">removed</span> <span class="ow">in</span> <span class="n">reference_removed</span><span class="p">:</span>
|
||||||
|
<span class="n">merged</span><span class="o">.</span><span class="n">delete</span><span class="p">(</span><span class="n">removed</span><span class="p">)</span>
|
||||||
|
|
||||||
|
<span class="k">for</span> <span class="n">added</span> <span class="ow">in</span> <span class="n">incoming_added</span><span class="p">:</span>
|
||||||
|
<span class="n">merged</span><span class="o">.</span><span class="n">append</span><span class="p">(</span><span class="n">added</span><span class="p">)</span>
|
||||||
|
|
||||||
|
<span class="k">return</span> <span class="n">merged</span>
|
||||||
|
</code></pre></div>
|
||||||
|
|
||||||
|
<p>The pull request is not ready yet, as I still want to add tests with real data, and enhance the naming, but that’s a step in the right direction :-)</p>
|
||||||
|
<h2 id="using-sqlite-in-the-browser">Using SQLite in the browser</h2>
|
||||||
|
<p>At the moment, (almost) everything is stored on the server side as GeoJSON files. They are simple to use, to read and to write, and having them on the storage makes it easy to handle multiple revisions.</p>
|
||||||
|
<p>I’ve been asked to challenge this idea for a moment. What if we were using some other technology to store the data? What would that give us? What would be the challenges?</p>
|
||||||
|
<p>I went with SQLite, just to see what this would mean.</p>
|
||||||
|
<ul>
|
||||||
|
<li>SQLite is originally not made to work on a web browser, but thanks to Web Assembly, it’s possible to use it. It’s not <strong>that</strong> big, but the library weights 2Mb.</li>
|
||||||
|
<li>With projects such as <a href="https://github.com/vlcn-io/cr-sqlite"><span class="caps">CR</span>-SQLite</a>, you get a way to add CRDTs on top of SQLite databases. Meaning that the clients could send their changes to other clients or to the server, and that it would be easy to integrate ;</li>
|
||||||
|
<li>The clients could retrieve just some part of the data to the server (e.g. by specifying a bounding box), which gives it the possibility to not load everything in memory if that’s not needed.</li>
|
||||||
|
</ul>
|
||||||
|
<p>I wanted to see how it would work, and what would be the challenges around this technology. I wrote a small application with it. Turns out writing to a local in-browser SQLite works.</p>
|
||||||
|
<p>Here is what it would look like:</p>
|
||||||
|
<ul>
|
||||||
|
<li>Each client will get a copy of the database, alongside a version ;</li>
|
||||||
|
<li>When clients send changes, you can just send the data since the last version ;</li>
|
||||||
|
<li>Databases can be merged without loosing data, the operations done in <span class="caps">SQL</span> will trigger writes to a specific table, which will be used as a <span class="caps">CRDT</span>.</li>
|
||||||
|
</ul>
|
||||||
|
<p>I’m not sure SQLite by itself is useful here. It sure is fun, but I don’t see what we get in comparison with a more classical <span class="caps">CRDT</span> approach, except complexity. The technology is still quite young and rough to the edges, and uses Rust and WebASM, which are still strange beasts to me. </p>
|
||||||
|
<h2 id="related-projects-in-the-sig-field">Related projects in the <span class="caps">SIG</span> field</h2>
|
||||||
|
<p>Here are some interesting projects I’ve found this week :</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://allartk.github.io/leaflet.offline/">Leaflet.offline</a> allows to store the tiles offline ;</li>
|
||||||
|
<li><a href="https://github.com/mapbox/geojson-vt">geojson-vt</a> uses the concept of “vector tiles” I didn’t know about. Tiles can return binary or vectorial data, which can be useful to just get the data in one specific bounding box This allows us for instance to store GeoJSON in vector tiles.</li>
|
||||||
|
<li><a href="https://github.com/mapbox/mapbox-gl-js">mapbox-gl-js</a> makes it possible to render <span class="caps">SIG</span>-related data using WebGL (no connection with Leaflet)</li>
|
||||||
|
<li><a href="https://github.com/BenjaminVadant/leaflet-ugeojson">leaflet-ugeojson</a> and <a href="https://github.com/jieter/Leaflet.Sync">leaflet.Sync</a> allows multiple people to share the same view on a map.</li>
|
||||||
|
</ul>
|
||||||
|
<p>Two libraries seems useful for us:</p>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://github.com/ATran31/Leaflet-GeoSSE">Leaflet-GeoSSE</a> makes it possible to use <span class="caps">SSE</span> (Server Sent Events) to update local data. It uses events (create, update, delete) and keys in the GeoJSON features..</li>
|
||||||
|
<li><a href="https://github.com/perliedman/leaflet-realtime">Leaflet Realtime</a> does something a bit similar, but doesn’t take care of the transport. It’s meant to be used to track remote elements (a <span class="caps">GPS</span> tracker for instance)</li>
|
||||||
|
</ul>
|
||||||
|
<p>I’m noting that:</p>
|
||||||
|
<ul>
|
||||||
|
<li>In the two libraries, unique identifiers are added to the <code>features</code> to allow for updates.</li>
|
||||||
|
<li>None of these libraries makes it possible to track local changes. That’s what’s left to find.</li>
|
||||||
|
</ul>
|
||||||
|
<h2 id="how-to-transport-the-data">How to transport the data?</h2>
|
||||||
|
<p>One of the related subjects is transportation of the data between the client and the server. When we’ll get the local changes, we’ll need to find a way to send this data to the other clients, and ultimately to the server.</p>
|
||||||
|
<p>There are multiple ways to do this, and I spent some time trying to figure out the pros and cons of each approach. Here is a list:</p>
|
||||||
|
<ul>
|
||||||
|
<li><strong>WebRTC, the <span class="caps">P2P</span> approach</strong>. You let the clients talk to each other. I’m not sure where the server fits in this scenario. I’ve yet to figure-out how this works out in real-case scenarii, where you’re working behind a <span class="caps">NAT</span>, for instance. Also, what’s the requirement on <span class="caps">STUN</span> / Turn servers, etc. </li>
|
||||||
|
<li>Using <strong>WebSockets</strong> seems nice at the first glance, but I’m concerned about the resources this could take on the server. The requirement we have on “real-time” is not that big (e.g. if it’s not immediate, it’s okay).</li>
|
||||||
|
<li>Using <strong>Server Sent Events</strong> is another way to solve this, it seems lighter on the client and on the server. The server still needs to keep connexion opens, but I’ve found some proxies which will do that for you, so it would be something to put between the uMap server and the <span class="caps">HTTP</span> server.</li>
|
||||||
|
<li><strong>Polling</strong> means less connexion open, but also that the server will need to keep track of the messages the clients have to get. It’s easily solvable with a Redis queue for instance.</li>
|
||||||
|
</ul>
|
||||||
|
<p>All of these scenarii are possible, and each of them has pros and cons. I’ll be working on a document this week to better understand what’s hidden behind each of these, so we can ultimately make a choice.</p>
|
||||||
|
<h3 id="server-sent-events-sse">Server-Sent Events (<span class="caps">SSE</span>)</h3>
|
||||||
|
<p>Here are some notes about <span class="caps">SSE</span>. I’ve learned that:</p>
|
||||||
|
<ul>
|
||||||
|
<li><span class="caps">SSE</span> makes it so that server connections never ends (so it consumes a process?)</li>
|
||||||
|
<li>There is a library in Django for this, named <a href="https://github.com/fanout/django-eventstream">dajngo-eventstream</a></li>
|
||||||
|
<li><a href="https://channels.readthedocs.io/en/latest/">Django channels</a> aims at using <span class="caps">ASGI</span> for certain parts of the app.</li>
|
||||||
|
<li>You don’t have to handle all this in Django. It’s possible to delegate it to <a href="https://github.com/fastly/pushpin">pushpin</a>, a proxy, using <a href="https://github.com/fanout/django-grip">django-grip</a></li>
|
||||||
|
</ul>
|
||||||
|
<p>It’s questioning me in terms of infrastructure changes.</p>
|
||||||
|
<p>
|
||||||
|
<a href="https://blog.notmyidea.org/tag/python.html">#Python</a>, <a href="https://blog.notmyidea.org/tag/crdt.html">#CRDT</a>, <a href="https://blog.notmyidea.org/tag/sync.html">#Sync</a>, <a href="https://blog.notmyidea.org/tag/umap.html">#uMap</a> - Posté dans la catégorie <a href="https://blog.notmyidea.org/code/">code</a>
|
||||||
|
</p>
|
||||||
|
</article>
|
||||||
|
<footer>
|
||||||
|
<a id="feed" href="/feeds/all.atom.xml"><img src="/theme/rss.svg" /></a>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -33,10 +33,12 @@
|
||||||
<section id="content" class="body">
|
<section id="content" class="body">
|
||||||
<dl>
|
<dl>
|
||||||
<dt>2023</dt>
|
<dt>2023</dt>
|
||||||
|
<dd><a href='https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-second-week.html'>Adding Real-Time Collaboration to uMap, second week</a></dd>
|
||||||
<dd><a href='https://blog.notmyidea.org/2023-semaine-46.html'>2023, Semaine 46</a></dd>
|
<dd><a href='https://blog.notmyidea.org/2023-semaine-46.html'>2023, Semaine 46</a></dd>
|
||||||
<dd><a href='https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html'>Importing a PostgreSQL dump under a different table name</a></dd>
|
<dd><a href='https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html'>Importing a PostgreSQL dump under a different database name</a></dd>
|
||||||
<dd><a href='https://blog.notmyidea.org/deploying-and-customizing-datasette.html'>Deploying and customizing datasette</a></dd>
|
<dd><a href='https://blog.notmyidea.org/deploying-and-customizing-datasette.html'>Deploying and customizing datasette</a></dd>
|
||||||
<dd><a href='https://blog.notmyidea.org/2023-semaine-45.html'>2023, Semaine 45</a></dd>
|
<dd><a href='https://blog.notmyidea.org/2023-semaine-45.html'>2023, Semaine 45</a></dd>
|
||||||
|
<dd><a href='https://blog.notmyidea.org/adding-real-time-collaboration-to-umap-first-week.html'>Adding Real-Time Collaboration to uMap, first week</a></dd>
|
||||||
<dd><a href='https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html'>Using Datasette for tracking my professional activity</a></dd>
|
<dd><a href='https://blog.notmyidea.org/using-datasette-for-tracking-my-professional-activity.html'>Using Datasette for tracking my professional activity</a></dd>
|
||||||
<dd><a href='https://blog.notmyidea.org/2023-semaine-42.html'>2023, Semaine 42</a></dd>
|
<dd><a href='https://blog.notmyidea.org/2023-semaine-42.html'>2023, Semaine 42</a></dd>
|
||||||
<dd><a href='https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html'>Using <span class="caps">DISTINCT</span> in Parent-Child Relationships</a></dd>
|
<dd><a href='https://blog.notmyidea.org/using-distinct-in-parent-child-relationships.html'>Using <span class="caps">DISTINCT</span> in Parent-Child Relationships</a></dd>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
280
articles59.html
Normal file
280
articles59.html
Normal file
|
@ -0,0 +1,280 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<title>Alexis Métaireau</title>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<link rel="stylesheet" href="https://blog.notmyidea.org/theme/css/main.css?v2" type="text/css" />
|
||||||
|
<link href="https://blog.notmyidea.org/feeds/all.atom.xml" type="application/atom+xml" rel="alternate"
|
||||||
|
title="Alexis Métaireau ATOM Feed" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div id="content">
|
||||||
|
<section id="links">
|
||||||
|
<ul>
|
||||||
|
<li><a class="main" href="/">Alexis Métaireau</a></li>
|
||||||
|
<li><a class=""
|
||||||
|
href="https://blog.notmyidea.org/journal/index.html">Journal</a></li>
|
||||||
|
<li><a class=""
|
||||||
|
href="https://blog.notmyidea.org/code/">Code, etc.</a></li>
|
||||||
|
<li><a class=""
|
||||||
|
href="https://blog.notmyidea.org/weeknotes/">Notes hebdo</a></li>
|
||||||
|
<li><a class=""
|
||||||
|
href="https://blog.notmyidea.org/lectures/">Lectures</a></li>
|
||||||
|
<li><a class=""
|
||||||
|
href="https://blog.notmyidea.org/projets.html">Projets</a></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second 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-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
|
Simple commands to help you during an import
|
||||||
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-12T00:00:00+01:00">12 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/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
|
</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/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>
|
||||||
|
<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>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-10-11T00:00:00+02:00">11 octobre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/conversion.html">conversion</a> <h1><a href="https://blog.notmyidea.org/convert-string-to-duration.html" id="page-title">Convert string to duration</a></h1>
|
||||||
|
<p>I found myself wanting to convert a string to a duration (int), for some configuration.</p>
|
||||||
|
<p>Something you can call like this:</p>
|
||||||
|
<div class="highlight"><pre><span></span><code><span class="n">string_to_duration</span><span class="p">(</span><span class="s2">"1d"</span><span class="p">,</span> <span class="n">target</span><span class="o">=</span><span class="s2">"days"</span><span class="p">)</span>
|
||||||
|
<span class="n">string_to_duration</span><span class="p">(</span><span class="s2">"1d"</span><span class="p">,</span> <span class="n">target</span><span class="o">=</span><span class="s2">"hours"</span><span class="p">)</span>
|
||||||
|
<span class="n">string_to_duration</span><span class="p">(</span><span class="s2">"3m"</span><span class="p">,</span> <span class="n">target</span><span class="o">=</span><span class="s2">"hours"</span><span class="p">)</span>
|
||||||
|
<span class="n">string_to_duration</span><span class="p">(</span><span class="s2">"3m"</span><span class="p">,</span> <span class="n">target</span><span class="o">=</span><span class="s2">"minutes"</span><span class="p">)</span>
|
||||||
|
</code></pre></div>
|
||||||
|
|
||||||
|
<p>The code :</p>
|
||||||
|
<div class="highlight"><pre><span></span><code><span class="kn">from</span> <span class="nn">typing</span> <span class="kn">import</span> <span class="n">Literal</span>
|
||||||
|
|
||||||
|
<span class="k">def</span> <span class="nf">string_to_duration</span><span class="p">(</span><span class="n">value</span><span class="p">:</span> <span class="nb">str</span><span class="p">,</span> <span class="n">target</span><span class="p">:</span> <span class="n">Literal</span><span class="p">[</span><span class="s2">"days …</span></code></pre></div>
|
||||||
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-09-27T00:00:00+02:00">27 septembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/python.html">python</a>, <a class='tag' href="https://blog.notmyidea.org/tag/llm.html">llm</a>, <a class='tag' href="https://blog.notmyidea.org/tag/bash.html">bash</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sqlite.html">sqlite</a> <h1><a href="https://blog.notmyidea.org/llm-command-line-tips.html" id="page-title">llm command-line tips</a></h1>
|
||||||
|
<p>I’m using <a href="https://llm.datasette.io">llm</a> more and more, and today I had to find back prompts I used in the past. Here is a command I’ve been using, which allows me to filter the results based on what I want. It leverages <a href="https://sqlutils.datasette.io">sql-utils</a>, a cli tool which is able to …</p>
|
||||||
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-09-27T00:00:00+02:00">27 septembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/znc.html">ZNC</a>, <a class='tag' href="https://blog.notmyidea.org/tag/weechat.html">Weechat</a>, <a class='tag' href="https://blog.notmyidea.org/tag/irc.html">IRC</a> <h1><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" id="page-title">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></h1>
|
||||||
|
<p>It’s been a while since I’ve used <span class="caps">IRC</span>, but I needed to connect to it today to discuss around <a href="https://docs.peewee-orm.com">Peewee</a>.</p>
|
||||||
|
<p>The main issue with <span class="caps">IRC</span> is that you need to be connected to see the answer, and to get the context of the conversation. Unless… you set up …</p>
|
||||||
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-09-22T00:00:00+02:00">22 septembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/llm.html">llm</a> <h1><a href="https://blog.notmyidea.org/how-to-run-the-vigogne-model-locally.html" id="page-title">How to run the vigogne model locally</a></h1>
|
||||||
|
|
||||||
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
|
</section>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-38.html" rel="bookmark" title="Permalink to 2023, Semaine 38">2023, Semaine 38</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/how-to-run-the-vigogne-model-locally.html" rel="bookmark" title="Permalink to How to run the vigogne model locally">How to run the vigogne model locally</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" rel="bookmark" title="Permalink to Creating a simple command line to post snippets on Gitlab">Creating a simple command line to post snippets on Gitlab</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" rel="bookmark" title="Permalink to Creating an online space to share markdown files">Creating an online space to share markdown files</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/eloge-de-lamitie.html" rel="bookmark" title="Permalink to Éloge de l’amitié">Éloge de l’amitié</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/conversion-dun-fichier-svg-en-faviconico.html" rel="bookmark" title="Permalink to Conversion d’un fichier svg en favicon.ico">Conversion d’un fichier svg en favicon.ico</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/decouverte-de-nouveaux-outils-pour-le-developpement-llm-helix-et-plus.html" rel="bookmark" title="Permalink to Découverte de nouveaux outils pour le développement: LLM, Helix et plus">Découverte de nouveaux outils pour le développement: <span class="caps">LLM</span>, Helix et plus</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/running-the-gitlab-ci-locally.html" rel="bookmark" title="Permalink to Running the Gitlab CI locally">Running the Gitlab <span class="caps">CI</span> locally</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/archlinux-et-mise-a-jour-du-keyring.html" rel="bookmark" title="Permalink to ArchLinux et mise à jour du keyring">ArchLinux et mise à jour du keyring</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/python-packaging-with-hatch-pipx-and-zsh-environment-variables.html" rel="bookmark" title="Permalink to Python packaging with Hatch, pipx and Zsh environment variables">Python packaging with Hatch, pipx and Zsh environment variables</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/profiling-and-speeding-up-django-and-pytest.html" rel="bookmark" title="Permalink to Profiling and speeding up Django and Pytest">Profiling and speeding up Django and Pytest</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/les-ignorances-affectives.html" rel="bookmark" title="Permalink to Les ignorances affectives">Les ignorances affectives</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/micropolitiques-des-groupes.html" rel="bookmark" title="Permalink to Micropolitiques des groupes">Micropolitiques des groupes</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/crucial-conversations.html" rel="bookmark" title="Permalink to Crucial Conversations">Crucial Conversations</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/separation-travail-et-loisirs.html" rel="bookmark" title="Permalink to Séparation travail et loisirs">Séparation travail et loisirs</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/tolerance-empathie-et-limites.html" rel="bookmark" title="Permalink to Tolérance, empathie et limites">Tolérance, empathie et limites</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/installation-de-mosquitto-influxdb-telegraf-et-grafana.html" rel="bookmark" title="Permalink to Installation de Mosquitto, InfluxDB, Telegraf et Grafana">Installation de Mosquitto, InfluxDB, Telegraf et Grafana</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/reveil-difficile.html" rel="bookmark" title="Permalink to Réveil difficile">Réveil difficile</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/lere-de-la-critique.html" rel="bookmark" title="Permalink to L’Ère de la critique">L’Ère de la critique</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/fatigue-relationnelle.html" rel="bookmark" title="Permalink to Fatigue relationnelle">Fatigue relationnelle</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/conflit.html" rel="bookmark" title="Permalink to Conflit">Conflit</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/cooperation-et-travail.html" rel="bookmark" title="Permalink to Coopération et travail">Coopération et travail</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/rentree.html" rel="bookmark" title="Permalink to Rentrée">Rentrée</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/faire-de-la-musique-sous-linux.html" rel="bookmark" title="Permalink to Faire de la musique sous Linux">Faire de la musique sous Linux</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/vaccination-et-risques.html" rel="bookmark" title="Permalink to Vaccination et risques">Vaccination et risques</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/facebook-competition-ethique-et-marketing.html" rel="bookmark" title="Permalink to Facebook, compétition, éthique et marketing.">Facebook, compétition, éthique et marketing.</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/routine.html" rel="bookmark" title="Permalink to Routine">Routine</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/reconnexion.html" rel="bookmark" title="Permalink to Reconnexion ?">Reconnexion ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/un-feminisme-decolonial.html" rel="bookmark" title="Permalink to Un féminisme décolonial">Un féminisme décolonial</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/forum-ouvert-animation-et-posture.html" rel="bookmark" title="Permalink to Forum ouvert, animation et posture">Forum ouvert, animation et posture</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/artfevre-2020-defi-artistique-en-fevrier.html" rel="bookmark" title="Permalink to Artfevre 2020 - Défi artistique en février">Artfevre 2020 - Défi artistique en février</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/le-piege-du-developpement-personnel.html" rel="bookmark" title="Permalink to Le piège du développement personnel">Le piège du développement personnel</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/packager-du-python-pour-debian.html" rel="bookmark" title="Permalink to Packager du python pour Debian">Packager du python pour Debian</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/prendre-le-temps.html" rel="bookmark" title="Permalink to Prendre le temps">Prendre le temps</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/limites-horaires.html" rel="bookmark" title="Permalink to Limites horaires">Limites horaires</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/prendre-soin.html" rel="bookmark" title="Permalink to Prendre soin">Prendre soin</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/remettre-les-choses-a-plus-tard.html" rel="bookmark" title="Permalink to Remettre les choses à plus tard">Remettre les choses à plus tard</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/au-dela-de-la-penetration.html" rel="bookmark" title="Permalink to Au delà de la pénétration">Au delà de la pénétration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/la-conjuration-des-egos.html" rel="bookmark" title="Permalink to La conjuration des égos">La conjuration des égos</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/break-technologique.html" rel="bookmark" title="Permalink to Break technologique">Break technologique</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/assurance-chomage.html" rel="bookmark" title="Permalink to Assurance chômage">Assurance chômage</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/prix-libre-et-conscient.html" rel="bookmark" title="Permalink to Prix libre et conscient & culpabilisation">Prix libre et conscient <span class="amp">&</span> culpabilisation</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/ecran-et-dependances.html" rel="bookmark" title="Permalink to Écran et dépendances">Écran et dépendances</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/groupe-de-paroles-hommes.html" rel="bookmark" title="Permalink to Groupe de paroles hommes">Groupe de paroles hommes</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/ignorance-et-vertu.html" rel="bookmark" title="Permalink to Ignorance et vertu">Ignorance et vertu</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/fatigue-et-competition.html" rel="bookmark" title="Permalink to Fatigue et compétition">Fatigue et compétition</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/francis-dupuis-deri-democratie.html" rel="bookmark" title="Permalink to Francis Dupuis Déri, Démocratie.">Francis Dupuis Déri, Démocratie.</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/musique-creation-et-partage.html" rel="bookmark" title="Permalink to Musique, création et partage">Musique, création et partage</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/elitisme-et-apprentissage.html" rel="bookmark" title="Permalink to Élitisme et apprentissage">Élitisme et apprentissage</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/travail-passion-et-limites.html" rel="bookmark" title="Permalink to Travail, passion et limites.">Travail, passion et limites.</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/leffondrement-parlons-en.html" rel="bookmark" title="Permalink to L’effondrement, parlons-en…">L’effondrement, parlons-en…</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/refuser-detre-un-homme.html" rel="bookmark" title="Permalink to Refuser d’être un homme">Refuser d’être un homme</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/antisexisme-ou-antiracisme-un-faux-dilemme.html" rel="bookmark" title="Permalink to Antisexisme ou antiracisme ? Un faux dilemme">Antisexisme ou antiracisme ? Un faux dilemme</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/egologie.html" rel="bookmark" title="Permalink to Égologie">Égologie</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/hommes-anarchistes-face-au-feminisme.html" rel="bookmark" title="Permalink to Hommes Anarchistes face au féminisme">Hommes Anarchistes face au féminisme</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/open-space-technology.html" rel="bookmark" title="Permalink to Open space technology">Open space technology</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/rupture-anarchiste-et-trahison-pro-feministe.html" rel="bookmark" title="Permalink to Rupture anarchiste et trahison pro-féministe">Rupture anarchiste et trahison pro-féministe</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/ours.html" rel="bookmark" title="Permalink to Ours">Ours</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/velo.html" rel="bookmark" title="Permalink to Vélo">Vélo</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/un-espace-des-communs-rennais.html" rel="bookmark" title="Permalink to Un espace des communs Rennais ?">Un espace des communs Rennais ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/comment-la-non-violence-protege-letat.html" rel="bookmark" title="Permalink to Comment la non-violence protège l’état">Comment la non-violence protège l’état</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/un-an.html" rel="bookmark" title="Permalink to Brasserie - petit bilan, après un an d’existence">Brasserie - petit bilan, après un an d’existence</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/de-mozilla-a-la-brasserie-du-vieux-singe.html" rel="bookmark" title="Permalink to De Mozilla à la Brasserie du Vieux Singe">De Mozilla à la Brasserie du Vieux Singe</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/groupement-dachats-partage-dexperience.html" rel="bookmark" title="Permalink to Groupement d’achats & partage d’expérience">Groupement d’achats <span class="amp">&</span> partage d’expérience</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/webnotes.html" rel="bookmark" title="Permalink to Webnotes">Webnotes</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/faire-moins.html" rel="bookmark" title="Permalink to Faire moins">Faire moins</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/neipa-3.html" rel="bookmark" title="Permalink to NEIPA #3"><span class="caps">NEIPA</span> #3</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/neipa-2.html" rel="bookmark" title="Permalink to NEIPA #2"><span class="caps">NEIPA</span> #2</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/larrivee-du-trouble-ou-comment-faire-des-neipa.html" rel="bookmark" title="Permalink to L’arrivée du trouble (ou comment faire des NEIPA ?)">L’arrivée du trouble (ou comment faire des <span class="caps">NEIPA</span> ?)</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/un-club-des-brasseurs-amateurs-rennais.html" rel="bookmark" title="Permalink to Un club des brasseurs amateurs Rennais">Un club des brasseurs amateurs Rennais</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/brasserie-du-vieux-singe-installation-en-cours.html" rel="bookmark" title="Permalink to Brasserie du Vieux Singe — Installation en cours.">Brasserie du Vieux Singe — Installation en cours.</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/comment-est-ce-que-vous-generez-vos-formulaires.html" rel="bookmark" title="Permalink to Comment est-ce que vous générez vos formulaires ?">Comment est-ce que vous générez vos formulaires ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/cloisonnement-des-activites.html" rel="bookmark" title="Permalink to Cloisonnement des activités ?">Cloisonnement des activités ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/avez-vous-confiance-en-ssl.html" rel="bookmark" title="Permalink to Avez vous confiance en SSL?">Avez vous confiance en <span class="caps">SSL</span>?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/focusing-on-what-matters.html" rel="bookmark" title="Permalink to Focusing on what matters">Focusing on what matters</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/retours-sur-un-atelier-zeronet.html" rel="bookmark" title="Permalink to Retours sur un atelier ZeroNet">Retours sur un atelier ZeroNet</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/lhorizon.html" rel="bookmark" title="Permalink to L’horizon">L’horizon</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/service-de-nuages-garantir-lintegrite-des-donnees-via-des-signatures-fr.html" rel="bookmark" title="Permalink to Service de nuages : Garantir l’intégrité des données via des signatures">Service de nuages : Garantir l’intégrité des données via des signatures</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/lets-encrypt-haproxy.html" rel="bookmark" title="Permalink to Let’s Encrypt + HAProxy">Let’s Encrypt + HAProxy</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/ateliers-dautodefense-numerique.html" rel="bookmark" title="Permalink to Ateliers d’autodéfense numérique">Ateliers d’autodéfense numérique</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/le-mail-doit-il-mourir.html" rel="bookmark" title="Permalink to Le mail doit-il mourir ?">Le mail doit-il mourir ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/web-distribution-signing.html" rel="bookmark" title="Permalink to Web distribution signing">Web distribution signing</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/pourquoi-cliquet" rel="bookmark" title="Permalink to Service de nuages : Pourquoi avons-nous fait Cliquet ?">Service de nuages : Pourquoi avons-nous fait Cliquet ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/charte-et-evenements-non-mixtes-au-sein-de-lafpy.html" rel="bookmark" title="Permalink to Charte et événements non-mixtes au sein de l’Afpy">Charte et événements non-mixtes au sein de l’Afpy</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/service-de-nuages-perspectives-pour-lete-fr.html" rel="bookmark" title="Permalink to Service de nuages : Perspectives pour l’été">Service de nuages : Perspectives pour l’été</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/roles.html" rel="bookmark" title="Permalink to Rôles">Rôles</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/service-de-nuages-achievement-unlocked-fr.html" rel="bookmark" title="Permalink to Service de nuages : Achievement unlocked">Service de nuages : Achievement unlocked</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/service-de-nuages-stocker-et-interroger-les-permissions-avec-kinto-fr.html" rel="bookmark" title="Permalink to Service de nuages : Stocker et interroger les permissions avec Kinto">Service de nuages : Stocker et interroger les permissions avec Kinto</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/les-problemes-de-pgp.html" rel="bookmark" title="Permalink to Les problèmes de PGP">Les problèmes de <span class="caps">PGP</span></a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/travail-et-creativite.html" rel="bookmark" title="Permalink to Travail et créativité">Travail et créativité</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/simplifier-les-preuves-didentites.html" rel="bookmark" title="Permalink to Simplifier les preuves d’identités">Simplifier les preuves d’identités</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/phrases-de-passe-et-bonnes-pratiques.html" rel="bookmark" title="Permalink to Phrases de passe et bonnes pratiques">Phrases de passe et bonnes pratiques</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/chiffrement.html" rel="bookmark" title="Permalink to Chiffrement">Chiffrement</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/language.html" rel="bookmark" title="Permalink to Language">Language</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/service-de-nuages-la-gestion-des-permissions-fr.html" rel="bookmark" title="Permalink to Service de nuages : La gestion des permissions">Service de nuages : La gestion des permissions</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/eco-systeme-et-stockage-generique.html" rel="bookmark" title="Permalink to Eco-système et stockage générique">Eco-système et stockage générique</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/service-de-nuages-fr.html" rel="bookmark" title="Permalink to Service de nuages !">Service de nuages !</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/le-secret-du-bonheur.html" rel="bookmark" title="Permalink to Le secret du bonheur">Le secret du bonheur</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/whats-hawk-and-how-to-use-it.html" rel="bookmark" title="Permalink to What’s Hawk and how to use it?">What’s Hawk and how to use it?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/quel-metier-quelle-utilite.html" rel="bookmark" title="Permalink to Quel métier, quelle utilité ?">Quel métier, quelle utilité ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/retours-sur-deux-ans-a-mozilla.html" rel="bookmark" title="Permalink to Retours sur deux ans à Mozilla">Retours sur deux ans à Mozilla</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/des-carnets-desquisse.html" rel="bookmark" title="Permalink to Des carnets d’esquisse">Des carnets d’esquisse</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/francois-elie-quelle-ecole-pour-la-societe-de-linformation.html" rel="bookmark" title="Permalink to François Elie : Quelle école pour la société de l’information ?">François Elie : Quelle école pour la société de l’information ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/notes-economie-libidinale-et-economie-politique.html" rel="bookmark" title="Permalink to Notes: Économie libidinale et économie politique">Notes: Économie libidinale et économie politique</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/le-revenu-de-base.html" rel="bookmark" title="Permalink to Le revenu de base">Le revenu de base</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/des-profils-de-confiance-partout-et-pour-tout.html" rel="bookmark" title="Permalink to Des profils de confiance partout et pour tout ?">Des profils de confiance partout et pour tout ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/implementing-cors-in-cornice.html" rel="bookmark" title="Permalink to Implementing CORS in Cornice">Implementing <span class="caps">CORS</span> in Cornice</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/new-year-python-meme-2012.html" rel="bookmark" title="Permalink to New year python meme, 2012">New year python meme, 2012</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/status-board.html" rel="bookmark" title="Permalink to Status board">Status board</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/habitat-collectif.html" rel="bookmark" title="Permalink to Habitat collectif">Habitat collectif</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/tricot.html" rel="bookmark" title="Permalink to Tricot">Tricot</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/astuces-ssh.html" rel="bookmark" title="Permalink to Astuces SSH">Astuces <span class="caps">SSH</span></a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/gnome-3-extensions.html" rel="bookmark" title="Permalink to Gnome 3, extensions">Gnome 3, extensions</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/groovy.html" rel="bookmark" title="Permalink to “Groovy”"><span class="dquo">“</span>Groovy”</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/notre-dame-des-landes.html" rel="bookmark" title="Permalink to Notre dame des landes">Notre dame des landes</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/semences-paysannes.html" rel="bookmark" title="Permalink to Semences paysannes">Semences paysannes</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/languages.html" rel="bookmark" title="Permalink to Languages">Languages</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/cheese-code-wrap-up.html" rel="bookmark" title="Permalink to Cheese & code - Wrap-up">Cheese <span class="amp">&</span> code - Wrap-up</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/biere-maison.html" rel="bookmark" title="Permalink to Bière maison !">Bière maison !</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/motivation-benevolat-et-participation.html" rel="bookmark" title="Permalink to Motivation, bénévolat et participation">Motivation, bénévolat et participation</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/cheese-code-party-october-20-21.html" rel="bookmark" title="Permalink to Cheese & Code party: October 20-21">Cheese <span class="amp">&</span> Code party: October 20-21</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/circus-sprint-at-pyconfr.html" rel="bookmark" title="Permalink to Circus sprint at PyconFR">Circus sprint at PyconFR</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/pourquoi-mozilla.html" rel="bookmark" title="Permalink to Pourquoi Mozilla?">Pourquoi Mozilla?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/lifestyle.html" rel="bookmark" title="Permalink to Lifestyle">Lifestyle</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/refactoring-cornice.html" rel="bookmark" title="Permalink to Refactoring Cornice">Refactoring Cornice</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/bidouille.html" rel="bookmark" title="Permalink to Bidouille">Bidouille</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/djangocong-2012.html" rel="bookmark" title="Permalink to Djangocong 2012">Djangocong 2012</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/generation-de-formulaires-geolocalises.html" rel="bookmark" title="Permalink to Génération de formulaires, geolocalisés ?">Génération de formulaires, geolocalisés ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/thoughts-about-a-form-generation-service-gis-enabled.html" rel="bookmark" title="Permalink to Thoughts about a form generation service, GIS enabled">Thoughts about a form generation service, <span class="caps">GIS</span> enabled</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/les-dangers-du-livre-numerique.html" rel="bookmark" title="Permalink to Les dangers du livre numérique">Les dangers du livre numérique</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/mozilla-first-months.html" rel="bookmark" title="Permalink to Mozilla, first months">Mozilla, first months</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/introducing-cornice.html" rel="bookmark" title="Permalink to Introducing Cornice">Introducing Cornice</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/quels-usages-pour-linformatique.html" rel="bookmark" title="Permalink to Quels usages pour l’informatique ?">Quels usages pour l’informatique ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/how-are-you-handling-your-shared-expenses.html" rel="bookmark" title="Permalink to How are you handling your shared expenses?">How are you handling your shared expenses?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/la-simplicite-volontaire-contre-le-mythe-de-labondance.html" rel="bookmark" title="Permalink to La simplicité volontaire contre le mythe de l’abondance">La simplicité volontaire contre le mythe de l’abondance</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/using-dbpedia-to-get-languages-influences.html" rel="bookmark" title="Permalink to Using dbpedia to get languages influences">Using dbpedia to get languages influences</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/pelican-9-months-later.html" rel="bookmark" title="Permalink to Pelican, 9 months later">Pelican, 9 months later</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/using-jpype-to-bridge-python-and-java.html" rel="bookmark" title="Permalink to Using JPype to bridge python and Java">Using JPype to bridge python and Java</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/un-coup-de-main-pour-mon-memoire.html" rel="bookmark" title="Permalink to Un coup de main pour mon mémoire !">Un coup de main pour mon mémoire !</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/travailler-moins-pour-mieux-travailler.html" rel="bookmark" title="Permalink to Travailler moins pour mieux travailler ?">Travailler moins pour mieux travailler ?</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/analyse-users-browsing-context-to-build-up-a-web-recommender.html" rel="bookmark" title="Permalink to Analyse users’ browsing context to build up a web recommender">Analyse users’ browsing context to build up a web recommender</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/working-directly-on-your-server-how-to-backup-and-sync-your-dev-environment-with-unison.html" rel="bookmark" title="Permalink to Working directly on your server? How to backup and sync your dev environment with unison">Working directly on your server? How to backup and sync your dev environment with unison</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/wrap-up-of-the-distutils2-paris-sprint.html" rel="bookmark" title="Permalink to Wrap up of the distutils2 paris’ sprint">Wrap up of the distutils2 paris’ sprint</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/pypi-on-couchdb.html" rel="bookmark" title="Permalink to PyPI on CouchDB">PyPI on CouchDB</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/help-me-to-go-to-the-distutils2-paris-sprint.html" rel="bookmark" title="Permalink to Help me to go to the distutils2 paris’ sprint">Help me to go to the distutils2 paris’ sprint</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/fork-you-or-how-the-social-coding-can-help-you.html" rel="bookmark" title="Permalink to Fork you! or how the social coding can help you">Fork you! or how the social coding can help you</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/how-to-reboot-your-bebox-using-the-cli.html" rel="bookmark" title="Permalink to How to reboot your bebox using the CLI">How to reboot your bebox using the <span class="caps">CLI</span></a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/dynamically-change-your-gnome-desktop-wallpaper.html" rel="bookmark" title="Permalink to Dynamically change your gnome desktop wallpaper">Dynamically change your gnome desktop wallpaper</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/how-to-install-nginx-php-53-on-freebsd.html" rel="bookmark" title="Permalink to How to install NGINX + PHP 5.3 on FreeBSD.">How to install <span class="caps">NGINX</span> + <span class="caps">PHP</span> 5.3 on FreeBSD.</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/pelican-a-simple-static-blog-generator-in-python.html" rel="bookmark" title="Permalink to Pelican, a simple static blog generator in python">Pelican, a simple static blog generator in python</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/an-amazing-summer-of-code-working-on-distutils2.html" rel="bookmark" title="Permalink to An amazing summer of code working on distutils2">An amazing summer of code working on distutils2</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/sprinting-on-distutils2-in-tours.html" rel="bookmark" title="Permalink to Sprinting on distutils2 in Tours">Sprinting on distutils2 in Tours</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/introducing-the-distutils2-index-crawlers.html" rel="bookmark" title="Permalink to Introducing the distutils2 index crawlers">Introducing the distutils2 index crawlers</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/use-restructured-text-rest-to-power-your-presentations.html" rel="bookmark" title="Permalink to Use Restructured Text (ReST) to power your presentations">Use Restructured Text (ReST) to power your presentations</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/first-week-working-on-distutils2.html" rel="bookmark" title="Permalink to first week working on distutils2">first week working on distutils2</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/a-distutils2-gsoc.html" rel="bookmark" title="Permalink to A Distutils2 GSoC">A Distutils2 GSoC</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/le-temps-des-graces-courrez-y.html" rel="bookmark" title="Permalink to Le temps des grâces, courrez-y !">Le temps des grâces, courrez-y !</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/semaine-de-lenvironnement-la-consommation-etudiante.html" rel="bookmark" title="Permalink to Semaine de l’environnement: La consommation étudiante">Semaine de l’environnement: La consommation étudiante</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/python-go.html" rel="bookmark" title="Permalink to Python ? go !">Python ? go !</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/amap-media-paniers-bio-a-5e.html" rel="bookmark" title="Permalink to AMAP + Média = Paniers bio à 5e ?!"><span class="caps">AMAP</span> + Média = Paniers bio à 5e ?!</a></li>
|
||||||
|
</ul>
|
||||||
|
</section>
|
||||||
|
<footer>
|
||||||
|
<a id="feed" href="/feeds/all.atom.xml"><img src="/theme/rss.svg" /></a>
|
||||||
|
</footer>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
37
author/.html
37
author/.html
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
|
@ -28,10 +28,16 @@
|
||||||
</ul>
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<h1></h1>
|
<h1></h1>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-21T00:00:00+01:00">21 novembre 2023</time>
|
||||||
|
|
||||||
|
<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-second-week.html" id="page-title">Adding Real-Time Collaboration to uMap, second week</a></h1>
|
||||||
|
A heads-up on what I've been doing this week on uMap
|
||||||
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
<time datetime="2023-11-20T00:00:00+01:00">20 novembre 2023</time>
|
||||||
|
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-table-name.html" id="page-title">Importing a PostgreSQL dump under a different table name</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/postgresql.html">postgresql</a>, <a class='tag' href="https://blog.notmyidea.org/tag/sysadmin.html">sysadmin</a> <h1><a href="https://blog.notmyidea.org/importing-a-postgresql-dump-under-a-different-database-name.html" id="page-title">Importing a PostgreSQL dump under a different database name</a></h1>
|
||||||
Simple commands to help you during an import
|
Simple commands to help you during an import
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
<section class="section index">
|
||||||
|
@ -40,6 +46,12 @@
|
||||||
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
<a class='tag' href="https://blog.notmyidea.org/tag/datasette.html">Datasette</a>, <a class='tag' href="https://blog.notmyidea.org/tag/deployment.html">Deployment</a> <h1><a href="https://blog.notmyidea.org/deploying-and-customizing-datasette.html" id="page-title">Deploying and customizing datasette</a></h1>
|
||||||
Step by step follow-up on how I've deployed it and added custom templates on top.
|
Step by step follow-up on how I've deployed it and added custom templates on top.
|
||||||
</section>
|
</section>
|
||||||
|
<section class="section index">
|
||||||
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
<a class='tag' href="https://blog.notmyidea.org/tag/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">
|
<section class="section index">
|
||||||
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
<time datetime="2023-11-11T00:00:00+01:00">11 novembre 2023</time>
|
||||||
|
|
||||||
|
@ -91,28 +103,9 @@
|
||||||
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
<p><a href="https://github.com/bofenghuang/vigogne">Vigogne</a> is a <span class="caps">LLM</span> model based on <span class="caps">LLAMA2</span>, but trained with french data. As I’m working mostly in french, it might be useful. The current models that I can get locally are in english.</p>
|
||||||
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
<p>The information I’ve found online are scarse and not so easy to follow, so …</p>
|
||||||
</section>
|
</section>
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-18T00:00:00+02:00">18 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-a-simple-command-line-to-post-snippets-on-gitlab.html" id="page-title">Creating a simple command line to post snippets on Gitlab</a></h1>
|
|
||||||
|
|
||||||
<p>I’m trying to get away from Github, and one thing that I find useful is the <a href="https://gist.github.com">gist</a> utility they’re providing. Seems that gitlab provides a similar tool.</p>
|
|
||||||
<p>You can use it using <a href="https://python-gitlab.readthedocs.io/">python-gitlab</a>:</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>pipx<span class="w"> </span>install<span class="w"> </span>python-gitlab
|
|
||||||
</code></pre></div>
|
|
||||||
|
|
||||||
<p>And then :</p>
|
|
||||||
<div class="highlight"><pre><span></span><code>gitlab<span class="w"> </span>snippet<span class="w"> </span>create<span class="w"> </span>--title<span class="o">=</span><span class="s2">"youpi"</span><span class="w"> </span>--file-name<span class="o">=</span><span class="s2">"snip.py"</span><span class="w"> </span>--content<span class="w"> </span>snip …</code></pre></div>
|
|
||||||
</section>
|
|
||||||
<section class="section index">
|
|
||||||
<time datetime="2023-09-17T00:00:00+02:00">17 septembre 2023</time>
|
|
||||||
|
|
||||||
<h1><a href="https://blog.notmyidea.org/creating-an-online-space-to-share-markdown-files.html" id="page-title">Creating an online space to share markdown files</a></h1>
|
|
||||||
|
|
||||||
<p>I wanted to create a space on my server where I can upload markdown files and have them rendered directly, for them to be shared with other people.</p>
|
|
||||||
<p>I stumbled on <a href="https://github.com/ukarim/ngx_markdown_filter_module">the markdown module for nginx</a> which does exactly what I want, but seemed to ask for compilation of nginx …</p>
|
|
||||||
</section>
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://blog.notmyidea.org/convert-string-to-duration.html" rel="bookmark" title="Permalink to Convert string to duration">Convert string to duration</a></li>
|
||||||
|
<li><a href="https://blog.notmyidea.org/2023-semaine-40.html" rel="bookmark" title="Permalink to 2023, Semaine 40">2023, Semaine 40</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
<li><a href="https://blog.notmyidea.org/2023-semaine-39.html" rel="bookmark" title="Permalink to 2023, Semaine 39">2023, Semaine 39</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
<li><a href="https://blog.notmyidea.org/llm-command-line-tips.html" rel="bookmark" title="Permalink to llm command-line tips">llm command-line tips</a></li>
|
||||||
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
<li><a href="https://blog.notmyidea.org/setting-up-a-irc-bouncer-with-znc.html" rel="bookmark" title="Permalink to Setting up a IRC Bouncer with ZNC">Setting up a <span class="caps">IRC</span> Bouncer with <span class="caps">ZNC</span></a></li>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue