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 | |
# wait for backgrounded jobs and propagate $?>0. | |
local pid | |
while read -r pid; do wait "$pid"; done < <(jobs -p) | |
# wait for backgrounded jobs, propagate $?>0, and exit early on failure. | |
while (($(jobs -p | wc -l) > 0)); do | |
if wait -n; then | |
: |
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 | |
# https://askubuntu.com/questions/1168123/how-do-i-get-my-bluetooth-device-working/1192200#1192200 | |
set -e | |
SCRIPTDIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) | |
main() { | |
local kernver | |
kernver=$(uname -r) | |
sudo apt update |
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 | |
# Inspired by https://blog.nimamoh.net/yubi-key-gpg-wsl2/ | |
# Guide: | |
# Install GPG on windows & Unix | |
# Add "enable-putty-support" to gpg-agent.conf | |
# Download wsl-ssh-pageant and npiperelay and place the executables in "C:\Users\[USER]\AppData\Roaming\" under wsl-ssh-pageant & npiperelay | |
# https://github.com/benpye/wsl-ssh-pageant/releases/tag/20190513.14 | |
# https://github.com/NZSmartie/npiperelay/releases/tag/v0.1 | |
# Adjust relay() below if you alter those paths |
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 { ComponentPaginationQuery } from "./artifacts/ComponentPaginationQuery.graphql"; | |
import { Component_items$key } from "./artifacts/Component_items.graphql"; | |
export function Component(props: { itemsFragment: Component_items$key }) { | |
const { | |
data: { items }, | |
} = usePaginationFragment<ComponentPaginationQuery, Component_items$key>( | |
graphql` | |
fragment Component_items on Viewer | |
@argumentDefinitions( |
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
ARG KIBANA_VERSION | |
FROM docker.elastic.co/kibana/kibana:${KIBANA_VERSION} | |
ARG KIBANA_VERSION | |
ARG LOGTRAIL_VERSION | |
USER root | |
RUN NODE_OPTIONS="--max_old_space_size=4096" kibana-plugin install https://github.com/sivasamyk/logtrail/releases/download/v${LOGTRAIL_VERSION}/logtrail-${KIBANA_VERSION}-${LOGTRAIL_VERSION}.zip | |
COPY kibana.yaml /usr/share/kibana/config/kibana.yml | |
COPY elasticsearch.repo /etc/yum.repos.d/elasticsearch.repo |
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
INFO[0000] Skaffold &{Version:v0.24.0 ConfigVersion:skaffold/v1beta6 GitVersion: GitCommit:6a829c4b29e3a102b0b14c4584cd174f780402e9 GitTreeState:clean BuildDate:2019-03-01T20:36:32Z GoVersion:go1.12 Compiler:gc Platform:darwin/amd64} | |
DEBU[0000] Defaulting build type to local build | |
INFO[0000] no config entry found for kube-context ops.orbit.dev | |
INFO[0000] Using kubectl context: ops.orbit.dev | |
INFO[0000] no config entry found for kube-context ops.orbit.dev | |
DEBU[0000] Using builder: local | |
DEBU[0000] setting Docker user agent to skaffold-v0.24.0 | |
INFO[0000] no config entry found for kube-context ops.orbit.dev | |
DEBU[0000] push value not present, defaulting to true because localCluster is false | |
Starting build... |
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
apiVersion: apiextensions.k8s.io/v1beta1 | |
kind: CustomResourceDefinition | |
metadata: | |
creationTimestamp: null | |
labels: | |
controller-tools.k8s.io: "1.0" | |
name: certificates.certmanager.k8s.io | |
spec: | |
additionalPrinterColumns: | |
- JSONPath: .status.conditions[?(@.type==\"Ready\")].status |
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
.:53 { | |
cache 30 | |
log | |
errors | |
prometheus | |
etcd k8s { | |
stubzones | |
endpoint http://etcd:2379 | |
} | |
} |
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
npm list --json | |
{ | |
"name": "@secoya/rabbitmq-tools", | |
"version": "0.1.8", | |
"problems": [ | |
"missing: amqplib@0.4.2, required by @secoya/rabbitmq-tools@0.1.8", | |
"missing: babel-runtime@6.9.2, required by @secoya/rabbitmq-tools@0.1.8", | |
"missing: bitsyntax@0.0.4, required by amqplib@0.4.2", | |
"missing: buffer-more-ints@0.0.2, required by amqplib@0.4.2", | |
"missing: readable-stream@1.1.14, required by amqplib@0.4.2", |
NewerOlder