[Linux] 使用 chmod 指令改變檔案權限
在 Linux 作業系統中,每一份文件都有屬於自己的使用者、群組以及讀寫權限,而這些文件的特性又會影響到其他使用者是否能編輯或使用這份檔案。
Read More »[Linux] 使用 chmod 指令改變檔案權限在 Linux 作業系統中,每一份文件都有屬於自己的使用者、群組以及讀寫權限,而這些文件的特性又會影響到其他使用者是否能編輯或使用這份檔案。
Read More »[Linux] 使用 chmod 指令改變檔案權限Given a 1-indexed array of integers numbers that is already sorted in non-decreasing order, find two numbers such that they add up to a specific target number. Let these two numbers be numbers[index1] and numbers[index2] where 1 <= index1 < index2 <= numbers.length. Return the indices of the two numbers, index1 and index2, added by one as an integer array [index1, index2] of length 2. The tests are generated such that there is exactly one solution. You may not use the same element twice.Read More »LeetCode: 167-Two Sum II - Input Array Is Sorted 解題紀錄
There is a car withRead More »LeetCode: 1094-Car Pooling 解題紀錄capacity
empty seats. The vehicle only drives east (i.e., it cannot turn around and drive west). You are given the integercapacity
and an arraytrips
wheretrip[i] = [numPassengersi, fromi, toi]
indicates that theith
trip hasnumPassengersi
passengers and the locations to pick them up and drop them off arefromi
andtoi
respectively. The locations are given as the number of kilometers due east from the car's initial location. Returntrue
if it is possible to pick up and drop off all passengers for all the given trips, orfalse
otherwise.
最近我在進行程式撰寫時,有了這樣一個奇怪的需求:我的程式解決一個問題基本會在一分鐘左右,但是如果超過一分鐘我需要放棄這項任務,繼續轉向下個任務。
Read More »[Python] 使用 eventlet 函式庫在程式執行超過一定時間後自動終止程式在 Linux 系統中,難免存在著交換檔案的需求,比如說我要將使用者資料從伺服器 A 移動到伺服器 B、或是我有容量很大的電影要從遠端的伺服器傳送到我的裝置本地端......
Read More »[Linux] 透過 rsync 在不同的裝置間斷點續傳中斷的檔案最近重新安裝了一台 Ubuntu 18.04 的作業系統桌機,但卻發現在進入桌面環境後連接不上網路,經過初步確認後,應是因為網路卡介面不存在著驅動程式的緣故。
Read More »[已解決][Linux] 安裝系統後沒有網路,重新安裝網路卡驅動紀錄在使用 C++ 的標準模板函式庫(Standard Template Library, STL)時,若是在使用 deque 或 vector 新增元素時遇到以下錯誤:
Read More »[已解決][C++] No matching member function for call to 'push_back' errorRead More »[工具] 基本免費線上影片編輯工具 FlexClip 使用心得FlexClip 是一個免費(並含有付費進階方案)的線上影片編輯工具。使用者可以輕鬆地建立帶有文字、音樂、動畫以及各式各樣效果的影片。
如果想要立即體驗這款線上影片編輯工具,可以直接前往該網站:https://www.flexclip.com/editor/
一直以來,在 WordPress 建置的外掛(plugin),我都是透過 Ajax 發送請求以完成前端介面與後端資料庫間的資料交換。不論是讀取資料庫中的資料、或是將使用者進行的操作寫入資料庫,使用 Ajax 都可以輕鬆地辦到。
Read More »[已解決] Ajax 發送請求返回錯誤狀態碼 500、readyState 4In 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.