Skip to content

Instantly share code, notes, and snippets.

View croaker's full-sized avatar

Daniel Gruenthal croaker

  • Hamburg, Germany
View GitHub Profile
@aklinkert
aklinkert / kubernetes_continuous.sh
Created October 14, 2016 14:03
Kubernetes continuous integration
#!/usr/bin/env bash
set -e
VERSION="${CIRCLE_SHA1}"
KUBE_CONTEXT="$(kubectl config current-context)"
# getKubeValue "${KUBE_CONTEXT}" "${KUBE_NAMESPACE}" "${deployment}" "${path}"
getKubeValue() {
kubectl --context "${1}" --namespace "${2}" get "deployment/${3}" -o "jsonpath={${4}}"
@sj26
sj26 / 0-readme.md
Created May 5, 2012 05:39 — forked from burke/0-readme.md
ruby-1.9.3-p194 cumulative performance patch.

Patched ruby 1.9.3-p194 for 30% faster rails boot

What is?

This script installs a patched version of ruby 1.9.3-p194 with patches for boot-time performance improvements (#66 and #68), and runtime performance improvements (#83 and #84). It also includes the new backported GC from ruby-trunk.

Huge thanks to funny-falcon for the performance patches.