Ashley
Ashley
Discord will be [deprecating message content access for verified bots](https://support-dev.discord.com/hc/en-us/articles/4404772028055) (this includes MathBot) in **April 2022**. I will be applying for the message content privilege, however this isn't guaranteed. This...
Operations such as `tan(pi / 2)` produce a value, `zoo`, which is something from Sympy. - [x] Investigate what this value is. - [x] Add a constant value to the...
Equality operator currently checks whether two lists are the same object. It should check if the contents are the same. Less than / greater than should compare the contents of...
Would it be possible to utilise [TypeGuard](https://mypy.readthedocs.io/en/stable/type_narrowing.html#user-defined-type-guards) on this function in order to leverage the return value at the callsite for static type checking? https://github.com/MarshalX/atproto/blob/d5e2293848a3506a1b13144062c24bae1cc10f2c/atproto/xrpc_client/models/utils.py#L202 I'd do it myself but...
The JS compiler's list of keywords, `kKeyword`, is actually a list of _Java_ keywords. (it's missing `async`, `await`, has `transient` when it shouldn't, etc.) Relevant code: https://github.com/protocolbuffers/protobuf/blob/94a1819c7ae8509ab6ad37d867d3ea60a5809aaa/src/google/protobuf/compiler/js/js_generator.cc#L62-L68
Timeouts should be configurable - both on the global level and a per-function level. Simplest way is to allow the wait_for_ functions to take an optional timeout argument, if it...