Ben Chuanlong Du's Blog

It is never too late to learn.

Tips on Wezterm

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Installation

Follow https://wezfurlong.org/wezterm/install/linux.html#__tabbed_1_3 to install Wezterm on Debian/Ubuntu series of Linux distributions.

Show Image in Wezterm

wezterm imgcat /path/to/image

Shortcuts

Shortcut …

Package Capture on Phones

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

Charles Fiddler

ecapture

https://www.jianshu.com/p/8034b451585b

https://blog.zengrong.net/post/capture-package-on-phone/

https://juejin.im/post/5ad045d2f265da2385334555

http://kiminewt.github.io/pyshark/

https://blog.csdn.net/qq_34094008/article …

Great Command Line Tools Developed in Rust

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

GQL

GQL is a query language with a syntax very similar to SQL with a tiny engine to perform queries on .git files instance of database files, the engine executes the …

Summary of Collections in Rust

Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!

The module std::collections has a good summary on popular collection data structures in Rust and when to use them.

  • Sequences: Vec, VecDeque (double-ended queue), LinkedList (doubly-linked list)
  • Maps: HashMap, BTreeMap …