Skip to content

Instantly share code, notes, and snippets.

@denisoster
denisoster / how-to-add-image-to-gist.md
Created February 20, 2018 18:06 — forked from remarkablemark/how-to-add-image-to-gist.md
How to add an image to a gist

How to add an image to a gist

  1. Create a gist if you haven't already.
  2. Clone your gist:
    # make sure to replace `<hash>` with your gist's hash
    git clone https://gist.github.com/<hash>.git # with https
    git clone [email protected]:<hash>.git     # or with ssh
@denisoster
denisoster / Dockerfile
Created February 11, 2020 09:11 — forked from jmpinit/Dockerfile
Example of cross-compiling Rust for ARMv7.
FROM ubuntu
MAINTAINER Owen Trueblood
# general dependencies
RUN apt-get install -y curl
# install target toolchain
RUN apt-get update --fix-missing
RUN apt-get install -y build-essential gcc-arm-linux-gnueabihf