Skip to content

Instantly share code, notes, and snippets.

View niloyniloy's full-sized avatar

Niloy Niloy niloyniloy

  • Feni , Bangladesh
View GitHub Profile
@niloyniloy
niloyniloy / PHPExcel_Formula_Debugging.md
Created October 12, 2015 14:49 — forked from MarkBaker/PHPExcel_Formula_Debugging.md
PHPExcel formula debugging (prior to 1.7.9)

PHPExcel formula debugging

Prior to version 1.7.9

/** Error reporting */
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
date_default_timezone_set('Europe/London');
@niloyniloy
niloyniloy / Android Push Notification
Last active September 30, 2015 18:06 — forked from prime31/gist:5675017
Simple PHP script showing how to send an Android push notification. Be sure to replace the API_ACCESS_KEY with a proper one from the Google API's Console page. To use the script, just call scriptName.php?id=THE_DEVICE_REGISTRATION_ID
<?php
// API access key from Google API's Console
define( 'API_ACCESS_KEY', 'YOUR-API-ACCESS-KEY-GOES-HERE' );
$registrationIds = array( $_GET['id'] );
// prep the bundle
$msg = array