Skip to content

Instantly share code, notes, and snippets.

View MrPointer's full-sized avatar
🎧

Timor Gruber MrPointer

🎧
View GitHub Profile
@MrPointer
MrPointer / export-docker-images.sh
Last active October 9, 2019 11:48
Small bash utility to export/save docker images to files on disk, useful mostly for offline-organizations that import their images from online machines.
#!/bin/bash
#!/bin/bash
set -o pipefail -o noclobber -o nounset
###
# Variable definitions
###
@MrPointer
MrPointer / Arlifile.lock.cmake
Last active December 21, 2017 21:42
Arli CMake-based example
# vi:syntax=cmake
set(ARDUINO_ARLI_LIBS)
# Library Adafruit GFX Library, version 1.2.2, url: http://downloads.arduino.cc/libraries/github.com/adafruit/Adafruit_GFX_Library-1.2.2.zip
set(ARDUINO_ARLI_LIBS ${ARDUINO_ARLI_LIBS} Adafruit_GFX)
# Library DS1307RTC, version 1.4.0, url: http://downloads.arduino.cc/libraries/github.com/PaulStoffregen/DS1307RTC-1.4.0.zip
set(ARDUINO_ARLI_LIBS ${ARDUINO_ARLI_LIBS} DS1307RTC)
# Library Adafruit LED Backpack Library, version 1.1.6, url: http://downloads.arduino.cc/libraries/github.com/adafruit/Adafruit_LED_Backpack_Library-1.1.6.zip
set(ARDUINO_ARLI_LIBS ${ARDUINO_ARLI_LIBS} Adafruit_LEDBackpack)
# Library Adafruit Unified Sensor, version 1.0.2, url: http://downloads.arduino.cc/libraries/github.com/adafruit/Adafruit_Unified_Sensor-1.0.2.zip
set(ARDUINO_ARLI_LIBS ${ARDUINO_ARLI_LIBS} Adafruit_Sensor)