Skip to content

Instantly share code, notes, and snippets.

View wojo1206's full-sized avatar
🎹
Accordion

Wojciech (Voytec) Szczurek wojo1206

🎹
Accordion
View GitHub Profile
@wojo1206
wojo1206 / wordpress_uploaded_optimization.sh
Last active August 2, 2016 04:06
Recursively deletes thumbnails, optimizes, and creates three new ones with given width and proportional height ignoring smaller images on Mac OS.
#/bin/sh
IFS=$'\n';
readonly SMALL=150
readonly MEDIUM=400
readonly LARGE=800
for f in $(find -E . -iregex '.*-[0-9]{0,4}x[0-9]{0,4}\.(png|jpg|jpeg)'); do
ls $f;
rm $f;
@wojo1206
wojo1206 / sample.php
Last active February 18, 2020 17:15
Sample PHP class that returns name of country given its ISO name
<?php
namespace Pretty\Cool;
/**
* Class CountryDecoder. Returns name of country given its ISO name.
*
* @package Pretty\Cool
*/
class CountryDecoder {