Skip to content

Instantly share code, notes, and snippets.

export CONTAINER_URI="gcr.io/deeplearning-platform-release/experimental.theia.1-7"
export INSTANCE_NAME=...
export PROJECT_NAME=...
export IMAGE_PROJECT="deeplearning-platform-release"
export IMAGE_FAMILY="theia-container-experimental"
export MACHINE_TYPE=... #"n1-standard-4"
export ZONE=... #"us-central1-a"
gcloud compute instances create "${INSTANCE_NAME}" \
--project="${PROJECT_NAME}" \
--zone="${ZONE}" \
@julznc
julznc / ATtiny2313-IR-sender.c
Created May 6, 2017 13:26
ATtiny2313 Infrared Sender (avr-gcc)
/*
* http://projectproto.blogspot.com/2017/05/attiny-ir-remote.html
*/
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/sleep.h>
#include <util/delay.h>