Ben Chuanlong Du's Blog

It is never too late to learn.

Python Distribution

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

  1. When people talks about Python, it usually means the CPython implementation which you can download from . There are other interesting Python implementations such as PyPy (Python implementation in Python), Jython (Python …

NeoVim: liblua5.1-luv.so.0 Not Found on Debian

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

liblua5.1-luv.so.0 is not present under /lib/x86_64-linux-gnu/. Manually make a symbolic link from liblua5.1-luv.so.1.0.0 resolved the problem.

Editing Shell Commands Using Vim

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

  1. Bash supports both Vi mode and Emacs mode. The default is Emacs mode. You can turn on the Vim mode by set -o vi in .bashrc.

export EDITOR=vim

A better …