phcebus (菲比斯) 2017下半年既全年回顧

https://www.ptt.cc/bbs/Stock/M.1514954172.A.756.html

2018-01-03 · 1 min · word · Me

這次說的非常完整,而且清楚

https://youtu.be/tgpF_z_j1K0?t=1652

2018-01-01 · 1 min · word · Me

立大香酥雞塊

https://www.mobile01.com/newsdetail/23483/fried-chicken-nugget-blind-taste-test-2017

2017-12-27 · 1 min · word · Me

python 3 pandas matplotlib.pyplot

寫程式這麼久,python真的有夠難寫的,網路上一堆範例都有語法上的錯誤或不完整的,後來經由大陸某教學網終於成功 https://morvanzhou.github.io/tutorials/data-manipulation/np-pd/3-8-pd-plot/ 1、donwload python3 from python website 2、create aaa.py put context import pandas as pd import numpy as np import matplotlib.pyplot as plt ts = pd.Series(np.random.randn(1000), index=pd.date_range(‘1/1/2000’, periods=1000)) ts = ts.cumsum() print(ts) ts.plot() plt.show() //This is best important!! 3、python aaa.py then see error. Usually is package not install. So just pip install import matplotlib.pyplot as plt # pip install matplotlib import pandas as pd # pip install pandas see screen have notis, just follow install. ...

2017-12-14 · 1 min · 75 words · Me

windows docker go

1、go mkdir directory aaa create file go_httpserver.go package main import ( “fmt” “net/http” ) func handler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, “Welcome to my Website!!!\n %s”, r.URL.Path[1:]) } func main() { http.HandleFunc("/", handler) http.ListenAndServe(“0.0.0.0:80”, nil) } set GOARCH=amd64 set GOOS=linux go build go_httpserver.go => get linux go program 2、create docker image 2.1 install docker toolbox Link 2.2 run kitematic then see left-down DOCKER CLI , click it, then 2.2.1 create directory bbb 2.2.2 create Dockerfile ...

2017-12-13 · 1 min · 143 words · Me