Tomasz Marek Sulima
Tomasz Marek Sulima
When running `dialyzer` I can see 22 errors which comes from amnesia database definition. I have described all problems which I have found in `amnesia` in one forum post. An...
Actual results: ```elixir Floki.parse("5 = 5") [{"span", [], ["5"]}, {"span", [], ["="]}, {"span", [], ["5"]}] ``` Expected results: ```elixir Floki.parse("5 = 5") # or Floki.parse("5 = 5", remove_text_nodes_with_whitespaces: false) [{"span",...
Hey, I'm using `asdf` for managing multiple versions of development software. It uses this project and on `openSUSE` distribution there is one small problem. Luckily it does not stops building...
### Purpose Hey, many web apps especially those with galleries often adds various effects like for example: https://www.w3schools.com/howto/howto_css_flip_card.asp That's `CSS` simple solution just to show what people would like to...
Hi, I found that `trackma`'s latest version available for `Gentoo` is `0.8.5-r1` and it's a part of [kzd](https://gpo.zugaina.org/Overlays/kzd) overlay. Since creating a `Gentoo` repository is very simple (I did it...
Currently `asdf latest --all` using a fallback call returns `main-otp-25` which we definitely can't consider as stable. However we can easily add a one line script using code like: ```bash...
Hi, hope you remember our talk on `Elixir` forum over year ago. The only reason for not trying `svelte` yet was missing `SPA` guide with `Phoenix` backend. Here are possible...
### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it The problem is most probably clear for devs, but the error message...
With basic file upload user need to donwnload file and then upload. It's possible to simplify it. Here I mean **only** simple **GET** requests - not universal downloader. For example:...
Hey, do you plan to support `:rpc.block_call/4`? I have a code that tests multiple local nodes using GenServer state. Check my cluster code: [cluster.ex](https://gitlab.com/ex-open-source/ex_api/blob/master/test/ex_api_fixtures/cluster.ex) and test for it in [multiple_nodes_test.exs](https://gitlab.com/ex-open-source/ex_api/blob/master/test/ex_api/multiple_nodes_test.exs)....