How to connect to PostgreSQL database using pgAdmin 4?

 How to connect to PostgreSQL database using pgAdmin 4? In order to set up a connection to the PostgreSQL database, run pgAdmin 4, for example, from the Start menu. As a result, pgAdmin 4 will start. Then click the menu "Object->Create->Server" or right-click on the item "Servers" and select "Create->Server". The server connection settings window will open. On the General tab, we invent and enter the name of our server in the Name field. On the Connection tab, enter the server IP address, username, password, and if you want, you can check the “Save password?” to save the password and not to enter it every time you connect. If the standard port (5432) of the PostgreSQL server has been changed, then you also need to change it here. Press the "Save" button. Note! The PostgreSQL server must be installed, configured and running. We considered an example of installing and configuring PostgreSQL DBMS on Linux Debian in the material “Installing ...

Adding "God Mode" to the Windows 10 Control Panel

 Adding "God Mode" to the Windows 10 Control Panel


This is done by editing the registry. To do this, create a .reg file (a text file with the .reg extension) and paste the following code into it, which creates the necessary branches in the Windows registry. For example, I called this script AddGodMode.reg

Windows Registry Editor Version 5.00

    [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{D15ED2E1-C75B-443c-BD7C-FC03B2F08C17}]

    @="God Mode"

    "InfoTip"="All elements"

    "System.ControlPanel.Category"="5"

    [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{D15ED2E1-C75B-443c-BD7C-FC03B2F08C17}\DefaultIcon]

    @="%SystemRoot%\\System32\\imageres.dll,-27"

    [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\CLSID\{D15ED2E1-C75B-443c-BD7C-FC03B2F08C17}\Shell\Open\Command]

    @="explorer.exe shell:::{ED7BA470-8E54-465E-825C-99712043E01C}"

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ControlPanel\NameSpace\{D15ED2E1-C75B-443c-BD7C-FC03B2F08C17}]

    @="God Mode"


Then save this file and run it (you need to run it as an administrator).

Confirm the changes to the Windows registry, click "Yes"