# 2019.02.21

[文章] 三个值得期待的 JavaScript 新特性,看了这篇文章后,我才知道有可选运算符,简直是业务开发者的福音 console.log(data.user?.address?.street);https://mp.weixin.qq.com/s/aM5vlKkka8GEFSFM222fNg (opens new window)

[文章] 如何提高 Nginx 的性能、安全性和其他重要的事项。这里面的 Alias 我之前咋没想到写一个呢,我还每次 /usr/local/nginx/sbin/nginx -thttps://github.com/trimstray/nginx-quick-reference (opens new window)

[工具] 一个在线制作乐谱和网格纸的网站。乐谱不用多说啦,网格纸因为间距是固定的,所以打印出来,可以用于画流程图,让线看起来更直:http://www.gridzzly.com/ (opens new window)

[工具] 用于编写 GitHub 徽章的网站:https://shields.io/#/ (opens new window)

# 配图 - 编写 GitHub 徽章

配图

# 配图 - 在线制作乐谱和网格纸的网站

配图

# 示例 - Nginx Alias 代码展示

alias ng.test='nginx -t -c /etc/nginx/nginx.conf'
alias ng.stop='ng.test && systemctl stop nginx'
alias ng.reload='ng.test && systemctl reload nginx'
alias ng.restart='ng.test && systemctl restart nginx'
# or
alias ng.restart='ng.test && kill -HUP `cat /var/run/nginx.pid`'
Last Updated: 2/21/2019, 10:03:46 AM