Skip to content

Instantly share code, notes, and snippets.

View ep1cman's full-sized avatar

Sebastian Goscik ep1cman

View GitHub Profile
@ep1cman
ep1cman / Dockerfile
Last active May 22, 2021 21:41
influxdb 2.0 with telegram
FROM ubuntu:20.04 AS dbuild
ENV DEBIAN_FRONTEND noninteractive
# Needed for Yarn steps to veryify the keys
RUN apt update
RUN apt install --yes curl gnupg2
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
@ep1cman
ep1cman / seb_spaced.ttf
Last active November 13, 2015 08:08
A font of my handwritting
@ep1cman
ep1cman / 7seg.py
Last active February 18, 2023 06:30
7 Segment character value generator
#The order segments are connected to the shift register (D = dot)
input = ['a','b','c','d','e','f','g','D']
reverse = True #Depends on direction of outputs/shifting
negate = True #Common Cathode = False Common Anode = True
characters = [("abcdef", '0/O'),
("bc", '1/I'),
("abdeg", '2'),
("abcdg", '3'),