上一页 1 2 3 4 5 6 7 ··· 21 下一页
摘要: # 有赞推送解密 点击查看代码 ``` params = {'message': ['2375i3gee%2F0ip4TMJc1cXMM%2FaP9KF5jMhEzWOOmY6v2OolL6xjg1qPtZxkwRG4Ts3rWfjbKIe53Wku3cjUHvARu4FuHf5%2Fppuo5EW 阅读全文
posted @ 2023-08-24 18:21 寻月隐君 阅读(29) 评论(0) 推荐(0)
摘要: # 《Rust编程之道》学习笔记一 ## 序 ### Rust语言的主要特点 - 系统级语言 - 无GC - 基于LLVM - 内存安全 - 强类型+静态类型 - 混合编程范式 - 零成本抽象 - 线程安全 ### 程序员的快乐 何谓快乐?真正的快乐不仅仅是写代码时的“酸爽”,更应该是代码部署到生产 阅读全文
posted @ 2023-08-12 16:34 寻月隐君 阅读(269) 评论(0) 推荐(0)
摘要: # 更新旧版本的 Deno 报错解决 error: You do not have write permission to /opt/homebrew/bin/deno 参考1:https://www.denojs.cn/manual/getting_started/installation 参考1 阅读全文
posted @ 2023-07-19 18:04 寻月隐君 阅读(101) 评论(0) 推荐(0)
摘要: # 开发人员的注意事项 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 阅读全文
posted @ 2023-07-18 09:26 寻月隐君 阅读(34) 评论(0) 推荐(0)
摘要: # window.localStorage.setItem 和 localStorage.setItem 有什么区别 - 在JavaScript中,localStorage.setItem和window.localStorage.setItem实际上是相同的, - 它们是对浏览器的本地存储(Loca 阅读全文
posted @ 2023-07-14 11:07 寻月隐君 阅读(904) 评论(0) 推荐(0)
摘要: del 和 pop 都可以从 Python 字典中删除一个键值对,不同之处在于它们的返回值和错误处理方式。 del 语句可以直接删除字典中的一个键值对,语法如下: `del dict[key]` del 语句没有返回值,如果尝试删除不存在的键,会抛出 KeyError 异常。 pop 方法可以删除字 阅读全文
posted @ 2023-06-26 10:36 寻月隐君 阅读(533) 评论(0) 推荐(0)
摘要: # Rust语言 - 接口设计的建议之受约束(Constrained) - [Rust API 指南 GitHub](https://github.com/rust-lang/api-guidelines):https://github.com/rust-lang/api-guidelines - 阅读全文
posted @ 2023-06-21 09:53 寻月隐君 阅读(144) 评论(0) 推荐(0)
摘要: # Rust语言 - 接口设计的建议之显而易见(Obvious) - [Rust API 指南 GitHub](https://github.com/rust-lang/api-guidelines): - [Rust API 指南 中文](https://rust-chinese-translat 阅读全文
posted @ 2023-06-19 18:36 寻月隐君 阅读(123) 评论(0) 推荐(0)
摘要: # Go 语言之 Shutdown 关机和fvbock/endless 重启 Shutdown 源码 ```go // Shutdown gracefully shuts down the server without interrupting any // active connections. 阅读全文
posted @ 2023-06-18 19:28 寻月隐君 阅读(300) 评论(0) 推荐(0)
摘要: # Go 语言之 Viper 的使用 ## Viper 介绍 [Viper](https://github.com/spf13/viper): ### 安装 ```bash go get github.com/spf13/viper ``` ### Viper 是什么? Viper 是一个针对 Go 阅读全文
posted @ 2023-06-18 15:29 寻月隐君 阅读(791) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 ··· 21 下一页