Skip to content

Instantly share code, notes, and snippets.

@mremond
mremond / boxcar_push.php
Created February 6, 2014 11:36
Send a Boxcar notification to your device in PHP
<?php
curl_setopt_array(
$chpush = curl_init(),
array(
CURLOPT_URL => "https://new.boxcar.io/api/notifications",
CURLOPT_POSTFIELDS => array(
"user_credentials" => 'ACCESS_TOKEN',
"notification[title]" => 'message title',
"notification[long_message]" => '<b>Some text or HTML for the full layout page notification</b>',
@ftbastler
ftbastler / gist:4046879
Created November 9, 2012 17:04 — forked from thehydroimpulse/gist:2872907
A Laravel task generator. Models, Migrations and Controllers.
<?php
/**
* @copyright 2012 TheHydroImpulse, Daniel Fagnan
* @version 0.1
* @todo Add an overwite ability. Among other things.
* @note Use this as you wish. Extend it, Mash it. Enjoy it.
*/
@ftbastler
ftbastler / GeoCaching.Class.php
Created October 9, 2012 14:15 — forked from gausie/GeoCaching.Class.php
GeoCaching Class
<?php
/*
Written during a Maths lecture by Samuel Gaus
*/
class GeoCaching {