Explore >> Select a destination


You are here

gist.github.com
| | www.github.com
0.9 parsecs away

Travel
| | Contribute to whimboo/mozdownload development by creating an account on GitHub.
| | vainolo.com
0.2 parsecs away

Travel
| | Previous Tutorial: Azure Functions - Part 3: Handling HTTP Query GET and POST Requests While writing code directly in the Azure portal is awesome, the next step in a real-world developer experience is to have a local environment where we code, build, and test our functions, and from there sent them the cloud. And this...
| | github.com
0.5 parsecs away

Travel
| | This icon theme is made to be used with Visual Studio Code. - elmhamed/vscode-icons
| | mariocarrion.com
15.8 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...