I 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,…
Agree about the "just type in text" paradigm though I feel they suffer from the "empty state" problem. You can see I tried to mitigate with the "blank sheet" placeholder text, and on web there're templates available. Unfortunately it appears only a fraction of users use the templates, and of course users never read the placeholder text! I haven't heard of immediate / retained mode before - interesting concept! Figr i…
Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
41–50 of 92 posts
Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#42How hard would it be to create a Linux version?
Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#43Just some quick feedback from the first things I tried in the app (which did not work). It has to do with currency conversion: https://user-images.githubusercontent.com/93975/191202587-9b...
Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#44Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#45This seems to be a shadow of Calca. https://calca.io
Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#46Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#47I 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,…
I had been looking for such an application, but than I decided to build one myself that suffice my needs, here is the repo https://github.com/4silvertooth/QwikTape
Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#48Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#49Example
$ python
>>> weeklyprice=4000
>>> dailyprice=weeklyprice/7
>>> februaryprice=dailyprice\*28
>>> februaryprice
15988Re: Show HN: Figr.app – a multi-user, notepad style calculator (desktop app)
#50I use Python program for that It works pretty fine Example $ python >>> weeklyprice=4000 >>> dailyprice=weeklyprice/7 >>> februaryprice=dailyprice\*28 >>> februaryprice 15988