Too much to learn about Yubikey Reference: Yubico GlossaryFIDO Alliance an open industry association adopt certain standards of authentication FIDO Universal Second Factor (U2F) developed by Yubico and G 2021-08-29 Unfinished
Record of Learning Rust | Part 2 of 2 Smart PointersSmart pointers are data structures that not only act like a pointer but also have additional metadata and capabilities. In Rust, which uses the concept of ownership and borrowing, an ad 2021-08-17 Language Unfinished
Record of Learning Rust | Part 1 of 2 Common Programming ConceptsVariables and MutabilityMutability默认情况下,变量是不可变的(immutable) 声明一个可变变量: 1let mut x = 5; Constant常量当然不能用mut修饰。 声明常量: 1const MAX_POINTS: u32 = 100_000; 常量在程序运行过程中都有效。建议将程序中用 2021-07-10 Language Unfinished
Tmux learning note Tmux is a terminal multiplexer which allows multiple sessions with windows, panes, and more. 2021-04-30 Linux unfinished