Skip to content

Instantly share code, notes, and snippets.

View Vehmloewff's full-sized avatar
🤦‍♂️
Efficiency begot effectiveness and the daughter devoured the mother

Elijah Mooring Vehmloewff

🤦‍♂️
Efficiency begot effectiveness and the daughter devoured the mother
View GitHub Profile
@ccstone
ccstone / BBEdit-TextWrangler_RegEx_Cheat_Sheet.txt
Last active May 10, 2024 15:41
BBEdit-TextWrangler Regular Expression Cheat-Sheet
————————————————————————————————————————————————————————————————————————————————————————————————————
BBEdit / BBEdit-Lite / TextWrangler Regular Expression Guide Modified: 2018/08/10 01:19
————————————————————————————————————————————————————————————————————————————————————————————————————
NOTES:
The PCRE engine (Perl Compatible Regular Expressions) is what BBEdit and TextWrangler use.
Items I'm unsure of are marked '# PCRE?'. The list while fairly comprehensive is not complete.
@ypujante
ypujante / svg_2_png.py
Last active August 19, 2024 19:41
Convert an svg to a png using Google Chrome
#!/usr/bin/env python3
import argparse
import tempfile
from pathlib import Path
import subprocess
import os
import platform
scale = 1.0