/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

blog.bdoughan.com
| | jamesward.com
1.6 parsecs away

Travel
| | [AI summary] The author provides a Java and Akka code example demonstrating how to compose Futures to execute multiple tasks concurrently and wait for their completion.
| | www.codeproject.com
2.0 parsecs away

Travel
| | For those who code
| | studiofreya.org
2.0 parsecs away

Travel
| | [AI summary] A beginner's guide demonstrating five fundamental Java programming examples, including printing Hello World, using loops, taking user input, creating patterns, and reversing strings.
| | mariocarrion.com
12.1 parsecs away

Travel
| I'm starting the Mono POSIX shared memory wrapping, decided to begin dllimporting shm_open, however doesn't seems to be easy at all, my current effort is: using System; using System.Runtime.InteropServices; namespace Mono.Posix { public class SharedMemory { public SharedMemory () { } [DllImport ("librt", EntryPoint="shm_open", CharSet=CharSet.Ansi, CallingConvention=CallingConvention.StdCall)] public static extern IntPtr Open ( [MarshalAs (UnmanagedType.LPStr)] string name, int oflag, int mode_t); public...