Systems & Programming

Compile a Shell Script to a Binary with SHC

shc wraps a shell script in a compiled C binary that decrypts and re-runs it at runtime. It never becomes real machine code, and the decryption key ships inside the binary, so it obfuscates a script rather than securing it.

Systems & Programming

CSS 選擇器:從基本比對到特異度與層疊

拆解 CSS 選擇器如何比對元素——基本選擇器、屬性選擇器、組合器、偽類與偽元素、 :is()/:where()/:has() 等現代選擇器,並用具體算式說明特異度與層疊順序如何決定最終生效的規則。