I hereby claim:
- I am miguelgrinberg on github.
- I am miguelgrinberg (https://keybase.io/miguelgrinberg) on keybase.
- I have a public key whose fingerprint is 2488 9E35 E9BC 5DDD D3D6 C648 EE0C 3C4C F171 F9A3
To claim this, I am signing this object:
| #!/bin/env python | |
| # ------------------------------------------------------------------------------- | |
| # This is a basic implementation of comments with a flat structure, | |
| # as described in my article: | |
| # https://blog.miguelgrinberg.com/post/implementing-user-comments-with-sqlalchemy | |
| # ------------------------------------------------------------------------------- | |
| from datetime import datetime | |
| from flask import Flask |
| FROM phusion/baseimage:latest | |
| # https://github.com/phusion/baseimage-docker | |
| MAINTAINER Nick Merwin <[email protected]> | |
| ENV HOME /root | |
| RUN /etc/my_init.d/00_regen_ssh_host_keys.sh | |
| CMD ["/sbin/my_init"] | |
| # ============================================================================== | |
| # install deps |
| from flask import Flask, render_template | |
| from flask_bootstrap import Bootstrap | |
| from flask_wtf import Form | |
| from wtforms.fields import DateField | |
| app = Flask(__name__) | |
| app.config['SECRET_KEY'] = 'secret' | |
| Bootstrap(app) |
I hereby claim:
To claim this, I am signing this object:
| import asyncio | |
| loop = asyncio.get_event_loop() | |
| async def hello(): | |
| await asyncio.sleep(3) | |
| print('Hello!') | |
| if __name__ == '__main__': | |
| loop.run_until_complete(hello()) | |
| #!/bin/python | |
| # This simple Python script runs simulations for different retry algorithms | |
| # The results are printed as CSV data to the console | |
| # See this article on my blog for details: | |
| # https://blog.miguelgrinberg.com/post/how-to-retry-with-class | |
| from random import random, choice | |
| heat_template_version: 2013-05-23 | |
| description: Template that installs a wordpress server and supporting MySQL database running on separate servers | |
| parameters: | |
| image: | |
| type: string | |
| label: Image name or ID | |
| description: Image to be used for server. Please use an Ubuntu based image. | |
| default: trusty-server-cloudimg-amd64 |
| #!/bin/bash | |
| REPO=https://github.com/miguelgrinberg/heat-config | |
| BRANCH=master | |
| while [[ $# > 0 ]]; do | |
| OPT="$1" | |
| shift | |
| case $OPT in | |
| -r|--repo) |
| import urllib3 | |
| import re | |
| from flask import Flask, request, make_response, url_for | |
| from flask.ext.cors import CORS | |
| app = Flask(__name__) | |
| app.config['IGNORE_REQUEST_HEADERS'] = ['content-length', 'host'] | |
| app.config['IGNORE_RESPONSE_HEADERS'] = ['connection', 'transfer-encoding', | |
| 'keep-alive', 'content-encoding'] | |
| cors = CORS(app) |
| #!/bin/bash | |
| # note: this script is invoked automatically by rackspace-flasky.py | |
| # save command line arguments | |
| GMAIL_USERNAME=$1 | |
| GMAIL_PASSWORD=$2 | |
| # install web server dependencies | |
| apt-get update | |
| apt-get -y install python python-virtualenv nginx supervisor git |