女兒出生滿四個月了,依習俗要辦個收涎儀式。老婆在牆面簡單佈置了一下,還硬拉狗入鏡。
2021/2/28
2021/2/26
2021/2/25
2021/2/24
2021/2/23
Python 在Windows使用PyInstaller打包py檔為exe可執行檔 package py script to exe file
在Windows使用PyInstaller工具打包.py
檔為.exe
可執行檔。
2021/2/21
2021/2/19
中華電信線上繳費 20210220
因為沒設定自動扣款所以每個月都忘記繳手機通話費。之前都去實體門市繳費,後來改用線上繳費有印象很難用(當時是繳光世代上網月租費輸入設備號碼一直有問題),但繳手機費其實很直覺簡單,但我總是忘記一直拖延,超過期限後中華電信每天都會打電腦語音電話給你催繳「您好,這裡是中華電信,您的手機號碼 - 09...」很煩。。
2021/2/18
Python F-strings 字串格式化 formatted string literals
Python字串格式化除了傳統%
佔位符或str.foramt()
,還可使用Formatted String Literals,簡稱f-strings,又稱Literal String Interpolation(字串插值)。
Python 系統檔案路徑分隔符 system file path separator
不同作業系統檔案路徑符(file path character)也不同,例如Windows是反斜線(backslash)\
,Unix-like系統如Linux或macOS是正斜線(forward slash)/
。
Java 系統檔案路徑分隔符 system file path separator
不同作業系統檔案路徑符(file path character)也不同,例如Windows是反斜線(backslash)\
,Unix-like系統如Linux或macOS是正斜線(forward slash)/
。
2021/2/17
Python 將一行長程式碼分成多行 break one line code to multiple lines
Python可用反斜線符號(backslash \
),又稱行接續符(line continuation operator),把一行長程式碼分程多行。
Python 使用input()函式從命令列取得使用者輸入 use input() function to take user input value from command line prompt
Python如果要從命令列提示(Command-line prompt)取得使用者的輸入值,可使用input([prompt])
函式。
2021/2/14
2021/2/10
2021/2/8
API和Endpoint差別?
API(Application Programming Interface)(應用程式介面)是系統/應用程式依特定協議與外部構通的介面,而Endpont(API端點)是API特定接口的位址。簡單說API是endpoints的通稱。
2021/2/6
2021/2/5
2021/2/4
Java JDBC 取得Oracle資料庫連線 get Oracle database connection
Java使用JDBC 取得Oracle資料庫的java.sql.Connection
連線物件。
2021/2/3
2021/2/2
Spring Boot 使用Google身分驗證器做TOTP驗證 Google Authenticator TOTP auth
Google Authenticator身分驗證器在Spring Boot中進行TOTP驗證。