/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

www.synesthesia.co.uk
| | sachabarbs.wordpress.com
1.0 parsecs away

Travel
| | So I had a little discussion with a colleague today about the use of Rx (which I love), and he mentioned that they had used is but had moved to a simpler model by using System.Threading.Channels. Now I must admit I had not used this, so I decided to give it a try tonight....
| | gist.github.com
5.7 parsecs away

Travel
| | Threaded EventLogSearcher for 4624 events. GitHub Gist: instantly share code, notes, and snippets.
| | michaelscodingspot.com
3.1 parsecs away

Travel
| | Michael Shpilt's Blog on .NET software development, C#, performance, debugging, and programming productivity
| | mfbmina.dev
25.1 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...