Tomasz Kowal

Results 26 comments of Tomasz Kowal

Hey, I made an example elixir application that uses `yaccety_sax` https://github.com/tomekowal/yaccety_sax_test/blob/master/test/yaccety_sax_test_test.exs All the exciting stuff is in the test file. The first test is what you pasted above rewritten in...

Unfortunately, I didn't test it on anything more significant than that toy example. We don't have that many big XML files, anyway. For now, we settled on using `:xmerl` in...

Only slightly: in the sense that it requires adding some more clauses to `handle_info` in the same place. AFAIU, swarm does not send exit signals to other processes the same...

This is gold! 🥇 I recently learned about ProcessTree library and was figuring out if we can use it with Tesla (our Phoenix controllers schedule Oban jobs to make further...

I've encountered a similar error but without using protocols. ``` defmodule Keymap.ListHelper do def update!(list, key, fun) when is_list(list) and is_function(fun, 1) do update!(list, key, fun, list) end defp update!([{key,...

I am getting the exact same message. Looking at the source code, the `:timeout` result is unhandled here: https://github.com/elixir-tools/next-ls/blob/main/lib/next_ls.ex#L244 Another question is what causes the timeout. Lexical also does not...