Skip to content

Instantly share code, notes, and snippets.

#include "cinder/app/App.h"
#include "cinder/app/RendererGl.h"
#include "cinder/gl/gl.h"
#include "cinder/Capture.h"
#include "CinderOpenCV.h"
using namespace ci;
using namespace ci::app;
@eighteight
eighteight / gist:772851faee1eeb5be7389bca0bbff6fd
Created May 12, 2018 14:09
Restart gaeapp docker image in Google App Engine flexible environment custom runtime with --privileged flag
#!/bin/bash
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
if [ -f '/home/gaebuilder/google-cloud-sdk/path.bash.inc' ]; then source '/home/gaebuilder/google-cloud-sdk/path.bash.inc'; fi
if [ "$#" -ne 3 ]; then
echo "Usage $0 [PROJECT] [SERVICE] [APPLICATION_ENV]"
exit 1
fi
project=$1
service=$2
gae_env=$3
#include "cinder/app/App.h"
#include "cinder/app/RendererGl.h"
#include "cinder/gl/gl.h"
#include "cinder/Log.h"
#include "cinder/Timeline.h"
#include "cinder/osc/Osc.h"
using namespace ci;
using namespace ci::app;