Ben Chuanlong Du's Blog

It is never too late to learn.

Web Engines

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

webview

A tiny cross-platform webview library for C/C++/Golang to build modern cross-platform GUIs. The goal of the project is to create a common HTML5 UI abstraction layer for the …

Questions About Java

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

  1. is possible to define abstract static method? i.e., the method doesn't depend on any instance variables but subclasses have different implementations

  2. for a void method, we can also make it …

Tips on Android

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

  1. scp works well but rsync not.

Tips on GPG

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

  1. Symmetric encryption (using passphrase).

    gpg -c file
    
  2. Decrypt a symmetric encrypted file. You will be prompt to enter your passphrase.

    gpg file.gpg
    
  3. You can use the following command to encrypt …