├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── covid19 ├── README.mdown └── onepager.pdf ├── firestore ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ ├── dashboard.html │ └── homepage.html ├── functions-language ├── language.py └── requirements.txt ├── functions ├── README.md ├── main.py └── requirements.txt ├── language ├── README.md ├── WorkshopREADME.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── homepage.html ├── speech ├── README.md ├── app.yaml ├── main.py ├── requirements.txt ├── resources │ ├── audio.raw │ ├── audio2.raw │ └── quit.raw └── templates │ └── homepage.html ├── tech-talks ├── Machine Learning on Google Cloud.pdf └── Three Powerful Google Cloud Products for Your Project.pdf ├── translate ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates │ └── homepage.html ├── video ├── README.md ├── app.yaml ├── main.py ├── requirements.txt ├── resources │ └── cat.mp4 └── templates │ └── homepage.html └── vision ├── README.md ├── app.yaml ├── main.py ├── requirements.txt └── templates └── homepage.html /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/README.md -------------------------------------------------------------------------------- /covid19/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/covid19/README.mdown -------------------------------------------------------------------------------- /covid19/onepager.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/covid19/onepager.pdf -------------------------------------------------------------------------------- /firestore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/firestore/README.md -------------------------------------------------------------------------------- /firestore/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: python37 2 | entrypoint: gunicorn -b :$PORT main:app -------------------------------------------------------------------------------- /firestore/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/firestore/main.py -------------------------------------------------------------------------------- /firestore/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.0.2 2 | gunicorn==19.9.0 3 | -------------------------------------------------------------------------------- /firestore/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/firestore/templates/dashboard.html -------------------------------------------------------------------------------- /firestore/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/firestore/templates/homepage.html -------------------------------------------------------------------------------- /functions-language/language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/functions-language/language.py -------------------------------------------------------------------------------- /functions-language/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/functions-language/requirements.txt -------------------------------------------------------------------------------- /functions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/functions/README.md -------------------------------------------------------------------------------- /functions/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/functions/main.py -------------------------------------------------------------------------------- /functions/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/functions/requirements.txt -------------------------------------------------------------------------------- /language/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/language/README.md -------------------------------------------------------------------------------- /language/WorkshopREADME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/language/WorkshopREADME.md -------------------------------------------------------------------------------- /language/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: python37 2 | entrypoint: gunicorn -b :$PORT main:app -------------------------------------------------------------------------------- /language/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/language/main.py -------------------------------------------------------------------------------- /language/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/language/requirements.txt -------------------------------------------------------------------------------- /language/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/language/templates/homepage.html -------------------------------------------------------------------------------- /speech/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/speech/README.md -------------------------------------------------------------------------------- /speech/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/speech/app.yaml -------------------------------------------------------------------------------- /speech/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/speech/main.py -------------------------------------------------------------------------------- /speech/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/speech/requirements.txt -------------------------------------------------------------------------------- /speech/resources/audio.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/speech/resources/audio.raw -------------------------------------------------------------------------------- /speech/resources/audio2.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/speech/resources/audio2.raw -------------------------------------------------------------------------------- /speech/resources/quit.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/speech/resources/quit.raw -------------------------------------------------------------------------------- /speech/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/speech/templates/homepage.html -------------------------------------------------------------------------------- /tech-talks/Machine Learning on Google Cloud.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/tech-talks/Machine Learning on Google Cloud.pdf -------------------------------------------------------------------------------- /tech-talks/Three Powerful Google Cloud Products for Your Project.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/tech-talks/Three Powerful Google Cloud Products for Your Project.pdf -------------------------------------------------------------------------------- /translate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/translate/README.md -------------------------------------------------------------------------------- /translate/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: python37 2 | entrypoint: gunicorn -b :$PORT main:app -------------------------------------------------------------------------------- /translate/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/translate/main.py -------------------------------------------------------------------------------- /translate/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/translate/requirements.txt -------------------------------------------------------------------------------- /translate/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/translate/templates/homepage.html -------------------------------------------------------------------------------- /video/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/video/README.md -------------------------------------------------------------------------------- /video/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/video/app.yaml -------------------------------------------------------------------------------- /video/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/video/main.py -------------------------------------------------------------------------------- /video/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/video/requirements.txt -------------------------------------------------------------------------------- /video/resources/cat.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/video/resources/cat.mp4 -------------------------------------------------------------------------------- /video/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/video/templates/homepage.html -------------------------------------------------------------------------------- /vision/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/vision/README.md -------------------------------------------------------------------------------- /vision/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/vision/app.yaml -------------------------------------------------------------------------------- /vision/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/vision/main.py -------------------------------------------------------------------------------- /vision/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/vision/requirements.txt -------------------------------------------------------------------------------- /vision/templates/homepage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoogleCloudPlatform/hackathon-toolkit/HEAD/vision/templates/homepage.html --------------------------------------------------------------------------------