Skip to content

Instantly share code, notes, and snippets.

View macbury's full-sized avatar
🍻
🍺.drink! while 🍺.present?

macbury

🍻
🍺.drink! while 🍺.present?
View GitHub Profile
@macbury
macbury / jenkins-api.md
Created February 15, 2018 08:29 — forked from justlaputa/jenkins-api.md
Jenkins Json API

jobs

jenkins_url + /api/json?tree=jobs[name,color]

builds

jenkins_url + /job/${job_name}/api/json?tree=builds[number,status,timestamp,id,result]

last build

@macbury
macbury / tensorflow_setup.sh
Created February 3, 2019 12:00 — forked from hunterjm/tensorflow_setup.sh
TensorFlow Object Detection Setup (Linux)
# Change this path to your config directory
CONFIG_DIR="/config"
cd /tmp
# Clone the latest code from GitHub
git clone --depth 1 https://github.com/tensorflow/models.git tensorflow-models
# download protobuf 3.4
curl -OL https://github.com/google/protobuf/releases/download/v3.4.0/protoc-3.4.0-linux-x86_64.zip