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
Altera versão do APP | |
flutter clean | |
flutter build appbundle | |
bundletool build-apks --bundle=build/app/outputs/bundle/release/app-release.aab --output=build/app/outputs/bundle/release/apks/apks.apks | |
bundletool install-apks --apks=build/app/outputs/bundle/release/apks/apks.apks |
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
export PS1="\[\033[36m\]\u\[\033[m\]@\[\033[32m\] \[\033[33;1m\]\w\[\033[m\] (\$(git branch 2>/dev/null | grep '^*' | colrm 1 2)) \$ " |
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 | |
# Removing symbols | |
$example1 = "String with letters, numbers 0123456789 and symbols !@#$%¨&*()_+"; | |
echo preg_replace("/[^a-zA-Z0-9\s]/", "", $example1); | |
# Remove symbols, including spaces | |
$example2 = "String with letters, numbers 0123456789 and symbols !@#$%¨&*()_+"; | |
echo preg_replace("/[^a-zA-Z0-9]/", "", $example2); | |
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 config --global http.proxy meu.servidor:8080 #on | |
git config --global --unset http.proxy #off |
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
sudo apt-get install lib32z1 lib32ncurses5 lib32stdc++6 |
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
1 - Configure sua máquina: | |
$sudo [seu gerenciador de pacotes] make build-essential libssl-dev zlib1g-dev libbz2-dev libsqlite3-dev wget curl llvm libncurses5-dev git | |
2 - Crie o seu diretório de trabalho | |
$ mkdir wttd && cd wttd | |
3- Configure seu Environment | |
$ python -m venv .wttd | |
4- Ative seu Environment |