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
#!/bin/bash | |
# Baixa os dados da fatura em aberto do Nubank | |
# Uso: | |
# ./nubank.sh <cpf> <senha> | |
cpf=$1 | |
senha=$2 | |
if [ "$cpf" == "" ]; then | |
read -p "Digite o CPF: " cpf |
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 | |
if sys.version_info.major >= 3: | |
# usando Python 3.x ou superior | |
from urllib.request import Request, build_opener, HTTPCookieProcessor | |
from urllib.parse import urlencode | |
else: | |
# usando Python 2.x ou anterior | |
from urllib2 import Request, build_opener, HTTPCookieProcessor |
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, re | |
if sys.version_info.major == 3: | |
# usando Python 3 | |
from urllib.request import Request, build_opener, HTTPRedirectHandler, HTTPCookieProcessor | |
else: | |
# usando Python 2 | |
from urllib2 import Request, build_opener, HTTPRedirectHandler, HTTPCookieProcessor | |
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
@echo off | |
@cls | |
set tempfile="%TEMP%\diskscrp.dsk" | |
echo. | |
echo === Disk removal tool === | |
echo. | |
echo Select the disk volume number | |
echo (if the disk has multiple volumes, select any of them) |
NewerOlder