Kinda random stuff from a random Carlos
Wow! I don't believe it has passed 10 years since I played World of Goo for the first time!
Now it seems that a sequel is about to be released. I can't wait to take a look!
💡 Be careful when publishing your docker container ports
⚠️ Docker creates iptables rules that can expose your containers to the entire Internet!
✅ Make sure to always bind locally like the example below. By doing this, the container will only be accessed by the host.
docker run -p 127.0.0.1:8080:80 nginx
Find out more in the Docker documentation.
This is a list of fully-qualified emojis I've compiled based on Unicode version 15.0, so I don't have to deal with tons of ads every time I need to look for that specific one. 😉. You can find its raw source in here.
With the release of .Net 8, I rapidly decided to install it on my VPS running Ubuntu 22.04. We had so many new features and improvements announced that I just had to try it!
Unfortunately, I was not able to install it using the package manager. These are the steps that I've taken to have .Net 8 installed on my machine...