View gpg-agent-relay
#!/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 |
View Component.tsx
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( |
View Dockerfile
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 |
View skaffold.log
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... |
View crd.yaml
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 |
View Corefile
.:53 { | |
cache 30 | |
log | |
errors | |
prometheus | |
etcd k8s { | |
stubzones | |
endpoint http://etcd:2379 | |
} | |
} |
View npm-list-pkg-lock.json
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", |
View merge-repo-to-subdir.sh
#!/bin/bash -e | |
function merge_repo_to_subdir { | |
local url=$1 | |
local commit=$2 | |
local module_path=$3 | |
if [[ -z $url || -z $commit || -z $module_path ]]; then | |
echo "Usage: merge-repo-to-subdir.sh URL BRANCH PATH" >&2 | |
exit 1 |
View .gitconfig
[log] | |
date = relative | |
[format] | |
pretty = shortlog | |
[pretty] | |
shortlog = format:%C(auto,yellow)%h%C(auto,magenta)% G? %C(auto,blue)%>(12,trunc)%ad %C(auto,green)%<(7,trunc)%aN%C(auto,reset)%s%C(auto,red)% gD% D |
NewerOlder