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
def eh_anagrama(str1, str2): | |
str1 = str1.lower().replace(" ", "") | |
str2 = str2.lower().replace(" ", "") | |
anagrama = sorted(str1) == sorted(str2) | |
return anagrama | |
if __name__ == '__main__': | |
print(eh_anagrama('ABA', 'AaB')) | |
print(eh_anagrama('THE ALIAS MEN', 'ALAN SMITHEE')) |
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
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
class reports extends MY_Controller | |
{ | |
function __construct() | |
{ | |
parent::__construct(); | |
$access = FALSE; | |
$this->view_data['update'] = FALSE; |
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
<script> | |
function mascaraTelefone( campo ) { | |
function trata( valor, isOnBlur ) { | |
valor = valor.replace(/\D/g,""); | |
valor = valor.replace(/^(\d{2})(\d)/g,"($1)$2"); | |
if( isOnBlur ) { | |
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
import xmltodict | |
import csv | |
with open('nfe_entrada_mock.xml') as fd: | |
nfe = xmltodict.parse(fd.read()) | |
nfe_id = nfe['nfeProc']['NFe']['infNFe']['@Id'] # infNFe Id | |
itens = nfe['nfeProc']['NFe']['infNFe']['det'] |
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
import datetime | |
def time_in_range(start, end, x): | |
"""Return true if x is in the range [start, end]""" | |
if start <= end: | |
return start <= x <= end | |
else: | |
return start <= x or x <= end | |
Find what:
(href|src)="([a-zA-Z0-9/.-]+[^.html])"
Replace with:
$1=\"{% static "assets/$2" %}"
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<link rel="stylesheet" href="style.css"> | |
<style> | |
</style> | |
</head> | |
<body> |
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
text = "Get stylish with DOUBLE BENEFIT at TRENDS! Shop for Rs. 4000 & get benefits worth Rs.4000 on the New season collection from 9th Feb-11th Feb'18 & earn RelianceOne pts. RUSH to ur nearest TRENDS store now! Offer valid in select cities only. T&C More at http://bit.ly/DoubleBenefit " | |
sentences = text.split('!') | |
words = text.split() | |
# print("Palavras: ", words) | |
# print("Sentences: ", sentences) | |
OlderNewer