sudo -U postgres psql
show hba_file;
Normalmente está no diretório:
/var/lib/pgsql/11/data/pg_hba.conf
| Start dbeaver with command: | |
| dbeaver -vmargs -Duser.timezone=CET | |
| Or | |
| Edite dbeaver.ini (/usr/share/dbeaver/dbeaver.ini) adding the time zone: | |
| -Duser.timezone=CET |
Como instalar o oracle client para integrar o Bot com o banco Oracle:
Seguir aqui: https://cx-oracle.readthedocs.io/en/latest/user_guide/installation.html#installing-cx-oracle-on-linux
| def recall(y_true, y_pred): | |
| true_positives = K.sum(K.round(K.clip(y_true * y_pred, 0, 1))) | |
| possible_positives = K.sum(K.round(K.clip(y_true, 0, 1))) | |
| recall = true_positives / (possible_positives + K.epsilon()) | |
| return recall | |
| def precision(y_true, y_pred): | |
| true_positives = K.sum(K.round(K.clip(y_true * y_pred, 0, 1))) | |
| predicted_positives = K.sum(K.round(K.clip(y_pred, 0, 1))) | |
| precision = true_positives / (predicted_positives + K.epsilon()) |
Caso o Docker esteja criando sua rede interna conflitando com alguma rede corporativa, faça o seguinte:
sudo systemctl stop docker
In Ubuntu systems running MySQL 5.7 (and later), the root user is authenticated by the auth_socket plugin by default.
$ sudo mysql #No Username to be the provide
mysql> USE mysql;
mysql> SELECT User, Host, plugin FROM mysql.user;
+——————+———————–+
O pré-requisito é já possuir um projeto no gitlab.
ssh-keygen -t ed25519 -C "[email protected]"