Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Appliance Notifications & Actions | |
| description: > | |
| # π³ Appliance Notifications & Actions | |
| **Version: 2.8.1** | |
| π€ Watts your appliance up to, you're always in the know from start to finish!ποΈππΈ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # shellcheck disable=SC2162 | |
| clear | |
| shopt -s expand_aliases | |
| function cmd() { | |
| read -p $'\n'"$1 # $2" | |
| if [ "$#" == 3 ]; then | |
| eval "$3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ArrayList<T> extends Array<T>{ | |
| constructor(items?: Array<T>) { | |
| super(); | |
| if (items) { | |
| this.addArray(items) | |
| } | |
| } | |
| private inBound(index: number): boolean { | |
| return index >= 0 && index < this.size(); | |
| } |