Skip to content

Instantly share code, notes, and snippets.

View cwlau's full-sized avatar

William Lau cwlau

View GitHub Profile
# demo from blog.cwlau.com
import webapp2
import os
class Demo(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/html'
@cwlau
cwlau / city.py
Last active November 27, 2017 15:43
Geolocation demo for Google App Engine
# demo from blog.cwlau.com
import os
os.environ.get('HTTP_X_APPENGINE_CITY', 'unknown city')
<!-- Demo from blog.cwlau.com -->
<html>
<style type="text/css">
.popup{
display: inline-block;
position: fixed;
top: 50%;
left: 50%;
width: 400px;