Skip to content

Instantly share code, notes, and snippets.

View minjejeon's full-sized avatar

Minje Jeon minjejeon

  • Bank of Korea
  • Seoul, Korea
View GitHub Profile
@minjejeon
minjejeon / Dockerfile
Last active February 16, 2023 16:36 — forked from kmpm/install-weasyproxy.sh
Small file that installes ad uses weasyprint instead of wkhtmltopdf on linuxserver bookstack containers..
FROM linuxserver/bookstack:latest
COPY ./install-weasyproxy.sh /tmp/
RUN sh /tmp/install-weasyproxy.sh
RUN mkdir /custom-cont-init.d/
COPY ./init-weasyproxy.sh /custom-cont-init.d/
@minjejeon
minjejeon / lotto.py
Created August 17, 2024 06:37
온라인 로또 5000원
import numpy as np
for x in range(5):
print(np.sort(np.random.choice(range(1,46),6,replace=False)))
@minjejeon
minjejeon / add-context-menu.reg
Last active October 22, 2024 10:18 — forked from navhaxs/add-context-menu.reg
Convert HEIC to JPG context menu Windows 10
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\SystemFileAssociations\.heic\Shell\Convert-to-Jpg\command]
@="\"C:\\Program Files\\ImageMagick-7.1.1-Q16-HDRI\\magick.exe\" mogrify -format jpg \"%1\""