-
minimalist_things
Terminal User Interface app for minimalists to list all things and describe their necessity
For the last few months, I was learning OCaml in my free time. To improve the skills I decided to make a little minimalist app, for listing all things you have and reasoning about their necessities. The idea is to make an app with a terminal user interface using sqlite3 as persistent storage. Here is the link to GitHub
-
SaaSHub
SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives
-
As some can guess, the architecture was heavily inspired by Elm and Elmish parent-child patterns. Notty - is a cool library, which is a perfect choice for a simple terminal draw. But keep in mind, that you will be responsible for focus management and isolation of all event handlings. Sqlite3-OCaml - is totally imperative library, because it is just bindings on C library. But you get all the essential functionality with which you can build yourself the needed level of abstraction.
-
As some can guess, the architecture was heavily inspired by Elm and Elmish parent-child patterns. Notty - is a cool library, which is a perfect choice for a simple terminal draw. But keep in mind, that you will be responsible for focus management and isolation of all event handlings. Sqlite3-OCaml - is totally imperative library, because it is just bindings on C library. But you get all the essential functionality with which you can build yourself the needed level of abstraction.
Related posts
-
Limbo is a wip, in-process OLTP DBMS, compatible with SQLite
-
How to use ORMs (Prisma / Drizzle / Knex.js) in a TypeScript backend built with Encore.ts
-
Show HN: Neboa – Type-Safe NoSQL with Node and SQLite
-
Show HN: Limbo – SQLite compatible, in-process OLTP database written in Rust
-
Limbo is a work-in-progress, in-process OLTP DBMS, compatible with SQLite