Convention Used

This document will obey the following convention:

Chars

✓ ✗ ▹

File Path

When target is a directory (folder), the path will end with a slash delimiter

e.g.

cd /home/tk/Downloads/
export PATH=~/Documents/aurora/bin/:$PATH
ls ~/Downloads/

When target is a file, the path will end with file extension, if any.

e.g.

source ./env.sh
wget https://10.0.0.2/motion_file.npy
cat ~/.bashrc

When using relative directory in terminal, the path will start with the "current directory" symbol (".")

e.g.

source ./env.sh
cd ./configs/
ls ./output/

Date and Time

Generic representation

YYYY-mm-dd HH:MM:ss

e.g.

2023-12-04 00:18:20

For Python datetime module, it will be

datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")

When space and other special characters are not allowed in the representation, use

YYYY-mm-dd_HH-MM-ss

Last updated