Skip to content

Instantly share code, notes, and snippets.

View jeffwidman's full-sized avatar

Jeff Widman jeffwidman

View GitHub Profile

Effective Engineer - Notes

What's an Effective Engineer?

  • They are the people who get things done. Effective Engineers produce results.

Adopt the Right Mindsets

@jeffwidman
jeffwidman / app.py
Created June 3, 2016 22:11 — forked from heavenshell/app.py
Flask static file for reproducing https://github.com/pallets/flask/issues/331
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from flask import Flask, render_template
app = Flask(__name__)
@app.route('/')
def index():
return render_template('index.html')