2022年10月15日 星期六

[Linux] /dev

/dev是device的縮寫


● /dev/sda

SCSI device, SCSI(Small Computer System Interface)是電腦連接周邊裝置的介面 eq. 硬碟,光碟機,NVMe...


● /dev/ttyUSB0


● /dev/ttyS0

UART
stty -F /dev/ttyS0 -a 讀baud rate
echo "test UART" > /dev/ttyS0


Linux /dev目錄詳解和Linux系統各個目錄的作用

2022年10月5日 星期三

[其他] 淨水器DIY / NSF認證

紀錄一下最近研究淨水器的心得,先從3M淨水器講起.

●3us-max-s01h(台版) / 3us-max-s01(美版)

此型號是3M通過NSF認證的淨水器,其中型號中有s的是淨水系統,包含支架,水管...等.

若只要單獨濾心的型號是: 3us-max-f01h(台版) / 3us-max-f01(美版).

台版和美版一模一樣,唯一差別是台版型號多了一個h(有寫信問過美國3M原廠).

台版官方售價為台幣9280元(含安裝).
美版在亞馬遜官方賣場售價為美金47.35元,約台幣1500元(不含安裝),運費約美金20-30元.

2022年10月2日 星期日

[Git] 情境

Your branch is ahead of 'origin/master' by 3 commits

git reset --hard origin/master

branch diverged

git pull --rebase


git pull後overwritten
1. git stash (把修改過的檔案收起來)
2. git pull
3. git stash pop (再拿出來)