Skip to content

Instantly share code, notes, and snippets.

View dhwalters423's full-sized avatar

David Walters dhwalters423

  • Amazon Web Services
  • Florida, United States
View GitHub Profile
@dhwalters423
dhwalters423 / README.md
Last active June 18, 2021 20:00
i.MX8MQEVK - meta-aws Greengrass and Deep Learning Runtime integration

Build AWS IoT Greengrass v2.0 on the NXP i.MX8MQEVK

The following guide will build a Yocto image on AWS for the NXP i.MX8MQuad EVK that contains AWS IoT Greengrass v. 2.0 and the dependencies for Amazon SageMaker Edge Manager and the Deep Learning Runtime.

Requirements:

  • An AWS account
  • Host machine with a Unix terminal (Linux or Mac OS)
  • AWS CLI installed and configured on host machine
  • i.MX8MQEVK or MCIMX8M-EVK
@dhwalters423
dhwalters423 / reflect.py
Created December 6, 2017 17:02 — forked from huyng/reflect.py
A simple echo server to inspect http web requests
#!/usr/bin/env python
# Reflects the requests from HTTP methods GET, POST, PUT, and DELETE
# Written by Nathan Hamiel (2010)
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler
from optparse import OptionParser
class RequestHandler(BaseHTTPRequestHandler):
def do_GET(self):