/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

wwwtech.de
| | jao.io
4.7 parsecs away

Travel
| | [AI summary] A technical guide explaining how to configure OpenSMTPD as a local SMTP daemon for sending emails with aliases and authentication.
| | quitesimple.org
3.4 parsecs away

Travel
| | [AI summary] A technical retrospective on the author's decade-long experience running a self-hosted mail server for privacy and control, detailing the setup, maintenance challenges like spam and delivery issues, and the decision to keep critical emails on professional services.
| | blind.guru
1.4 parsecs away

Travel
| |
| | mfbmina.dev
24.5 parsecs away

Travel
| One of the best Go features is how easy we can use concurrency. The language gives us goroutines, which are like lightweight threads managed by the Go runtime. It help us to run several functions at the same instant and is very helpful if you wish to improve the performance of your application. Using this feature is easy as adding the go keyword before any function call. This will make the function run concurrently. To make it simpler, let's show you the code. Here I've written the SleepSort algorithm, w...