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
| wget https://bitbucket.org/amarallab/network-cartography/raw/ce974efc27acdff294d601e77f9762ff2b61e62f/netcarto_cl -qO netcarto_cl \ | |
| && chmod +x ./netcarto_cl \ | |
| && sudo dpkg --add-architecture i386 \ | |
| && sudo apt update \ | |
| && sudo apt install libgslcblas0:i386 libgsl23:i386 -y \ | |
| && cp /usr/lib/i386-linux-gnu/libgsl.so.23 /usr/lib/i386-linux-gnu/libgsl.so.0 |
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 | |
| #Script escrito por Bruno Mendes da Costa | |
| #Última atualização 12/09/2019 | |
| echo "Baixando o Sublime Text 3..." | |
| wget https://download.sublimetext.com/sublime_text_3_build_3207_x64.tar.bz2 | |
| echo "Done." | |
| echo "Criando diretório apps na home do usuário..." | |
| mkdir ~/apps |
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
| # https://pypi.org/project/validate-docbr/ | |
| from validate_docbr import CPF | |
| cpf = CPF() | |
| """ | |
| Quantos CPFs existem com os mesmos últimos 6 dígitos? | |
| Y - Dígitos conhecidos | |
| X - Dígitos a serem descobertos | |
| XXX.XXY.YYY-YY | |
| """ |