Skip to content

Instantly share code, notes, and snippets.

@shayanderson
shayanderson / imageresizer.php
Created January 29, 2014 15:38
Image Resizer command line script for ImageResizer.php class
#!/usr/bin/php
<?php
/**
* Command line script for Image Resizer / Thumbnail Creator
*
* @author Shay Anderson
*
* NOTE: Requires the GD lib:
* http://php.net/manual/en/book.image.php
*
@shayanderson
shayanderson / lib-ImageResizer.php
Created January 29, 2014 15:38
Image Resizer class ImageResizer.php
<?php
/**
* Image Resizer / Thumbnail Creator
*
* NOTE: Requires the GD lib:
* http://php.net/manual/en/book.image.php
*
* @package ImageResizer
* @name ImageResizer
* @author Shay Anderson 3.12
@shayanderson
shayanderson / util.php
Created May 14, 2015 14:27
Utility functions for PHP 5.5+
<?php
/**
* Utility functions for PHP 5.5+
*
* @copyright 2015 Shay Anderson <http://www.shayanderson.com>
* @license MIT License <http://www.opensource.org/licenses/mit-license.php>
* @link <http://www.shayanderson.com/php/php-utility-functions.htm>
*/
/**
svn log -v -r{2015-1-1}:HEAD | awk '/^r[0-9]+ / {user=$3} /./{if (user=="svnusername") {print}}' | grep -E "^ M|^ G|^ A|^ D|^ C|^ U" | awk '{print $2}' | sort | uniq