Pipeline

Posted by 夏泽民

golang运行命令需要使用管道的时候不要用 exec.command sh -c 然后拼字符串的形式因为会出现侏儒



HttpOnly

Posted by 夏泽民

只有服务器操作Cookie 才能保证一些必要的安全。但有时候,可能需要前端来增删改查 Cookie, 这个时候咱们的主角出现了——HttpOnly 如果某一个Cookie 选项被设置成 HttpOnly = true 的话,那此Cookie 只能通过服务器端修改,Js 是操作不了的,对于 document.cookie 来说是透明的。



mysql timestamp 2038

Posted by 夏泽民

MySQL 5.5/5.6/5.7三个大版本 在MySQL上述三个大版本中,默认时间戳(Timestamp)类型的取值范围为’1970-01-01 00:00:01’ UTC 至’2038-01-19 03:14:07’ UTC,数据精确到秒级别,该取值范围包含约22亿个数值,因此在MySQL内部使用4个字节INT类型来存放时间戳数据: 1、在存储时间戳数据时,先将本地时区时间转换为UTC时区时间,再将UTC时区时间转换为INT格式的毫秒值(使用UNIX_TIMESTAMP函数),然后存放到数据库中。 2、在读取时间戳数据时,先将INT格式的毫秒值转换为UTC时区时间(使用FROM_UNIXTIME函数),然后再转换为本地时区时间,最后返回给客户端。



POST PUT PATCH的区别

Posted by 夏泽民

在HTTP中,PUT被定义为idempotent(幂等的)方法,POST则不是,这是一个很重要的区别



vscode 批量合并请求

Posted by 夏泽民

1,方法一 go to vs code and press Ctrl+shift+p (command palette) or go to view and open command palette manually and type “merge” in your command palette, now you can see the Accept all current changes.

2,方法二 在左侧菜单栏点击右键,合并所有请求 https://stackoverflow.com/questions/52288120/how-can-i-accept-all-current-changes-in-vscode-at-once



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