I am creating this page as FAQ to save commonly asked questions about Cloud technology (specifically for GCP & AWS) :
- Q: How I create a connection to my private Virtual Machine (VM without IP public). VM will be able to connect to internet, VM will be able to be connected from internet. Plus, VM will also be able to be connected securely by Developer/Administrator without VPN?
A: https://cloud.google.com/architecture/building-internet-connectivity-for-private-vms #GCP - Q: What is the difference between Cassandra and MongoDB?
A: https://phoenixnap.com/kb/cassandra-vs-mongodb #OpenSource #NoSQL - Q: How to download Google Chrome in Windows without using Internet Explorer (using Command Prompt / PowerShell)
A: $LocalTempDir = $env:TEMP; $ChromeInstaller = “ChromeInstaller.exe”; (new-object System.Net.WebClient).DownloadFile(‘http://dl.google.com/chrome/install/375.126/chrome_installer.exe’, “$LocalTempDir\$ChromeInstaller”);
PS: This is a living document. If you ask me a very common technical questions. I’ll put the answer in here.