[Python] 使用 eventlet 函式庫在程式執行超過一定時間後自動終止程式
Last Updated on 2022-01-05 by Clay
最近我在進行程式撰寫時,有了這樣一個奇怪的需求:我的程式解決一個問題基本會在一分鐘左右,但是如果超過一分鐘我需要放棄這項任務,繼續轉向下個任務。
Read More »[Python] 使用 eventlet 函式庫在程式執行超過一定時間後自動終止程式Last Updated on 2022-01-05 by Clay
最近我在進行程式撰寫時,有了這樣一個奇怪的需求:我的程式解決一個問題基本會在一分鐘左右,但是如果超過一分鐘我需要放棄這項任務,繼續轉向下個任務。
Read More »[Python] 使用 eventlet 函式庫在程式執行超過一定時間後自動終止程式Last Updated on 2022-01-05 by Clay
在 Linux 系統中,難免存在著交換檔案的需求,比如說我要將使用者資料從伺服器 A 移動到伺服器 B、或是我有容量很大的電影要從遠端的伺服器傳送到我的裝置本地端……
Read More »[Linux] 透過 rsync 在不同的裝置間斷點續傳中斷的檔案Last Updated on 2022-01-05 by Clay
最近重新安裝了一台 Ubuntu 18.04 的作業系統桌機,但卻發現在進入桌面環境後連接不上網路,經過初步確認後,應是因為網路卡介面不存在著驅動程式的緣故。
Read More »[已解決][Linux] 安裝系統後沒有網路,重新安裝網路卡驅動紀錄Last Updated on 2022-01-05 by Clay
在使用 C++ 的標準模板函式庫(Standard Template Library, STL)時,若是在使用 deque 或 vector 新增元素時遇到以下錯誤:
Read More »[已解決][C++] No matching member function for call to ‘push_back’ errorLast Updated on 2022-01-04 by Clay
Read More »[工具] 基本免費線上影片編輯工具 FlexClip 使用心得FlexClip 是一個免費(並含有付費進階方案)的線上影片編輯工具。使用者可以輕鬆地建立帶有文字、音樂、動畫以及各式各樣效果的影片。
如果想要立即體驗這款線上影片編輯工具,可以直接前往該網站:https://www.flexclip.com/editor/
Last Updated on 2022-01-03 by Clay
一直以來,在 WordPress 建置的外掛(plugin),我都是透過 Ajax 發送請求以完成前端介面與後端資料庫間的資料交換。不論是讀取資料庫中的資料、或是將使用者進行的操作寫入資料庫,使用 Ajax 都可以輕鬆地辦到。
Read More »[已解決] Ajax 發送請求返回錯誤狀態碼 500、readyState 4Last Updated on 2022-01-03 by Clay
In a town, there areRead More »LeetCode: 997-Find the Town Judge 解題紀錄n
people labeled from1
ton
. There is a rumor that one of these people is secretly the town judge. If the town judge exists, then: 1. The town judge trusts nobody. 2. Everybody (except for the town judge) trusts the town judge. 3. There is exactly one person that satisfies properties 1 and 2. You are given an arraytrust
wheretrust[i] = [ai, bi]
representing that the person labeledai
trusts the person labeledbi
. Return the label of the town judge if the town judge exists and can be identified, or return-1
otherwise.
Last Updated on 2022-01-02 by Clay
You are given a list of songs where the ith song has a duration ofRead More »LeetCode: 1010-Pairs of Songs With Total Durations Divisible by 60 解題紀錄time[i]
seconds. Return the number of pairs of songs for which their total duration in seconds is divisible by 60. Formally, we want the number of indicesi
,j
such thati < j
with(time[i] + time[j]) % 60 == 0
.