Nesse código a baixo tem um exemplo para poder entender como parar um loop
merge(
controlForm.get('startDate').valueChanges,
controlForm.get('endDate').valueChanges
when there is more than on screen, the workspace is not enabled for other screens, this command makes it possible for all screens to be changed to the workspace.
gsettings set org.gnome.mutter workspaces-only-on-primary false
this command stops when you press alt+TAB not see other apps from other workspaces.
gsettings set org.gnome.shell.app-switcher current-workspace-only true
Como visualizar excptions nos logs gerado por alguma aplicação java
grep -P "(WARN|ERROR|^\tat |Exception|^Caused by: |\t... \d+ more)"
#!/bin/sh | |
clear | |
arr=( | |
"projects" | |
"projects" | |
) | |
echo "Data Inicial: " |
# https://blog.theodo.com/2015/09/protect-your-node-js-api-with-nginx-and-ssl-client-certificates/ | |
# https://gist.github.com/alexishida/607cca2e51ec356b1fe1909047ec70fd | |
# pass: 86JKGO849723IALH5ENCB0UZRBTOW71731HBDOS61OB | |
# changeit | |
rm -f ca.crt ca.key client.crt client.csr client.key client.p12 client.pem password password.pub | |
clear |
spring.mail.host=smtp.gmail.com | |
spring.mail.port=465 | |
[email protected] | |
spring.mail.password=xxxx xxxx xxxx xxxx | |
# Other properties | |
spring.mail.properties.mail.smtp.auth=true | |
spring.mail.properties.mail.smtp.connectiontimeout=5000 | |
spring.mail.properties.mail.smtp.timeout=5000 | |
spring.mail.properties.mail.smtp.writetimeout=5000 |
### Comandos do Docker | |
| |
- Exibe todos os containers em execução no momento. | |
| |
docker ps | |
| |
- Exibe todos os containers, independente de estarem em execução ou não. | |
| |
docker ps -a | |
|
# first | |
curl https://storage.googleapis.com/git-repo-downloads/repo > ~/bin/repo | |
chmod a+x ~/bin/repo | |
# second | |
repo init -u https://android.googlesource.com/platform/manifest |
# Download the source. Takes several minutes. | |
# curl https://storage.googleapis.com/git-repo-downloads/repo >repo | |
# chmod a+x repo | |
# rm -rfd /var/www/android | |
mkdir /var/www/android-test | |
cd /var/www/android-test | |
export USE_CCACHE=1 |