Ben Chuanlong Du's Blog

It is never too late to learn.

Tips on GitHub

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

GitHub Subscriptions

Tips and Traps

  1. Have at least 2 branches master and dev. Reserve the master branch for releasing purpose and the dev banch for development. Protect the master branch on …

SpaceVim - A Modern Vim/NeoVim Configuration

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

Installation

curl -sLf https://spacevim.org/install.sh | bash
# enable Python3 support
wajig install python3 python3-pip
pip3 install -U pynvim

Uninstallation

curl -sLf https://spacevim.org/install.sh | bash -s -- --uninstall …

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.

babel

babel is a compiler for writing next generation JavaScript …

Tips on Linux

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

Tricks and Traps

  1. Use full paths of commands when you use a batch account or schedule a cron job. The reason is that batch account and/or cron might have different …

Tips on cURL and Wget

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

cURL vs Wget

curl vs wget has a detailed comparison between curl and wget. In short, curl is more powerful and flexible and thus is preferred to wget unless you want …