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
# 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 | \ |
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
### 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. |
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
### 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 |
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
package main | |
import ( | |
"fmt" | |
"github.com/hashicorp/memberlist" | |
"github.com/hashicorp/raft" | |
"github.com/hashicorp/raft-boltdb" | |
"github.com/hashicorp/serf/serf" | |
"io" | |
"log" |
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: apps/v1 | |
kind: Deployment | |
metadata: | |
namespace: test | |
name: test-a | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: |
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 | |
## 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 |
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
# 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}" |
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
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); |
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
// 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]; | |
}); |
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
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(' |