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
""" | |
Django settings for blog project. | |
For more information on this file, see | |
https://docs.djangoproject.com/en/1.7/topics/settings/ | |
For the full list of settings and their values, see | |
https://docs.djangoproject.com/en/1.7/ref/settings/ | |
""" |
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
# utf-8 | |
set -g utf8 | |
set-window-option -g utf8 on | |
# settings 256 colors | |
set -g default-terminal "screen-256color" | |
# Remove ctrl + b prefix and set it to ctrl + a | |
unbind C-b | |
set -g prefix C-a |
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 pyodbc | |
from flask import (url_for, redirect, render_template, | |
request, send_from_directory) | |
from werkzeug import secure_filename | |
from app import app | |
connection_string = 'Driver={ODBC Driver 13 for SQL Server};Server=192.168.0.105;Database=ATXDADOS;Uid=sa;Pwd=asdf1234;' | |
connection = pyodbc.connect(connection_string) |
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
<template> | |
<div id=""> | |
<div class="col s12 "> | |
<div class="section"> | |
<div class="filtro_content"> | |
<div class="row"> | |
<div class="input-field col s12"> | |
<i class="material-icons prefix">place</i> | |
<input id="icon_prefix" type="text" v-model="search" class="validate" placeholder="Bairro ou CEP"> | |
</div> |