Skip to content

Instantly share code, notes, and snippets.

View ewestern's full-sized avatar

Peter France ewestern

View GitHub Profile
{"type":"Movie","id":"665895","content":{"id":"665895","description":{"en":"As tensions rise among supervillain inmates and corrupt staff, the march toward anarchy begins in the world’s most dangerous maximum-security prison."},"providerId":"tubitv","ratings":{"usTv":{"value":"TVMA"}},"credits":[{"personId":"Bruce Willis","name":"Bruce Willis","role":"ACTOR"},{"personId":"Michael Rooker","name":"Michael Rooker","role":"ACTOR"},{"personId":"Tom Cavanagh","name":"Tom Cavanagh","role":"ACTOR"},{"personId":"Kevin Zegers","name":"Kevin Zegers","role":"ACTOR"},{"personId":"Dan Payne","name":"Dan Payne","role":"ACTOR"},{"personId":"Hayley Sales","name":"Hayley Sales","role":"ACTOR"},{"personId":"Brennan Mejia","name":"Brennan Mejia","role":"ACTOR"},{"personId":"Stirling Bancroft","name":"Stirling Bancroft","role":"ACTOR"},{"personId":"Richard Simpson","name":"Richard Simpson","role":"ACTOR"},{"personId":"Kat Ruston","name":"Kat Ruston","role":"ACTOR"},{"personId":"Cavanagh","name":"Cavanagh","role":"ACTOR"},{"person
START RequestId: 0d00b208-311c-4755-8322-580ac05d3465 Version: $LATEST
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
END RequestId: 0d00b208-311c-4755-8322-580ac05d3465
REPORT RequestId: 0d00b208-311c-4755-8322-580ac05d3465 Duration: 7435.81 ms Billed Duration: 7500 ms Memory Size: 1024 MB Max Memory Used: 207 MB Init Duration: 107.59 ms
START RequestId: 4ffe5c9a-a945-4d0c-ae2c-766b9896078b Version: $LATEST
END RequestId: 4ffe5c9a-a945-4d0c-ae2c-766b9896078b
REPORT RequestId: 4ffe5c9a-a945-4d0c-ae2c-766b9896078b Duration: 425.13 ms Billed Duration: 500 ms Memory Size: 1024 MB Max Memory Used: 207 MB
START RequestId: 1a8fe8e2-f7a9-4c71-b99f-4a4d868d5191 Version: $LATEST
@ewestern
ewestern / mapping.yaml
Created May 13, 2016 13:00
Mapping.yaml
tables:
trails:
type: linestring
mapping:
highway:
- path
- footway
- track
ford:
- 'yes'
@ewestern
ewestern / 0_reuse_code.js
Created October 13, 2013 19:40
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
@ewestern
ewestern / gist:5912798
Created July 2, 2013 20:26
Gdal install error
checking build system type... i386-apple-darwin12.4.0
checking host system type... i386-apple-darwin12.4.0
checking for gcc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
@ewestern
ewestern / chpt4.py
Last active December 14, 2018 07:02
A python implementation of TAPL chpt 4
import ply.lex as lex
import ply.yacc as yacc
dummyinfo = ''
class Term(object):
def __init__(self, info):
self.info = info