Results 21 comments of Irfan

Same! What program do you use with fzy? ripgrep/find/silversearcher? I thought it was some issue with ripgrep + fzy.

Related? https://github.com/neovim/neovim/wiki/FAQ#-and-system-do-weird-things-with-interactive-processes

Check if you are using `idToken` or `access_token` from google. See here: https://github.com/RealmTeam/django-rest-framework-social-oauth2/issues/61#issuecomment-232847825. You need to make sure the token you are exchanging is the access_token

You need to post [access_token](https://developers.google.com/identity/sign-in/web/reference#gapiauth2authresponse) to "auth/convert-token", not id_token. Did this solve your problem?

Maybe check if your `SOCIAL_AUTH_GOOGLE_OAUTH2_KEY`, `SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET` are correctly set as per [this](https://python-social-auth.readthedocs.io/en/latest/backends/google.html#google-oauth2). Also you keep saying 'id_token'. I'm confused. curl -X POST -d "grant_type=convert_token&client_id=&client_secret=&backend=google-oauth2&token= GET googleapis.com/oauth2/v3/tokeninfo?**access_token**=XXX

I did a throughput stress test (localhost) on a modified version of this library. While I did not test latency for a single message, [here are my findings](https://github.com/hamon-in/librtcdcpp/#stress-test). The version...

Here are the explanations from https://tools.ietf.org/html/draft-ietf-rtcweb-data-protocol-08#section-5.1. I think the "_PARTIAL_RELIABLE_" ones might be the what you are looking for. ``` DATA_CHANNEL_RELIABLE (0x00): The Data Channel provides a reliable in-order bi-directional...

>Still, in the WebRTC documentation and tutorials, typically the behavior of these unreliable channels is controlled by a 'maxRetries' or 'maxTimeout' style parameter. I can't seem to find where such...

I've added the chan_type and reliability features to the API: https://github.com/chadnickbok/librtcdcpp/pull/30/commits/f20cf66815448f4068a0d00f972e7603c0f133d7

Try the steps mentioned [here](https://github.com/chadnickbok/librtcdcpp/blob/master/examples/README.md).