Skip to content

Instantly share code, notes, and snippets.

@shenron
shenron / stringify.js
Created October 2, 2019 13:43
Stringify Data - recursive function
const p = {
larr_dtls: [{
id: 0,
arr_allocs: [{
lots: 41,
tp: 'hedge',
phys_exec_id: 35,
}]
}, {
id: 1,
@shenron
shenron / Dockerfile
Last active January 27, 2023 08:11 — forked from daniel-j/README.md
Converts images in a directory to a comic/manga EPUB3 ebook. Can be used to convert extracted CBZ/CBR to EPUB3.
FROM python:3
RUN apt-get update && \
apt-get -y install libxml2-dev libxslt-dev python-dev && \
pip install lxml imagesize
WORKDIR /opt/
COPY . /opt