Skip to content

5 月 2020

[已解決] X Error of failed request: GLXBadContext Major opcode of failed request: 155 (GLX) Minor opcode of failed request: 183 (X_GLXIsDirect) Serial number of failed request: 181 Current serial number in output stream: 31

Last Updated on 2021-07-05 by Clay

今天我在 Linux 作業系統中啟動 Steam 的時候,得到了以下這樣的報錯:

X Error of failed request: GLXBadContext Major opcode of failed request: 155 (GLX) Minor opcode of failed request: 183 (X_GLXIsDirect) Serial number of failed request: 181 Current serial number in output stream: 31
Read More »[已解決] X Error of failed request: GLXBadContext Major opcode of failed request: 155 (GLX) Minor opcode of failed request: 183 (X_GLXIsDirect) Serial number of failed request: 181 Current serial number in output stream: 31

使用 Python 計算兩句子的最短編輯距離 (Minimum Edit Distance)

Last Updated on 2021-07-05 by Clay

前言

在我們進行自然語言處理 (NLP) 任務的時候,有時候,我們會需要進行『兩個句子』的比對,好用來確認他們兩者之間相似不相似 —— 當然,如果想要比較文本,也是可以這麼做,不過稍微有點少見。

Read More »使用 Python 計算兩句子的最短編輯距離 (Minimum Edit Distance)

[Linux] 查看文件的指令 cat、head、tail

Last Updated on 2021-07-05 by Clay

在 Linux 作業系統當中,若是我們想要在終端機中查看某份檔案,那麼,使用 vi 去查看是一件再自然不過的事情。

不過,倘若今天我們只是希望能『查看』這份文件、而非要做什麼修改的話 —— 其實我們可以透過指令將文件的內容『印出』在終端機上,這樣也相當方便。

Read More »[Linux] 查看文件的指令 cat、head、tail

[Linux] 計算資料夾底下有多少檔案

Last Updated on 2021-07-05 by Clay

在 Linux 作業系統當中,該如何從『終端機』中檢查一個資料夾底下究竟有多少檔案呢?這是一個相當常見的需求,雖然我現在也不確定在什麼時候會派上用場 XD

其實說穿了十分簡單,故我便順手紀錄在這裡,希望我以後也不會忘記,回過頭來看我這篇筆記。

Read More »[Linux] 計算資料夾底下有多少檔案