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
-54.7998047, -25.8789944 | |
-54.1406250, -26.0567829 | |
-53.9428711, -26.9024769 | |
-54.8657227, -27.5472415 | |
-56.1181641, -28.3624017 | |
-57.1508789, -29.5734571 | |
-57.7880859, -30.2590672 | |
-57.3706055, -30.4865508 | |
-56.9091797, -30.4297296 | |
-56.3598633, -30.7512778 |
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 docker run -d --name sonarqube -p 9000:9000 sonarqube | |
## se ja existir | |
# docker ps | |
# sudo docker restart ID | |
com gradle 5.5.1 ou maior > | |
alterar ~/.gradle/gradle.properties | |
adicionar: systemProp.sonar.host.url=http://localhost:9000 |
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
db.createUser( | |
{ | |
user: "USR", | |
pwd: "PASS", | |
roles: [ | |
{ role: "read", db: "DB1" }, | |
{ role: "read", db: "DB2" }, | |
{ role: "read", db: "DB3" } | |
] | |
} |
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
iconv -f iso-8859-1 -t utf-8 FILE_NAME > FILE_NAME_UTF8 |
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
ps -ef | grep your_process_name | grep -v grep | awk '{print $2}' | xargs kill |
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
conda config --set auto_activate_base 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
@https://superuser.com/questions/1075992/cedilla-under-c-%c3%a7-in-us-international-with-dead-keys-keyboard-layout-in-linu | |
Layout: | |
English (US, intl., with dead keys) | |
1. Edit configuration files: | |
sudo vim /usr/lib/x86_64-linux-gnu/gtk-3.0/3.0.0/immodules.cache | |
sudo vim /usr/lib/x86_64-linux-gnu/gtk-2.0/2.10.0/immodules.cache | |
On both, find the lines starting with "cedilla" "Cedilla" and add :en to the line. Something like this: |
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
http://localhost:8047 | |
Options> | |
drill.exec.functions.cast_empty_string_to_null : true. | |
store.mongo.all_text_mode : true. | |
store.mongo.bson.record.reader : 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
db.currentOp().inprog.forEach(function(cop){db.killOp(cop.opid)}) |