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
# -*- coding: utf-8 -*- | |
import sys, unicodedata | |
reload(sys) | |
sys.setdefaultencoding("utf-8") | |
# sys.setdefaultencoding("cp1252") | |
def remove_accents(txt): | |
# Returns a string without accents | |
return unicodedata.normalize('NFKD', unicode(txt)).encode('ASCII', 'ignore') |
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
# Git configuration | |
# Autor: Bismarck Gomes <[email protected]> | |
name="Bismarck Gomes Souza Junior" | |
email="[email protected]" | |
editor="'C:/Program Files/Sublime Text 3/subl.exe' -nw" | |
p4merge="C:/Program Files/Perforce/p4merge.exe" | |
# editor="notepad" | |
# editor="'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -notabbar -nossesion -noPlugin" |
NewerOlder