Pierre Allix

Results 40 issues of Pierre Allix

Socket is nil after calling `configure`. I am working on a fix.

Unit tests are broken. I am working on a fix.

The metadata are logged in a different order than what the Elixir console logger logs. This is problematic when using a tool to automatically parsing the logs.

Any change to get this package published on hex.pm? It would be great. Also there is a name clash with an Erlang package available in hex.pm, also called syslog, see...

It seems function annotations are not supported (https://www.python.org/dev/peps/pep-3107/) as `M-x sphinx-doc` does not work on the following code: ``` def get(self) -> dict: raise HTTPMethodNotAllowed() ```

This port the code to PureScript 0.11. I'm not very familiar with bower, maybe you can check that my ~~way to escape the dependencies nightmare~~ bower resolutions are correct. Tests...

Hello, I tried the library (using Elixir). The data are transmitted to the Erlang Port but then I do not receive anything on the cable. As you can see here:...

I have read a loop in my program that call this function: ```elixir def handle_call({:read, count}, _from, state) do res = case Baud.readn(state.serial_pid, count, state.timeout) do {:to, data} -> {:timeout,...

Is there anyway to make the `readall` blocking? It returns `""` when no data are available.

I have this minimal Emacs configuration stored in `debug.el`: ``` (use-package smartparens) (use-package elixir-ts-mode :config (progn (defun my-elixir-mode-hook () (smartparens-mode) (require 'smartparens-elixir) ) (add-hook 'elixir-ts-mode-hook 'my-elixir-mode-hook) ) ) ``` which...