Moritz Schmale

Results 64 comments of Moritz Schmale
trafficstars

You can probably get away with copying and then modifying this file: https://github.com/narrowtux/abacus/blob/master/src/math_term_parser.yrl This is in erlangs yecc language: https://erlang.org/doc/man/yecc.html When it's compiled, a module named `:math_term_parser` will be available.

You can add your own functions via the scope: ```elixir Abacus.eval("rand() * 10", %{rand: &:rand.normal/0}) {:ok, 4.778221007148446} ``` I'd rather keep the scope of included functions as low as possible....

I made a makeshift dynamic supervisor that will re-register the name when the child process terminates with reasons other than `:normal` and `:shutdown` (Important for hand-off). Tested this with 2...

I see, the problem is it needs to be configurable because some people are using the `_usec` variants of the datetimes.

Hi, thank you for taking the time to fix this. In it's current state, this would fix most of the problems with circular dependencies, however there can also be associations...

Any news on this PR?

@jfrolich sorry, I just saw that I never actually submitted the review. Back then the feature was confusing to me :D

This information should be available in the history function, but yes, it should also be possible to preview a specific version id.

Tracking of many-to-many associations is not supported at the moment