From: Alan Schmitt <alan.schmitt@polytechnique.org>
To: "lwn" <lwn@lwn.net>, caml-list@inria.fr
Subject: [Caml-list] Attn: Development Editor, Latest OCaml Weekly News
Date: Tue, 18 Aug 2026 08:56:34 +0200 [thread overview]
Message-ID: <m2h5krapct.fsf@petitepomme.net> (raw)
[-- Attachment #1.1.1: Type: text/plain, Size: 21003 bytes --]
Hello
Here is the latest OCaml Weekly News, for the week of August 11 to 18,
2026.
Table of Contents
─────────────────
Affect 0.0.0 – A streamlined and natural concurrency model for OCaml
Slipshow!
intel_hex.0.4
Bisect_ppx_ng 3 – fork of bisect_ppx
OSEC-2026-17: mirage-crypto-ec: Timing leak in NIST elliptic curves scalar multiplication
Old CWN
Affect 0.0.0 – A streamlined and natural concurrency model for OCaml
════════════════════════════════════════════════════════════════════
Archive:
<https://discuss.ocaml.org/t/ann-affect-0-0-0-a-streamlined-and-natural-concurrency-model-for-ocaml/18451/1>
Daniel Bünzli announced
───────────────────────
Hello,
It's my pleasure to announce the first release of `affect':
Affect is a streamlined and natural concurrency model for
OCaml.
It provides parallel asynchronous functions and
first-class synchronous actions to orchestrate them. The
resulting concurrency model has structured cooperative
concurrency, structured cancellation and structured effect
handling.
Affect is distributed under the ISC license. It has no
dependencies. It optionally depends on the `cmdliner'
library and the OCaml `unix' library.
The goal of `affect' is to provide a short and ergonomic [concurrency
model] and composable synchronization primitives to program parallel
and concurrent systems in OCaml. It is:
• Streamlined, because it strives to minimize the exposed
abstractions, terminology and conceptual overhead.
• Natural, because it bases its central concurrent computational
abstraction on the substrate of the OCaml language: functions.
If the now almost 40 years old [CML events] mean some thing to you,
one way of seing affect is just: structured and cancellable parallel
asynchronous function calls whose results can be synchronized with CML
events (actions in affect).
If CML events don't mean anything to you but Go channels do, then the
take away is that those can be implemented with affect's first-class
synchronous actions. However actions give you more than that. They
give you a general composable synchronization mecanism which you can
understand as:
An extensible `select'.
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
In affect you can for example select to wait between the [result] of
an asynchronous function, the [cancellation] of another one, a
[timeout], a [signal delivery], a set-once cell [becoming set], a file
descriptor [becoming readable] and a [funny primitive] action of your
own.
The lock-free implemention of actions follows this 2009 [paper] with
some ideas taken from the [Guile implementation] of CML. Like the
latter, one thing that affect does is to change the CML
terminology. We find the event-based terminology to be *very*
confusing for thinking about these mecanisms. To fully Milnerize
OCaml, we drew inspiration from [CCS] and replaced event by /action/,
and channel by /port/. See the [design notes] for more information
about these naming changes.
Beyond trying to expose a clear and accessible concurrency model, what
distinguishes affect from the first generation of OCaml 5 concurrency
libraries is that:
1. It fully embraces the new parallel nature of the OCaml runtime
system and makes no distinction between concurrency and
parallelism.
2. It exposes its high-level abstractions, namely first-class
synchronous actions and asynchronous functions, for others to be
handled. And these mechanisms being parallel-safe and lock-free,
not much work is needed to integrate them, little constraints are
imposed on the context where they can be used.
This notably means that:
• If you are unhappy about just using an invocation of the [built-in
scheduler] in the main of your program or unhappy about using it at
all, you can reasonably easily reclaim control over your
application's concurrent and parallel architecture while still using
eco-system libraries that would make use these abstractions.
For example [this test] has code and examples showing how to handle
actions or running a root asynchronous function in a thread by
yourself. Those can even interact with a parallel invocation of the
built-in scheduler if that's your thing. This [other test] shows
that two instances of the scheduler can run along side, either in
their isolate realm or even communicating via ports.
• Since at some point it would be good to agree on more than bytes, it
must be possible for existing schedulers to handle affect's
high-level abstractions or a subset of them. For example to handle
actions, only a parallel-safe closure to schedule the work to
unblock in your scheduler has to be provided at action invocation
handling time.
TL;DR. You get a nice and ergonomic concurrency model *and*
flexiblity.
Regarding the release, while I think that affect is now finally
conceptually well rooted, it's early time and it has not been used
much. The aim of this first release was to have a fully working and
usable implementation of a design that has been rotting for two years
in a repo and in my thoughts. This means that in the current state:
• You likely don't want to use it in production[^1].
• Changes should still be expected. Especially if you fiddle with the
private APIs. Early adopters and questions on this forum are
welcome. Get in touch on the issue tracker if you are trying things
and running into trouble.
• The library will require the latest version of OCaml for a couple of
releases.
• One thing that didn't make it to the release is to replace the use
of `select(2)' in the cooperative [~Unix~ compatibility module]. The
initial plan was to use epoll/kqueue there, it's still the plan.
• The current implementation went for clarity and correctness, if not
naïvety. If you don't see shining performance, there are quite a few
dimensions where it can be improved. Some structures can be
specialized, more imperative data structures can be used (not always
a win though), some atomics can perhaps be retracted, simplistic or
dumb scheduling strategies can be made more complex, etc. And of
course you can always BYOS (the mono-threaded implementation of the
full model mentioned earlier [is ~100 loc]).
The code base should be reasonably approachable, for now it's 690
loc if you consider only the core modules for action and
asynchronous functions; the parallel work stealing scheduler adds
380 more. But the devil is in the interleaving :–)
Happarapyllecomputling!
This first release was made possible thanks to a grant from the [OCaml
Software Foundation]. I also thank my [donors] for their
support. Everyone's support being essential for these bits to get
worked on and be distributed.
• Homepage: <https://erratique.ch/software/affect>
• Docs: <https://erratique.ch/software/affect/doc> or `odig doc
affect'
• Install: `opam install affect' ([opam PR])
Best,
Daniel
[^1]: I'll be comfortable telling you to do so when I have an
affect-based connector for my IO agnostic [HTTP library] deployed on a
live system :-)
[result]
<https://erratique.ch/software/affect/doc/Affect/Fun/Async/index.html#get_actions>
[cancellation]
<https://erratique.ch/software/affect/doc/Affect/Fun/Async/index.html#cancellation_actions>
[timeout]
<https://erratique.ch/software/affect/doc/Affect_unix/Mtime/index.html#val-wait_for'>
[signal delivery]
<https://erratique.ch/software/affect/doc/Affect_unix/Unix/Signal/index.html#val-wait'>
[becoming set]
<https://erratique.ch/software/affect/doc/Affect/Cell/Once/index.html#actions>
[becoming readable]
<https://erratique.ch/software/affect/doc/Affect_unix/Unix/index.html#action>
[funny primitive]
<https://erratique.ch/software/affect/doc/Affect/Action/Private/Action/Primitive/index.html>
[paper] <https://doi.org/10.1145/1596550.1596588>
[Guile implementation]
<https://wingolog.org/archives/2017/06/29/a-new-concurrent-ml>
[CCS] <https://en.wikipedia.org/wiki/Calculus_of_communicating_systems>
[design notes] <https://erratique.ch/software/affect/doc/design.html>
[built-in scheduler]
<https://erratique.ch/software/affect/doc/Affect/Fun/Async/index.html#running>
[this test]
<https://github.com/dbuenzli/affect/blob/056f05931e54321b41f220afa756c7f77a18a2fc/test/test_thread.ml>
[other test]
<https://github.com/dbuenzli/affect/blob/cfc33ce71f1ec022e9ab1acf06cfa26f5766412e/test/test_multi_scheduler.ml#L36>
[is ~100 loc]
<https://github.com/dbuenzli/affect/blob/cfc33ce71f1ec022e9ab1acf06cfa26f5766412e/test/test_thread.ml#L88-L201>
[OCaml Software Foundation] <https://ocaml-sf.org/>
[donors] <https://github.com/sponsors/dbuenzli>
Slipshow!
═════════
Archive: <https://discuss.ocaml.org/t/ann-slipshow/16337/26>
Continuing this thread, Paul-Elliot announced
─────────────────────────────────────────────
It is through the epic voice of an old bard that I announce the next
release of Slipshow:
Slipshow 0.12.0: The Lord of the Slips: The Two Editors
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
The rivalry between the bearded Emacs users and the pointy-eared VS
Code users has been pointlessly raging for ages now. Both factions
wanted to prove their superiority as Slipshow editors, and claim the
highest typo kill-count.
Pointy-eared VS Code users had an official Slipshow extension, with a
live preview that did not require the Slipshow binary. However, that
embedded live preview had limitations, eg with multi-file
presentations, and more importantly had no LSP support.
Bearded Emacs users could use the built-in LSP client, `eglot'. But
without an official mode, it was impossible to extend the feature set
beyond strict LSP.
So, this release of Slipshow comes with two companions:
• Slipshow's VS Code extension, available in [VS Code's]
[Marketplaces] (and which now requires a slipshow binary)
• Slipshow's Emacs [major mode], installable with `(use-package
slipshow-mode :vc (:url
"https://github.com/panglesd/slipshow-emacs-mode" :rev :newest))'
They allow much more cooperation between the editor and the preview
server. For instance, there is now a simple setting to choose between
refreshing the preview on each keystroke, or on save. Two new commands
are available to control the presentation directly from the editor.
One LSP to rule them all, one server to sync them,
One keystroke to step through slips, and in the editor
bind them.
Another improvement worth mentioning is that the workflow for saving
drawings has been greatly improved: You can now save your drawings
simply by clicking the `Save' button, and they are now anchored where
they are included (so, if your textual content changes, drawings are
moved accordingly).
You shall not desynchronize text and drawing content!
Here is a proof that both editors are great, where a drawing is
recorded, saved, and content is added beforehand:
<https://github.com/user-attachments/assets/c4f0131d-7eda-4bdd-874e-50c1872580eb>
<https://github.com/user-attachments/assets/d4164c3f-f63a-40fb-b03b-add4f0f32435>
And as always, thanks so much to NLNet for the support. The vast
amount of time it took me to learn Emacs Lisp would not be reasonable
without their generous support!
(If you're a hairy-footed user of a third, just as great, editor and
you'd like to join the Fellowslip, please get in contact, I'd be glad
to have some help!)
Here is the full changelog:
[VS Code's]
<https://marketplace.visualstudio.com/items?itemName=Slipshow.slipshow>
[Marketplaces] <https://open-vsx.org/extension/Slipshow/slipshow>
[major mode] <https://github.com/panglesd/slipshow-emacs-mode>
Added
╌╌╌╌╌
• `auto-continue' attribute to automatically continue to the next
action (#240)
• a `~duration:FLOAT' argument to the `step' action. (#241)
• LSP:
• Two commands to make the presentation preview go forward/backward
from the editor (#242)
• Consider `.slp' as input files. (#244)
• A configuration for refreshing the preview on each keystroke, or
on save. (#248)
• Watch dependencies for change and refresh preview (#252)
Changed
╌╌╌╌╌╌╌
• Drawings are now saved through the preview server (#249, #254)
• Drawings are anchored to the point where the drawing has been
added. (#262)
• Don't spam with notifications to tell about the URL of the slipshow
server (#265)
Fixed
╌╌╌╌╌
• Fix action detection in LSP in multifile settings (#243)
• Fix external themes in serve mode (#245)
• Fix LSP preview with multiple files when some of them are not opened
(#250)
Docs
╌╌╌╌
• Greatly improve the quality of the English in documentation (#255,
@Synchro)
intel_hex.0.4
═════════════
Archive: <https://discuss.ocaml.org/t/ann-intel-hex-0-4/18456/1>
Mikhail announced
─────────────────
<https://camo.githubusercontent.com/c5d56dc1ed218120c9829bb9551857f4308de541f20f6d21a12959bf0abe1dde/68747470733a2f2f692e6962622e636f2f6b7668375034702f6c617374696865786c6f68676f2d3030312e706e67>
/is new pretty logo…/
Yo!
I am happy to announce the new release of [Intel_hex] library. It is a
Intel HEX manipulation library for parsing and generating Intel HEX
(also known as IHEX) objects. This format is commonly used to
represent compiled program code and data that is loaded into a
microcontroller, flash memory, or ROM in embedded systems programming.
This new version of the library has been completely rewritten,
rethought and tested.
[Intel_hex] <https://github.com/dx3mod/intel_hex>
In use
╌╌╌╌╌╌
Here is an example of how to create an Intel HEX file with test data
and print it:
┌────
│ Intel_hex.Record.
│ [
│ Extended_linear_address 0x0F;
│ Data (0x0000, "Hello ");
│ Data (0x0007, "World!");
│ End_of_file;
│ ]
│ |> Intel_hex.Encode.into_string
│ |> print_endline
└────
┌────
│ :02000004000FEB
│ :0600000048656C6C6F20E6
│ :06000700576F726C6421CA
│ :00000001FF
└────
Also, you can read Intel HEX objects from any source, of course.
┌────
│ In_channel.with_open_text "data.hex" Intel_hex.Decode.from_channel
└────
┌────
│ - : Intel_hex.Object.t =
│ [Intel_hex.Record.Extended_linear_address(0x000F);
│ Intel_hex.Record.Data(0x0000, "Hello ");
│ Intel_hex.Record.Data(0x0007, "World!");
│ Intel_hex.Record.End_of_file]
└────
New features
╌╌╌╌╌╌╌╌╌╌╌╌
[*Into/from blobs*]
┌────
│ Intel_hex.Object.from_string ~block_size:6 "Hello World! I love it!"
└────
┌────
│ - : Intel_hex.Object.t =
│ [Intel_hex.Record.Data(0x0000, "Hello ");
│ Intel_hex.Record.Data(0x0006, "World!");
│ Intel_hex.Record.Data(0x000C, " I lov");
│ Intel_hex.Record.Data(0x0012, "e it!");
│ Intel_hex.Record.End_of_file]
└────
[*Into/from blobs*]
<https://ocaml.org/p/intel_hex/latest/doc/intel_hex/Intel_hex/Object/index.html#from/into-to-linear-blob-memory>
Installation
╌╌╌╌╌╌╌╌╌╌╌╌
You can install the `intel_hex' library using the [OPAM] package
manager or any other method you prefer.
┌────
│ $ opam install intel_hex.0.4
└────
[OPAM] <https://opam.ocaml.org/>
Bisect_ppx_ng 3 – fork of bisect_ppx
════════════════════════════════════
Archive:
<https://discuss.ocaml.org/t/bisect-ppx-ng-3-fork-of-bisect-ppx/18459/1>
Kakadu announced
────────────────
Bisect_ppx_ng 3.0.0 [hit] opam. While original [bisect_ppx] is not
upgraded for OCaml 5.5 I'm going to use my fork for calculating
coverage.
Please, test it and send your PRs to
<https://github.com/Kakadu/bisect_ppx_ng>
• It should work for 4.14, 5.3 - 5.5
• ReasonML support could be broken
[hit] <https://github.com/ocaml/opam-repository/pull/30463>
[bisect_ppx]
<https://discuss.ocaml.org/t/bisect-ppx-ocaml-code-coverage-with-nice-html-reports/728>
OSEC-2026-17: mirage-crypto-ec: Timing leak in NIST elliptic curves scalar multiplication
═════════════════════════════════════════════════════════════════════════════════════════
Hannes Mehnert announced
────────────────────────
A new security advisory is available. As usual, it can be found at
<https://github.com/ocaml/security-advisories> and
<https://osv.dev/list?q=&ecosystem=opam>
Best,
Hannes
┌────
│ id: OSEC-2026-17
│ modified: "2026-08-17T09:45:00Z"
│ published: "2026-08-17T09:45:00Z"
│ severity: "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:N"
│ severity_score: "5.9 (Medium)"
│ affected: "mirage-crypto-ec" {>= "0.11.3" & < "2.4.0"}
│ events: [
│ [
│ git "https://github.com/mirage/mirage-crypto" [
│ [fixed "1a61aeee7f593ec067612df1739ec905eab0450f"]
│ ]
│ ]
│ ]
│ credits: [
│ [reporter "Eric Ebinger"]
│ [coordinator "Hannes Mehnert"]
│ [remediation_reviewer "Virgile Robles"]
│ [remediation_developer "Eric Ebinger"]
│ ]
│ cwe: [ CWE-208 ]
│ affected_bindings: [
│ "Mirage_crypto_ec.P256.Dh.share"
│ "Mirage_crypto_ec.P256.Dsa.generate"
│ "Mirage_crypto_ec.P256.Dsa.sign"
│ "Mirage_crypto_ec.P256.Dsa.pub_of_priv"
│ "Mirage_crypto_ec.P384.Dh.share"
│ "Mirage_crypto_ec.P384.Dsa.generate"
│ "Mirage_crypto_ec.P384.Dsa.sign"
│ "Mirage_crypto_ec.P384.Dsa.pub_of_priv"
│ "Mirage_crypto_ec.P521.Dh.share"
│ "Mirage_crypto_ec.P521.Dsa.generate"
│ "Mirage_crypto_ec.P521.Dsa.sign"
│ "Mirage_crypto_ec.P521.Dsa.pub_of_priv"
│ ]
└────
Timing leak in NIST elliptic curves scalar multiplication
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌
The scalar multiplication includes pre-computed tables for speedup
(introduced in mirage-crypto-ec 0.11.3). The lookup algorithm for
these tables performs secret-dependent reads instead of scanning the
entire table.
◊ Solution
Instead of using the index `n - 1', where `n' is secret-dependent, use
`i - 1', as done in the Go reference implementation. If `n' is 0,
there is a out-of-bounds read before the patch.
◊ Timeline
• 2026-08-12: report by Eric Ebinger to security@ocaml.org
• 2026-08-17: release of mirage-crypto-ec 2.4.0 and this advisory
Old CWN
═══════
If you happen to miss a CWN, you can [send me a message] and I'll mail
it to you, or go take a look at [the archive] or the [RSS feed of the
archives].
If you also wish to receive it every week by mail, you may subscribe
to the [caml-list].
[Alan Schmitt]
[send me a message] <mailto:alan.schmitt@polytechnique.org>
[the archive] <https://alan.petitepomme.net/cwn/>
[RSS feed of the archives] <https://alan.petitepomme.net/cwn/cwn.rss>
[caml-list] <https://sympa.inria.fr/sympa/info/caml-list>
[Alan Schmitt] <https://alan.petitepomme.net/>
[-- Attachment #1.1.2: Type: text/html, Size: 34904 bytes --]
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 568 bytes --]
next reply other threads:[~2026-08-18 6:57 UTC|newest]
Thread overview: 306+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-18 6:56 Alan Schmitt [this message]
-- strict thread matches above, loose matches on Subject: below --
2026-08-11 12:25 Alan Schmitt
2026-08-04 7:44 Alan Schmitt
2026-07-28 12:44 Alan Schmitt
2026-07-21 16:02 Alan Schmitt
2026-07-14 7:16 Alan Schmitt
2026-07-07 13:29 Alan Schmitt
2026-06-30 13:25 Alan Schmitt
2026-06-23 10:07 Alan Schmitt
2026-06-16 10:51 Alan Schmitt
2026-06-09 7:39 Alan Schmitt
2026-06-02 9:01 Alan Schmitt
2026-05-26 7:36 Alan Schmitt
2026-05-19 8:52 Alan Schmitt
2026-05-12 7:28 Alan Schmitt
2026-05-05 9:35 Alan Schmitt
2026-04-28 7:59 Alan Schmitt
2026-04-21 9:34 Alan Schmitt
2026-04-14 9:50 Alan Schmitt
2026-04-07 9:32 Alan Schmitt
2026-03-31 6:10 Alan Schmitt
2026-03-24 9:58 Alan Schmitt
2026-03-17 14:39 Alan Schmitt
2026-03-10 13:30 Alan Schmitt
2026-03-03 13:54 Alan Schmitt
2026-02-24 13:36 Alan Schmitt
2026-02-17 13:47 Alan Schmitt
2026-02-10 10:36 Alan Schmitt
2026-02-03 10:04 Alan Schmitt
2026-01-27 12:41 Alan Schmitt
2026-01-20 9:19 Alan Schmitt
2026-01-13 8:27 Alan Schmitt
2026-01-06 13:14 Alan Schmitt
2025-12-30 9:33 Alan Schmitt
2025-12-23 11:00 Alan Schmitt
2025-12-16 13:30 Alan Schmitt
2025-12-09 15:04 Alan Schmitt
2025-12-02 10:39 Alan Schmitt
2025-11-25 13:49 Alan Schmitt
2025-11-18 14:01 Alan Schmitt
2025-11-11 9:49 Alan Schmitt
2025-11-04 13:21 Alan Schmitt
2025-10-28 13:30 Alan Schmitt
2025-10-21 9:17 Alan Schmitt
2025-10-14 9:56 Alan Schmitt
2025-10-07 12:22 Alan Schmitt
2025-09-30 13:12 Alan Schmitt
2025-09-23 13:23 Alan Schmitt
2025-09-16 11:52 Alan Schmitt
2025-09-09 12:30 Alan Schmitt
2025-09-02 12:23 Alan Schmitt
2025-08-26 12:34 Alan Schmitt
2025-08-19 12:20 Alan Schmitt
2025-08-12 15:32 Alan Schmitt
2025-08-05 8:17 Alan Schmitt
2025-07-29 9:36 Alan Schmitt
2025-07-22 12:07 Alan Schmitt
2025-07-15 17:14 Alan Schmitt
2025-07-08 12:45 Alan Schmitt
2025-07-01 11:16 Alan Schmitt
2025-06-24 14:02 Alan Schmitt
2025-06-17 6:44 Alan Schmitt
2025-06-10 13:36 Alan Schmitt
2025-06-03 9:19 Alan Schmitt
2025-05-27 9:22 Alan Schmitt
2025-05-20 11:52 Alan Schmitt
2025-05-13 9:40 Alan Schmitt
2025-05-06 7:24 Alan Schmitt
2025-04-29 8:39 Alan Schmitt
2025-04-22 11:50 Alan Schmitt
2025-04-15 9:51 Alan Schmitt
2025-04-08 13:14 Alan Schmitt
2025-04-01 9:12 Alan Schmitt
2025-03-25 8:06 Alan Schmitt
2025-03-18 10:18 Alan Schmitt
2025-03-11 15:00 Alan Schmitt
2025-03-04 14:01 Alan Schmitt
2025-02-25 10:36 Alan Schmitt
2025-02-18 14:33 Alan Schmitt
2025-02-11 7:17 Alan Schmitt
2025-02-04 12:05 Alan Schmitt
2025-01-28 13:24 Alan Schmitt
2025-01-21 15:47 Alan Schmitt
2025-01-14 8:20 Alan Schmitt
2025-01-07 17:26 Alan Schmitt
2024-12-31 8:03 Alan Schmitt
2024-12-24 8:55 Alan Schmitt
2024-12-17 13:05 Alan Schmitt
2024-12-10 13:48 Alan Schmitt
2024-12-03 14:44 Alan Schmitt
2024-11-26 8:30 Alan Schmitt
2024-11-19 6:52 Alan Schmitt
2024-11-12 15:00 Alan Schmitt
2024-11-05 13:22 Alan Schmitt
2024-10-29 13:30 Alan Schmitt
2024-10-22 12:42 Alan Schmitt
2024-10-15 13:31 Alan Schmitt
2024-10-08 10:56 Alan Schmitt
2024-10-01 13:37 Alan Schmitt
2024-09-24 13:18 Alan Schmitt
2024-09-17 14:02 Alan Schmitt
2024-09-10 13:55 Alan Schmitt
2024-09-03 8:24 Alan Schmitt
2024-08-27 9:02 Alan Schmitt
2024-08-20 9:29 Alan Schmitt
2024-08-13 13:21 Alan Schmitt
2024-08-06 9:00 Alan Schmitt
2024-07-30 13:26 Alan Schmitt
2024-07-23 13:30 Alan Schmitt
2024-07-16 6:24 Alan Schmitt
2024-07-09 9:19 Alan Schmitt
2024-07-02 7:30 Alan Schmitt
2024-06-25 13:58 Alan Schmitt
2024-06-18 13:05 Alan Schmitt
2024-06-11 15:04 Alan Schmitt
2024-06-04 13:26 Alan Schmitt
2024-05-28 9:07 Alan Schmitt
2024-05-21 13:07 Alan Schmitt
2024-05-14 13:25 Alan Schmitt
2024-05-07 7:30 Alan Schmitt
2024-04-30 7:22 Alan Schmitt
2024-04-23 12:17 Alan Schmitt
2024-04-16 12:00 Alan Schmitt
2024-04-09 9:15 Alan Schmitt
2024-04-02 14:31 Alan Schmitt
2024-03-26 6:32 Alan Schmitt
2024-03-19 15:09 Alan Schmitt
2024-03-12 10:31 Alan Schmitt
2024-03-05 14:50 Alan Schmitt
2024-02-27 13:53 Alan Schmitt
2024-02-20 9:12 Alan Schmitt
2024-02-13 8:42 Alan Schmitt
2024-02-06 15:14 Alan Schmitt
2024-01-30 14:16 Alan Schmitt
2024-01-23 9:45 Alan Schmitt
2024-01-16 10:01 Alan Schmitt
2024-01-09 13:40 Alan Schmitt
2024-01-02 8:59 Alan Schmitt
2023-12-26 10:12 Alan Schmitt
2023-12-19 10:10 Alan Schmitt
2023-12-12 10:20 Alan Schmitt
2023-12-05 10:13 Alan Schmitt
2023-11-28 9:09 Alan Schmitt
2023-11-21 7:47 Alan Schmitt
2023-11-14 13:42 Alan Schmitt
2023-11-07 10:31 Alan Schmitt
2023-10-31 10:43 Alan Schmitt
2023-10-24 9:17 Alan Schmitt
2023-10-17 7:46 Alan Schmitt
2023-10-10 7:48 Alan Schmitt
2023-10-03 13:00 Alan Schmitt
2023-09-19 8:54 Alan Schmitt
2023-09-12 13:21 Alan Schmitt
2023-09-05 9:00 Alan Schmitt
2023-08-29 13:04 Alan Schmitt
2023-08-22 9:20 Alan Schmitt
2023-08-15 16:33 Alan Schmitt
2023-08-08 8:53 Alan Schmitt
2023-08-01 7:13 Alan Schmitt
2023-07-25 8:45 Alan Schmitt
2023-07-11 8:45 Alan Schmitt
2023-07-04 9:18 Alan Schmitt
2023-06-27 8:38 Alan Schmitt
2023-06-20 9:52 Alan Schmitt
2023-06-13 7:09 Alan Schmitt
2023-06-06 14:22 Alan Schmitt
2023-05-30 15:43 Alan Schmitt
2023-05-23 9:41 Alan Schmitt
2023-05-16 13:05 Alan Schmitt
2023-05-09 11:49 Alan Schmitt
2023-05-02 8:01 Alan Schmitt
2023-04-25 9:25 Alan Schmitt
2023-04-18 8:50 Alan Schmitt
2023-04-11 12:41 Alan Schmitt
2023-04-04 8:45 Alan Schmitt
2023-03-28 7:21 Alan Schmitt
2023-03-21 10:07 Alan Schmitt
2023-03-14 9:52 Alan Schmitt
2023-03-07 9:02 Alan Schmitt
2023-02-28 14:38 Alan Schmitt
2023-02-21 10:19 Alan Schmitt
2023-02-14 8:12 Alan Schmitt
2023-02-07 8:16 Alan Schmitt
2023-01-31 6:44 Alan Schmitt
2023-01-24 8:57 Alan Schmitt
2023-01-17 8:37 Alan Schmitt
2022-11-29 14:53 Alan Schmitt
2022-09-27 7:17 Alan Schmitt
2022-09-20 14:01 Alan Schmitt
2022-09-13 8:40 Alan Schmitt
2022-08-23 8:06 Alan Schmitt
2022-08-16 8:51 Alan Schmitt
2022-08-09 8:02 Alan Schmitt
2022-08-02 9:51 Alan Schmitt
2022-07-26 17:54 Alan Schmitt
2022-07-19 8:58 Alan Schmitt
2022-07-12 7:59 Alan Schmitt
2022-07-05 7:42 Alan Schmitt
2022-06-28 7:37 Alan Schmitt
2022-06-21 8:06 Alan Schmitt
2022-06-14 9:29 Alan Schmitt
2022-06-07 10:15 Alan Schmitt
2022-05-31 12:29 Alan Schmitt
2022-05-24 8:04 Alan Schmitt
2022-05-17 7:12 Alan Schmitt
2022-05-10 12:30 Alan Schmitt
2022-05-03 9:11 Alan Schmitt
2022-04-26 6:44 Alan Schmitt
2022-04-19 5:34 Alan Schmitt
2022-04-12 8:10 Alan Schmitt
2022-04-05 11:50 Alan Schmitt
2022-03-29 7:42 Alan Schmitt
2022-03-22 13:01 Alan Schmitt
2022-03-15 9:59 Alan Schmitt
2022-03-01 13:54 Alan Schmitt
2022-02-22 12:43 Alan Schmitt
2022-02-08 13:16 Alan Schmitt
2022-02-01 13:00 Alan Schmitt
2022-01-25 12:44 Alan Schmitt
2022-01-11 8:20 Alan Schmitt
2022-01-04 7:56 Alan Schmitt
2021-12-28 8:59 Alan Schmitt
2021-12-21 9:11 Alan Schmitt
2021-12-14 11:02 Alan Schmitt
2021-11-30 10:51 Alan Schmitt
2021-11-16 8:41 Alan Schmitt
2021-11-09 10:08 Alan Schmitt
2021-11-02 8:50 Alan Schmitt
2021-10-19 8:23 Alan Schmitt
2021-09-28 6:37 Alan Schmitt
2021-09-21 9:09 Alan Schmitt
2021-09-07 13:23 Alan Schmitt
2021-08-24 13:44 Alan Schmitt
2021-08-17 6:24 Alan Schmitt
2021-08-10 16:47 Alan Schmitt
2021-07-27 8:54 Alan Schmitt
2021-07-20 12:58 Alan Schmitt
2021-07-06 12:33 Alan Schmitt
2021-06-29 12:24 Alan Schmitt
2021-06-22 9:04 Alan Schmitt
2021-06-01 9:23 Alan Schmitt
2021-05-25 7:30 Alan Schmitt
2021-05-11 14:47 Alan Schmitt
2021-05-04 8:57 Alan Schmitt
2021-04-27 14:26 Alan Schmitt
2021-04-20 9:07 Alan Schmitt
2021-04-06 9:42 Alan Schmitt
2021-03-30 14:55 Alan Schmitt
2021-03-23 9:05 Alan Schmitt
2021-03-16 10:31 Alan Schmitt
2021-03-09 10:58 Alan Schmitt
2021-02-23 9:51 Alan Schmitt
2021-02-16 13:53 Alan Schmitt
2021-02-02 13:56 Alan Schmitt
2021-01-26 13:25 Alan Schmitt
2021-01-19 14:28 Alan Schmitt
2021-01-12 9:47 Alan Schmitt
2021-01-05 11:22 Alan Schmitt
2020-12-29 9:59 Alan Schmitt
2020-12-22 8:48 Alan Schmitt
2020-12-15 9:51 Alan Schmitt
2020-12-01 8:54 Alan Schmitt
2020-11-03 15:15 Alan Schmitt
2020-10-27 8:43 Alan Schmitt
2020-10-20 8:15 Alan Schmitt
2020-10-06 7:22 Alan Schmitt
2020-09-29 7:02 Alan Schmitt
2020-09-22 7:27 Alan Schmitt
2020-09-08 13:11 Alan Schmitt
2020-09-01 7:55 Alan Schmitt
2020-08-18 7:25 Alan Schmitt
2020-07-28 16:57 Alan Schmitt
2020-07-21 14:42 Alan Schmitt
2020-07-14 9:54 Alan Schmitt
2020-07-07 10:04 Alan Schmitt
2020-06-30 7:00 Alan Schmitt
2020-06-16 8:36 Alan Schmitt
2020-06-09 8:28 Alan Schmitt
2020-05-19 9:52 Alan Schmitt
2020-05-12 7:45 Alan Schmitt
2020-05-05 7:45 Alan Schmitt
2020-04-28 12:44 Alan Schmitt
2020-04-21 8:58 Alan Schmitt
2020-04-14 7:28 Alan Schmitt
2020-04-07 7:51 Alan Schmitt
2020-03-31 9:54 Alan Schmitt
2020-03-24 9:31 Alan Schmitt
2020-03-17 11:04 Alan Schmitt
2020-03-10 14:28 Alan Schmitt
2020-03-03 8:00 Alan Schmitt
2020-02-25 8:51 Alan Schmitt
2020-02-18 8:18 Alan Schmitt
2020-02-04 8:47 Alan Schmitt
2020-01-28 10:53 Alan Schmitt
2020-01-21 14:08 Alan Schmitt
2020-01-14 14:16 Alan Schmitt
2020-01-07 13:43 Alan Schmitt
2019-12-31 9:18 Alan Schmitt
2019-12-17 8:52 Alan Schmitt
2019-12-10 8:21 Alan Schmitt
2019-12-03 15:42 Alan Schmitt
2019-11-26 8:33 Alan Schmitt
2019-11-12 13:21 Alan Schmitt
2019-11-05 6:55 Alan Schmitt
2019-10-15 7:28 Alan Schmitt
2019-09-03 7:35 Alan Schmitt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=m2h5krapct.fsf@petitepomme.net \
--to=alan.schmitt@polytechnique.org \
--cc=caml-list@inria.fr \
--cc=lwn@lwn.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox