Skip to content

Instantly share code, notes, and snippets.

View Burkazoid's full-sized avatar

James Burke Burkazoid

  • Belfast, Northern Ireland
View GitHub Profile
@jeroenr
jeroenr / statsd-exporter.yaml
Created August 8, 2017 19:22
Statsd exporter Kubernetes deployment and service
apiVersion: extensions/v1beta1
kind: Deployment
metadata:
name: statsd-exporter
spec:
replicas: 1
template:
metadata:
labels:
app: statsd-exporter
@singhshivam
singhshivam / Immutable JS Examples
Last active August 5, 2023 19:16
Immutable JS Examples
List()
var list = Immutable.List([1,2,3])
// [1, 2, 3]
List.isList()
Immutable.List.isList(list)
// true
List.of()
var list = Immutable.List.of(1,2,3);