magict4

Results 3 comments of magict4

I end up with [writing a custom Instant serializer to get around this problem](https://stackoverflow.com/a/52191521/2498906). I guess Jackson [use `Instant.toString()` method to serialize Instant objects](https://github.com/FasterXML/jackson-modules-java8/blob/master/datetime/src/main/java/com/fasterxml/jackson/datatype/jsr310/ser/InstantSerializerBase.java#L101) by default. I also find [some...

请问方便link一下对应的代码吗?是这段吗?https://github.com/vernesong/OpenClash/blob/9ee0f02ed7615a62f960c9ee2f951dd1b47e2411/luci-app-openclash/root/etc/init.d/openclash#LL1779C111-L1779C135 这是debug日志,打开 fake-ip tun模式之后,可以看到8.8.8.8:53出现在 core log 中。是否代表 8.8.8.8 没有被成功拦截? OpenClash 调试日志 生成时间: 2023-06-06 04:26:42 插件版本: v0.45.121-beta 隐私提示: 上传此日志前请注意检查、屏蔽公网IP、节点、密码等相关敏感信息 ``` #===================== 系统信息 =====================# 主机型号: FriendlyElec NanoPi R4S 固件版本: OpenWrt 22.03.5 r20134-5f15225c1e...

I also feel the answer is wrong. Here is my proposing solution. ``` #include void capitalize(char *str) { char *c = str; while (*c != '\0') { if (isalpha(*c)) *c...