Henricus Louwhoff
Henricus Louwhoff
@AlphaHydrae I have the same issue and what works for me is running `mix deps.compile argon2_elixir --force`
``` html ``` this doesn't have to mean 20px, it can be 20em, 20rem or anything else
You should never include the full CSS file in your project. Take the Sass files and strip out everything you don't need. The author made 3 grids for example and...
The `prefix` option can also be set on the struct itself with `Ecto.put_meta/2` ```elixir def checkout_factory do %Checkout{ (...) } |> Ecto.put_meta(prefix: "test") end ```
I've struggled with bounded contexts a lot and my problem with it was that the context simply became to big. In smaller projects it would work but for bigger ones...
Hey @JoshSmith, I'm building an e-commerce PaaS API (with GraphQL) and I've tried to apply the bounded contexts method on Products. In my case I have `Products`, `ProductPrice`, `ProductImage`, `ProductVariant`,...
This is correct behaviour, how would you coerce "baz" to a Integer? You can filter it yourself ``` foo.int_array.select { |k,v| v.is_a? Integer } ```
Well I have strict mode on so in my case it will fail loudly. That said I would not like Virtus or any library for that matter to just discard...
Agreed, but I also like that fact that you can turn that option on and off (strict mode)