Skip to content

Instantly share code, notes, and snippets.

View epriestley's full-sized avatar

Evan Priestley epriestley

  • San Francisco, CA
View GitHub Profile
@epriestley
epriestley / gist:4163027
Created November 28, 2012 18:20
Phabricator

OVERVIEW

Phabricator is a suite of web applications that help software companies communicate about software development effectively. In particular, these applications include Differential (a code review application), Diffusion (a repository browser) and Maniphest (a bug tracker).

Phabricator was created at Facebook and is used by its engineering team. It is now developed as an open source project.

@epriestley
epriestley / ses.php
Created August 4, 2011 21:18
Add Exceptions
diff --git a/externals/amazon-ses/ses.php b/externals/amazon-ses/ses.php
index ed5b29e..bec4230 100644
--- a/externals/amazon-ses/ses.php
+++ b/externals/amazon-ses/ses.php
@@ -66,6 +66,12 @@ class SimpleEmailService
public function verifyPeer() { return $this->__verifyPeer; }
public function enableVerifyPeer($enable = true) { $this->__verifyPeer = $enable; }
+ // If you use exceptions, errors will be communicated by throwing a
+ // SimpleEmailServiceException. By default, they will be trigger_error()'d.
<?php function($x) {
}