-
Python Tutorial: Exception Handling
“whereas in Java exceptions are caught by catch clauses, we have statements introduced by an “except” keyword in Python. “
-
How to install Windows 7 on systems with Skylake chipset | Dell Brasil
“modify the image”
-
postgresql – How connect Postgres to localhost server using pgAdmin on Ubuntu? – Stack Overflow
“1. Open the file pg_hba.conf
sudo nano /etc/postgresql/9.x/main/pg_hba.confand change this line:
Database administrative login by Unix domain socket
local all postgres md5
toDatabase administrative login by Unix domain socket
local all postgres trust
Restart the serversudo service postgresql restart
Login into psql and set password
psql -U postgres
ALTER USER postgres with password ‘new password’;
Again open the file pg_hba.conf and change this line:
Database administrative login by Unix domain socket
local all postgres trust
toDatabase administrative login by Unix domain socket
local all postgres md5
Restart the server
sudo service postgresql restartIt works.”