The program is the database is the interface
!!! DRAFT !!!
I do my accounts each year with a simple script. Something like this:
(ns accounts
(:require
[clojure.string :as str]
[clojure.pprint :as pp]))
;; converted from statement.csv
(def txs
[{:date #inst "2022-05-13T11:01:56.532-00:00"
:amount -3.30
:text "Card transaction of 3.30 CAD issued by Milano Coffee Roasters VANCOUVER"}
{:date #inst "2022-05-12T10:41:56.843-00:00"
:amount -3.30
:text "Card transaction of 3.30 CAD issued by Milano Coffee Roasters VANCOUVER"}
{:date #inst "2022-0...
Read more at scattered-thoughts.net