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
| ```bash | |
| nvme-pci-0500 | |
| Adapter: PCI adapter | |
| Composite: +107.3°F (low = -459.7°F, high = +179.3°F) | |
| (crit = +184.7°F) | |
| Sensor 1: +107.3°F (low = -459.7°F, high = +117503.3°F) | |
| Sensor 2: +121.7°F (low = -459.7°F, high = +117503.3°F) | |
| nvme-pci-1000 | |
| Adapter: PCI adapter |
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
| # ZPLUG INIT | |
| source ~/.zplug/init.zsh | |
| # TODO Linuxbrew check and installation | |
| FILE_OSRELEASE='/proc/sys/kernel/osrelease' | |
| export PATH=$HOME/bin:/usr/local/bin:'/home/linuxbrew/.linuxbrew/bin:/home/linuxbrew/.linuxbrew/sbin':$PATH | |
| # HACK https://github.com/Microsoft/WSL/issues/1838 |
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
| ## My goal is a complete embargo on all xiaomi traffic, and related Chinese social media, as I have local control over their devices. | |
| ## Much of this information has been gathered from 3rd party sources and credit is given where known. | |
| # https://github.com/anthony-wang/meiyou-xiaomi/blob/master/hosts1 | |
| 10.99.168.145 | |
| 10.99.184.96 | |
| 10.235.124.13 | |
| a.stat.xiaomi.com | |
| abtest.mistat.xiaomi.com | |
| account.preview.n.xiaomi.net |
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 | |
| # Script can be used with linux, WSL (Windows), or MacOS with linuxbrew or homebrew. | |
| PLATFORM=${OSTYPE:-'unknown'} | |
| if [[ $PLATFORM == 'unknown' ]]; then | |
| echo "OS not recognized. Quitting" | |
| exit -1 | |
| fi |