jack2-dbuscadence
See https://wiki.archlinux.org/index.php/JACK_Audio_Connection_Kit#PulseAudio and https://wiki.archlinux.org/index.php/PulseAudio/Examples#PulseAudio_through_JACK
| #!/usr/bin/env bash | |
| # set -euo pipefail | |
| die () { | |
| echo >&2 "$@" | |
| exit 1 | |
| } | |
| [ "$#" -eq 1 ] || die "Exactly one argument required: target RHCOS version, e.g. '4.12'. $# provided." |
| # via https://stackoverflow.com/questions/22429648/ssl-in-python3-with-httpserver/22436756#22436756 | |
| # generate server.pem with the following command: | |
| # openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
| # This server serves the CWD as content | |
| from http.server import HTTPServer,SimpleHTTPRequestHandler | |
| from socketserver import BaseServer | |
| import ssl |
| # This config assumes docker-elk as Elastic Stack base. | |
| # See https://github.com/deviantony/docker-elk | |
| version: '3' | |
| services: | |
| cowrie: | |
| restart: "always" | |
| image: cowrie/cowrie | |
| ports: |
| .is-open { | |
| left: -70px !important; | |
| } | |
| .drawer { | |
| width: 270px !important ; | |
| left: -270px !important ; | |
| } |
| hallo | |
| passwort | |
| hallo123 | |
| schalke04 | |
| passwort1 | |
| qwertz | |
| arschloch | |
| schatz | |
| hallo1 | |
| ficken |
| [MASTER] | |
| init-hook='import sys; sys.path.append("/FQDN/to/your/module/root")' |
$ pacman -Qqe | grep ttf ttf-dejavu ttf-emojione ttf-liberation
$pacman -Qqe | grep font adobe-source-code-pro-fonts otf-ipafont
| function gitc { | |
| git commit --verbose | |
| } | |
| function gita { | |
| git add | |
| };Set-Alias ga gita | |
| function gitaa { | |
| git add --all |
| // AS LONG AS PULL REQUEST 2821 IS NOT MERGED, YOU NEED TO PATCH THE ESP8266 BOARD LIB! | |
| // have a look here: https://www.esp8266.com/viewtopic.php?f=29&t=16473 | |
| // and here: https://github.com/esp8266/Arduino/pull/2821 | |
| #include "DHT.h" | |
| #include <ESP8266HTTPClient.h> | |
| #include <ESP8266WiFi.h> | |
| #include <ArduinoJson.h> | |
| #define DHTPIN 2 // This is silkscreened as ~D4 on my board |