Skip to content

Instantly share code, notes, and snippets.

View dklesev's full-sized avatar
💭
I may be slow to respond.

Dimitrij Klesev dklesev

💭
I may be slow to respond.
View GitHub Profile
@jamesbuckett
jamesbuckett / kubeadm.md
Last active April 12, 2021 18:56
kubeadm

Deploy a Kubernetes cluster and Microservices Application

image

What Problem are we solving

What is Kubernetes?

Agenda

  • Deploy a Kubernetes cluster on Digital Ocean using kubeadm
@ErikAugust
ErikAugust / spectre.c
Last active July 2, 2025 16:33
Spectre example code
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef _MSC_VER
#include <intrin.h> /* for rdtscp and clflush */
#pragma optimize("gt",on)
#else
#include <x86intrin.h> /* for rdtscp and clflush */
#endif