Ubuntu 18.04.4 LTS is scheduled to be released by Canonical on the first week of February 2020(Release Date) and get to know more about LTS Versions.
seen from Germany

seen from United Kingdom
seen from United Kingdom

seen from United Kingdom
seen from United States
seen from Germany

seen from United Kingdom

seen from United Kingdom

seen from United Kingdom

seen from United Kingdom
seen from United States
seen from United Kingdom

seen from United Kingdom

seen from Singapore

seen from United Kingdom

seen from Russia
seen from Russia

seen from Australia

seen from United States
seen from Ireland
Ubuntu 18.04.4 LTS is scheduled to be released by Canonical on the first week of February 2020(Release Date) and get to know more about LTS Versions.
Install, Manage, Configure, Start, Stop, Disable Nginx Server on Ubuntu 18.04
Latest .NET Core SDK on Linux Ubuntu 18.04
Developer environment
How to install latest version of .NET Core SDK for a developer environment, modifications might be necessary for production
Acknowledgement
This instructions are a simplified copy of Microsoft's instructions
Register Microsoft's key and source
This only needs to be done once per machine.
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg sudo mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/ wget -q https://packages.microsoft.com/config/ubuntu/18.04/prod.list sudo mv prod.list /etc/apt/sources.list.d/microsoft-prod.list sudo chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg sudo chown root:root /etc/apt/sources.list.d/microsoft-prod.list
Install .NET SDK
Update the products available for installation, then install the .NET SDK.
In your command prompt, run the following commands:
sudo apt-get install -y apt-transport-https sudo apt-get update sudo apt-get install -y dotnet-sdk-2.1
Putting all together
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.asc.gpg sudo mv microsoft.asc.gpg /etc/apt/trusted.gpg.d/ wget -q https://packages.microsoft.com/config/ubuntu/18.04/prod.list sudo mv prod.list /etc/apt/sources.list.d/microsoft-prod.list sudo chown root:root /etc/apt/trusted.gpg.d/microsoft.asc.gpg sudo chown root:root /etc/apt/sources.list.d/microsoft-prod.list sudo apt-get install -y apt-transport-https sudo apt-get update sudo apt-get install -y dotnet-sdk-2.1
Heroku (CLI) (toolbelt) on Linux
Developer environment
How to install latest version of Heroku (CLI) (toolbelt) for a developer environment, modifications might be necessary for production
Install Nodejs
Follow the instructions to Install nodejs
Install nodejs based Heroku
npm install -g heroku heroku --version
And you are done