Mads M. Jensen
Mads M. Jensen
> Syntax-wise, I'd prefer JS, `(x, y) => x+y`. AFAIK the `=>` is not yet used in Numbat. I personally would prefer the same style as well, but there is...
I have found that the experimental interface from #536 works better although not perfectly on my phone. It can be found here: https://numbat.dev/editor.html
> Like I wrote in https://github.com/sharkdp/numbat/pull/550, any help on improving HTML/CSS/JS is very much appreciated. Do you have any preference in regard to the use of frameworks for it? I...
> No. If you think we definitely need a framework for this, please feel free to choose whatever you like best for this task. I don't think we definitely need...
> Ooops, just saw this old issue. I proposed a solution here: https://github.com/sharkdp/numbat/issues/549#issuecomment-3369338140 > > The TLDR is: We consider an expression starting with a newline to be a multi-line...
I'd prefer this to be opt-in and not default. My reasoning is that I often want to keep calculations in the same units I used for consistency. It could also...
I could see utility in a command that loads the contents of a file not necessarily in a modules folder. It would make it easier to use the cli as...
> So `1000 20%`, `1000 0.2`, `1000 200‰` should all result in `800`. I think the operator notation is fine but I agree it should work the way you describe...
Would syntax for percent_change maybe be useful too? I’m thinking something like `>%` and `% 75 kg ``` I’m not quite sure if the greater than less than characters are...
I’m not sure if it is the best option but the following does work for your example: ```numbat now() + 2 weeks -> unixtime |> base(10) ``` It is a...