Bruce Hsu

@bruce0205

Joined on Apr 26, 2017

  • 微服務解決的問題 ~ 將每一個具有商業邏輯的服務獨立出來,例如不再將所有資料都寫入同一個資料庫,而是每個單獨的服務都有一個最適合自己本身結構的資料庫 微服務的好處 ~ 好處是讓每個服務都可以用最適合自己的語言、資料庫來開發 Kubernetes特別適合用在微服務 ~ 自動化部署(automating deployment)、自動擴展(scaling)和管理容器應用程式(containerized applications)的指揮調度(Orchestration)工具 :::success Development (language、framework)
     Like  Bookmark
  • git log command ======= ###### tags: `git` :::success 在特定的branch、特定的時間區間,利用git command line,抓出相關的git commit log ::: ```shell= git log master \ --after "2019/10/14" \ --before "2019/10/23" \ --pretty=format:"%h%x09%an%x09%ad%x09%s" \ --date=format:'%Y-%m-%d %H:%M:%S' ``` ![](https://i.imgur.com/Ppjs8qf.png) > refer to [electron/electron](https://github.com/electron/electron) repo ## date range ```shell= --after "2019/10/14" --before "2019/10/23" ``` + **after** = *newer than specific date (not
     Like  Bookmark