Skip to content

Instantly share code, notes, and snippets.

View kleimkuhler's full-sized avatar

Kevin Leimkuhler kleimkuhler

View GitHub Profile
apiVersion: apps/v1
kind: Deployment
metadata:
name: nginx-1
spec:
replicas: 1
selector:
matchLabels:
app: nginx-1
template:
@kleimkuhler
kleimkuhler / proxy-caching-setup.yaml
Created April 6, 2021 01:11
Fix caching in ingress mode: setup for testing
apiVersion: v1
kind: Service
metadata:
name: svc-1
spec:
ports:
- name: 80-80
port: 80
protocol: TCP
targetPort: 80
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: fast-1
spec:
replicas: 1
selector:
matchLabels:
app: terminus
apiVersion: apps/v1
kind: Deployment
metadata:
name: fast-1
spec:
replicas: 1
selector:
matchLabels:
app: terminus
template:
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: fast-1
spec:
replicas: 1
selector:
matchLabels:
app: terminus
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: prometheus
rules:
- apiGroups: [""]
resources: ["nodes", "nodes/proxy", "pods"]
verbs: ["get", "list", "watch"]
---
kind: ClusterRoleBinding
@kleimkuhler
kleimkuhler / almostAsteroids.re
Created March 6, 2019 18:38
This is an incomplete example of an asteroids game made in ReasonML using Reprocessing.
/*
Replace the `index.re` of [reprocessing-example] for an almost asteroids
game. This was made at the [ReasonML Dojo] by Ben, Ian, and me. I highly
recommend attending a meeting if you able to!
[reprocessing-example]: https://github.com/bsansouci/reprocessing-example
[ReasonML Dojo]: https://www.meetup.com/sv-ocaml/events/258916644/
*/
open Reprocessing;

Keybase proof

I hereby claim:

  • I am kleimkuhler on github.
  • I am kleimkuhler (https://keybase.io/kleimkuhler) on keybase.
  • I have a public key ASBVRBFnIPNKOR6X-1yZLDyRwIRo1OdA6HMm2RDQjCUtDwo

To claim this, I am signing this object:

#lang racket
;; The MU puzzle is a puzzle stated by Douglas Hofstadter and found in Gödel,
;; Escher, Bach. As stated, it is an example of a Post canonical system and can
;; be reformulated as a string rewriting system.
;; (https://en.wikipedia.org/wiki/MU_puzzle)
;; This puzzle caught my attention as a good way to think about this formal
;; system outside of the book and incorporate it into a program.