CodingMan.cc

Code Your True Nature

身為一個軟體工程師,常常需要編輯很多程式碼文件
也會常常需要得到 StackOverflow 上的幫助

但是每次都要手動複製貼上,真的很麻煩
這時候就需要一個好用的剪貼簿工具 Clipy 來幫助你

沒想到我也有幸可以寫這個題目

希望這篇文多多少少可以幫助到未來的面試者,哪怕只是一點點

有一天想用 Enum 來管理整包資料的欄位,沒想到就此踏上一段追尋的旅程
One day, I would like to use Enum to manage all the fields of data.
Unexpectedly began a journey to find the answer.

Sometimes, we need to list all the files in a folder or sub folder in Python.

In this post, I will show you how to use the glob function to achieve this.

有時候你的程式會需要等待一段時間再回來看
如果有辦法可以在程式結束時,可以用某種方式通知你
就可以省下一些時間

這篇文章分享了,如何用程式化的方式在 Mac 發出系統通知

Sometimes, you need to execute some process for a while.
If there is a way to notify you when your process is finished.
It will save a lot of time.

Right here, I show you how to activate a Mac system notification programmatically.

當有一段工作需要平行化的時候,通常我們會很直覺的使用 threading.Thread 來做
但取決於各位機器的條件,有時候並不能無限制地狂開
因為只會提高工作出錯的機率
這時候就需要限制 thread 數量

這篇文章分享了幾種簡單又優雅地限制線程數量的方式

想要取得上個月的月份卻不知如何下手嗎?
當你開心地把今天減去 31 天卻忘記還有二月嗎?

這篇文章教導你,如何順利地取得上個月的月份

有時存檔時遇到編碼錯誤但又不確定資料的編碼

這篇文章教導你如何在不知道資料編碼
但要存檔遇到 UnicodeEncodeError 錯誤時的處理方式