Skip to content

Instantly share code, notes, and snippets.

View evert-arias's full-sized avatar

Evert Arias evert-arias

View GitHub Profile
@evert-arias
evert-arias / noip2.service
Created July 29, 2021 21:46 — forked from NathanGiesbrecht/noip2.service
Systemd Service file for no-ip.com dynamic ip updater
# Simple No-ip.com Dynamic DNS Updater
#
# By Nathan Giesbrecht (http://nathangiesbrecht.com)
#
# 1) Install binary as described in no-ip.com's source file (assuming results in /usr/local/bin)
# 2) Run sudo /usr/local/bin/noip2 -C to generate configuration file
# 3) Copy this file noip2.service to /etc/systemd/system/
# 4) Execute `sudo systemctl daemon-reload`
# 5) Execute `sudo systemctl enable noip2`
# 6) Execute `sudo systemctl start noip2`
@evert-arias
evert-arias / ADS-B Setup.md
Created December 19, 2020 21:24 — forked from leandrofilipe/ADS-B Setup.md
ADS-B Setup
@evert-arias
evert-arias / docker-compose.yml
Created January 23, 2020 20:37 — forked from Mau5Machine/docker-compose.yml
Traefik Configuration and Setup
version: "3.3"
services:
################################################
#### Traefik Proxy Setup #####
###############################################
traefik:
image: traefik:v2.0
restart: always
@evert-arias
evert-arias / install-docker.md
Created January 23, 2020 00:15 — forked from npearce/install-docker.md
Amazon Linux 2 - install docker & docker-compose using 'sudo amazon-linux-extras' command
@evert-arias
evert-arias / README-Template.md
Created September 30, 2019 17:49 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

@evert-arias
evert-arias / esp32-wifi-auto-connect.cpp
Last active September 19, 2025 17:02
ESP32 Wi-Fi Auto Connect Example Using TaskScheduler
/*
* ESP32 Wi-Fi Auto Connect Example Using TaskScheduler
https://github.com/evert-arias/esp32-wifi-auto-connect-example
* Version: 1.0.0
* Date: 02-10-2019
* Author: Evert Arias - https://github.com/evert-arias
* Dependencies: [ TaskScheduler - https://github.com/arkhipenko/TaskScheduler ]
*/
#include <Arduino.h>