kind: Secret
This file contains 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
import dbus | |
class MediaPlayer: | |
"""Recieves state from a MediaPlayer using dbus.""" | |
player_properties = False | |
def __init__(self, player_name): | |
# Get an instance of the dbus session bus, and retrieve | |
# a proxy object for accessing the MediaPlayer |
This file contains 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 | |
# Bourne Again Shell example of translation services using the AWS Translate | |
# service. Requires the AWS CLI tool and JQ to be present in the path. | |
# | |
# Directions, edit "langlist.txt" to include the desired languages from the | |
# following site: https://docs.aws.amazon.com/translate/latest/dg/what-is.html | |
# | |
# Next: Edit the "--text" option to include your text to be translated and | |
# the JQ filter to format the output. In the example below we are translating | |
# a string for use in translating the description of an application for use in |
This file contains 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
FROM scratch | |
ADD ghbn /ghbn | |
CMD ["/ghbn", "example.com"] |
This file contains 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
[global] | |
ioengine=libaio | |
invalidate=1 | |
ramp_time=30 | |
iodepth=1 | |
runtime=180 | |
time_based | |
direct=1 | |
[write-sdc-4k-seq] |
This file contains 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/env bash | |
# Golang Installation Script (c) Brian 'redbeard' Harrington, 2019 | |
# | |
# I'm very about how Golang is installed on my system. I normally run through | |
# this entire process by hand, but realized that it's easier to just have this | |
# thing to do the needful. Funny enough, 1.13.6 was published in the middle of | |
# me working on it, so it is already useful. | |
# | |
# In the future, I may add a "VERSION" env variable to allow for arbitrary | |
# versions rather than the latest stable. |
This file contains 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 | |
EMAIL="${1}" | |
if [ "${#}" -ne 1 ]; then | |
echo "USAGE: os4-acme-certs.sh [email protected]" | |
echo "QUITTING" | |
exit 1 | |
fi | |
OUT="$(env | grep ^AWS | wc -l)" |
This file contains 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
# This is a sample config used to pull content in from Quay.io | |
# and present it as published content through the in cluster Operator Catalog | |
# atop OpenShift. | |
# https://github.com/operator-framework/operator-marketplace/blob/master/README.md | |
# | |
# To use this change: | |
# OperatorSource | |
# - metadata.name | |
# - spec.registryNamespace | |
# - spec.displayName |
This file contains 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 | |
SWITCH="\033[" | |
NORMAL="${SWITCH}0m" | |
RED="${SWITCH}1;31m" | |
GREEN="${SWITCH}1;32m" | |
YELLOW="${SWITCH}1;33m" | |
PURPLE="${SWITCH}1;35m" | |
BLUE="${SWITCH}1;34m" | |
CYAN="${SWITCH}1;36m" |
This file contains 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/env python3 | |
# | |
# rpm2mc.py -- Generate a Kubernetes machine-config from an RPM | |
# Copyright (c) 2019 Brian 'redbeard' Harrington <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify it under | |
# the terms of the GNU Affero General Public License as published by the Free | |
# Software Foundation, either version 3 of the License, or (at your option) any | |
# later version. | |
# |