Skip to content

Instantly share code, notes, and snippets.

@dhanifudin
dhanifudin / UUIDModel.php
Last active September 9, 2015 19:39
Eloquent Laravel Model that autogenerated uuid and save using binary format
<?php
use Rhumsaa\Uuid\Uuid;
class UUIDModel extends Eloquent {
public $incrementing = false;
protected $softDelete = true;
public function __construct(array $attributes = array()) {
@slivero
slivero / gist:3164297
Created July 23, 2012 15:41
Resampling a JPEG image in PHP using GD (not imagemagick)
<?php
/**
* Class used for resampling images
*/
class Resampler
{
/**
* Resample an image
*