Łukasz Jan Niemier

Results 235 comments of Łukasz Jan Niemier

@garthk while I appreciate mentioning me, it is the project of @unnawut, I just wanted to write license linter that will reject unknown licenses (for example for legal reasons you...

@essen I could do that only within `Makefile` which I cannot edit. I run it in the shell in form of `env LDFLAGS='-L/path/to/openssl/lib' make compile` and it fails, I need...

You are probably looking for something like [`PrimInt`](https://docs.rs/num-traits/0.2.6/num_traits/int/trait.PrimInt.html) from `num-traits` crate.

@kostis the reason to move functions around is that in original source code the functions with the same name were grouped together and separated from the private functions. So to...

@aronisstav I have found the problematic line and it seems that it cannot be solved right now due to [Erlang issue (ERL-805)](https://bugs.erlang.org/browse/ERL-805). And no, `cover:compile(Mod)` do not work as well...

@aronisstav the point is that you can get that data, what is more, you get it each time when you build your module in-memory in Elixir (it doesn't fully work...

@aronisstav temporary workaround could be if you would expose API that accept compiled module binary or AST instead of requiring module name. That would allow me to create few Elixir...

I have achieved some success with this code: ```elixir defmodule ConcuerrorElixirExampleTest do use ExUnit.Case, async: true doctest ConcuerrorElixirExample @after_compile __MODULE__ def message_test do this = self() spawn(fn -> send(this, :foo)...

What is the status?

We can use other ligature for `/=` like Fira Code: ![image](https://cloud.githubusercontent.com/assets/291639/19596079/29d57f4c-978d-11e6-8b9d-c27047162f3c.png) It still reassembles intention but is less similar to `≠`. Other option would be using other ligature for `!=`...