Mailing list for all users of the OCaml language and system.
 help / color / mirror / Atom feed
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, 25 Mar 2025 09:06:27 +0100	[thread overview]
Message-ID: <m28qot7cvw.fsf@petitepomme.net> (raw)

[-- Attachment #1: Type: text/plain, Size: 27060 bytes --]

Hello

Here is the latest OCaml Weekly News, for the week of March 18 to 25,
2025.

Table of Contents
─────────────────

Ocsigen migrating to effect-based concurrency
Slipshow!
Odoc 3.0 released!
4th editor tooling dev-meeting: 28th of March
The Call for Papers for FUNARCH2025 is open!
Proposal for the replacement of Set and Map in the stdlib
A tool to reverse debug OCaml (and other binaries) runs
Feedback request: New lesson on `Lazy'
OCaml Workshop 2025 at ICFP/SPLASH - announcement and call for proposals
Old CWN


Ocsigen migrating to effect-based concurrency
═════════════════════════════════════════════

  Archive:
  <https://discuss.ocaml.org/t/ann-ocsigen-migrating-to-effect-based-concurrency/16327/1>


Vincent Balat announced
───────────────────────

  We're delighted to announce that the [Ocsigen] project has just
  launched one of its most ambitious changes: moving from Lwt to
  effects-based concurrency.

  If this experiment goes well, it will be another step towards
  simplifying Web development in OCaml, by eliminating the need for
  monads.

  Of course we will try to make this transition as smooth as possible,
  by providing a compatibility interface for application developers, and
  tools to help Web and mobile developers to do the transition
  themselves if they want to. These tools will be released in order to
  help other projects to do the transition and avoid incompatibilities
  between OCaml libraries as much as possible.

  This work was made possible thanks to the support of the [NGI Zero
  Core fund] through the [Nlnet foundation], and is perfomed by
  [Tarides].

  Read the [full announcement] by Tarides.


[Ocsigen] <https://ocsigen.org>

[NGI Zero Core fund] <https://nlnet.nl/thema/NGIZeroCore.html>

[Nlnet foundation] <https://nlnet.nl>

[Tarides] <https://tarides.com>

[full announcement]
<https://tarides.com/blog/2025-03-13-we-re-moving-ocsigen-from-lwt-to-eio/>


Slipshow!
═════════

  Archive: <https://discuss.ocaml.org/t/ann-slipshow/16337/1>


Paul-Elliot announced
─────────────────────

  Dear reader,

  I am _absolutely thrilled_ to announce the release of slipshow `0.1.1'
  on this forum! As you have all noticed, that is a _huge_ leap from the
  previous version, `0.0.34'. (What can have motivated this?)

  Recall that [Slipshow] is a tool to prepare presentation support, that
  is based on scripted scrolling and zooming (instead of slides).

  I'll use this single thread to announce all future versions of
  slipshow, to avoid polluting the global namespace, as it makes sense
  to keep this forum centered around OCaml, and this tool has nothing to
  do with OCaml …

  … well, almost nothing to do with OCaml, since in this version the
  engine has been fully rewritten in OCaml (hence the bold new version)
  and works much better! Making it a full OCaml project. Thanks, OCaml
  developers of open source libraries and language!

  To upgrade it, you can do:

  ┌────
  │ $ opam update
  │ $ opam upgrade slipshow
  └────

  What? Some people don't have it installed already? For those, it will
  be:

  ┌────
  │ $ opam update
  │ $ opam install slipshow
  └────

  Now comes the moment you are all waiting for: the list of new
  features!

  *TLDR*:
  • Engine rewritten in OCaml
    • Fewer bugs when navigating back
    • Stronger foundation (eg, for subslips)
    • Custom scripts requires minor adjustments
    • Breaking change in subslip HTML
  • Drawing now in SVG
    • No more zoom issues
    • Erasing works "per-stroke"
  • Revamped table of content
    • Now based on title structure rather than subslips
  • New `--markdown-output' flag for converting to GFM
  • Parser bugfixes
  • License change: Now GPLv3 (previously MIT)
  • npm distribution discontinued.
  • Special thanks to NLNet for their [sponsorship]!

  Dear readers,

  I am thrilled to announce the 0.1 release of Slipshow, the slip-based
  presentation tool!

  This is a _major_ minor release. While versions `0.0.1' to `0.0.33'
  have served well to experiment, this release marks a fresh start,
  aimed at being a solid foundation for a project with a clear
  direction. A huge thank you to NLNet for [sponsoring] this milestone!

  So, what is new? Quite a lot, the main change being that the engine
  has been _fully rewritten_.


[Slipshow] <https://github.com/panglesd/slipshow>

[sponsorship] <https://nlnet.nl/project/Slipshow/>

[sponsoring] <https://nlnet.nl/project/Slipshow/>

The engine
╌╌╌╌╌╌╌╌╌╌

  Started as a single file javascript project, the old engine evolved
  presentation by presentation – leading to numerous bugs, maintenance
  challenge or extensibility issue. (In other word, I did all I could
  not to touch it despite all the bugs)

  This release introduces a complete rewrite of the engine in OCaml,
  with new design choices that improve reliability and
  expandability. Let's go over the key benefits and breaking changes.


◊ Navigating Forward… and Backward

  One of the greatest weakness of the old engine was handling backward
  navigation. Since it started as a simple "script scheduler", going
  back wasn't straightforward. The workaround involved taking a snapshot
  of… everything (the DOM, the state, …), to be able to go back in time.

  This had many bugs, in animations (such as the "focus" action), and in
  its iteraction with other features (such as drawing).

  So, what is new in this engine? The engine now records an undo
  function for each step of the presentation. While this may not sound
  much, it is a ton better in terms of development. It's a much stronger
  foundation to build new features from. It's also much more efficient
  for long presentations.

  In most cases, your old presentations will work without modification
  in the new engine. However, there is one case where it needs
  modification: when you include the execution of a custom script in
  your presentation. In this case, you need to return the function undo
  to undo the executed step: see the [documentation]! (This is not ideal
  and better solutions are being experimented)


  [documentation]
  <https://slipshow.readthedocs.io/en/stable/syntax.html#custom-scripts>


◊ Writing

  Previously, live annotations used the excellent [atrament]
  library. While great in many cases, its bitmap-based approach caused
  blurriness when zooming.

  This release introduces a custom SVG-based annotation system, which
  eliminates zoom issues. Another change: erasing now works
  stroke-by-stroke instead of pixel-by-pixel.


  [atrament] <https://github.com/jakubfiala/atrament>


◊ Table of content

  The old table of contents was based on the slip structure, which
  didn’t work well for presentations that primarily used a single slip
  (as is often the case with compiled presentations).

  The new sidebar-style table of contents is now generated from headers,
  making it more intuitive and aligned with the presentation’s
  structure—resulting in a much smoother navigation experience!


◊ Breaking change: Subslips

  The HTML structure for subslips has evolved, in particuler to avoid
  having to provide the scale of your subslips.

  Support for subslip in the new engine is not mature and will be
  announced in the next release, but bear in mind that if your
  presentation relies on them, you might want to wait a bit before
  migrating to the new engine!


Compiler
╌╌╌╌╌╌╌╌

  While this release focuses on the engine, the compiler has also seen
  improvements, including bug fixes (particularly in the parser) and a
  new feature:


◊ `--markdown-output' for markdown exports

  If you want to print your presentation or host it as a static webpage,
  the default format can be cluttered with annotations. The new
  `--markdown-output' flag lets you generate a clean, GitHub Flavored
  Markdown (GFM) file without annotations.


Other
╌╌╌╌╌

  A small but maybe important note: the license has changed, the project
  has transitioned from MIT to GPLv3, aligning better with its values.


Conclusion
╌╌╌╌╌╌╌╌╌╌

  Looking forward to your bug reports!


Christian Lindig asked and Paul-Elliot replied
──────────────────────────────────────────────

        Could you link to a demo presentation done with this tool?

  Sure!

  [Here] is a presentation of the tool itself, in French. The source
  file for it is [here].

  [Here] is a math presentation using more features (made using a
  previous version of the engine, which had more features and more
  bugs).

  [Here] is the historical first presentation made in Slipshow (made
  with the worst version of the engine).

  (I include presentations made with old versions of the engine to give
  an idea of what you can do, as the new engine is very new I don't have
  many examples using it, and it has some breaking changes which makes
  porting old presentations using too many features hard to port!)


[Here] <https://choum.net/panglesd/slides/campus_du_libre.html>

[here]
<https://github.com/panglesd/slipshow/blob/main/example/campus-du-libre/slipshow.md>

[Here] <https://choum.net/panglesd/slides/WDCM-2021-slips/wdcm-ada.html>

[Here] <http://choum.net/panglesd/slides/slides-js/slides.html>


Daniel Bünzli added
───────────────────

  [Here] is a non-dogfooded one.


[Here] <https://def.lakaban.net/research/2024-LRGrep-presentation/>


Odoc 3.0 released!
══════════════════

  Archive: <https://discuss.ocaml.org/t/ann-odoc-3-0-released/16339/1>


Jon Ludlam announced
────────────────────

  On behalf of the Odoc development team, I’m delighted to announce the
  release of Odoc 3! This is a big big release with loads of new
  features and bug fixes, and I encourage everyone to install it and
  have a play!

  For an overview of the new features see our [beta release
  announcement]. tl;dr:

  ┌────
  │ $ opam install odoc-driver # will install odoc 3
  │ $ odoc_driver odoc odoc-parser odoc-driver odoc-md sherlodoc --remap
  └────

  and point your browser at `_html/index.html'. This example shows
  odoc_driver creating the docs for the 5 packages specified and
  remapping links to other packages (see [here] for an explanation)

  If you try the above command, you'll note something interesting, and
  hopefully this will encourage you to run `odoc_driver' on your own
  packages before you release them, as then you'll be able to avoid
  slightly embarrassing post-release fixes like [this one] 😬

  Here are the changes from the beta release:


[beta release announcement]
<https://discuss.ocaml.org/t/ann-odoc-3-beta-release/16043/10>

[here]
<https://ocaml.github.io/odoc/odoc-driver/index.html#remapping-dependencies>

[this one] <https://github.com/ocaml/odoc/pull/1333>

Added
╌╌╌╌╌

  • <https://github.com/ocaml/odoc/pull/1297>
  • <https://github.com/ocaml/odoc/pull/1314>
  • <https://github.com/ocaml/odoc/pull/1326>


Changed
╌╌╌╌╌╌╌

  • <https://github.com/ocaml/odoc/pull/1304>
  • <https://github.com/ocaml/odoc/pull/1304>
  • <https://github.com/ocaml/odoc/pull/1319>
  • <https://github.com/ocaml/odoc/pull/1323>
  • <https://github.com/ocaml/odoc/pull/1317>
  • <https://github.com/ocaml/odoc/pull/1325>


Fixed
╌╌╌╌╌

  • <https://github.com/ocaml/odoc/pull/1304>
  • <https://github.com/ocaml/odoc/pull/1313>
  • <https://github.com/ocaml/odoc/pull/1312>
  • <https://github.com/ocaml/odoc/pull/1311>
  • <https://github.com/ocaml/odoc/pull/1304>
  • <https://github.com/ocaml/odoc/pull/1309>
  • <https://github.com/ocaml/odoc/pull/1306>
  • <https://github.com/ocaml/odoc/pull/1310>


4th editor tooling dev-meeting: 28th of March
═════════════════════════════════════════════

  Archive:
  <https://discuss.ocaml.org/t/ann-4th-editor-tooling-dev-meeting-28th-of-march/16346/1>


PizieDust announced
───────────────────

  Hi everyone, join us for the next *Editor Public Dev-Meeting* on
  *March 28th*! This session will feature a talk from *Xavier (@xvw)* on
  the latest *Emacs functionalities* integrated with *OCaml LSP server*.

  :clipboard: Meeting agenda:

  • A tour-de-table to allow the participants that wish to do so to
    present themselves and mention issues / prs they are interested in.
  • Talk from Xavier and Q&A
  • Discuss issues and pull requests that were tagged in advance or
    mentioned during the tour-de-table.

  • 🔹 *What’s new in Emacs for OCaml development?*
  • 🔹 *How the latest LSP improvements enhance the experience?*
  • 🔹 *Live demo and discussion on upcoming features*

  • 📅 *Date:* March 28th
  • 🕐 *Time:* 4PM CET
  • 📍 *Location:* [https://meet.google.com/wrv-dovu-ypb]

  This is a great opportunity to learn about the latest improvements and
  share feedback with the community. Looking forward to seeing you
  there! 🚀

  Previous meeting notes are available in [Merlin’s repository wiki]

  <https://calendar.app.google/zPx5ZQ47C4dwq3437>


[https://meet.google.com/wrv-dovu-ypb]
<https://www.google.com/url?q=https://meet.google.com/wrv-dovu-ypb&sa=D&source=calendar&usd=2&usg=AOvVaw1Q_YkS03VGKSyfyxCBSq7F>

[Merlin’s repository wiki]
<https://github.com/ocaml/merlin/wiki/Public-dev%E2%80%90meetings>


The Call for Papers for FUNARCH2025 is open!
════════════════════════════════════════════

  Archive:
  <https://discuss.ocaml.org/t/the-call-for-papers-for-funarch2025-is-open/16350/1>


Jeffrey Young announced
───────────────────────

  Hello everyone,

  This year I am chairing the Functional Architecture workshop colocated
  with ICFP and SPLASH.

  I'm happy to announce that the Call for Papers for FUNARCH2025 is open
  - *deadline is June 16th*! Send us research papers, experience
  reports, architectural pearls, or submit to the open category! The
  [idea] behind the workshop is to cross pollinate the software
  architecture and functional programming discourse, and to share
  techniques for constructing large long-lived systems in a functional
  language.

  See [FUNARCH2025 - ICFP/SPLASH] for more information. You may also
  browse previous year's submissions [here] and [here].

  See you in Singapore!


[idea] <https://functional-architecture.org/>

[FUNARCH2025 - ICFP/SPLASH]
<https://conf.researchr.org/home/icfp-splash-2025/funarch-2025#FUNARCH-2025-Call-for-Papers>

[here] <https://functional-architecture.org/events/funarch-2024/>

[here] <https://functional-architecture.org/events/funarch-2023/>


Proposal for the replacement of Set and Map in the stdlib
═════════════════════════════════════════════════════════

  Archive:
  <https://discuss.ocaml.org/t/proposal-for-the-replacement-of-set-and-map-in-the-stdlib/16361/1>


Christophe Raffalli announced
─────────────────────────────

  Hello,

  While working on AVL for teaching I found an alternative to the AVL
  that seems overall better than the current ocaml implementation. The
  code is available here:
  [https://github.com/craff/ocaml-avl/tree/master]. The Readme.md
  contains the inequality needed to prove correctness and termination of
  the balancing function "join".

  The idea is to replace the constraint

  ┌────
  │ |height left_son - height right_son| <= 2 
  └────

  By

  ┌────
  │ size left_son <= 2 * size right_son + 1
  │ size right_son <= 2 * size left_son + 1
  └────

  We see 3 advantages:

  • O(1) cardinal of set or map
  • slightly simpler code or at least not more complicated (see below)
  • seems faster in many cases (not always and strangely depends on
    compilation options). Use `dune exec ./test.exe' for some simple
    tests.

  Before submitting a PR, I think it call be a good idea to call for
  comments here.

  Cheers, Christophe


[https://github.com/craff/ocaml-avl/tree/master]
<https://github.com/craff/ocaml-avl/tree/master>


A tool to reverse debug OCaml (and other binaries) runs
═══════════════════════════════════════════════════════

  Archive:
  <https://discuss.ocaml.org/t/ann-a-tool-to-reverse-debug-ocaml-and-other-binaries-runs/16366/1>


Sid Kshatriya announced
───────────────────────

  I'd like to announce a debugging tool I've built ! It's called
  *_Software Counters mode_ `rr'* .

  It is available at <https://github.com/sidkshatriya/rr.soft>

  Many of you may have already heard of a debugger called [`rr'] – it
  allows you to record and replay programs on Linux. It is extremely
  useful for instance to debug issues with garbage collection or other
  low level issues in natively compiled OCaml programs. Once you capture
  a bug during the record phase, that bug can be replayed any number of
  times during replay.

  One major limitation of `rr' is that it requires access to CPU
  Hardware Performance counters which is usually not available in cloud
  VMs or containers.

  *_Software Counters mode_ `rr' is a modification of the `rr' debugger
   that lifts this limitation – access to CPU Hardware Performance
   counters is not required*. This means you can run `rr' in many more
   configurations.

  I've been able to successfully record/replay the whole OCaml compiler
  test suite using _Software Counters_ mode `rr' (Except for a single
  ocaml test called `pr2195' which exhausts the file descriptors).

  *I've also written a blog post* about record/replay debugging
   generally and _Software Counters mode_ in particular. Please see
   [here].


[`rr'] <https://github.com/rr-debugger/rr.git>

[here]
<https://github.com/sidkshatriya/me/blob/master/008-rr-everywhere.md>


Feedback request: New lesson on `Lazy'
══════════════════════════════════════

  Archive:
  <https://discuss.ocaml.org/t/feedback-request-new-lesson-on-lazy/16372/1>


Jakub Svec announced
────────────────────

  Hello,

  I created a lesson on the `Lazy' module that I'd like to propose for
  the language tutorials section of ocaml.org.

  You can find the draft on [HackMD]

  Please suggest anything you would like, I'm happy to make several
  rounds of improvement.


[HackMD] <https://hackmd.io/@wqo57Le0RIyZVlb8qdJ8PA/B1UhnlL2yl>

Lesson implementation decisions:
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌

  This lesson is focused on beginners.

  The first draft of this lesson is 345 lines, which is on the shorter
  side compared to other lessons.

  The surface area of the `Lazy' module is small, so I took the
  opportunity to supplement the lesson with a thorough explanation of
  evaluation strategies. This is supplemental, however, and can be
  shortened or removed based on your preferences.

  Without the supplemental section, the lesson is only 200 lines long.


OCaml Workshop 2025 at ICFP/SPLASH - announcement and call for proposals
════════════════════════════════════════════════════════════════════════

  Archive:
  <https://discuss.ocaml.org/t/ann-cfp-ocaml-workshop-2025-at-icfp-splash-announcement-and-call-for-proposals/16373/1>


Kiran Gopinathan announced
──────────────────────────

  Hihi everyone!!!

  This year, the [ICFP] (International conference on Functional
  Programming) Programming Languages conferences will be held in
  Singapore (colocated with [SPLASH] in fact!):

  <https://us1.discourse-cdn.com/flex020/uploads/ocaml/optimized/2X/9/92022b69038715b7dd16ecd9e417b50acbc53dc1_2_1380x552.jpeg>

  Continuing this community's annual tradition from 2012, we will be
  hosting the OCaml workshop after the ICFP conference, on the *17th
  October 2025 (Friday)*. The workshop is intended to cover all
  different kinds of aspects of the OCaml programming language as well
  as the OCaml ecosystem and its community, such as scientific and/or
  research-oriented, engineering and/or user-oriented, as well as social
  and/or community-oriented.


[ICFP] <https://icfp25.sigplan.org>

[SPLASH] <https://2025.splashcon.org>

Call for talk proposals
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌

  The [call for talk proposals] for the workshop is now open!


[call for talk proposals]
<https://conf.researchr.org/home/icfp-splash-2025/ocaml-2025>

◊ Dates

  Here are the important dates:

  • Talk proposal submission deadline: *July 3rd (Thursday)*
  • Author notification: *August 7th (Thursday)*
  • Workshop: *October 17th (Friday)*


◊ Submissions

  Submissions are typically around 2 pages long (flexible), describing
  the motivations of the work and what the presentation would be about.

  We encourage everyone who might be interested in giving a talk to
  submit a proposal! We truly mean everyone, and also have strongly
  anyone in mind who belongs to a group that’s traditionally
  underrepresented at OCaml workshops, e.g. due to your gender(s) or
  non-gender, where you’re from or based or whatever other kinds of
  characteristics you might have. You should all be able to find all
  information you’ll need to submit a proposal on the official [call for
  talk proposals]. However, if you have any question, don’t hesitate to
  ask us.


  [call for talk proposals]
  <https://conf.researchr.org/home/icfp-splash-2025/ocaml-2025#Call-for-Presentations>


◊ Quota on accepted talks per affiliation

  Following the approach from last year which worked well, this year
  again we will try to enforce a quota of a maximum of four talks given
  by speakers with the same company/university/institute affiliation. In
  order to guarantee a coverage of a diverse range of topics and
  perspectives, we’ll experiment with the same affiliation quota again.

  Do not hesitate to submit your talk proposal in any case: quotas, if
  needed, will be taken into account by the PC after reviewing all
  submissions, so there’s no reason to self-select upfront.


About the workshop itself
╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌

  So far, we’ve only covered the talk proposals and formalities. The
  exciting part will be the workshop itself! The OCaml workshop is going
  to be a whole-day event and, similarly to previous years, it’s likely
  going to have four sessions of about four talks each. It’s a fairly
  informal and interactive environment, where people engage in all kinds
  of conversations about OCaml during the breaks and after the workshop.


◊ Hybrid attendance and cost for speakers

  We’re aiming to make the workshop hybrid with the same streaming
  modalities as last year, meaning that *talks as well as participation
  can be either in-person or remote*, and *remote attendance will be
  free*. To promote a good atmosphere, communication and engagement, we
  prefer to have most talks in-person, but remote talks will be most
  welcome as well.

  There may be opportunities for speakers who would not have funding
  otherwise (via their employer or university) to attend, although we
  are still in the process of confirming this. (Please keep an eye on
  this post, which will be updated once we get confirmation!)

  We will do our best to provide the best workshop experience possible
  for remote participants, within the constraints of the hybrid
  format. While attending in-person does come with advantages, it also
  comes with an environmental cost, and we strongly support
  transitioning to a less plane-intensive organization for conferences
  and community events :deciduous_tree: .


◊ Related events

  The day before the OCaml workshop, i.e. Oct 16th (Thursday), is the
  day of the [ML workshop], with focus on more theoretical aspects of
  OCaml and the whole family of ML languages in general. The ML workshop
  and tends to be very interesting for OCaml lovers as well.

  That aside, this year, I believe, is the first year that both the ICFP
  and SPLASH programming languages conferences are going to be
  co-located, so this is an exciting opportunity to experience the whole
  breadth of two of the top-ranked PL conferences over the span of a
  week! What a time to be alive!

  We’re looking forward to the the talk submissions and to the workshop!
  Let us know if you have any questions.  @Gopiandcode & @yasunariw


  [ML workshop]
  <https://conf.researchr.org/home/icfp-splash-2025/mlsymposium-2025>


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 #2: Type: text/html, Size: 41848 bytes --]

             reply	other threads:[~2025-03-25  8:06 UTC|newest]

Thread overview: 236+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-25  8:06 Alan Schmitt [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-04-15  9:51 Alan Schmitt
2025-04-08 13:14 Alan Schmitt
2025-04-01  9:12 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=m28qot7cvw.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