Explore >> Select a destination


You are here

kevinmontrose.com
| | hanno.codes
44.8 parsecs away

Travel
| | Java 23 has arrived, and it brings a truckload of changes! For example, in JavaDoc, 'Markdown documentation comments' are now supported. On top of that, a lot of features have been re-previewed and there are also two brand-new ones - module import declarations and primitive type patterns. This post has all the info!
| | deniskyashif.com
16.6 parsecs away

Travel
| | Concurrency patterns in .NET using channels.
| | endjin.com
18.7 parsecs away

Travel
| | This post examines .NET's native support for iterators: IEnumerator, IEnumerable, and IAsyncEnumerable.
| | 128bit.io
91.6 parsecs away

Travel
| I'm still on my journey with exploring F# but I want to look at something with the .Net Core platform itself, so this will apply to both C# and F#. Ahead-Of-Time (AOT) compilation isn't a new concept. Languages like C and C++ need to be compiled before (or ahead of) execution time. The JVM and CLR took a different approach, creating "virtual machines" or runtimes that could run your code, giving us the promise of "write once, run anywhere" or anywhere that has a virtual machine at least.