Skip to content

Instantly share code, notes, and snippets.

View HigorMonteiro's full-sized avatar

Higor Monteiro HigorMonteiro

View GitHub Profile
<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>
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)
# 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
@HigorMonteiro
HigorMonteiro / settings-higor
Created May 6, 2015 01:27
arquivo settings.py
"""
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/
"""