2020/12 Cola Daily Build

ubuntu 取得檔頭,判斷檔案類型

使用 file 指令

grep, ag, rg

可以用來取代 grep,效能更好的工具

ref: 用 rg 取代 grep 加快查詢速度

chrome is bad, remove uninstall chrome & Keystone & google service

vue component style (scope) 設定建議

總結大方向做法

  • vue style 盡可能寫在 scope 裡
  • 盡可能不要針對 native html tag 設定 style 避兔院內感染 :mask:
    e.g.
❌
<style>
label { font-size: 100px;}
</style>
✅
<style>
.large-label-container {
  label { font-size: 100px;}
}
</style>

git fetch origin script

有多台電腦時,弄個 script 更新 git project

source: Git fetch origin Script