大端序与小端序的C++存取

把int等数字转换成字节流,需要考虑字节的顺序,有大端序或小端序两种。这两种顺序很多平台、算法、协议里都有用到。 大端序 int数字 0xAABB...

五月 8, 2022 · 1 分钟 · 247 字 · Ruotian

Python 使用子进程调用函数并得到 exit code

Python 的 subprocess 并不支持直接调用函数。可以用 multiprocessing 库来搞。 def twosum(a, b): exit(a+b) from multiprocessing import Process if __name__ == '__main__': p = Process(target=twosum, args=(2, 33)) p.start() p.join() print('exit code:', p.exitcode) 如果需要传输其他类型的变量,可以用 multiprocessing 里的 Queue 。

五月 3, 2022 · 1 分钟 · 66 字 · Ruotian

Scrooge

买了一本漫画书,《史高治的光辉岁月》。

三月 26, 2022 · 1 分钟 · 19 字 · Ruotian

🧶 Unravel Two

《Unravel Two》

三月 22, 2022 · 1 分钟 · 2 字 · Ruotian

使用有线网络连接树莓派

使用此方法需要电脑上有网线接口,或者自备USB网卡。 使用 USB-C 电源线连接树莓派,树莓派会自动开机。 拿一根网线连接树莓派和电脑,可以看到网口的状态...

二月 19, 2022 · 2 分钟 · 557 字 · Ruotian

树莓派SD卡空间扩容

使用 ssh 连接到 RPi 上的终端。 使用 df -h 查看当前空间情况,Mounted on / 为 SD 卡空间,扩容前为 4GB左右。 使用 sudo fdisk /dev/mmcblk0 进入fdisk 的操作界面,按p...

二月 19, 2022 · 1 分钟 · 444 字 · Ruotian

购入 Xbox Seires X

溢价购入 Xbox Series X,体验很棒!

一月 27, 2022 · 1 分钟 · 13 字 · Ruotian