Skip to content

Instantly share code, notes, and snippets.

View kd2718's full-sized avatar
🏌️

koryd kd2718

🏌️
View GitHub Profile
@kd2718
kd2718 / resize_images.ipynb
Created November 11, 2020 17:13
UTK_Gan_Messing_Around
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kd2718
kd2718 / fixed_pandas_diff.ipynb
Created January 15, 2021 23:38
Fixed_pandas_diff.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@kd2718
kd2718 / Dockerfile
Last active March 31, 2021 15:35
First Try Dockerfile
## Bad Example
# VERSION 1.10.9
# AUTHOR: Matthieu "Puckel_" Roisil
# DESCRIPTION: Basic Airflow container
# BUILD: docker build --rm -t puckel/docker-airflow .
# SOURCE: https://github.com/puckel/docker-airflow
#FROM apache/airflow:2.0.0-python3.8-build
FROM apache/airflow:2.0.1-python3.8
@kd2718
kd2718 / Dockerfile
Last active March 30, 2021 04:36
Better Dockerfile
FROM apache/airflow:2.0.1-python3.8
LABEL maintainer="kd2718"
### ROOT UPDATE
USER root
# Never prompt the user for choices on installation/configuration of packages
ENV DEBIAN_FRONTEND noninteractive
ENV TERM linux