pm list packages
pm list pacakges | grep com.abc
adb shell dumpsys deviceidle whitelist -<package_name>
| // | |
| // Article.swift | |
| // Veille | |
| // | |
| // Created by Anthony Da Cruz on 26/01/2018. | |
| // Copyright © 2018 Anthony Da Cruz. All rights reserved. | |
| // | |
| import Foundation | |
| import CoreData |
| node: Platform built on V8 to build network applications | |
| git: Distributed revision control system | |
| wget: Internet file retriever | |
| yarn: JavaScript package manager | |
| python3: Interpreted, interactive, object-oriented programming language | |
| coreutils: GNU File, Shell, and Text utilities | |
| pkg-config: Manage compile and link flags for libraries | |
| chromedriver: Tool for automated testing of webapps across many browsers | |
| awscli: Official Amazon AWS command-line interface | |
| automake: Tool for generating GNU Standards-compliant Makefiles |
| class LineChart { | |
| // LineChart by https://kevinkub.de/ | |
| constructor(width, height, values) { | |
| this.ctx = new DrawContext(); | |
| this.ctx.size = new Size(width, height); | |
| this.values = values; | |
| } | |
| _calculatePath() { |
| import Combine | |
| import Foundation | |
| enum RequestError: Error { | |
| case urlError(URLError) | |
| case decodingError(DecodingError) | |
| case genericError(Error) | |
| } | |
| class NetworkClient { |
Hello and welcome to my Shortcuts Catalog!
This is a public resource designed to help people get started with Siri Shortcuts and the Shortcuts app.
It’s made up of the Shortcuts Library, a collection of over 125+ shortcuts grouped into folders, and the Action Directory, a documentation of 125+ of the actions in the Shortcuts app used to build shortcuts.
Enjoy!
| /* | |
| * Using digital hall effect sensor SENS-M-10 (purchased at Abra) | |
| * | |
| * MCU Board: ESP2-WROOM-32 | |
| */ | |
| #include <BLEDevice.h> | |
| #include <BLEUtils.h> | |
| #include <BLEServer.h> |
This tutorial will enable the use of Home Assistant on an OrangePi 5 board with the following characteristics:
OrangePi Debian OS
OS running on a SDCard
Home Assistant Supervised Instalation
The steps are a compilation with few modifications from instructions found over the web. Links are at the end.