摘要:
# 更新旧版本的 Deno 报错解决 error: You do not have write permission to /opt/homebrew/bin/deno 参考1:https://www.denojs.cn/manual/getting_started/installation 参考1 阅读全文
摘要:
# 开发人员的注意事项 One of the truths of software development is that users will always find a way to break your software. No matter how much thought you put 阅读全文
摘要:
del 和 pop 都可以从 Python 字典中删除一个键值对,不同之处在于它们的返回值和错误处理方式。 del 语句可以直接删除字典中的一个键值对,语法如下: `del dict[key]` del 语句没有返回值,如果尝试删除不存在的键,会抛出 KeyError 异常。 pop 方法可以删除字 阅读全文
摘要:
# Go 语言之 Shutdown 关机和fvbock/endless 重启 Shutdown 源码 ```go // Shutdown gracefully shuts down the server without interrupting any // active connections. 阅读全文