Skip to content

Instantly share code, notes, and snippets.

@dolansgists
dolansgists / paypal_ipn_simple
Created November 27, 2013 20:43
2 Line PayPal IPN
$verify_url = 'https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_notify-validate&' . http_build_query( $_POST );
if( !strstr( file_get_contents( $verify_url ), 'VERIFIED' ) ) return false;
@dolansgists
dolansgists / 0_reuse_code.js
Created November 12, 2013 17:20
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@dolansgists
dolansgists / gist:5715630
Created June 5, 2013 17:24
Laravel: Merge results of eloquent queries
$array = array_merge($query1->toArray(), $query2->toArray());
return Response::json($array);