# 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.

```bash
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.

```bash
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.

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

## Date and Time

Generic representation

```bash
YYYY-mm-dd HH:MM:ss
```

e.g.

```bash
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

```bash
YYYY-mm-dd_HH-MM-ss
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://tk233.gitbook.io/notes/convention-used.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
