Sonny Scroggin

Results 73 comments of Sonny Scroggin

@evnu can you swap the use of `println!` with `env_logger` and `log` crates and see if you can trigger a panic? So far I've had good luck with that combination...

@lexmag `:erlang.port_close/1`

I think the issue brought up in the issue is related to the usage documentation. The problem with the way it is documented is that it tells users to call...

@yordis why would we want to remove the `Conn` ever? If you want to fetch the user without the `Conn` just call `Ueberauth.Strategy.Google.OAuth.get/2` (which is already public) and you're done.

@mkreyman if you're implementing your own strategy which doesn't comply with the base OAuth2 spec, you should probably just not pipe through `OAuth2.Strategy.AuthCode` and build up the request as your...

Hi @lmarlow, Adding a `ref` would be a good way to do this, and it's something that I have planned to do.

> Looks like building https://github.com/discordapp/sorted_set_nif on OTP22 is being broken by the lack of OTP22 support as well, so 👍 to getting this merged. Starting with `rustler` `v0.21`, this crate...

In general, I've always ended up using `release` mode in all environments because the incremental compilation usually is pretty fast once you've paid the upfront cost. Obviously this may not...