Clone Mastodon's repository. You only really need the
docker-compose.yml
and the .env.production.sample
files from the reo, so clone it to a temporary directory and copy those two files to ~/live
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// VARS --------------------------------------------- | |
int incomingByte = 0; // for incoming serial data | |
int pin = 10; // pin connected to RF transmitter (pin 2) | |
#define d4 700 // | |
#define d2 350 // | |
#define d1 175 // | |
//--------------------------------------------------- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Example sketch for interfacing with the DS1302 timekeeping chip. | |
Copyright (c) 2009, Matt Sparks | |
All rights reserved. | |
http://quadpoint.org/projects/arduino-ds1302 | |
*/ | |
#include <stdio.h> | |
#include <string.h> |