yay: error while loading shared libraries: libalpm.so.13

今天系統更新時遇到 ERROR: Cannot find the debugedit binary required for including source files in debug packages 以及 yay: error while loading shared libraries: libalpm.so.13: cannot open shared object file: No such file or directory 這兩個問題,只要自己手動安裝 debugedit 以及重裝 yay 即可,我的解法如 …
Read more

依 semver 排序 git tag

由於 git tag 輸出不會按照 SemVer(語義化版本)的順序,需要自己調整,以下的方式可以讓輸出以正確的順序排列 git tag | tr - \~ | sort -V | tr \~ -

使用 netcat 操作 redis

以往都是使用圖形介面程式連接 redis 看上面的資料或者做其他操作,今天發現如果只是想要看一下某個值有沒有設成功,或是比較簡單的操作時,其實用 netc …
Read more

Use `host.docker.internal` as Hostname in Linux and mac Docker Container

首先有一個 nginx conf 設定檔 server { listen 80; listen [::]:80; server_name dev.mydomain.com; location / { proxy_pass http://host.docker.internal:16686; } } 原本是只有給 mac 的 docker 開發使用,所以在 proxy_pass 的 hostname 設定爲 host.docker.internal 如果這個檔案是在 linux 的 docker 下執行,因爲拿不到 h …
Read more

Network Name Resolution Dead 錯誤排除記錄

今天上班上一半,突然網路就不能使用了,幾乎所有網頁都進不去,重新啟動電腦依然不行,但是發現手機網路還是好的,只好來檢查一下 使用 ping -c 2 google.com 發現完 …
Read more

XDG Autostart

Autostart Directories 依以下優先順序 # 1: user-specific $XDG_CONFIG_HOME/autostart # 2: user-specific default ~/.config/autostart # 3: system-wide $XDG_CONFIG_DIRS/autostart # 4: system-wide default /etc/xdg/autostart .desktop file format 有興趣看詳細定義可閱讀 Desktop Entry Specification 。 以 Steam 裡面的遊戲「Little Nightmares」 …
Read more

Variable Fonts 簡介

本文亦同步發表於 KKday Tech Blog。 名詞定義 在敘述 Variable Fonts 時,會用到許多排版專業術語,由於排版印刷技術進步快速,許多排版術語也因爲過時或演進而更容易混 …
Read more

重新啟動 X 圖形介面

個人電腦在使用時,偶爾因某些意外操作造成畫面當掉或卡死,這種狀況經常是因爲系統的視窗介面(X Window System,簡稱 X)出問題,因爲在 Unix-like 系統中, …
Read more