2019年10月31日 星期四

DotNet Core API sample by GitHub

久不用就會忘記,透過Visual Studio 的WEBAPI範例來搭配GitHub配合看版當個小型的敏捷開發的範本。

GitHub:

1. 下載Git by windows
進入官網 http://git-scm.com/

2. 建立看版做派工追蹤

3. 使用 Git Bash 建立專案
  cd c:\git\
  git init
  git add -f --all
  git commit
  git push

DotNet:
 

2. 取得DotNet Core 3.0 
使用Vistual Studio Install 的更新取得。 

3. 建立API專案 Code Sample

4. 透過team Explorer 做 commit & push

2019年10月2日 星期三

試算表的日期轉文字

在試算表的儲存格常常會依照所貼入的文字去轉換格式,但使用公式來處理時日期就會變轉成無意義的數字,這部分可以使用TEXT函數來轉換。

=TEXT(儲存格, "yyyy/mm/dd HH:MM:ss")

很容易忘掉,所以做個MEMO。