Skip to content

Instantly share code, notes, and snippets.

View c0rner's full-sized avatar
☀️

Martin Åkesson c0rner

☀️
View GitHub Profile
@c0rner
c0rner / steal.sh
Created April 26, 2018 09:06
How much of your cpu time gets stolen in the cloud
#!/bin/bash
percentage() {
[[ $2 -eq 0 ]] && { echo 0; return; }
echo $((($1 * 100) / $2))
}
cpu_stat() {
read < /proc/stat
echo ${REPLY}
@c0rner
c0rner / example.md
Created March 6, 2018 19:20
Literate programming POC

This is documentation

Below is code that is hidden but will be exported to stdout.