Michał Muskała

Results 110 comments of Michał Muskała

I just got around to see this PR. I'd like to ask you to consider a slightly different approach to injecting default callback implementations in `__using__`. In particular it is...

I totally understand that. If you have some questions or code you'd like me to review, just ping me.

I recently read a very interesting blog post on pagination recommending dynamic page size - the first page is 10 elements, the next one 20, etc. This plays extremely well...

They should be exactly the same, `left in right` expands to an `Enum.member?` call, if `right` is not a list or range literal

I tried the version with `[0-9]` rather than `\d` before - it has the same bug

Here's an even weirder error: ```rust use logos::Logos; use regex::Regex; #[derive(Debug, PartialEq, Eq, Logos)] pub enum SyntaxKind { #[regex(r"[0-9](_?[0-9])*\.[0-9](_?[0-9])*([eE][+-]?[0-9](_?[0-9])*)?")] Float, #[regex(r"[0-9][0-9]*")] Integer, #[error] Error, } fn main() { let regex...

I looked into this a bit. It's not particularly complicated, but we do need to port validation rules from `erl_lint` (since Elixir skips running the checks there). In particular, it...

I'd be happy to discuss how to best integrate the new module into Elixir given the combination of Erlang stdlib, Elixir stdlib, and Jason. I was planning to release Jason...

What we have in eqwalizer is actually not available in regular Erlang. We not only have line + column, but we actually have full start/end range for every construct in...

The behavior of not encoding certain values I consider correct - JSON spec defines keys as strings and in Elixir the best concept of what a "string" is (with coercions),...