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
| Thu Sep 25 10:00:00 2014 - Partly cloudy (day) | |
| Thu Sep 25 11:00:02 2014 - Sunny day | |
| Thu Sep 25 12:00:03 2014 - Sunny day | |
| Thu Sep 25 13:00:02 2014 - Sunny day | |
| Thu Sep 25 14:00:04 2014 - Partly cloudy (day) | |
| Thu Sep 25 15:00:10 2014 - Partly cloudy (day) | |
| Thu Sep 25 16:00:05 2014 - Cloudy | |
| Thu Sep 25 17:00:04 2014 - Partly cloudy (day) | |
| Thu Sep 25 18:00:04 2014 - Partly cloudy (day) | |
| Thu Sep 25 19:00:06 2014 - Clear night |
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
| """ | |
| Support for ONVIF Cameras with FFmpeg as decoder. | |
| For more details about this platform, please refer to the documentation at | |
| https://home-assistant.io/components/camera.onvif/ | |
| """ | |
| import asyncio | |
| import logging | |
| import os | |
| import voluptuous as vol |
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
| #!/bin/bash | |
| # A quick script to install Docker Engine and Compose | |
| # Run with sudo | |
| # Install Docker Engine | |
| curl -sSL https://get.docker.com/ | sh | |
| # Start Docker | |
| # TODO update to handle multiple distros | |
| service docker start |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| from opsdroid.matchers import match_regex | |
| @match_regex(r'ping') | |
| async def ping(opsdroid, config, message): | |
| await message.respond('pong') | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #!/bin/bash | |
| # Reload Virtual Box Kexts | |
| unload() { | |
| kextstat | grep "org.virtualbox.kext.VBoxUSB" > /dev/null 2>&1 && sudo kextunload -b org.virtualbox.kext.VBoxUSB | |
| kextstat | grep "org.virtualbox.kext.VBoxNetFlt" > /dev/null 2>&1 && sudo kextunload -b org.virtualbox.kext.VBoxNetFlt | |
| kextstat | grep "org.virtualbox.kext.VBoxNetAdp" > /dev/null 2>&1 && sudo kextunload -b org.virtualbox.kext.VBoxNetAdp | |
| kextstat | grep "org.virtualbox.kext.VBoxDrv" > /dev/null 2>&1 && sudo kextunload -b org.virtualbox.kext.VBoxDrv | |
| } |
OlderNewer