Skip to content

Instantly share code, notes, and snippets.

@dabac76
dabac76 / identifier.sql
Created February 28, 2022 18:42
Parsing Real-Estate Website.
create table images
(
id integer,
image blob
);
create table property
(
id integer not null
constraint property_pk
@dabac76
dabac76 / condalab.Dockerfile
Last active July 27, 2020 20:15
Dockerized Standalone Spark Cluster with JupyterLab (Miniconda based)
# Adapted from continuumio/miniconda3
FROM openjdk:8u262-jre-buster
ARG pyspark=3.0.0
ARG jupyterlab=2.2.0
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 \
PATH=/opt/conda/bin:$PATH \
SHARED_VOL=/opt/sharedvol \
JAVA_HOME=/usr/local/openjdk-8