Skip to content

Instantly share code, notes, and snippets.

View mloureiro's full-sized avatar
🤘

Marcos Loureiro mloureiro

🤘
View GitHub Profile
@mloureiro
mloureiro / script.php
Last active October 9, 2015 22:29
Make all available options from a demanded list
<?php
$sections = [
'bread' => [
'multichoice' => false,
'options' => ['normal','wrap']
],
'salad' => [
'multichoice' => true,
'options' => ['lettuce','tomatoes', 'corn']
@mloureiro
mloureiro / googleSignedUrls.php
Last active June 19, 2016 11:46
Generate a Google Signed URL
<?
/**
* Google Bucket GET file with signed string example
*/
require_once("vendor/autoload.php");
/*
* Helper Methods
*/