Skip to content

Instantly share code, notes, and snippets.

View benjaminEwhite's full-sized avatar

Benjamin E White benjaminEwhite

  • Raleigh NC
View GitHub Profile
@benjaminEwhite
benjaminEwhite / 4 - Mock Interview: Final.md
Last active February 6, 2019 16:43 — forked from alfaraday/1 - Mock Interview: Experimentation.md
Mock interview scripts and rubrics for the Data Science program. These scripts are intended for interviewers only, please do not share this link.

Final Interview

This script covers the final interview for the course.

Because this is a project-based interview, questions should be tailored to the project itself, but a rough guideline is below.

Afterwards, write up comments and ways to improve and submit them via the Typeform linked in your dashboard.

  • What did you build?
  • Why did you choose this?
from geventwebsocket.handler import WebSocketHandler
from gevent.pywsgi import WSGIServer
from flask import Flask, request, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')