Skip to content

Instantly share code, notes, and snippets.

View mramsden's full-sized avatar

Marcus Ramsden mramsden

View GitHub Profile
@mramsden
mramsden / appstore.php
Created May 28, 2012 16:00 — forked from sebskuse/appstore.php
Simple PHP-CLI script to get number of ratings & stars of an app in the AppStore. Takes args from commandline & preset array.
<?php
error_reporting(0);
// Array of appstore ID's to always look up
$idArray = array(
"428243918",
"442713833"
);
$arguments = array_merge($idArray, array_slice($argv, 1) );
@mramsden
mramsden / 0_reuse_code.js
Created January 31, 2014 10:34
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