I honestly just use excel but that's because I use it as a book of record for receipts as well. Since you're looking for open source alternatives, OpenOffice would fill that need.
I tried Excel few years back, it’s only easy when all you are tracking is income and expenses. But when you buy some stocks or MFs, the amount is debited from Bank but it’s not really an “expense”. And good luck tracking fund flows between your own accounts. I’ve finally settled on hledger for now. There’s some issues, mainly the reports are generated by calendar year, there’s no support for Financial Year reports (A…
Show HN: Paisa – Open-Source Personal Finance Manager
281–288 of 288 posts
Re: Show HN: Paisa – Open-Source Personal Finance Manager
#282Earlier quoted context omitted.
I made the switch to hledger about two years ago and I have struggled using the command line to input my transactions. Right now I use my text editor (nvim) and a snippet engine for my common / recurring transactions. This may be a little more work than just setting everything up to work automatically, but I like it. For reporting, there are some tools which can help with that, I used to use hreports [0], but have si…
Too opinionated ? I'd be interested in examples of that.
Anyway, thanks for all your work on hledger and pta in general, Simon!
Re: Show HN: Paisa – Open-Source Personal Finance Manager
#283This is really weird for me, a few years ago I was trying to build exactly this - as in same ledger-based, local-first/only etc. decisions - only difference really was that I never got as far as visualisations, and faffed about with PDF->ledger instead until I lost motivation for the project. Very nice to see! I look forward to trying this out properly soon. I recommend not bothering with PDFs, OCR errors however occ…
Re: Show HN: Paisa – Open-Source Personal Finance Manager
#284Earlier quoted context omitted.
Too opinionated ? I'd be interested in examples of that.
I did say "opinionated", not "too opinionated" and I believe that is a fair characterization, would you not agree? Anyway, thanks for all your work on hledger and pta in general, Simon!
Re: Show HN: Paisa – Open-Source Personal Finance Manager
#285I might give this a try and then see if I can convert my beancount files to ledger.
Re: Show HN: Paisa – Open-Source Personal Finance Manager
#286Earlier quoted context omitted.
I use hledger and I enter everything by hand. I used to dread it too. But actually, in normal life, the volume of daily transactions is not that large. Besides, filling out a journal disciplines you. And VS Code does autocomplete for accounts and payees.
Can I ask how you get the autocomplete in VS Code? I've never managed to find an extension that does this, and by default the autocomplete only works on previously seen words (so it gets split by the colons in account names)
But. I keep my journal files in a folder and open it using the VS Code project file.
File's name is ledger.code-workspace
{ "folders": [{ "path": "/path/to/journal/directory" }] }
Re: Show HN: Paisa – Open-Source Personal Finance Manager
#287Earlier quoted context omitted.
I use hledger and I enter everything by hand. I used to dread it too. But actually, in normal life, the volume of daily transactions is not that large. Besides, filling out a journal disciplines you. And VS Code does autocomplete for accounts and payees.
Can I ask how you get the autocomplete in VS Code? I've never managed to find an extension that does this, and by default the autocomplete only works on previously seen words (so it gets split by the colons in account names)
Yes, that's just it. I do not use anything like a language server.
Re: Show HN: Paisa – Open-Source Personal Finance Manager
#288Earlier quoted context omitted.
I tried Excel few years back, it’s only easy when all you are tracking is income and expenses. But when you buy some stocks or MFs, the amount is debited from Bank but it’s not really an “expense”. And good luck tracking fund flows between your own accounts. I’ve finally settled on hledger for now. There’s some issues, mainly the reports are generated by calendar year, there’s no support for Financial Year reports (A…
You can do this in a few ways, depending on what exactly you want to do: 1. Using period reporting feature (`-p`): hledger bse -p "yearly from 2019-04" --depth=2 --layout=bare -e 2022-04-01 -X₹ 2. Separating journals into April 1 – March 31 financial years. 3. Using `-b` and `-e` to demarcate begin and end dates when generating reports.