Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
71–80 of 92 posts
Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#72Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#73Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#74Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#75Earlier quoted context omitted.
Nice, I created my own: https://numbr.dev
"Figr", "Numbr"... I'm starting to think you guys don't like vowels at the end of your words. Next up: Calculatr
Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#76Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#77However, in my opinion, you need different examples to show the strengths of this app. A lot of the examples on your page look kinda clunky and error-prone to me, and better solved with a spreadsheet.
Take the "personal finance" one. The "total expenses" row lists out all the expenses adding them out one at a time. In a spreadsheet you'd just type =sum(A1:A5). Imagine it wasn't just 5 but 20 items. Now your sum gets pretty unweildy. How confident can you be from looking at that sum that you haven't missed one of the expense items? In a spreadsheet you know pretty clearly that =sum(A1:A20) has all those rows. Better still, if you insert a row to add another item, it'll update the sum for you.
The "Investment returns" sheet is another example. What if I wanted to extend that to 30 years? In a spreadsheet I'd just copy the last row and past it in the the next 10 cells and I'm done. Here's I have to paste it 10 times, and then manually update each row and hope I didn't make a typo anywhere. What if I didn't want my savings to be constant but assume that I'm going to increase savings a year over time?
The unit conversion is somewhat neat though, so maybe examples that use that a bit more?
Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#78I use Python program for that It works pretty fine Example $ python >>> weeklyprice=4000 >>> dailyprice=weeklyprice/7 >>> februaryprice=dailyprice\*28 >>> februaryprice 15988
Neither is as approachable for a non-programmer as the OP, however.
Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#79Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#80I wish there were more apps like this which let you just type text and make/do things. Just make everything a sort of real-time coding. It's often much faster to do stuff with text and keyboard than any fancy GUI. Other examples: sequencediagram.net, SwiftUI and React to some extent, vim directory managers (e.g. some let you rename files just by editing text and delete them just by deleting lines) The only issue is,…
My app https://www.tasktxt.com is a text based todo list with timers. Similar in spirit.