Skip to main content

問題 Windows 下無法刪除檔案

常常在解壓檔案的時候,尤其是 linux 的壓縮檔,
經常會會出現檔案刪除不掉的情況,使用檔案總管、命令列模式都刪除不掉,
使用 PowerShell 也不行。

找到一個方式可以繞過這個問題,就是用 7-ZIP ,

勾選 [壓縮後刪除檔案] 就行了。


Comments

Popular posts from this blog

KSB037 Motor Board 馬達板擴充積木

KSB037 Motor Board 馬達板擴充積木 key: makeblock,microbit,motor Description 說明: 使用 KSB037 Motor Board 馬達板擴充積木 https://github.com/edisonchiu/pxt-motor-KSB037 History v0.1 來源版本 https://github.com/lioujj/KSB037 v0.2 修正字串錯誤 Step 步驟: 1. Makeblock -> Advanced -> Add Package 2. 在 Search or enter project URL… 輸入擴充積木網址,      https://github.com/edisonchiu/pxt-motor-KSB037 3. 按下搜尋會出現擴充積木,按下去新增擴充積木 4. 積木區就會出現新的積木可以用了。 KSB037 馬達擴充板 擴充積木測試程式 KSB037_CustomBlock_Test 目的說明: 按下按鈕可以測試馬達和板子是否正常運作 注意事項: 馬達擴充板 外接馬達需要外接電源,且電源開關需要開啟。 馬達擴充板 指撥開關 2,3,4,5 需要在 ON 的狀態。 功能說明: 按 A 左邊馬達往前全速(1023)運轉。 按 B 右邊馬達往前全速(1023)運轉。 按 A+B 兩邊邊馬達同時往前全速(1023)運轉。 以上皆非則馬達停止顯示中心一個點。 micro:bit - KSB037 Motor Simple Test (JavaScript) Source Code 源碼如下:

How to use voice input on PC 如何在電腦上使用語音輸入

How to use voice input on PC 如何在電腦上使用語音輸入 #Voice,Input,Windows 10,Google Doc,Google Translate, 工作,技巧 在電腦上語音輸入有下列幾種方式 使用語音輸入 - Windows 10  使用語音輸入 - Google Doc  使用語音輸入 - Google Translate  1.使用語音輸入 - Windows 10 Windows 10 -> 控制台 -> 語音辨識 https://support.microsoft.com/zh-tw/help/17208 按照說明作基本的語音訓練。 Windows 語音辨識命令 - Windows 說明 https://support.microsoft.com/zh-tw/help/12427/windows-speech-recognition-commands 2. 使用語音輸入 - Google Doc 使用語音輸入功能 - 文件編輯器說明 https://support.google.com/docs/answer/4492226?hl=zh-Hant 使用語音輸入功能 您可以在 Google 文件或 Google 簡報的演講者備忘稿中,透過語音功能來輸入及編輯文件內容。 注意 :這項功能只能在 Chrome 瀏覽器中使用。 步驟 1:開啟麥克風 您必須開啟電腦的麥克風 (而且麥可風可正常運作),才能使用語音輸入功能或語音指令。 由於各款裝置和麥克風有所差異,請參閱您的電腦手冊瞭解操作方式。一般而言,Mac 的麥克風設定位於 系統偏好設定 ,PC 的麥克風設定則位於 控制台 。 步驟 2:使用語音輸入功能 步驟 3:使用語音指令 開啟語音輸入功能後,您可以利用指令來編輯文件及設定文件格式,例如「Select paragraph (選取段落)」、「italics (斜體)」或「Go to the end of the line (前往行尾)」。 注意事項 : 系統僅支援英文語音指令 (帳戶語言和文件語言都必須是英文)。 ...

Open The Lock - Grasshopper

Open The Lock - Grasshopper Question 問題: YOUR CODE var pinNumber = 10; var foundKey = pickRandom([‘yes’,’no’]); print(‘pinNumber is ‘ + pinNumber); print(‘foundKey is ‘ + foundKey); if (foundKey === ‘yes’ && pinNumber=== 10) {     print(‘You opened the lock!‘); } if (foundKey === ‘yes’ && pinNumber=== 10) {     print(‘The pin number is right, but you are missing the key.‘); } Sample code solution 解答: YOUR CODE var pinNumber = 10; var foundKey = pickRandom([‘yes’,’no’]); print(‘pinNumber is ‘ + pinNumber); print(‘foundKey is ‘ + foundKey); if (foundKey === ‘yes’ && pinNumber=== 10) {     print(‘You opened the lock!‘); } if (foundKey === ‘no’ && pinNumber=== 10) {     print(‘The pin number is right, but you are missing the key.‘); } Details 說明: 只要把 foundKey === ‘yes’ 改成 no 就可以 主程式沒把宣告放上去,是為了凸顯主題,不過...