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
#!/usr/bin/python | |
from selenium import webdriver | |
from selenium.webdriver.chrome.options import Options | |
from selenium.webdriver.common.by import By | |
from selenium.webdriver.support.select import Select | |
options = Options() | |
options.headless = True |
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
apiVersion: tekton.dev/v1beta1 | |
kind: Pipeline | |
metadata: | |
name: rhel-subscribed-templates | |
spec: | |
params: | |
- name: activationKey | |
description: Activation key that is injected into the VM template's cloud-init configuration | |
type: string | |
- name: organization |
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/sh | |
. /lib/functions.sh | |
. ../netifd-proto.sh | |
init_proto "$@" | |
proto_huawei_dhcp_init_config() { | |
available=1 | |
proto_config_add_string "device:device" | |
proto_config_add_string pin |
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
Sonoff RF Bridge 433 / ESPurna and Brennenstuhl RCS 1000 N | |
Taken from | |
http://tinkerman.cat/decoding-433mhz-rf-data-from-wireless-switches-the-data | |
and | |
https://www.itead.cc/wiki/images/5/5e/RF_Universal_Transeceive_Module_Serial_Protocol_v1.0.pdf | |
and | |
https://github.com/pimatic/rfcontroljs/blob/master/src/protocols/switch2.coffee | |
Protocol 'switch2' (Elro) |
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 | |
# makepkg-arm script | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
makepkg --config "$DIR/makepkg-arm.conf" "$@" |