Skip to content

Instantly share code, notes, and snippets.

View JensWolff's full-sized avatar

Jens Wolff JensWolff

View GitHub Profile
@pepebe
pepebe / pdf2jpg.snippet.php
Last active February 8, 2024 16:38
pdf2jpg - MODX snippet to create a thumbnail jpg from a pdf file
<?php
/*
pdf2jpg v.0.0.1
---------------------------------------
MODX snippet to create a jpg thumbnail from a pdf file
AUTHOR:
---------------------------------------
info@pepebe.de
@scturtle
scturtle / addlrc.py
Last active March 4, 2023 10:10
download from music.163.com
import eyed3
import re
import glob
def get_lyric(lrc):
text = open(lrc).read()
text = re.sub(r'(?:\[.*\])+', '', text).strip()
text = map(lambda l: l.strip(), text.split('\n'))
ans = []
for l in text: