Jim Fisher
                                            Jim Fisher
                                        
                                    The notebook runs `pip install ngrok` - is that https://pypi.org/project/ngrok/? Is it supposed to be https://pypi.org/project/pyngrok/ ?
Okay, I got it running by: 1. Changing `pip install ngrok` to `pip install pyngrok` 2. Running `!ngrok authtoken ` immediately after
@nousr I'm fairly sure this is an issue in Colab. Ngrok requires an authtoken, and fails if you don't set it, so when the user is setting up a new...
I've only been using Colab. I find it surprising that others didn't have the same issue, because AFAIK ngrok requires an authtoken. If you don't set one, HTTP requests will...
I found through testing that setting `customArgs: { foo: "bar"}` results in [the Email Activity dashboard](https://app.sendgrid.com/email_activity) showing an email with "Unique Args: `foo: bar`". So it appears to just be...
(That said, "unique args" is a bizarre name, and should be called "tags" or "private metadata". But the most important thing is consistency - just call it one thing!)
Okay, after 2 hours of tedious work, I've converted the vague English docs into some TypeScript typings: ```ts // These typings are derived from https://docs.sendgrid.com/for-developers/tracking-events/event // BEWARE: those docs seem...
Bear in mind that the right-associative arrow _does_ make sense where currying is _actually_ going on. So `Char -> Char -> Char` would be the appropriate signature for ``` javascript...
(First off, thanks for this library - it looks great!) I believe this issue is describing what I was looking for. In my app, I need to be able to...
Aha, 5 minutes later, I stumbled on this merged PR which does exactly what I needed: https://github.com/sindresorhus/KeyboardShortcuts/pull/13 It's not documented, though. I can update the docs, if you wish.