Highrise API Wrapper

Since Soocial no longer syncs with highrise, I’ve been looking for another solution to sync with my google apps.  I’ve decided I’ll be writing my own, which I will release later.

In the mean time, I’ve found a Highrise API wrapper which should come in handy so I don’t have to deal with cURL as much.

include("push2Highrise.php");
$p = Push_Highrise();
$p->pushContact($_REQUEST);
$p->pushTask($_REQUEST);
$p->pushNote($_REQUEST);
$p->pushDeal($_REQUEST);

Growl from PHP

I just found this nifty PHP class for sending growl notifications from sitecrafting.com.  Very nifty.  Here’s some sample code to get it going:

// Setup
$growl = new Growl();
$growl->setAddress('127.0.0.1');
$growl->addNotification("Test");
$growl->register();

// Send Notification
$growl->notify("Test", "Test Alert", "The body of the test alert!");