WIFI-based-human-presence-detection-system

(★ 33)

WiFi CSI-based human presence, occupancy, zone, and activity detection dashboard.

File Explorer

  • .env.example
  • .gitignore
  • CONTRIBUTING.md
  • LICENSE
  • README.md
  • requirements.txt
  • SECURITY.md

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

Convert

View Details ▼

This command is an alias of `magick convert`.
Note: This alias is deprecated since ImageMagick 7. It has been replaced by `magick`.
Use `magick convert` if you need to use the old tool in versions 7+.

tldr magick convert

View documentation for the original command:

🔍

delta

View Details ▼

A viewer for Git and diff output.
See also: `diff`, `difft`.

delta {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}

Compare files or directories:

delta {{[-n|--line-numbers]}} {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}

Compare files or directories, showing the line numbers:

delta {{[-s|--side-by-side]}} {{path/to/old_file_or_directory}} {{path/to/new_file_or_directory}}

Compare files or directories, showing the differences side by side:

🔍

git clone

View Details ▼

Clone an existing repository.

git clone {{remote_repository_location}} {{path/to/directory}}

Clone an existing repository into a new directory (the default directory is the repository name):

git clone --recursive {{remote_repository_location}}

Clone an existing repository and its submodules:

git clone {{[-n|--no-checkout]}} {{remote_repository_location}}

Clone only the `.git` directory of an existing repository:

🔍

pass

View Details ▼

Store and read passwords or other sensitive data.
All data is GPG-encrypted, and managed with a Git repository.

pass init {{gpg_id_1 gpg_id_2 ...}}

Initialize (or re-encrypt) the storage using one or more GPG IDs:

pass insert {{[-m|--multiline]}} {{path/to/data}}

Save a new password and additional information (press `<Ctrl d>` on a new line to complete):

pass edit {{path/to/data}}

Edit an entry:

🔍

pip install

View Details ▼

Install Python packages.

pip install {{package1 package2 ...}}

Install one or more packages:

pip install {{package1 package2 ...}} {{[-U|--upgrade]}}

Upgrade all specified packages to the latest version, installing any that are not already present:

pip install {{package}}=={{version}}

Install a specific version of a package:

🔍

python

View Details ▼

Python language interpreter.

python

Start a REPL (interactive shell):

python {{path/to/file.py}}

Execute a specific Python file:

python -i {{path/to/file.py}}

Execute a specific Python file and start a REPL:

🔍

pct

View Details ▼

Manage LXC containers in Proxmox.

pct list

List all containers:

pct {{start|stop|reboot}} {{100}}

Start/Stop/Reboot a specific container:

pct {{[en|enter]}} {{100}}

Access a specific container's shell:

// repository documentation