Nyuan Zhang

Results 22 comments of Nyuan Zhang

也许写个自动从 mirai-api-http 的 md 提取 data 的东西、、、

感谢 review,明天我会尝试修复这些东西() ~~不过直接引入 `java.net` 真的没问题吗~~

> 没问题啊, mah是jvm only的 主要是担心其他 engine 的行为不同(毕竟 ktor)

Ariadne 保证会提供与 Avilla 无缝衔接的方案

Hi there, I've just looked at the experimental python handler and played with it. After copying some templates, I got the following: ![image](https://user-images.githubusercontent.com/50769752/197535389-791df326-3c55-44a8-9110-80541bd16e9e.png) Maybe this is a good starting point?...

Currently I have some problems with design of the overall look. - How should overloads be presented? Where should they be placed? A1. I think it's best to let user...

I've already published my progress here: https://github.com/BlueGlassBlock/mkdocstrings-handler-python/tree/overload

> 反向 ws 好像需要在连接上的时候就完成鉴权,我考虑下这里是不是要保持原有逻辑 但是连接上就鉴权现在会导致 `code 2`,因为连接时 Bot 还没完成登录,导致 `Bot.getInstanceOrNull(dto.qq)` 返回 `null`

How about using enum? ```py class Bound(float, enum.Enum): Inf = float("inf") NegInf = float("-inf") ``` Constants could be easily extracted via `Inf: Final = Bound.Inf`. Literal wrapping and comparison also...