Skip to content

Instantly share code, notes, and snippets.

View tae898's full-sized avatar

Taewoon Kim tae898

View GitHub Profile
@tae898
tae898 / running-schnapsen.ipynb
Created November 6, 2023 20:44
running-schnapsen.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@tae898
tae898 / Dockerfile
Last active November 28, 2021 15:00
Dockerfile for running postgres and conceptnet5 locally
# Start from the official postgres image
FROM postgres
# Adding the below environment variables allow you to create a database easily within
# the docker contianer
ENV POSTGRES_USER root
ENV POSTGRES_PASSWORD root
ENV POSTGRES_DB root
# Install the necessary libraries for both postgres and conceptnet
RUN apt update