- Port HomeServer to it
- Read-only thanks to
overlayroot
- Native serial for Viessmann w/o USB-to-Serial
- Native 433 MHz sending w/o Arduino
- Native Audio output w/o USB dongle; can attach small amp board
- Webcam via USB with
motion
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
stack@octavia:~$ cat /etc/octavia/octavia.conf |egrep -v "^$|^#" | |
[DEFAULT] | |
transport_url = rabbit://stackrabbit:[email protected]:5672/ | |
api_handler = queue_producer | |
bind_host = 172.16.68.59 | |
logging_exception_prefix = ERROR %(name)s %(instance)s | |
logging_default_format_string = %(color)s%(levelname)s %(name)s [-%(color)s] %(instance)s%(color)s%(message)s | |
logging_context_format_string = %(color)s%(levelname)s %(name)s [%(global_request_id)s %(request_id)s %(project_name)s %(user_name)s%(color)s] %(instance)s%(color)s%(message)s | |
logging_debug_format_suffix = {{(pid=%(process)d) %(funcName)s %(pathname)s:%(lineno)d}} | |
[api_settings] |
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
def fopen(filename, default=sys.stdin): | |
""" | |
This function helps you do not see errors during upload solutions | |
because you forget to switch back to sys.stdin and also you can easily | |
debug your code with ipdb or another python debuggers | |
""" | |
try: | |
f = open(filename) | |
except FileNotFoundError: | |
f = default |
OlderNewer