Skip to content

Instantly share code, notes, and snippets.

View tbho's full-sized avatar

Tobias Hoge tbho

View GitHub Profile
@tbho
tbho / elixir_introduction.ex
Last active November 3, 2020 07:05
Elixir Introduction
# Basic Types
# ---------------------------------
1 # integer
0x1F # integer
1.0 # float
true # boolean
:atom # atom / symbol
{1, 2, 3} # tuple
@tbho
tbho / Dockerfile
Created May 8, 2020 11:23 — forked from prateekgogia/Dockerfile
Dockerfile to build 32 bit Docker container, for 32 bit docker daemon dev version 17.04.0-ce
# This file describes the standard way to build Docker, using docker
#
# Usage:
#
# # Assemble the full dev environment. This is slow the first time.
# docker build -t docker .
#
# # Mount your source in an interactive container for quick testing:
# docker run -v `pwd`:/go/src/github.com/docker/docker --privileged -i -t docker bash
#