Code Review Videos > How I Fixed

How I Fixed: Feature ‘raw string literals’ is not available. Please use language version 11.0 or greater.

Until now I’ve been getting by right enough running .net version 6.0 on Ubuntu. However, today I wanted to use raw string literals, aka “”” quoted multi line strings: This involved installing .net 7.0 on Ubuntu, which was pretty easy honestly: And then: With that done: I then restarted Rider, and saw that it had … Read more

How To: Securely Connect to MySQL Docker Container from Outside

Today I needed to reset a user’s password on a WordPress blog which uses MySQL as its backing database. The WordPress blog, the MySQL database, and the NGINX server are all running on the remote server via Docker. More specifically they use a docker-compose.yaml file. How this docker-compose.yaml file looks is not super important, but … Read more