Explore >> Select a destination


You are here

jameschambers.com
| | www.code4it.dev
9.1 parsecs away

Travel
| | Code4IT - a blog for .NET enthusiasts, Azure lovers, and Backend developers
| | conductofcode.io
12.3 parsecs away

Travel
| | How to create a ASP.NET Core Web API, secure it with JSON Web Tokens and explore it with Swagger UI and Postman.
| | damienbod.com
7.5 parsecs away

Travel
| | The article looks at managing user delegated access tokens for a downstream API in an ASP.NET Core web application. There are many ways of implementing this, all with advantages and disadvantages. The tokens are requested from an OpenID Connect server using the recommended standards. In this blog, the UI access token from the application authentication...
| | mariocarrion.com
89.9 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...