HSTS

Posted by 夏泽民

HSTS 是 HTTP 严格传输安全(HTTP Strict Transport Security) 的缩写。 这是一种网站用来声明他们只能使用安全连接(HTTPS)访问的方法。 如果一个网站声明了 HSTS 策略,浏览器必须拒绝所有的 HTTP 连接并阻止用户接受不安全的 SSL 证书。 目前大多数主流浏览器都支持 HSTS (只有一些移动浏览器无法使用它)。



Gendry

Posted by 夏泽民

https://github.com/didi/gendry/blob/master/translation/zhcn/README.md



Benchmark

Posted by 夏泽民

// 以BenchmarkXXX类似命名,并传入b *testing.B 参数 func BenchmarkLoopSum(b *testing.B) { for i := 0; i < b.N; i++ { total := 0 for j := 0; j <= maxLoop; j++ { total += j } } }



5WHY分析法

Posted by 夏泽民

所谓5why分析法,又称“5问法”,也就是对一个问题点连续以5个“为什么”来自问,以追究其根本原因。



json.Marshal 特殊 html 字符被转义

Posted by 夏泽民

go 语言提供了 json 的编解码包,json 字符串作为参数值传输时发现,json.Marshal 生成 json 特殊字符 <、>、&会被转义。



Search

Popular posts

Anything in here will be replaced on browsers that support the canvas element

Recent posts

This blog is maintained by 夏泽民

Get in touch with me at 465474307@qq.com

Subscribe to our mailing list

* indicates required