-
Schedule movers for 8/31 or 9/1West Coast Moving Systems 8/31 -
Compare home insurance rates.Geico - See if the vet has space to board Gladys the dog from 8/31 to 9/6.
- Book hotel Sept. 2 - 6, Daniela's rate where possible
- Cable/Internet move
- PG&E
This file contains 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 os | |
import sys | |
def main(command): | |
pid = os.fork() | |
if 0 != pid: | |
return | |
sys.stdin.close() |
This file contains 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 flask import Flask, render_template, redirect, request, g, session, url_for, flash | |
import daemon | |
import config | |
from forms import TextInputForm | |
application = Flask(__name__) | |
application.config.from_object(config) | |
@application.route('/', methods=['GET', 'POST']) |