Home-Assistant-EntityAvailability

(★ 21)

Monitor device availability in Home Assistant. Track offline devices, availability history, and degraded states with a custom dashboard card.

파일 탐색기

  • .gitignore
  • AUTOMATION_EXAMPLES.md
  • CHANGELOG.md
  • conftest.py
  • cspell.json
  • hacs.json
  • info.md
  • LICENSE
  • pytest.ini
  • README.md
  • requirements_test.txt
  • ruff.toml
  • SECURITY.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

git checkout

설명 보기 ▼

Checkout a branch or paths to the working tree.

git checkout -b {{branch_name}}

Create and switch to a new branch:

git checkout -b {{branch_name}} {{reference}}

Create and switch to a new branch based on a specific reference (branch, remote/branch, tag are examples of valid references):

git checkout {{branch_name}}

Switch to an existing local branch:

🔍

git clone

설명 보기 ▼

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:

🔍

groups

설명 보기 ▼

사용자의 그룹 멤버십을 출력.
관련 항목: `groupadd`, `groupdel`, `groupmod`.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/groups-invocation.html>.

groups

현재 사용자의 그룹 멤버십을 출력:

groups {{username1 username2 ...}}

사용자 목록의 그룹 구성원을 출력:

🔍

pip install

설명 보기 ▼

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

설명 보기 ▼

Python 언어 인터프리터.
더 많은 정보: <https://docs.python.org/using/cmdline.html>.

python

REPL(대화형 셸) 시작:

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

특정 Python 파일 실행:

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

특정 Python 파일 실행 후 REPL 시작:

🔍

compact

설명 보기 ▼

NTFS 파티션의 파일 및 디렉터리 압축 상태를 확인하거나 변경.
더 많은 정보: <https://learn.microsoft.com/windows-server/administration/windows-commands/compact>.

compact

현재 디렉터리의 파일 압축 상태 표시:

compact /c {{path\to\file}}

지정한 파일 압축:

compact /u {{path\to\file}}

지정한 파일 압축 해제:

// repository documentation