Michiel Kalkman

Notes and observations

20 Jan 2019

Kafka pattern visualization

39 words, ~0 min read

### Kafka pipeline - dataflow ![Kafka pipeline dataflow](/images/kafka-pattern-visualization/kafka-pipeline-001.svg) ...
06 Jan 2019

R - Coin toss

2 words, ~0 min read

## Code ```r library(ggplot2) library(gridExtra) set.seed(1) coin <- c(0,1) flipCoin <- function(num_flips=1000) { ...
05 Jan 2019

R - plotting notes

18 words, ~0 min read

## Setup ```r library(ggplot2) library(gridExtra) ``` ## Distribution ```r size <- 100 vect <- seq(1, size, by=1) ...
20 Dec 2018

New repository - PlantUML Kubernetes icons/sprites

78 words, ~0 min read

PlantUML kubernetes icons, sprites
05 Dec 2018

New Rust library - actix-web-middleware-opa

47 words, ~0 min read

> OPA is a lightweight general-purpose policy engine that can be co-located with your service. You can integrate OPA as...