Skip to content

Instantly share code, notes, and snippets.

View afaur's full-sized avatar

Adam Faur afaur

View GitHub Profile
@afaur
afaur / aop.php
Last active June 7, 2017 18:13 — forked from bayleedev/aop.php
aspect oriented programming with traits in php
<?php
/**
* AOP Trait
* Used to created aop for your class.
*/
trait AOP {
public $filters = [];
public function applyFilter($NF) {
list($fnName, $fn) = $NF;
($this->unlessFilter($fnName)) && $this->initFilter($fnName);
@afaur
afaur / ImageMagick 6.9.7-3 Homebrew Formula.md
Last active May 15, 2018 07:50 — forked from rochoa/ImageMagick 6.7.7-10 Homebrew Formula.md
Homebrew Formula for ImageMagick 6.9.7-3

Homebrew Formula patching old ImageMagick release 6.9.7-3

Install

$ brew install https://gist.githubusercontent.com/afaur/15fbb18b28e2140ec3fda8b098262e55/raw/b733366d08da64f87bc889eebf173f4e50e394bc/imagemagick.rb

Tested