Great work. Is there a Terminal UI for this? Many users love to have simple programs in the Terminal itself.
Show HN: NoteCalc
11–20 of 79 posts
Re: Show HN: NoteCalc
#12Re: Show HN: NoteCalc
#13Also I noticed the base64/deflate URL fragment storing the entire text content, à la flems.io ... nice!
Re: Show HN: NoteCalc
#14Re: Show HN: NoteCalc
#15Re: Show HN: NoteCalc
#16Re: Show HN: NoteCalc
#17Re: Show HN: NoteCalc
#18"$400 / 20" => 20 (ERROR)
"$400 / 25" => 25 (ERROR)
"400$ / 20" => 20 $ (OK)
"400$ / 25" => 16 $ (OK)
Re: Show HN: NoteCalc
#19Great work. Is there a Terminal UI for this? Many users love to have simple programs in the Terminal itself.
But fortunately, the whole architecture was designed with the terminal in mind: - 99% of the functionalty is implemented as a lib, and just a tiny part is responsible for input and rendering, so it is very easy to write new frontend for it. - both the rendering and the input uses characters as a basic for coordinates, so it is easy to translate the render commands generated by the lib to the terminal.
Re: Show HN: NoteCalc
#20In a similar vein - a few years ago I built an open source REPL calculator called LastCalc (http://lastcalc.org/), which supports some advanced ideas from functional programming including pattern matching.