I hereby claim:
- I am benasse on github.
- I am benasse (https://keybase.io/benasse) on keybase.
- I have a public key whose fingerprint is 6D27 92C6 5FB7 9256 02D7 423F 1157 6118 02EB 6CB2
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/python3 | |
| import sys, socket, time | |
| host = "outscale.com" | |
| service = "http" | |
| family = socket.AF_UNSPEC | |
| socktype = socket.SOCK_STREAM | |
| protocol = socket.SOL_TCP | |
| flags = 0 |
| #!/bin/bash | |
| RECORD='ip-10-252-91-139.eu-west-2.compute.internal' | |
| echo 'DATE;TIME_CMD_ELAPSED;SERVER;HEADER;TIME_DIG' | |
| while true; do | |
| date_log=$(date +%Y-%m-%d\ %H\:%M\:%S) | |
| timestamps_start=$(date +%s%3N) | |
| test_resolution=$(dig @127.0.0.1 "${RECORD}" +retry=0 +timeout=1) |
| #!/usr/bin/python3 | |
| # Copyright 2020 The Wazo Authors (see the AUTHORS file) | |
| # SPDX-License-Identifier: GPL-3.0-or-later | |
| from wazo_auth_client import Client as Auth | |
| from wazo_confd_client import Client as Confd | |
| # Please add a web service user with acl confd.# | |
| # in order to use ./add-webrtc-line |
| #!/usr/bin/env python3 | |
| import os | |
| import sys | |
| from wazo_confd_client import Client | |
| TOKEN = os.getenv('TOKEN') | |
| c = Client('localhost', verify_certificate=False, token=TOKEN) | |
| conferences = [] |
| [general] | |
| stunaddr = stun.wazo.io:443 | |
| stunrefresh = 30 |
| #!/usr/bin/python3 | |
| from wazo_auth_client import Client as Auth | |
| from wazo_confd_client import Client as Confd | |
| # Please add a web service user with acl confd.# | |
| # To use ./add-webrtc-line | |
| username = "sylvain" # Fill with your username | |
| password = "sylvain" # Fill with your password |
| blueprint: | |
| name: MQTT - Philips Hue Dimmer | |
| description: 'Control lights with a Philips Hue Dimmer Switch. | |
| The top "on" button will turn the lights on to the last set | |
| brightness. | |
| Dim up/down buttons will change the brightness using predefined |
| rasterisk -rx 'database show' |grep -F '/registrar/contact/' | awk -v FS="({|})" '{print $2}' | sed 's/$/}/' | sed 's/^/{/' | jq .user_agent |sort|uniq -c |
| #!/usr/bin/env python | |
| import logging | |
| import os | |
| import string | |
| import sys | |
| from wazo_auth_client import Client as AuthClient | |
| from xivo.chain_map import ChainMap | |
| from xivo.config_helper import read_config_file_hierarchy, parse_config_file |