Philip Munksgaard

Results 52 issues of Philip Munksgaard

Would it be possible to add support for using bandit instead of plug_cowboy for the http server? I've transitioned most of my projects to using bandit instead of cowboy, and...

I'm building my elixir projects as a nix flake, which means that I cannot rely on rustler_precompiled. As suggested in the [documentation](https://hexdocs.pm/mjml/readme.html#installation) I tried disabling ruster_precompiled by putting the following...

This allows passing sensitive DB passwords through files instead of environment variables. This makes collector work better with [systemd credentials](https://systemd.io/CREDENTIALS/) and NixOS flakes. Fixes #540

* Elixir version (elixir -v): 1.17.1 * Phoenix version (mix deps): 1.7.14 * Phoenix LiveView version (mix deps): 0.20.17 It is unclear from the documentation how to test direct-to-s3 uploads....

**LiveSelect and LiveView versions** ```console $ mix deps | grep live_select * live_select 1.5.4 (Hex package) (mix) locked at 1.5.4 (live_select) 4fa26776 $ mix deps | grep phoenix_live_view * phoenix_live_view...

I have the following function component in my project: ```elixir def my_component(assigns) do ~H""" {dbg(assigns)} """ end ``` When I run `mix credo` (with the mentioned check enabled and running...

**Describe the bug** If the `inet` option is passed as an option before `{tcp_module, my_module}`, then `gen_tcp:listen` does not respect the tcp_module overwrite given. **To Reproduce** ```erlang gen_tcp:listen(0, [{fd, Listener},...

team:PS
bug

When compiling a project that uses @editor-js/table with typescript, I get the following error: ``` assets/node_modules/@editorjs/table/dist/plugin.d.ts:70:48 - error TS2339: Property 'block' does not exist on type 'TableConstructor'. 70 constructor({ data,...

good first issue

This commit includes a very rudimentary NIF-based wrapper for interfacing with `libtailscale` from Elixir/Erlang. It includes everything from `tailscale.h`, except `tailscale_enable_funnel_to_localhost_plaintext_http1`. However only the listen/accept parts have been tested somewhat...

Computing floats when given bounds such as min -9.9e15 and max -1 will result in the computation `-1.0 - -9.9e15` yielding 9900000000000000.0 instead of 9899999999999999.0, which makes the generator return...