Ask HN: Do you use budgeting software?
41–50 of 76 posts
Re: Ask HN: Do you use budgeting software?
#42Re: Ask HN: Do you use budgeting software?
#43Built an ad-hoc system using flask, Google Spreadsheets, and Twilio (where I work) that my wife and I have been using for 18 months now -- far longer than any other system has stuck. - budget tab: tracks category + allocated budget for the month - expenses tab: tracks date, amount, category, description - when we spend money, my wife and I text, eg, "13.31 restaurants lunch at chipotle" to a Twilio number. A flask ap…
Re: Ask HN: Do you use budgeting software?
#44Re: Ask HN: Do you use budgeting software?
#45Re: Ask HN: Do you use budgeting software?
#46Then I have a spending sheet where I record the category, amount and description.
Finally I have a spending info sheet that adds up all spending for each category and compares it to the budget throughout the month. That way I can calculate the leftovers, or if I didn't allocate enough that month so I can adjust next month.
It's worked great for the past year for my wife and I
Re: Ask HN: Do you use budgeting software?
#47I would recommend both. Somehow like the Toshl more.
2c
Re: Ask HN: Do you use budgeting software?
#48It's a completely local and free app. Sign up and I'll be sending the beta out in the next couple weeks.
It embraces the envelope-style of budgeting, and does it in a way that makes it easy. I think this style of budget makes it really easy to see what's going on with your money without much work.
In addition to that, reports are important and we'll provide the ability to write any custom reports to tailor the system to your lifestyle. Everybody's life is different so we all have different needs, so it's important to allow flexibility.
Let me know if you're interested, or have any questions!
Re: Ask HN: Do you use budgeting software?
#49I'm just trying this (free and open source): https://github.com/firefly-iii/firefly-iii I dislike giving all my data to (cloud)services like Ynab, who sell all your data/profile to others...
FWIW https://www.youneedabudget.com/privacy-policy/ "We do not sell users’ data. (And we never have!)" They make money by charging $5/mo and having a large cult following.
There is no way at all to verify they are not selling your data. Also, there is no law that forbids them to do so.
Re: Ask HN: Do you use budgeting software?
#50Built an ad-hoc system using flask, Google Spreadsheets, and Twilio (where I work) that my wife and I have been using for 18 months now -- far longer than any other system has stuck. - budget tab: tracks category + allocated budget for the month - expenses tab: tracks date, amount, category, description - when we spend money, my wife and I text, eg, "13.31 restaurants lunch at chipotle" to a Twilio number. A flask ap…
Wow. I've used Twilio API before... had no idea you could do something like this. How do you log categories?
As for doing this kind of thing with Twilio, here are the two building blocks you'd need:
Twilio + Python: https://www.twilio.com/docs/sms/quickstart/python
Python + Google Spreadsheets: https://www.twilio.com/blog/2017/02/an-easy-way-to-read-and-...