Skip to content

Instantly share code, notes, and snippets.

View BoboTiG's full-sized avatar
🐍
Charmeur de serpents

Mickaël Schoentgen BoboTiG

🐍
Charmeur de serpents
View GitHub Profile
@BoboTiG
BoboTiG / find-translations.py
Last active July 28, 2016 20:01
Find unused translations in BlogoText.
#!/usr/bin/env python
# coding: utf-8
#
# Find unused translations.
# Python 3.
#
from collections import OrderedDict
from glob import glob
import re
@BoboTiG
BoboTiG / css-compress.php
Last active July 12, 2016 17:03 — forked from brentonstrine/css-compress.php
More removes.
<?php
/**
* On-the-fly CSS Compression
* Copyright (c) 2009 and onwards, Manas Tungare.
* Creative Commons Attribution, Share-Alike.
*
* In order to minimize the number and size of HTTP requests for CSS content,
* this script combines multiple CSS files into a single file and compresses
* it on-the-fly.
*