I hereby claim:
- I am pschmitt on github.
- I am pschmitt (https://keybase.io/pschmitt) on keybase.
- I have a public key ASCivWMgDoWgg2SEg4WDF3ldZh6jwRrlfyZ0RqnkddfVRAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# Maintainer: Philipp Schmitt <[email protected]> | |
pkgname=python2-picamera | |
pkgver=1.13 | |
pkgrel=1 | |
pkgdesc="A pure Python interface to the Raspberry Pi camera module" | |
arch=('any') | |
url="https://github.com/waveform80/picamera" | |
license=('BSD') | |
depends=('python2') |
version: '2' | |
services: | |
shinobi: | |
container_name: shinobi | |
build: | |
context: . | |
depends_on: | |
- mysql | |
restart: always | |
environment: |
{"mode":"start","mid":"SxENKrZAHr","name":"IP Webcam","type":"h264","protocol":"http","host":"ip-webcam.lan","port":"8080","path":"/video","ext":"mp4","fps":"1","width":"640","height":"480","details":"{\"fatal_max\":\"\",\"notes\":\"\",\"rtsp_transport\":\"tcp\",\"muser\":\"USERNAME\",\"mpass\":\"PASSWORD\",\"port_force\":null,\"sfps\":\"1\",\"aduration\":\"\",\"stream_type\":\"b64\",\"stream_mjpeg_clients\":\"\",\"stream_vcodec\":\"libx264\",\"stream_acodec\":\"no\",\"hls_time\":\"2\",\"preset_stream\":\"ultrafast\",\"hls_list_size\":\"3\",\"signal_check\":\"10\",\"signal_check_log\":\"0\",\"stream_quality\":\"15\",\"stream_fps\":\"2\",\"stream_scale_x\":\"640\",\"stream_scale_y\":\"480\",\"svf\":\"\",\"snap\":null,\"snap_fps\":\"\",\"snap_scale_x\":\"\",\"snap_scale_y\":\"\",\"vcodec\":\"libx264\",\"crf\":\"1\",\"preset_record\":\"\",\"acodec\":\"none\",\"dqf\":\"0\",\"cutoff\":\"15\",\"vf\":\"\",\"timestamp\":\"0\",\"timestamp_font\":\"\",\"timestamp_font_size\":\"10\",\"timestamp_color\":\"white\",\"times |
# Maintainer: Johannes Pfrang <johannespfrang+arch @ gmail.com> | |
# Co-Maintainer: Emanuele 'Lele aka eldios' Calo' <[email protected]> | |
pkgname=teleport | |
pkgver=2.2.3 | |
pkgrel=1 | |
pkgdesc="Modern SSH server for teams managing distributed infrastructure" | |
arch=('x86_64') | |
url="https://gravitational.com/teleport" | |
license=('Apache') |
#!/usr/bin/env bash | |
usage() { | |
echo "$(basename $0) VM" | |
} | |
get_vm_id() { | |
qm list | awk '/'"${1}"'/ { print $1 }' | |
} |
""" | |
Support for Wi-Fi enabled iRobot Roombas. | |
For more details about this platform, please refer to the documentation | |
https://home-assistant.io/components/vacuum.roomba/ | |
""" | |
from functools import partial | |
import asyncio | |
import logging | |
import os |
FROM resin/raspberrypi3-alpine:3.4 | |
LABEL maintainer "Alexey Pustovalov <[email protected]>" | |
ARG APK_FLAGS_COMMON="-q" | |
ARG APK_FLAGS_PERSISTANT="${APK_FLAGS_COMMON} --clean-protected --no-cache" | |
ARG APK_FLAGS_DEV="${APK_FLAGS_COMMON} --no-cache" | |
ARG DB_TYPE=sqlite3 | |
ENV TERM=xterm | |
ENV MIBDIRS=/usr/share/snmp/mibs:/var/lib/zabbix/mibs MIBS=+ALL |
import asyncio | |
import pyteleloisirs | |
loop = asyncio.get_event_loop() | |
prg = loop.run_until_complete(pyteleloisirs.async_get_current_program('M6')) | |
dur = pyteleloisirs.get_program_duration(prg) | |
rem = pyteleloisirs.get_remaining_time(prg) | |
print('{} - Remaining time: {}/{}'.format(prg.get('name'), rem, dur)) |
#!/usr/bin/env bash | |
HA_URL="$1" | |
HA_PASSWORD="$2" | |
_api_call() { | |
if [[ -n "$3" ]] | |
then # WITH DATA | |
curl -qs -X "$1" \ | |
-H "x-ha-access: $HA_PASSWORD" \ |