Skip to content

Instantly share code, notes, and snippets.

View markharding's full-sized avatar
👋

Mark Harding markharding

👋
View GitHub Profile
did:3:bafyreiaveqpdvc72vm7a7nnj4qoy7oyrp7epf2xq2zgo3zyndoedzd4o5q
0x8d65a60a2989d51494a603573650e1b80a2120e5
@markharding
markharding / gist:1a81a1c8390d6fd1e708
Created October 12, 2014 10:12
Birthday Menu List. Simple php parsing script and calculator.
<?php
/**
* A very simple script to say who is eating what
*/
$dumps = array(
'{"name":"Fiona Harding","starters":{"title":"Traditional Prawn Cocktail","info":"Served with brown bread* and butter"},"mains":{"title":"Slow Roasted Topside of Beef","info":"With Yorkshire pudding, pan gravy and roast potatoes"},"pudding":{"title":"Forrest Fruit Cheesecake","info":"Served with a fruit coulis"}}',
'{"name":"Billy Harding","starters":{"title":"Vegetable Soup","info":"Served with bread roll* and butter"},"mains":{"title":"Slow Roasted Topside of Beef","info":"With Yorkshire pudding, pan gravy and roast potatoes"},"pudding":{"title":"Choux Bun","info":"Chocolate covered bun filled with sweet cream"}}',
' {"name":"Bruce Harding","starters":{"title":"Traditional Prawn Cocktail","info":"Served with brown bread* and butter"},"mains":{"title":"Slow Roasted Topside of Beef","info":"With Yorkshire pudding, pan gravy and roast potatoes"},"pudding":{"title":"Traditional Apple Pie","info":"Served with
server {
listen 80;
#listen [::]:80;
server_name _;
root /var/www/Minds;
location / {
try_files $uri $uri/ @rewrite;
index index.php index.html index.htm;
}