Explore >> Select a destination


You are here

without.boats
| | developerlife.com
3.0 parsecs away

Travel
| | This article illustrates how to write concurrent and parallel code in Rust using Tokio. The pedagogical example we will use is building an asynchronous implementation of a middleware runner that you might find in a Redux store.
| | uraimo.com
2.4 parsecs away

Travel
| | Discussions on how concurrency should be handled natively in Swift will soon start, new paradigms will be introduced and a swifty approach to concurrency will be defined. This article is an introduction to these topics, it could be useful if you plan to contribute to swift-evolution or even if you just want to experiment with something new using the recommended opensource libraries.
| | aturon.github.io
2.2 parsecs away

Travel
| | [AI summary] This blog post introduces Rust's zero-cost futures library, which enables efficient asynchronous I/O programming by providing high-level abstractions that compile down to low-level state-machine code without runtime overhead.
| | inside.java
26.9 parsecs away

Travel
| The Simple Web Server was added to the `jdk.httpserver` module in JDK 18. It is a minimal HTTP static file server, designed to be used for prototyping, testing, and debugging. This article explores some less obvious yet interesting programmatic appl...