Results 718 comments of OvermindDL1

Actually this is different in that Guardian is based on JWT's and thus is suitable for API endpoints only and should not be used with generic user registration (unless those...

There is an ecto_ldap adapter for ecto 1, I am currently in the process of rewriting it to ecto 2 (with some additional overhauls). LDAP is exposed very much like...

I don't really have time but the LDAP library I made has examples that might help show you?

> Hmm, that's interesting. Aren't logins usually case insensitive? I ran into the issue because mobile phones were sometimes upcasing the email. I'm honestly surprised that it isn't an issue...

> @OvermindDL1 I'm not sure that's correct, as it seems that the local part can be interpreted however the host domain decides. https://stackoverflow.com/questions/9807909/are-email-addresses-case-sensitive . In any case, sticking to 100%...

As long as your Elixir is fully updated and you do not have an applications list defined at all then Mix adds it automatically. If you define an applications list...

For note, here are multiple ways to 'type' ocaml code: Inferred, no types stated but strongly statically type checked ```ocaml (* These two forms are identical *) let some_function =...

Yeah I don't really opt for leaving the types out unless it's 'obvious' otherwise. I tend to use the header style like: ```ocaml let some_function : int -> int ->...

> Does it handle the "spooky type errors at a distance" problems well? Often in heavily type inferred code I find that there is risk that the error happens in...

> Sorry about that :). Gluon is whitespace sensitive since it makes it possible to omit the in tokens that separate the body of let and type bindings from their...