Ben Chuanlong Du's Blog

It is never too late to learn.

Tips on Frontend Development

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

The State of Frontend in 2022 has a good discussion about the state and trend of frontend technologies as of 2022.

Useful Tools for Web Development

  1. Rome provides unified developer tools …

Parser Generators

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

pest

Pest is a general purpose parser written in Rust with a focus on accessibility, correctness, and performance. It uses parsing expression grammars (PEG) as input, which are similar in spirit …

Tips on Valgrind

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

Format Python Code Using Black

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

Installation

pip3 install -U black[jupter]

Usage

The following code formats Python files and Jupyter/Lab Notebooks under the current directory.

black ./

References