Skip to content

Instantly share code, notes, and snippets.

View mjpitz's full-sized avatar
🏳️‍🌈
out and proud

Mya mjpitz

🏳️‍🌈
out and proud
View GitHub Profile
# setup credentials for the api
export GITHUB_AUTHORIZATION="token PRIVATE-TOKEN"
export GITHUB_GROUP="deps-cloud"
export BRANCH_NAME="main"
# start with a fresh copy of your code (just to be safe)
curl -sSL -H "Authorization: ${GITHUB_AUTHORIZATION}" https://api.github.com/users/${GITHUB_GROUP}/repos | \
jq -r .[].ssh_url | \
### Software Grant and Corporate Contributor License Agreement
In order to clarify the intellectual property license granted with
Contributions from any person or entity, deps.cloud must have a Contributor
License Agreement (CLA) on file that has been signed by each Contributor,
indicating agreement to the license terms below. This license is for your
protection as a Contributor as well as the protection of deps.cloud and its
users; it does not change your rights to use your own Contributions for any
other purpose.
### Individual Contributor License Agreement
In order to clarify the intellectual property license granted with
Contributions from any person or entity, deps.cloud must have a Contributor
License Agreement ("CLA") on file that has been signed by each Contributor,
indicating agreement to the license terms below. This license is for your
protection as a Contributor as well as the protection of deps.cloud; it does
not change your rights to use your own Contributions for any other purpose.
You accept and agree to the following terms and conditions for Your present
@mjpitz
mjpitz / memberlist-serf-raft.go
Created May 8, 2020 15:00
Basic idea on how to use memberlist, serf, and raft all together. Last example I found had a few bugs to work out.
package main
import (
"fmt"
"github.com/hashicorp/memberlist"
"github.com/hashicorp/raft"
"github.com/hashicorp/raft-boltdb"
"github.com/hashicorp/serf/serf"
"io"
"log"
---
apiVersion: apps/v1
kind: Deployment
metadata:
namespace: test
name: test-a
spec:
replicas: 1
selector:
matchLabels:
@mjpitz
mjpitz / kubeauth.sh
Created January 17, 2020 14:14
Simple little script for demonstrating certificate auth in kubernetes
#!/usr/bin/env bash
## Simple script demonstrating how to use certificate auth in Kubernetes. In this script
## we leverage the built in csr approval process. In practice, the approval process can
## be delegated to an external authority so long as the external authority and the
## Kubernetes API server share a common CA.
readonly name=${1:-$(whoami)}
trap "rm ${name}-key.pem ${name}.csr ${name}.crt" EXIT
@mjpitz
mjpitz / kubeconfig.sh
Last active December 1, 2020 15:00
One-line dynamic KUBECONFIG per shell
# Enables each Shell instance to have their own KUBECONFIG.
# Also aggregates all cluster contexts into a single configuration.
# Simply add to .bashrc or .bash_profile
kubeconfig="${KUBECONFIG}"
if [[ -z "${kubeconfig}" ]]; then
kubeconfig="$(mktemp):$(ls -1 ${HOME}/.kube/*.yaml | tr $'\n' ':')${HOME}/.kube/config"
fi
export KUBECONFIG="${kubeconfig}"
@mjpitz
mjpitz / gremlin.d.ts
Created June 27, 2018 03:51
Typescript definition for apache tinkerpop's gremlin-javascript library. Makes for easy use with Typescript language.
declare module "gremlin" {
export namespace driver {
import TraversalStrategy = process.TraversalStrategy;
import Traversal = process.Traversal;
import Bytecode = process.Bytecode;
import GraphSONReader = structure.io.GraphSONReader;
import GraphSONWriter = structure.io.GraphSONWriter;
export class RemoteConnection {
constructor(url: string);
@mjpitz
mjpitz / FluentXhr.js
Created January 26, 2016 04:03
Kinda a cool idea where I applied the Fluent Interface design pattern at the XmlHttpRequest object with some additional helpers.
// provide our own undefined
const undefined = void(0);
// provide an extend method
Object.extend = function(protoTo, ...protoFroms) {
protoFroms.forEach(function(protoFrom) {
Object.keys(protoFrom).forEach(function(key) {
if (protoTo[key] === undefined)
protoTo[key] = protoFrom[key];
});
@mjpitz
mjpitz / StickyGithubHeader Bookmarklet
Created November 19, 2015 13:58
Same as the js file, but as a bookmarklet
javascript:(function() {var $ = function(str) {return document.querySelector(str);};var win = window;var doc = document.documentElement;var mast = $('#js-repo-pjax-container .pagehead');var mastTop = mast.offsetTop;var adjustedMargin = mast.offsetHeight;var currentMastAttributes = mast.getAttribute('style');var newMastAttributes = [currentMastAttributes,'position: fixed;','z-index: 10;','top: 0;','left: 0;','right: 0;'].join('');var content = $('#js-repo-pjax-container .repo-container');var currentContentAttributes = content.getAttribute('style');var newContentAttributes = [currentContentAttributes,'margin-top: ' + adjustedMargin + 'px;'].join('');var toggle = false;document.addEventListener('scroll', function() {var scrollTop = (win.pageYOffset || doc.scrollTop) - (doc.clientTop || 0);if (scrollTop > mastTop) {content.setAttribute('style', newContentAttributes);mast.setAttribute('style', newMastAttributes);toggle = true;setTimeout(function() {toggle = false}, 100);} else if (!toggle) {content.setAttribute('