2020年1月29日 星期三

2020年1月28日 星期二

[AWS] EC2 設定固定 IP

參考這篇,如以下步驟
* 在 EC2 下的 Network & Security 建立(Allocate)新的位址(目前我是使用 VPC)
* 再去綁訂(Associate)到某個實體(Instance)


2020年1月27日 星期一

2020年1月7日 星期二

[RPi] Pi4 + C10 microSD

神奇的錯誤訊息
[    1.281506] brcmstb_thermal fd5d2200.thermal: registered AVS TMON of-sensor driver^M
[    2.310279] mmc-bcm2835 fe300000.mmcnr: mmc_debug:0 mmc_debug2:0^M
[    2.317003] mmc-bcm2835 fe300000.mmcnr: DMA channel allocated^M
[    2.324513] hub 1-1:1.0: USB hub found^M
[    2.329095] hub 1-1:1.0: 4 ports detected^M
[    2.349498] sdhci-iproc fe340000.emmc2: Linked as a consumer to regulator.1^M
[    2.375185] mmc1: queuing unknown CIS tuple 0x80 (2 bytes)^M
[    2.382956] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)^M
[    2.390680] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)^M
[    2.396836] mmc0: SDHCI controller on fe340000.emmc2 [fe340000.emmc2] using ADMA^M
[    2.407788] of_cfs_init^M
[    2.408162] mmc1: queuing unknown CIS tuple 0x80 (7 bytes)^M
[    2.410909] of_cfs_init: OK^M 
[    2.418575] mmc1: queuing unknown CIS tuple 0x80 (3 bytes)^M
[    2.426733] Waiting for root device PARTUUID=5e3da3da-02...^M
[    2.469494] random: fast init done^M
[    2.503312] mmc1: new high speed SDIO card at address 0001^M
[    2.515782] mmc0: error -110 whilst initialising SD card^M      

[Python] 移除 list 重複項目

還是傳統的最有效
https://www.geeksforgeeks.org/python-removing-duplicate-dicts-in-list/