Skip to content

Instantly share code, notes, and snippets.

View austince's full-sized avatar
💾
living in the future

Austin Cawley-Edwards austince

💾
living in the future
View GitHub Profile
@austince
austince / dockerrun-v2-json-schema.json
Last active March 18, 2019 21:38 — forked from sordina/dockerrun-jsen-schema.json
json schema to validate Dockerrun.aws.json Version 2 files
{
"$id": "https://gist.githubusercontent.com/austince/c1e3b729590ecc43fd2d016a11b01954/raw/c03c33aa57707880f5413d841bda9e3de2a7595e/dockerrun-v2-json-schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "AWS Dockerrun.aws.json v2 schema",
"type": "object",
"additionalProperties": false,
"required": [
"AWSEBDockerrunVersion",
"containerDefinitions"
],
@austince
austince / install-opencv-2.4.13.4-in-ubuntu.sh
Last active March 19, 2019 13:31 — forked from arthurbeggs/install_opencv2_ubuntu.sh
Install opencv-2.4.13.4 in Ubuntu
#!/bin/sh
# install dependencies
sudo apt-get update
sudo apt-get install -y build-essential
sudo apt-get install -y cmake
sudo apt-get install -y libgtk2.0-dev
sudo apt-get install -y pkg-config
sudo apt-get install -y python-numpy python-dev
sudo apt-get install -y libavcodec-dev libavformat-dev libswscale-dev
sudo apt-get install -y gcc-5 g++-5