Alf Eaton

Results 67 comments of Alf Eaton

It's also important to include a boolean `email_verified` field in the response, as it's currently possible to connect an ORCID account without the user having verified their email address.

> As some of the organizations you listed above have demonstrated, sharing private user information is not something to be undertaken lightly. I think the examples listed above actually show...

@mdodge-ecgrow For some reason [the v2 `tweets/search/recent` endpoint](https://developer.twitter.com/en/docs/twitter-api/tweets/search/api-reference/get-tweets-search-recent) seems to use `next_token` as the parameter name instead of `pagination_token`. ![image](https://user-images.githubusercontent.com/14294/131918098-52e71226-2f75-41c1-8757-1e249c98f6e6.png)

This also happens if the path is incorrect (e.g. if the path is set to `/users` instead of `users`) - the 404 response is HTML. Throwing an error with the...

If the file has a `.mjs` extension and `import` is used instead of `require`, then top-level await is allowed: ``` import Twitter from 'twitter-v2' ... const { data } =...

@mhchem You may find [this pandoc filter](https://gitlab.com/mpapp-public/mathjax-filter/-/blob/master/src/action.ts) helpful as an example - it's used for converting equations from LaTeX to SVG using MathJax, all in JavaScript/TypeScript. In this case the...

Creating the table before inserting is a useful workaround, thanks. It does require figuring out the `create table` syntax and listing all the fields manually, though, which loses some of...

> I think closest is by declaring a /department Thanks, that's a reasonable idea. After trying it I think the relationship between a parent `BarOrPub` and a department `Restaurant` called...

Maybe something like `BarOrPub` `OpeningHoursSpecification`?