Skip to content

Instantly share code, notes, and snippets.

View thiagolcks's full-sized avatar

Thiago Locks thiagolcks

View GitHub Profile
@thiagolcks
thiagolcks / DecoratorAbstract.php
Last active January 31, 2017 16:57 — forked from CMCDragonkai/DecoratorAbstract.php
PHP: DecoratorAbstract - Allows the creation of flexible nested decorators.
<?php
/**
* DecoratorAbstract allows the creation of flexible nested decorators. All decorators must extend from this class.
* Decorators can be stacked. They can also have methods that overwrite each other.
* Decorators can omit methods that parent decorators have defined and/or child decorators have defined.
* Methods will cascade to the original child object.
* Properties will read and set from the original child object except when your instance has the property defined.
*/
abstract class DecoratorAbstract
@thiagolcks
thiagolcks / README.md
Created September 27, 2016 01:43 — forked from oodavid/README.md
Backup MySQL to Amazon S3

Backup MySQL to Amazon S3

This is a simple way to backup your MySQL tables to Amazon S3 for a nightly backup - this is all to be done on your server :-)

Sister Document - Restore MySQL from Amazon S3 - read that next

1 - Install s3cmd

this is for Centos 5.6, see http://s3tools.org/repositories for other systems like ubuntu etc