Skip to content

Instantly share code, notes, and snippets.

View JacquesDuflos's full-sized avatar

Jacques Duflos JacquesDuflos

  • Colombia
View GitHub Profile
@JacquesDuflos
JacquesDuflos / mangakatana_cbz_creater
Last active March 10, 2024 19:45
Makes cbz files for each chapter of a manga downloaded form mangakatana.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import zipfile
'''
this script is ment to turn .zip files downloaded from mangakatana.com to a serie
of .cbz files. The .zip files contain usually 10 chapters of a same manga stored as
a serie of folders.
'''
@JacquesDuflos
JacquesDuflos / convex-hull.py
Created May 14, 2023 04:11
a plug-in for python that draws a path around a text.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# GIMP plugin to draw convex hulls around shapes
# (c) Jacques Duflos 2023
#
# History:
#
# v0.0: 2023-xx-xx: First published version