[Linux] 如何確認端口(port)已經被使用?
Last Updated on 2023-03-23 by Clay
問題描述
我們通常都會在 Linux 伺服器上啟動各式各樣的服務,最常見的就是開一個網頁、開放一個端口(port)來讓我們或使用者測試開發中的功能。
Read More »[Linux] 如何確認端口(port)已經被使用?Last Updated on 2023-03-23 by Clay
我們通常都會在 Linux 伺服器上啟動各式各樣的服務,最常見的就是開一個網頁、開放一個端口(port)來讓我們或使用者測試開發中的功能。
Read More »[Linux] 如何確認端口(port)已經被使用?Last Updated on 2023-03-22 by Clay
一直以來,我在透過 VS Code 連接到公司遠端伺服器開發時,都會遇到 Python 在編輯器中無法幫忙自動補完(auto-complete)的問題。但說也奇怪,我在安裝 Jupyter Notebook 擴充套件後在 .ipynb 的檔案中自動補完就很正常,所以我也一直不以為意。
Read More »[已解決] VS Code 在連接到遠端伺服器中 Python 自動補完(autocomplete)失效Last Updated on 2023-03-21 by Clay
Given an integer array nums
, return the number of subarrays filled with 0
.
Last Updated on 2023-03-20 by Clay
You have a long flowerbed in which some of the plots are planted, and some are not. However, flowers cannot be planted in adjacent plots.
Read More »LeetCode: 605-Can Place Flowers 解題紀錄Last Updated on 2023-03-19 by Clay
Chocolatey 是一款專為 Windows作業系統設計的套件管理器(Package Manager),可用於操作軟體的安裝、升級、配置和卸載。它允許開發者和系統管理員通過命令行界面或 PowerShell 腳本快速安裝和管理應用程序,進而提高工作效率。
Read More »[Windows] Chocolatey 套件管理器筆記Last Updated on 2023-03-19 by Clay
在閱讀一些大神所寫的 Python 原始碼的過程中,想必偶爾會見到 functools.partial
的使用,而直觀上,這個函式的意義似乎並不是那麼好理解。那麼,partial()
函式的功用究竟是什麼呢?
Last Updated on 2023-03-19 by Clay
今天我想要久違地使用 ChatGPT 幫我重新建構我以前寫的音樂播放器,但是因為私心想要使用開源免費的 PySide6 來取代當初使用的 PyQt5 模組,所以嘗試著在筆電上重新安裝了 PySide6 套件。
Read More »[已解決] pip._vendor.urllib3.exceptions.ReadTimeoutError: HTTPSConnectionPoolLast Updated on 2023-03-15 by Clay
Git LFS (Git Large File Storage) 是一個開源的 Git Extension,其目的是讓我們更有效率地管理倉庫中的大文件。早期大部分的版本控制都是針對程式碼、也就是文字本身,所以對上傳速度的需求並不講究。
Read More »Git LFS (Large File Storage) 使用範例Last Updated on 2023-03-06 by Clay
Given an array arr
of positive integers sorted in a strictly increasing order, and an integer k
.
Return the kth
positive integer that is missing from this array.
Last Updated on 2023-03-02 by Clay
前一陣子,我在研究如何使用 Transformer 強化學習 (Transformer Reinforcement Learning, TRL) 這一技術/套件時,我跑官方的腳本會出現一個關於 numpy 的錯誤。其錯誤訊息如下:
Read More »[已解決] module ‘numpy’ has no attribute ‘item’