Skip to content

Instantly share code, notes, and snippets.

View hilt86's full-sized avatar

Hilton hilt86

View GitHub Profile
@hilt86
hilt86 / heroku-tips-tricks.md
Last active November 20, 2019 00:02
heroku-tips-tricks

Copy Heroku config vars from one app to another

export

heroku config -s -a existing-heroku-app > config.txt

import

cat config.txt | tr '\n' ' ' | xargs heroku config:set -a new-heroku-app

Stolen from Emir Karşıyakalı

@hilt86
hilt86 / renewingLetsencryptRouteros.md
Created February 4, 2020 02:25
renewingLetsencryptRouteros
@hilt86
hilt86 / example.py
Created August 26, 2020 10:43
Lopy4 code
from network import LoRa
import socket
import binascii
import struct
import time
import pycom
from machine import Pin
import machine
from machine import Timer