2019年10月21日 星期一

[note] heroku 更改顯示時區 timezone

觀察log時常常發現 heroku 預設時間不是台灣時區

以下是更改時區的command (台灣)

2019年10月8日 星期二

[Note] ImportError: No module named pandas 排除

發現以下error時,代表有使用到pandas模組但是系統找不到此模組。

這裡紀錄在MAC OSX上安裝pandas模組的方法


[note] SyntaxError: Non-ASCII character '\xe8' in file 排除

在寫一些python測試code時,遭遇以下error

SyntaxError: Non-ASCII character '\xe8' in file

這裡記錄一下解決方法


2019年10月5日 星期六

[trouble shooting] brew doctor 命令失敗解決

今天再重新更新MAC OS
發現使用brew doctor 檢查套件是否安裝成功時,出現命令失敗

[note] 如何在HTML網頁檔案之中嵌入github 原始碼

這裡是示範如何在blogger or 一般網頁之中嵌入github source code

[Trouble shooting] AttributeError: 'module' object has no attribute 'time' 解決方式

今天嘗試寫一個python遭遇以下:


 File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/logging/__init__.py", line 95, in <module>
    _startTime = time.time()
AttributeError: 'module' object has no attribute 'time'

明明沒有用到time 模組,為什麼還會出現此訊息呢?


2019年10月2日 星期三