diff options
author | Marc Coquand <marc@mccd.space> | 2024-03-03 19:11:02 -0600 |
---|---|---|
committer | Marc Coquand <marc@mccd.space> | 2024-03-03 19:11:02 -0600 |
commit | 787df615b8ed88b34c903a5216998298b43abb60 (patch) | |
tree | 5d0c05c821ff840c985e5bd29304b5b6163e7a2f | |
parent | fbdf1e613f90ad86419364f768e0d8074bf250bc (diff) | |
download | mccd.space-787df615b8ed88b34c903a5216998298b43abb60.tar.gz mccd.space-787df615b8ed88b34c903a5216998298b43abb60.tar.bz2 mccd.space-787df615b8ed88b34c903a5216998298b43abb60.zip |
Fix some errors in the post
Diffstat (limited to '')
-rw-r--r-- | posts/awk-with-kakoune.njk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/posts/awk-with-kakoune.njk b/posts/awk-with-kakoune.njk index ccf4b1a..82428c6 100644 --- a/posts/awk-with-kakoune.njk +++ b/posts/awk-with-kakoune.njk @@ -1,13 +1,13 @@ --- layout: post.njk -title: Using Awk to Enable Kakoune to Generate Types for OCaml +title: Using Awk with Kakoune to Generate SQL Types for OCaml tags: post date: 2024-03-03 --- <p>Lately I have been using the Kakoune text editor for my editing. What -absolutely blows my mind is how interoperable it is with Unix scripts +blows my mind is how interoperable the editor is with Unix scripts and how easy it is to create extensions.</p> -<p>I am working on a Web server in OCaml. In my work, I levarage a +<p>So I am working on a Web server in OCaml. In my work, I levarage a library called <a href="https://github.com/roddyyaga/ppx_rapper">ppx_rapper</a>, which allows you to write SQL queries which are then converted to OCaml types. So a select query looks something like |