Skip to content

Instantly share code, notes, and snippets.

View WilliamGarrow's full-sized avatar

William Garrow WilliamGarrow

  • Boston // Orlando
View GitHub Profile
@WilliamGarrow
WilliamGarrow / rest_api_web_application_excercise.php
Last active October 27, 2015 14:47
PHP - REST API and JSON exercise using Google Maps and Instagram
<?php
if (!empty($_GET['location'])){
$maps_url = 'https://'.
'maps.googleapis.com/'.
'maps/api/geocode/json'.
'?address=' . urlencode($_GET['location']);
$maps_json = file_get_contents($maps_url);
$maps_array = json_decode($maps_json, true);
$lat = $maps_array['results'][0]['geometry']['location']['lat'];
@WilliamGarrow
WilliamGarrow / responsive_email_basic-poc.html
Last active October 27, 2015 14:49
HTML - Basic Responsive Email | Single File Basic Proof of Concept
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Basic Responsive Email | Single File Proof of Concept</title>
</head>
<body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0">
<style>
td.mobile {
display: none;