Proverbs from @rob_pike's inspiring talk at Gopherfest SV 2015 (video)
php laravel artisan 基础命令
LUA Syntax

LUA Syntax

LUA Notes

Read more
OpenSSH 配置文件体系
firewalld services 防火墙内嵌服务
LinuxCentos7-Systemd-Service 自定义编写 Service 应用服务配置说明整理
Go:rune 深度解析:从 Unicode 码点到字符串遍历的艺术

Go:rune 深度解析:从 Unicode 码点到字符串遍历的艺术

rune 的设计哲学

层面Go 的选择开发者收益
存储字符串 = UTF-8 字节序列兼容性高,节省空间(ASCII 高效)
操作rune = Unicode 码点逻辑清晰,避免字节错误
遍历range 自动解码 UTF-8开箱即用,安全可靠
扩展标准库 + x/text 生态支持归一化、断行、排序等高级需求

Go 之父 Rob Pike 的名言
“UTF-8 is the native text format of Go. Strings are UTF-8. Period.”
rune,正是我们与这个“原生格式”对话的桥梁。

Read more
Go:package time
Go:type 关键词总结
Go:switch

Go:switch

switch

switch 注意事项

  • fallthrough 不能用在 switch 的最后一个分支。