Ben Chuanlong Du's Blog

It is never too late to learn.

GCP Compute Engine VM Instances

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

GCP

GCP c2 and c3 VMs are good choices according to performance per price. It's even cheaper than customized VM types with reduced memories! GCP c2 VMs are compute optimized and …

Manage Python Projects Using uv

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

Installation

curl -LsSf https://astral.sh/uv/install.sh | sh

curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR="/usr/local/bin" sh

Usage

  1. Migrate from other Python projects to …

Tips on Bash Completion

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

Installation

Ubuntu / Debian

wajig install bash-completion

macOS

brew install bash-completion

Develop Bash Completion

Auto Generate Bash Completion Scripts

  1. The cobra library in GoLang supports auto …

Tips on JavaScript

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.

JavaScript Runtimes

  1. Node.js is a JavaScript runtime environment outside …