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
var dayValue = "+7"; | |
myTime.setDate(myTime.getDate() dayValue); |
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 flask import Flask, g, request, flash, url_for, redirect, render_template, abort | |
from flaskext.jsonify import jsonify | |
from flaskext.sqlalchemy import * | |
from sqlalchemy import * | |
from pyodbc import * | |
import logging | |
DATABASE = "dsn=Foo;Trusted_Connection=Yes" | |
SECRET_KEY = "asdasdfasd1234sdagfa23asdfg123" |