View LEDMatrix.h
This file contains 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
// Shift Register LED Matrix Project - LEDMatrix | |
// Copyright (C) 2017 Michael Kamprath | |
// | |
// This file is part of Shift Register LED Matrix Project. | |
// | |
// Shift Register LED Matrix Project is free software: you can redistribute it and/or modify | |
// it under the terms of the GNU General Public License as published by | |
// the Free Software Foundation, either version 3 of the License, or | |
// (at your option) any later version. | |
// |
View IOdemo.ino
This file contains 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
#include <SPI.h> | |
#include <LedMatrix.h> | |
//LED Matrix Pins | |
#define NUMBER_OF_DEVICES 4 | |
#define CS_PIN 15 | |
#define CLK_PIN 14 | |
#define MISO_PIN 2 //Not Used | |
#define MOSI_PIN 12 |
View gist:81973cde92ca668058094592b36fe00d
This file contains 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
version: '2' | |
volumes: | |
nextcloud: | |
db: | |
services: | |
db: | |
image: mariadb | |
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW |
View gist:f581fdcee738f96bde5e3a82482b2636
This file contains 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
version: '2' | |
volumes: | |
nextcloud: | |
db: | |
services: | |
db: | |
image: yobasystems/alpine-mariadb:latest | |
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW |
View gist:783bbde7f2f93e405bec9d0a9e374050
This file contains 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
version: '2' | |
volumes: | |
nextcloud: | |
db: | |
services: | |
db: | |
image: mariadb | |
command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW |
View gist:eb8909a67cac55e3472eaa89968f1092
This file contains 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
--- | |
version: "2.1" | |
services: | |
pwndrop: | |
image: linuxserver/pwndrop | |
container_name: pwndrop | |
environment: | |
- PUID=1000 | |
- PGID=1000 | |
- TZ=Europe/London |
View gist:e232ebc7a8cd631202c0ab74f69384f7
This file contains 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
--- | |
version: "2.1" | |
services: | |
lychee: | |
image: linuxserver/lychee | |
container_name: lychee | |
environment: | |
- PUID=998 | |
- PGID=100 | |
- TZ=America/Denver |
View gist:618a669c875fedb01cf0f2acd0b15329
This file contains 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
version: 2 | |
networks: | |
piwigo: | |
name: piwigo | |
driver: bridge | |
services: | |
db: | |
image: linuxserver/mysql |
View gist:18b2b90ba73aedbb434e521388a1390a
This file contains 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
version: '2' | |
services: | |
db: | |
image: mariadb | |
volumes: | |
- /database:/var/lib/mysql:rw # I haven't had good luck putting this database in a different directory | |
restart: unless-stopped | |
networks: | |
- private |
View gist:b376061136f38aa8b8d37177eb94545a
This file contains 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
version: '2.1' | |
services: | |
deezloaderrmx: | |
image: bocki/deezloaderrmx | |
container_name: Deezldr | |
volumes: | |
- /srv/deezloaderrmx:/downloads | |
- /srv/deezloaderrmx:/config | |
environment: | |
- PUID=998 #Optional |
OlderNewer