Skip to content

Instantly share code, notes, and snippets.

@alexgg
alexgg / gist:c30d0b067ede0ea5a4c159e4876308ea
Created March 16, 2023 16:27
Leviathan local-test not unwrapping
core_1 | time="2023-03-16T14:52:07.686265582Z" level=info msg="loading plugin \"io.containerd.grpc.v1.containers\".
.." type=io.containerd.grpc.v1
core_1 | time="2023-03-16T14:52:07.686281422Z" level=info msg="loading plugin \"io.containerd.grpc.v1.content\"..."
type=io.containerd.grpc.v1
core_1 | time="2023-03-16T14:52:07.686296160Z" level=info msg="loading plugin \"io.containerd.grpc.v1.diff\"..." ty
pe=io.containerd.grpc.v1
core_1 | time="2023-03-16T14:52:07.686310146Z" level=info msg="loading plugin \"io.containerd.grpc.v1.events\"..."
type=io.containerd.grpc.v1
core_1 | time="2023-03-16T14:52:07.686326918Z" level=info msg="loading plugin \"io.containerd.grpc.v1.healthcheck\"
..." type=io.containerd.grpc.v1
@alexgg
alexgg / flowdock-archive-to-html.rb
Created July 1, 2022 11:49 — forked from noniq/flowdock-archive-to-html.rb
Convert the messages.json file from an exported Flowdock flow into a static HTML page.
#!/usr/bin/env ruby
# Convert an exported Flowdock flow into a static HTML document.
#
# Usage:
#
# flowdock-archive-to-html messages.json > messages.html
#
# The script assumes that there is a subdirectory `files` containing all files referenced in the exported flow. (This is exactly the
# directory structure you get if you unzip an archive downloaded from Flowdock.)
@alexgg
alexgg / mountimg.sh
Last active May 24, 2023 15:05
Mount the partitions on a balena raw image file
#!/usr/bin/env bash
# * Check the script
# bash -n script.sh
# Use https://www.shellcheck.net/
# Use http://bashdb.sourceforge.net/
# abort on nonzero exitstatus
set -o errexit
# don't hide errors within pipes

Developer Cheat Sheets

This are my cheat sheets that I have compiled over the years. Tired of searching Google for the same things, I started adding the information here. As time went on, this list has grown. I use this almost everday and this Gist is the first bookmark on my list for quick and easy access.

I recommend that you compile your own list of cheat sheets as typing out the commands has been super helpful in allowing me to retain the information longer.