Mobifinance – Loaning organized
Idea While on a trip to Jutland, I had a splendid idea: a system to track loans—who I loaned money to and whether I ever got it back. It had to work on mobile devices and as a web app, so I built it as a small webpage. I used an MSSQL database (hosted by addnet.dk) and wrote the app in C#. Database I built a single main table, Finances, for all loans and edits. Each finance can have a parent—NULL indicates a root loan. This allows loan tracking and later edits. A root loan of +10 DKK, followed by a -10 DKK update, resolves to 0 (paid). ...