I had to work with Rust language (let me start with a disclaimer, I'm familiar with Rust) to utilize WebAssembly for our lovely clients. Since it's a new language for me, I had to start from the installation process.

I checked out the main website of Rust at https://www.rust-lang.org/tools/install and found the installation command:

bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

However, it didn't work as expected and threw an error:

curl: (6) Could not resolve host: sh.rustup.rs

This was definitely not the result I anticipated. After trying to ping the URL and confirming it was working fine, I wondered if it could be a port issue. So, I decided to specify the port, making it more convenient:

bash
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs:443 | sh

In conclusion, the installation proceeded smoothly after specifying the port. That's all for this news.


The original came from my Thai language, translated into another language by ChatGPT.