This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Gravity Faq | |
The information contained in document will allow you to realistically | |
simulate jumping and interstellar maneuvers. | |
The purpose of this document is to understand the physics of the | |
world we live in, and apply realistic physics to your game. It | |
will not give you optimized routines for your program, that is your | |
job! But if you understand how things work, it will be a heck of | |
a lot easier. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias zappashell='docker run -ti -e AWS_PROFILE=zappa -v $(pwd):/var/task -v ~/.aws/:/root/.aws --rm myzappa' | |
alias zappashell >> ~/.bash_profile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM lambci/lambda:build-python3.6 | |
MAINTAINER "Your Name" <your@email.com> | |
WORKDIR /var/task | |
# Fancy prompt to remind you are in zappashell | |
RUN echo 'export PS1="\[\e[36m\]zappashell>\[\e[m\] "' >> /root/.bashrc | |
# Additional RUN commands here |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import tempfile | |
import xlrd | |
import xlwt | |
CONTACT_FIELDS = [u'customer',u'last name', u'first name', u'email' ] | |
def importstep1(request): | |
''' | |
Import wizard step one merely displays the upload form and instructions. | |
Especially important is to provide a template XLS file on this page so |