Ben Chuanlong Du's Blog

It is never too late to learn.

Python for Tablet

https://stackoverflow.com/questions/54003194/how-can-i-access-tablet-pen-data-via-python

https://kivy.org/#home

Tips on Python-Language-Server

pip3 install python-language-server[all]

References

https://github.com/palantir/python-language-server

https://github.com/tomv564/pyls-mypy

https://github.com/paradoxxxzero/pyls-isort

https://github.com/rupert/pyls-black

Comparison of Collections in C++ and Java

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

Plain Old Array

  1. The length/size of array is as in the declaration. Each element of the array is initialized to the default value (null for object).

  2. Array in Java does …

SQL Translation Tools

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

The ORM library SQLAlchemy

can be leverage

SQL Translation Tools

JOOQ Parser

Run Commands on Remote Machines

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

On a Sinsgle Machine

SSH

  1. The pipeline command is run locally. If you want the pipeline command to run remotely, place the whole command to be run remotely in double/single …