Qqwy / Marten
Qqwy / Marten
### Description of issue Whenever you've created a release, and are building a new one that you want to use for a hot-upgrade, if you build this one without changing...
This implements #27 , custom dispatch logic by using an overridable `server_pid/1` function. I 'think' it works, but I have not yet had time to write tests for it (hopefully...
Right now, it is possible to either return a PID, or to register using `:global` or `:via`. However, this needs to be given as option when `ExActor.GenServer` is included (`use`d)....
I attempted to run decompile on the following file: https://github.com/Qqwy/elixir-type_check/blob/49bb2134f336ed2ec98535c7ecd7fa89e2d86b5d/lib/type_check/builtin.ex There is quite a bit of macro trickery going on there, so it definitely is not the easiest module to...
While working on the PR for #129, I encountered `# TODO: test shrinking` at the top of the `StreamDataTest` module. Since there is no open issue for it, it seemed...
Implementation of #129 - [x] Date generator - [x] Tests - [ ] Time generator - [ ] Tests - [ ] DateTime generator - [ ] Tests - [...
Recently, Eric Meadows-Jönsson noted to me that one of my Elixir libraries did not adhere to the following convention: > You should only have one top-level namespace and it should...
The pre-made controller tests that Phoenix generates will break when you add authentication using Addict. How can I log in the `conn` before doing these tests? I believe that this...
This looks like an amazing project, that will make profiling a lot easier than using built-in tools like e.g. `eprof` that only show text-based output. Would it be possible to...
According to this page: (TODO: find appropriate section in the C99 standard itself) http://en.cppreference.com/w/c/program/setjmp it is not allowed to store the output value of`setjmp`, and it can only occur in...